/* Prestigious Restaurant Menu Styling */

/* Main section background with elegant gradient */
.RestaurantMenu {
    background: 
        linear-gradient(135deg, 
            #0f0f0f 0%, 
            #1a1a1a 25%, 
            #252525 50%, 
            #1a1a1a 75%, 
            #0f0f0f 100%
        );
    position: relative;
    min-height: 100vh;
    padding: 3rem 1rem;
}

/* Subtle texture overlay for depth and luxury */
.RestaurantMenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Elegant pattern overlay */
.RestaurantMenu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
    pointer-events: none;
    z-index: 0;
}

/* Restaurant menu container */
.restaurant-menu {
    background: linear-gradient(to bottom, #f9f6f0 0%, #f5f1e8 100%);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Menu title styling */
.menu-title {
    color: #2c2c2c;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Category headers */
.category-name {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #d4af37;
}

.category-container {
    border-bottom-color: #e0e0e0 !important;
}

/* Menu items */
.menu-item-restaurant {
    background: #fdfcf9;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ebe8df;
    transition: all 0.3s ease;
}

.menu-item-restaurant:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #d4af37;
    background: #ffffff;
}

/* Featured items */
.menu-item-restaurant.featured {
    border-left: 4px solid #d4af37;
    background: linear-gradient(to right, #fffdf5 0%, #fdfcf9 10%);
}

/* Item names */
.item-name {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Item descriptions */
.item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Prices */
.item-price {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Special badge */
.badge-featured {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social media links */
.social-link {
    background: #2c2c2c;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    transform: scale(1.1);
}

/* Cart button container - keep it simple and aligned to viewport */
.restaurant-menu .cart-icon.sticky,
.restaurant-menu .cart-icon {
    position: sticky !important;
    top: 1.5rem !important;
    right: 0 !important;
    margin-top: 0 !important;
    margin-right: 1.5rem !important;
    margin-left: auto !important;
}

/* Cart button */
.restaurant-menu .cart-button {
    background: #d4af37 !important;
    color: #2c2c2c !important;
    transition: all 0.3s ease;
}

.restaurant-menu .cart-button:hover {
    background: #c99d2e !important;
    transform: scale(1.05);
}

/* WhatsApp button - align to viewport edge */
a.whatsapp-button.fixed,
a.whatsapp-button {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    left: auto !important;
    background: #25d366 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    z-index: 9999 !important;
}

.whatsapp-button:hover {
    background: #20ba5a !important;
    transform: scale(1.05);
}

/* Variant price buttons */
.variant-price-button {
    background: #f8f8f8;
    border-color: #d4af37 !important;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.variant-price-button:hover {
    background: #d4af37;
    color: #ffffff;
}

/* Item images */
.item-image-wrapper img {
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.menu-item-restaurant:hover .item-image-wrapper img {
    border-color: #d4af37;
}