  /* Responsive styles */
    @media (max-width: 768px) {
        .hero-bg {
            padding: 3rem 0 !important;
        }

        .hero-bg h1 {
            font-size: 2rem !important;
        }

        .logo-text {
            font-size: 1.75rem !important;
        }

        /* Mobile Navigation */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            display: block;
            transform: translateX(0);
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .desktop-nav {
            display: none !important;
        }

        .hamburger {
            display: flex !important;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 24px;
            height: 3px;
            background: #d4a574;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Menu Tabs Mobile - Horizontal Scroll */
        .menu-tabs-container {
            flex-direction: row !important;
            gap: 0.75rem !important;
            justify-content: flex-start !important;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
        }

        .menu-tab {
            scroll-snap-align: start;
            min-width: auto !important;
            width: auto !important;
        }

        /* Menu Grid */
        .menu-content-grid {
            grid-template-columns: 1fr !important;
        }

        .menu-section {
            padding: 1.5rem 1rem !important;
        }

        .menu-item p {
            font-size: 1rem !important;
        }

        /* Category buttons mobile */
        .category-buttons {
            order: -1;
        }

        /* Footer spacing */
        .py-16 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        .py-20 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        /* Text sizes */
        .text-5xl {
            font-size: 2rem !important;
        }

        .text-3xl {
            font-size: 1.5rem !important;
        }

        .text-2xl {
            font-size: 1.25rem !important;
        }

        /* Container padding */
        .container {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        /* Gallery grid */
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    @media (min-width: 769px) {
        .hamburger {
            display: none !important;
        }

        .mobile-menu {
            display: none !important;
        }

        .mobile-menu-overlay {
            display: none !important;
        }
    }

    /* Tablet */
    @media (max-width: 1024px) and (min-width: 769px) {
        .hero-bg h1 {
            font-size: 3rem !important;
        }

        .desktop-nav ul {
            gap: 1.5rem !important;
            font-size: 0.9rem !important;
        }

        .menu-content-grid {
            gap: 1.5rem !important;
        }
    }

    /* Hide scrollbar but allow scrolling */
    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .scrollbar-hide::-webkit-scrollbar {
        display: none;
    }

    /* Sticky Menu Tabs */
    .menu-tabs-wrapper {
        z-index: 40;
    }
    
    .menu-tabs-wrapper.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(243, 244, 246, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 0;
    }

    /* Placeholder space when tabs are sticky */
    .menu-tabs-placeholder {
        display: none;
    }
    .menu-tabs-placeholder.active {
        display: block;
    }