/* Menu Details Section */
.menu-details-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.menu-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Product Image */
.product-image-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 10px;
}

/* Product Info */
.product-info {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Price Container */
.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2rem;
    color: #d32f2f;
    font-weight: bold;
}

/* Product Description */
.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.product-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.product-options h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.size-buttons {
    display: flex;
    gap: 1rem;
}

.size-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: #d32f2f;
    color: #d32f2f;
    background-color: #fff5f5;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #b71c1c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-container {
        order: 2;
    }

    .product-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .menu-details-section {
        padding: 2rem 1rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .new-price {
        font-size: 1.5rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .size-buttons {
        flex-direction: column;
    }
}
