/* Modern Professional Design Override v7 - Scrollable View */
:root {
    --primary-color: #c99360;
    --secondary-color: #fcf8f3;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --accent-color: #e67e22;
    --gold: #d4a373;
    --card-bg: #ffffff;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.06);
}

body {
    background-color: var(--secondary-color);
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
}

/* -----------------------------------------------------------
   MENU SECTION - FIXED HEIGHT SCROLLABLE
----------------------------------------------------------- */
.menu-slider-container {
    padding: 40px 15px 60px 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.menu-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem 1rem 1rem 1rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    /*border-top: 5px solid var(--gold);*/
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

/* Header Elements */
.menu-card img {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.menu-card .title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* THE SCROLLABLE CONTAINER */
.menu-items-scroll {
    max-height: 380px;
    /* Fixed height for all cards */
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 15px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #e9e9e8 rgba(0, 0, 0, 0.05);
}

/* Webkit Scrollbar */
.menu-items-scroll::-webkit-scrollbar {
    width: 4px;
}

.menu-items-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
}

.menu-items-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* Bottom Fade Indicator */
.menu-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffffff, transparent);
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

/* Menu Items */
.menu-item {
    font-size: 21px;
    font-weight: 500;
    color: #444;
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    border-bottom: none;
    position: relative;
    line-height: 29px;
}

.menu-item::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.8rem;
    margin-right: 12px;
    margin-top: 2px;
}

.menu-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 8px;
}

/* Hide Pagination Dots */
.swiper-pagination {
    display: none !important;
}

/* Swiper Dash Pagination (Disabled) */
.swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: 0;
    background: #bdc3c7;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 35px;
    opacity: 1;
}

/* Navbar Icon Fixes */
.navbar-toggle {
    margin-top: 15px;
    border-color: var(--gold) !important;
    padding: 12px 10px;
    scale: 1.2;
    /* Makes the entire toggle 20% larger */
}

.navbar-toggle .icon-bar {
    background-color: var(--accent-color) !important;
    width: 25px;
    height: 3px;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .menu-card {
        padding: 2rem 1.2rem;
    }

    .menu-items-scroll {
        max-height: 320px;
    }
}