/**
 * Single Product Page Styles
 * Extracted from inline styles in functions.php
 */

/* Restaurant Single Product Layout */
body.single-product .shop-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

body.single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card, #252525);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-dark, #333333);
}

body.single-product .summary.entry-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.single-product .product_title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    color: #C16F2D;
    margin-bottom: 15px;
}

body.single-product .price {
    font-size: 28px;
    color: #c16f2d;
    font-weight: 700;
}

body.single-product .single_add_to_cart_button {
    background: #c16f2d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

body.single-product .single_add_to_cart_button:hover {
    background: #a85b22;
    transform: translateY(-2px);
}

/* Product Meta */
.restaurant-product-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.restaurant-product-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E0E0E0;
    font-size: 14px;
}

/* Ingredients Section */
.restaurant-ingredients {
    background: var(--bg-tertiary, #252525);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.restaurant-ingredients h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 18px;
}

.restaurant-ingredients ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restaurant-ingredients li {
    padding: 5px 0;
    color: #E0E0E0;
    position: relative;
    padding-left: 20px;
}

.restaurant-ingredients li::before {
    content: "•";
    color: #c16f2d;
    position: absolute;
    left: 0;
}

/* Quantity Wrapper */
.restaurant-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.restaurant-quantity-wrapper label {
    color: #FFFFFF;
}

.restaurant-quantity-selector {
    display: flex;
    align-items: center;
    background: #1A1A1A;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
}

.restaurant-quantity-selector button {
    background: transparent;
    border: none;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s ease;
}

.restaurant-quantity-selector button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.restaurant-quantity-selector input {
    background: transparent;
    border: none;
    color: #FFFFFF;
    text-align: center;
    width: 60px;
    height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    body.single-product .product {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    body.single-product .product_title {
        font-size: 28px;
    }
    
    body.single-product .price {
        font-size: 24px;
    }
}
