/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Menu Page Styles */
:root {
    --primary-color: #c5a47e;
    --secondary-color: #222;
    --accent-color: #e6c9a8;
    --text-color: #fff;
    --light-bg: #f9f5f0;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-color: #333;
    --transition: all 0.3s ease-in-out;
}

/* Base Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--white);
    line-height: 1.6;
    background: #111 !important;
    overflow-x: hidden;
    position:relative;
}

/* HEADER */
.menu-header {
    text-align: center;
    padding: 20px 10px;
    background: #000;
    margin-bottom: 0!important;
    position:relative;
    z-index:1;
}

.menu-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0px;
}

.menu-header p {
    color: #bbb;
    font-size: 1.1rem;
}

.container{
    margin-bottom: 0!important;

}

/* Search Container */
.search-container {
    position: sticky;
    top: 78px;
    z-index: 999;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(5px);
    padding: 15px 0;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Search Icon (Mobile) */
.search-icon {
    display: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 1002;
    transform: translateY(-50%);
}

/* Search Box */
.search-box {
    width: 100%;
    max-width:600px;
    margin: 0 auto;
    position:relative;
    padding: 0px 15px;
    transition: all 0.3s ease;
}
.search-container.sticky{
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.search-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 50px 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-right:40px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(197, 164, 126, 0.3);
}

.search-close {
     position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}
/* Show close button when input has content */
.search-input:not(:placeholder-shown) + .search-close {
    opacity: 1;
    visibility: visible;
}

/* Mobile styles */
@media (max-width: 768px) {
    .search-container {
       position: sticky;
        height: 50px; /* Fixed height for the search container */
        padding: 0 15px;
        display:flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 50px;
        top:60px;
        /* background: rgba(0, 0, 0, 0.95); */
    }
    
    .search-icon {
        position:absolute;
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Adjust for exact centering */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px; /* Fixed width for better touch target */
        height: 40px; /* Fixed height for better touch target */
        top:5px;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    /* Hide search icon when search is active on mobile */
    @media (max-width: 768px) {
        .search-active .search-icon {
            display: none !important;
            
        }
    }
    .search-icon i{
         font-size: 1.0rem; /* Adjust icon size if needed */
        color: white; 
    }
    
    .search-box {
        position:fixed;
        top: 25px;
        left: 0;
        right: 0;
        width: 100%;
        height: 50px;
        padding: 0px 5px;
        margin: 0;
        background: rgba(17, 17, 17, 0.95);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        display: flex;
        align-items: center;
        opacity: 0;
        visibility: hidden;
    }
    
    .search-box.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    /* Hide search icon when search box is active */
    .search-box.active ~ .search-icon {
        display: none;
    }
    
    .search-close {
         position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        visibility: visible;
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
    }
    
    .search-input {
        padding-right: 40px;
    }
}

/* Desktop styles */
@media (min-width: 768px) {
    .search-icon {
        display: none;
    }
    
    .search-box {
        display: block !important;
    }
}

/* NAVIGATION */
.menu-nav {
    background: #000!important;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom:0!important;
    width:100%;
}

.menu-nav .nav-tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 5px 0;
    margin: 0;
    border-bottom: none;
}

.menu-nav .nav-item {
    margin: 0 5px;
    border: none;
}

.menu-nav .nav-link {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    border: none;
    background: transparent;
    font-weight: 500;
}

.menu-nav .nav-link:hover,
.menu-nav .nav-link:focus,
.menu-nav .nav-link.active {
    background: transparent;
    color: var(--primary-color) !important;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.menu-nav::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.menu-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

/* If there are any full-width sections with background colors */
.container,
.row,
.col-12,
.section-base,
.section-color {
    background-color: transparent !important;
}

.section-base {
    padding: 80px 0;
}

.section-color {
    background-color: var(--light-gray);
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white)!important;
    margin-top: 0;
}

a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Navigation Tabs */
.nav-tabs-simple {
    border: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.nav-tabs-simple > li {
    float: none;
    display: inline-block;
    margin: 0 5px 10px;
}

.nav-tabs-simple > li > a {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 15px 25px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

.nav-tabs-simple > li > a i {
    margin-right: 8px;
}

.nav-tabs-simple > li.active > a,
.nav-tabs-simple > li > a:hover,
.nav-tabs-simple > li > a:focus {
    background: transparent;
    color: var(--primary-color);
    border-color: transparent;
    border-bottom-color: var(--primary-color);
}

/* Menu Items */
.list-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-item {
    padding: 40px 0;
    border-bottom: 1px dashed var(--border-color);
    transition: var(--transition);
}

.list-item:hover {
    transform: translateX(10px);
}

.list-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.list-item p {
    color: #777;
    margin-bottom: 0;
    font-size: 14px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    text-align: right;
    padding-top: 30px;
}

/* Wine Categories */
.wine-category {
    font-size: 20px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--secondary-color);
}

/* Section Titles */
.align-center {
    text-align: center;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Footer */
.footer-base {
    background-color: var(--dark-bg);
    color: #999;
    padding: 40px 0 20px;
}

.footer-base p {
    margin-bottom: 0;
    color: #999;
}

.footer-center {
    text-align: center;
    margin-bottom: 20px;
}

.footer-right {
    text-align: center;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .nav-tabs-simple > li > a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .price {
        text-align: left;
        margin-top: 10px;
    }
    
    .section-base {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .nav-tabs-simple {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-tabs-simple > li {
        display: inline-block;
        float: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .list-item h4 {
        font-size: 16px;
    }
    
    .price {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeInUp;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    float: right;
}

.breadcrumb > li + li:before {
    content: '\f105';
    font-family: 'FontAwesome';
    padding: 0 10px;
    color: #999;
}

.breadcrumb > li > a {
    color: #999;
}

.breadcrumb > li.active {
    color: var(--primary-color);
}

/* Tab Content */
.tab-content {
    margin-top: 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    width: 100%;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure tab content is properly hidden when not active */
.tab-content > .tab-pane:not(.show) {
    display: none;
}

.tab-content > .active {
    display: block;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.menu-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.menu-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-header p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}
/* Mobile Menu Toggle Button */
.hamburger {
    display: none; /* Hidden by default, shown on mobile */
    padding: 10px;
    background: #000;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    z-index: 1001;
    width:100%;
    margin-bottom:0;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Active state for hamburger */
/* .hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
    transform: translateY(10px) rotate(90deg);
    opacity: 0;
}

.hamburger.is-active .hamburger-inner::after {
    transform: translateY(-10px) rotate(0);
} */

/* Mobile menu styles */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show on mobile */
        position: sticky;
        right: 15px;
        top: -50px;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid #333;
    }
    
    .menu-nav {
        padding: 0;
        position: relative;
    }
     /* Show the navbar collapse by default */
    .navbar-collapse {
        display: none!important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
    .navbar-collapse.show {
        display: block !important;
    }
    .menu-nav .navbar-collapse {
        background: #000;
        padding: 10px 0;
        margin-top: 10px;
    }
    
    .menu-nav .nav-tabs {
        display: flex !important;
        flex-direction: column;
        margin: 0;
        display: none;
    }
    .navbar-collapse.show .nav-tabs {
        display: flex !important; /* Show when menu is toggled */
    }
    
    .menu-nav .nav-item {
        width: 100%;
        margin: 0;
        text-align: left;
        
    }
    
    .menu-nav .nav-link {
        padding: 10px 20px;
        color: #fff !important;
        border: none !important;
        text-align: left;
        width: 100%;
        display:block;
    }
    
    .menu-nav .nav-link:hover,
    .menu-nav .nav-link:focus {
        background: #333;
    }
    
    .menu-nav .nav-link {
        width: 100%;
        padding: 12px 20px;
        border-radius: 0;
        text-align: left;
        position: relative;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;

    }
    
    .menu-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .menu-nav .nav-link:hover{
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #fff;
        padding-left: 25px;
    }
    .menu-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Remove the empty translate rule */
.menu-nav .nav-link:hover {
    translate: none;
}

    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}
/* Desktop styles */
@media (min-width: 768px) {
    .hamburger {
        display: none !important;
    }
    
    .menu-nav .nav-tabs {
        display: flex !important;
    }
}
/* Navigation Tabs */
.menu-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.nav-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.nav-link {
    color: var(--text-color);
    border: none;
    border-radius: 0;
    font-weight: 500;
    padding: 10px 20px;
    margin: 0 5px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

.nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border: none;
    font-weight: 600;
}

/* Remove the underline from active tabs */
.nav-link.active:after {
    display: none;
}

/* Navigation Bar */
.navbar {
    min-height: 70px;
    background: rgba(0, 0, 0, 0.9)!important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    padding: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-back,
.navbar-home {
    color: #fff;
    font-size: 16px;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-back:hover,
.navbar-home:hover {
    color: var(--primary-color);
}

.navbar-back i,
.navbar-home i {
    margin-right: 8px;
}

.navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Menu Content */
.menu-content {
    padding-top: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    margin: 0 auto;
}

.menu-category-title {
    font-size: 26px;
    margin: 30px 0 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
    margin: 0 0 12px;
    border-left: 3px solid transparent;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary-color);
}

/* Top Row - Main Item */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    min-height: 30px;
    align-items: flex-start;
}

.top-row h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    max-width: 60%;
}

.item-description {
    color: #aaa;
    font-size: 0.85rem;
    margin: 2px 8px 0 0;
    white-space: nowrap;
    min-width: 40px;
    text-align: right;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 10px;
}

/* Bottom Row - Sub Item */
.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-left: 2px;
    min-height: 20px;
}

.sub-item-info {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

.sub-item-price {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 10px;
}
.subsection{
    font-weight:800;
    margin-left:20px;
    margin-top:20px;
    margin-bottom:20px  ;
}

/* Legacy item-info styles (keeping for backward compatibility) */
.item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.item-info h3, .item-info h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.item-info p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0 0 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-row h3 {
        font-size: 1rem;
    }
    
    .item-description, 
    .sub-item-info,
    .sub-item-price {
        font-size: 0.8rem;
    }
    
    .item-price {
        font-size: 1rem;
    }
}

/* Wine Section Specific */
.wine-categories {
    margin-bottom: 40px;
}

.wine-categories h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Footer */
.menu-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.menu-footer p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Styles */
/* MOBILE RESPONSIVE */
@media (max-width: 991.98px) {
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .menu-header p {
        font-size: 1rem;
    }
    
    .menu-nav .nav-tabs {
        justify-content: flex-start;
        padding-left: 15px;
    }
    
    .menu-nav .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    #menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .menu-nav .nav-tabs {
        display: none;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .menu-nav .nav-tabs.show {
        display: flex;
    }
    
    .menu-nav .nav-item {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-nav .nav-link {
        padding: 12px;
    }
    
    .menu-header {
        padding: 60px 0 30px;
    }
    
    .menu-header h1 {
        font-size: 1.8rem;
    }
    
    .menu-header p {
        font-size: 1rem;
    }
    
    .menu-nav {
        padding: 10px 0;
    }
    
    .nav-tabs {
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .item-price {
        margin: 10px 0 0;
        align-self: flex-end;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b3936d;
}