
:root {
    --primary-color: #9C7D4A; /* Gold/Bronze */
    --secondary-color: #1A1A1A; /* Deep Black */
    --text-color: #EAEAEA; /* Off-White */
    --accent-color: #C5A572; /* Light Gold */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

.navbar-brand, h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
/* Search Page Specific Styles */
.search-result-tags {
    color: rgba(234, 234, 234, 0.6);
    font-size: 0.8rem;
    font-style: italic;
}

/* Make sure search results grid works properly */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Responsive adjustments for search page */
@media (max-width: 768px) {
    .search-page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .search-box-large {
        margin-bottom: 20px;
    }
    
    .back-to-menu {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }
    
    .search-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .filter-chip {
        white-space: nowrap;
    }
}
/* Search Bar Styles */

.search-container {
    flex-grow: 1;
    max-width: 400px;
    margin: 0 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 125, 74, 0.3);
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(156, 125, 74, 0.2);
}

.search-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1rem;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--text-color);
    flex-grow: 1;
    font-size: 1rem;
    padding: 5px 0;
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: rgba(234, 234, 234, 0.6);
}

.search-clear {
    background: transparent;
    border: none;
    color: rgba(234, 234, 234, 0.5);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear.visible {
    opacity: 1;
}

.search-clear:hover {
    color: var(--primary-color);
}

/* Search Results Page Styles */
.search-results-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
    min-height: 60vh;
}

.search-results-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-query {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

.search-results-count {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 10px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.search-result-item {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 125, 74, 0.2);
    cursor: pointer;
}

.search-result-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.search-result-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.search-result-item:hover .search-result-image img {
    transform: scale(1.05);
}

.search-result-content {
    padding: 20px;
}

.search-result-type {
    display: inline-block;
    background: rgba(156, 125, 74, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.search-result-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.search-result-price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.search-result-description {
    color: rgba(234, 234, 234, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(156, 125, 74, 0.1);
}

.search-result-category {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.search-result-action {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-action:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.no-search-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-search-results i {
    font-size: 4rem;
    color: rgba(156, 125, 74, 0.3);
    margin-bottom: 20px;
}

.no-search-results h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.no-search-results p {
    color: rgba(234, 234, 234, 0.7);
    margin-bottom: 10px;
}

.search-suggestions {
    margin-top: 30px;
}

.search-suggestions h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.suggestion-tag {
    background: rgba(156, 125, 74, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(156, 125, 74, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .search-container {
        order: 3;
        max-width: 100%;
        margin: 15px 0;
    }
    
    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Highlight animation */
@keyframes highlight {
    0% { box-shadow: 0 0 0 0 rgba(156, 125, 74, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(156, 125, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 125, 74, 0); }
}

.highlighted {
    animation: highlight 2s ease;
}

/* Responsive Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 4.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    letter-spacing: 5px;
}

/* Mobile-first responsive font sizes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px !important;
    }
    .display-5 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .dish-name {
        font-size: 1.1rem;
    }
    .dish-price {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Hero Button Container */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Hero Button Styles */
.hero-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-btn {
        width: auto;
        min-width: 200px;
    }
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .hero-buttons {
        padding: 0 15px;
    }
}
/* Luxury Button - Responsive */
.luxury-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out;
    z-index: 1;
    font-size: 0.9rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .luxury-btn {
        padding: 15px 35px;
        letter-spacing: 2px;
        font-size: 1rem;
    }
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease-in-out;
    transform-origin: center;
    z-index: -1;
}

.luxury-btn:hover, .luxury-btn:focus {
    color: var(--secondary-color);
    border-color: var(--primary-color);
    outline: none;
}

.luxury-btn:hover::before, .luxury-btn:focus::before {
    transform: scaleX(1);
}

.luxury-btn.clicked {
    animation: pulse-border 0.5s ease-out;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(156, 125, 74, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(156, 125, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 125, 74, 0); }
}

/* Menu Section - Responsive */
.menu-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
}

@media (min-width: 768px) {
    .menu-section {
        padding: 100px 0;
    }
}

.menu-category {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .menu-category {
        margin-bottom: 60px;
    }
}

.menu-category-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .menu-category-title {
        margin-bottom: 40px;
    }
}

.menu-category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

@media (min-width: 768px) {
    .menu-category-title:after {
        width: 100px;
    }
}

/* Dish Card - Responsive */
.dish-card {
    background: rgba(30, 30, 30, 0.8);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

@media (min-width: 768px) {
    .dish-card {
        margin-bottom: 30px;
    }
}

.dish-card:hover {
    border-left: 3px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Dish Image Container - Clickable with Overlay */
.dish-image-container {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.dish-image-container:hover .image-overlay {
    opacity: 1;
}

.dish-image-container:hover .dish-image {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .dish-image-container {
        height: 220px;
    }
}

@media (min-width: 992px) {
    .dish-image-container {
        height: 200px;
    }
}

.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Overlay for Click Effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.image-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

.dish-content {
    padding: 20px;
}

@media (min-width: 768px) {
    .dish-content {
        padding: 25px;
    }
}

.dish-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

@media (min-width: 576px) {
    .dish-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.dish-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    margin-bottom: 5px;
}

@media (min-width: 576px) {
    .dish-name {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
}

.dish-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
    align-self: flex-start;
}

@media (min-width: 576px) {
    .dish-price {
        font-size: 1.2rem;
        align-self: center;
    }
}

.dish-description {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .dish-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

.dish-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .dish-allergens {
        gap: 8px;
        margin-bottom: 15px;
    }
}

.allergen-tag {
    background: rgba(156, 125, 74, 0.1);
    color: var(--accent-color);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid rgba(156, 125, 74, 0.3);
}

@media (min-width: 768px) {
    .allergen-tag {
        padding: 3px 10px;
        font-size: 0.75rem;
    }
}

.menu-icon {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .menu-icon {
        margin-right: 8px;
        font-size: 1.1rem;
    }
}

/* Badges - Responsive */
.seasonal-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: rotate(5deg);
    z-index: 3;
}

@media (min-width: 768px) {
    .seasonal-badge {
        top: 10px;
        right: 10px;
        padding: 5px 15px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

.chef-recommendation {
    border: 1px solid var(--primary-color);
    position: relative;
}

.chef-recommendation:before {
    content: "Chef's Choice";
    position: absolute;
    top: 12px;
    left: -30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 30px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: rotate(-45deg);
    z-index: 3;
}

@media (min-width: 768px) {
    .chef-recommendation:before {
        top: 15px;
        left: -35px;
        padding: 5px 40px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 400px) {
    .chef-recommendation:before {
        display: none;
    }
    .chef-recommendation::after {
        content: "Chef's Choice";
        display: inline-block;
        background: var(--primary-color);
        color: var(--secondary-color);
        padding: 3px 10px;
        font-size: 0.7rem;
        border-radius: 3px;
        margin-left: 10px;
    }
}

/* Modal Styles */
.modal-content {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

.modal-header {
    border-bottom: 1px solid rgba(156, 125, 74, 0.3);
}

.modal-header .btn-close {
    filter: invert(1) brightness(2);
}

.modal-title {
    font-family: var(--font-serif);
    color: var(--primary-color) !important;
}

.modal-image-container {
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

.modal-dish-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-dish-details h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.text-accent {
    color: var(--accent-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 5px 10px;
}

.dish-actions .luxury-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .modal-image-container {
        height: 250px;
    }
    
    .modal-dish-details h3 {
        font-size: 1.5rem;
    }
    
    .modal-dish-details h4 {
        font-size: 1.3rem;
    }
}

/* Utility Styles */
.section-padding {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

.text-primary-gold {
    color: var(--primary-color) !important;
}

.bg-dark-gradient {
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
}

.wine-pairing {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 6px;
}

@media (min-width: 768px) {
    .wine-pairing {
        font-size: 0.9rem;
        margin-top: 8px;
    }
}

/* Menu Filters - Responsive */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .menu-filters {
        gap: 15px;
        margin-bottom: 40px;
    }
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(156, 125, 74, 0.3);
    color: var(--text-color);
    padding: 6px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .filter-btn {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* About Section - Responsive */
.about-image-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    cursor: pointer;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

@media (min-width: 768px) {
    .about-image-container {
        height: 400px;
        margin-top: 0;
    }
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Grid Gutters */
.row {
    --bs-gutter-x: 1.5rem;
}

@media (max-width: 768px) {
    .row {
        --bs-gutter-x: 1rem;
    }
}

/* Footer - Responsive */
footer .row {
    margin-bottom: 20px;
}

footer .col-md-4 {
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 0;
    }
}

/* Navbar - Responsive */
.navbar {
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Touch-friendly button sizing */
@media (max-width: 768px) {
    button, .btn, .luxury-btn, .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Improve readability on mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    p, .dish-description {
        line-height: 1.6;
    }
}

/* Prevent horizontal overflow */
.container, .container-fluid {
    overflow-x: hidden;
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Social Icons */
.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Disclaimer Text */
.disclaimer {
    opacity: 0.8;
}


/* Drink Card Styles */
.drink-card {
    background: rgba(30, 30, 30, 0.8);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.drink-card:hover {
    border-left: 3px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.featured-drink {
    border: 1px solid var(--primary-color);
    position: relative;
}

.drink-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.drink-image-container:hover .image-overlay {
    opacity: 1;
}

.drink-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drink-card:hover .drink-image {
    transform: scale(1.05);
}

.drink-content {
    padding: 20px;
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.drink-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.drink-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.drink-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.drink-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.drink-tag {
    background: rgba(156, 125, 74, 0.15);
    color: var(--accent-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(156, 125, 74, 0.3);
}

.drink-pairing {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Wine List Styles */
.wine-list {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    padding: 20px;
}

.wine-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(156, 125, 74, 0.2);
}

.wine-item:last-child {
    border-bottom: none;
}

.wine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.wine-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.wine-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

.wine-details {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.wine-description {
    color: #ccc;
    font-size: 0.9rem;
    font-style: italic;
}

/* Modal Styles for Drinks (if you want clickable drinks too) */
.modal-drink-image-container {
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}

.modal-drink-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments for drinks */
@media (max-width: 768px) {
    .drink-image-container {
        height: 180px;
    }
    
    .drink-name {
        font-size: 1.1rem;
    }
    
    .drink-price {
        font-size: 1rem;
    }
    
    .wine-name {
        font-size: 1rem;
    }
    
    .wine-price {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .drink-content {
        padding: 15px;
    }
    
    .wine-list {
        padding: 15px;
    }
}

/* Hero button adjustments for drinks page */
.hero-section .luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== CUSTOMER MENU PAGE STYLES ===== */

/* Search container styling for menu page */
.menu-section .search-container {
    max-width: 500px;
    margin-bottom: 30px;
}

.menu-section .search-box {
    width: 100%;
}

.menu-section .search-input {
    font-size: 1rem;
}

/* Dish card actions styling */
.dish-card .d-flex {
    gap: 10px !important;
}

.dish-card .btn {
    transition: all 0.3s ease;
}

.dish-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal body padding */
.modal-body {
    padding: 30px;
}

.modal-body .row {
    align-items: stretch;
}

/* Modal favorites button styling */
#favoritesBtn {
    width: 100%;
}

#addToCartForm .input-group .luxury-btn {
    padding: 10px 20px;
}

/* "No items found" styling */
.menu-section .fa-search {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .modal-body .row {
        flex-direction: column;
    }
    
    .modal-body .col-md-6:first-child {
        margin-bottom: 20px;
    }
    
    .menu-section .search-container {
        max-width: 100%;
    }
}