﻿*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #FAFAF8;
            --bg-card: #FFFFFF;
            --bg-nav: rgba(255, 255, 255, 0.92);
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --text-muted: #9A9A9A;
            --accent: #6B4423;
            --accent-light: #C4A77D;
            --accent-warm: #D4AF37;
            --border: #EFEFEF;
            --border-light: #F5F5F3;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-pill: 50px;
            --font-main: 'Noto Kufi Arabic', 'Manrope', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            scroll-padding-top: 86px;
        }

        html[lang="en"] {
            --font-main: 'Manrope', 'Noto Kufi Arabic', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-tap-highlight-color: transparent;
            overscroll-behavior-y: none;
            touch-action: manipulation;
        }

        @supports (min-height: 100dvh) {
            body {
                min-height: 100dvh;
            }
        }

        button,
        [role="button"] {
            touch-action: manipulation;
        }

        /* ========== HEADER ========== */
        .hero {
            position: relative;
            background: linear-gradient(145deg, #2C1810 0%, #4A2C1A 40%, #6B4423 100%);
            padding: calc(48px + env(safe-area-inset-top)) 24px 56px;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(196, 167, 125, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--bg-primary);
            border-radius: 24px 24px 0 0;
        }

        .lang-toggle {
            position: absolute;
            top: calc(20px + env(safe-area-inset-top));
            left: 20px;
            z-index: 10;
        }

        html[dir="ltr"] .lang-toggle {
            left: auto;
            right: 20px;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            font-family: 'Manrope', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: scale(1.05);
        }

        .lang-btn:focus-visible,
        .nav-item:focus-visible,
        .allergen-btn:focus-visible,
        .popup-close:focus-visible,
        .scroll-top:focus-visible {
            outline: 3px solid rgba(212, 175, 55, 0.75);
            outline-offset: 3px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 16px;
        }

        .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 18px;
        }

        .hero h1 {
            font-family: 'Noto Kufi Arabic', 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0;
            margin-bottom: 8px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        html[lang="en"] .hero h1 {
            font-family: 'Playfair Display', serif;
        }

        .hero-tagline {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--accent-warm);
            letter-spacing: 0;
            text-transform: uppercase;
        }

        /* ========== STICKY NAV ========== */
        .category-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-nav);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0;
            transition: box-shadow 0.3s ease;
        }

        .category-nav.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-scroll {
            display: flex;
            gap: 4px;
            padding: 12px 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .nav-scroll::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            flex-shrink: 0;
            scroll-snap-align: start;
            min-width: 44px;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-secondary);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-family: var(--font-main);
            letter-spacing: 0;
        }

        .nav-item:hover {
            background: var(--border-light);
            color: var(--text-primary);
        }

        .nav-item.active {
            background: var(--text-primary);
            color: #FFFFFF;
        }

        /* ========== MAIN CONTENT ========== */
        .menu-wrapper {
            max-width: 680px;
            margin: 0 auto;
            padding: 8px 16px 60px;
        }

        /* ========== MENU SECTION ========== */
        .menu-section {
            padding-top: 28px;
            margin-bottom: 12px;
        }

        .section-heading {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            padding: 0 4px;
        }

        .section-icon-wrapper {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .section-heading h2 {
            font-family: var(--font-main);
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0;
        }

        .section-count {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* Section icon colors */
        .icon-coffee { background: #F3E8D8; }
        .icon-chappati { background: #FDECD0; }
        .icon-tea { background: #EFE0C9; }
        .icon-flask { background: #F1E7D8; }
        .icon-dessert { background: #FBE8E8; }
        .icon-teapot { background: #F0E6D8; }

        /* ========== MENU ITEMS ========== */
        .items-list {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            gap: 16px;
            border: 1px solid transparent;
        }

        .menu-item:first-child {
            border-radius: var(--radius) var(--radius) var(--radius-sm) var(--radius-sm);
        }

        .menu-item:last-child {
            border-radius: var(--radius-sm) var(--radius-sm) var(--radius) var(--radius);
        }

        .menu-item:only-child {
            border-radius: var(--radius);
        }

        .menu-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }

        .item-details {
            flex: 1;
            min-width: 0;
        }

        .item-name {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .item-desc {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
            font-weight: 400;
        }

        .item-cal {
            display: inline-block;
            font-size: 0.62rem;
            font-weight: 600;
            color: var(--accent-light);
            background: rgba(196, 167, 125, 0.1);
            padding: 1px 7px;
            border-radius: 4px;
            margin-top: 3px;
            font-family: 'Manrope', sans-serif;
            letter-spacing: 0;
        }

        .item-prices {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
        }

        .price-tag {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px;
        }

        .price-size {
            font-size: 0.6rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0;
            font-family: 'Manrope', sans-serif;
        }

        .price-value {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Manrope', sans-serif;
        }

        .price-single {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Manrope', sans-serif;
        }

        .price-range {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent);
            white-space: nowrap;
            font-family: 'Manrope', sans-serif;
        }

        .currency {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: url('../images/sar-symbol-transparent.png') no-repeat center;
            background-size: contain;
            font-size: 0;
            color: transparent;
            vertical-align: middle;
            margin-inline-start: 3px;
            opacity: 0.45;
        }

        /* ========== DIVIDER ========== */
        .section-divider {
            height: 1px;
            background: var(--border);
            margin: 8px 20px 0;
        }

        /* ========== FOOTER ========== */
        .menu-footer {
            text-align: center;
            padding: 40px 24px calc(48px + env(safe-area-inset-bottom));
            max-width: 680px;
            margin: 0 auto;
        }

        .footer-line {
            width: 40px;
            height: 3px;
            background: var(--accent-warm);
            border-radius: 2px;
            margin: 0 auto 20px;
        }

        .footer-note {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
            line-height: 1.8;
        }

        .footer-note strong {
            color: var(--text-secondary);
            font-weight: 700;
        }

        .footer-brand {
            margin-top: 24px;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0;
        }

        .disclaimer {
            margin-top: 24px;
            padding: 16px 20px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
        }

        .disclaimer p {
            font-size: 0.72rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* ========== SCROLL TO TOP ========== */
        .scroll-top {
            position: fixed;
            bottom: calc(24px + env(safe-area-inset-bottom));
            left: calc(24px + env(safe-area-inset-left));
            width: 44px;
            height: 44px;
            background: var(--text-primary);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
            z-index: 50;
        }

        html[dir="ltr"] .scroll-top {
            left: auto;
            right: 24px;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--accent);
        }

        /* ========== ANIMATIONS ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 480px) {
            .hero {
                padding: 36px 16px 48px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-logo {
                width: 64px;
                height: 64px;
                font-size: 1.6rem;
            }

            .menu-wrapper {
                padding: 4px 12px 48px;
            }

            .menu-item {
                padding: 12px 14px;
            }

            .item-name {
                font-size: 0.85rem;
            }

            .nav-scroll {
                padding: 10px 14px;
            }

            .nav-item {
                padding: 7px 14px;
                font-size: 0.78rem;
            }
        }

        @media (min-width: 768px) {
            .hero {
                padding: 64px 32px 72px;
            }

            .hero h1 {
                font-size: 3.4rem;
            }

            .menu-wrapper {
                padding: 12px 24px 80px;
            }
        }

        /* ========== ALLERGENS POPUP ========== */
        .allergen-btn {
            position: fixed;
            bottom: calc(24px + env(safe-area-inset-bottom));
            right: 24px;
            z-index: 50;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: var(--accent);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        html[dir="ltr"] .allergen-btn {
            right: auto;
            left: 24px;
        }

        .allergen-btn:hover {
            background: var(--text-primary);
            transform: scale(1.08);
        }

        .popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.75);
            justify-content: center;
            align-items: center;
            padding: 20px;
            overscroll-behavior: contain;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-content {
            position: relative;
            max-width: 500px;
            width: 100%;
            max-height: 85vh;
            border-radius: var(--radius);
            overflow: hidden;
            background: #fff;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .popup-content img {
            width: 100%;
            height: auto;
            display: block;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
            z-index: 1;
        }

        .popup-close:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .popup-content .popup-img-wrap {
            overflow-y: auto;
            max-height: 85vh;
            -webkit-overflow-scrolling: touch;
        }

        /* ========== PRINT ========== */
        @media print {
            .category-nav, .scroll-top, .lang-toggle, .allergen-btn, .popup-overlay {
                display: none !important;
            }
            body {
                background: white;
            }
            .hero {
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
            .menu-item {
                break-inside: avoid;
            }
        }

        /* ========== MODERN VISUAL REFRESH ========== */
        :root {
            --bg-primary: #FAF8F4;
            --bg-card: rgba(255, 255, 255, 0.86);
            --bg-nav: rgba(250, 248, 244, 0.88);
            --text-primary: #191512;
            --text-secondary: #5F5750;
            --text-muted: #8D8378;
            --accent: #7A4B2A;
            --accent-light: #B88A55;
            --accent-warm: #D8B56D;
            --accent-deep: #3A2418;
            --border: rgba(40, 30, 24, 0.1);
            --border-light: rgba(255, 255, 255, 0.64);
            --shadow-sm: 0 8px 24px rgba(32, 24, 18, 0.06);
            --shadow-md: 0 16px 42px rgba(32, 24, 18, 0.1);
            --shadow-lg: 0 22px 70px rgba(32, 24, 18, 0.18);
            --radius: 14px;
            --radius-sm: 8px;
        }

        body {
            background:
                linear-gradient(180deg, #EFE4D6 0, #FAF8F4 310px, #FAF8F4 100%),
                repeating-linear-gradient(90deg, rgba(122, 75, 42, 0.026) 0 1px, transparent 1px 72px);
        }

        .hero {
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: calc(56px + env(safe-area-inset-top)) 24px 78px;
            background:
                linear-gradient(135deg, rgba(32, 20, 14, 0.97), rgba(106, 67, 38, 0.94)),
                linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(216, 181, 109, 0.16));
        }

        .hero::before {
            background:
                linear-gradient(120deg, transparent 0 16%, rgba(255, 255, 255, 0.07) 16% 17%, transparent 17% 48%, rgba(216, 181, 109, 0.12) 48% 49%, transparent 49%),
                linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 58%);
            opacity: 0.9;
        }

        .hero::after {
            height: 70px;
            background: var(--bg-primary);
            border-radius: 34px 34px 0 0;
        }

        .hero-content {
            width: min(100%, 620px);
        }

        .hero-logo {
            width: 104px;
            height: 104px;
            margin-bottom: 22px;
            padding: 10px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .hero-logo img {
            border-radius: 20px;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.08;
            margin-bottom: 12px;
            letter-spacing: 0;
            text-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            color: #F5E8CA;
            background: rgba(255, 255, 255, 0.09);
            border: 1px solid rgba(255, 255, 255, 0.16);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .lang-toggle {
            top: calc(22px + env(safe-area-inset-top));
            left: 22px;
        }

        .lang-btn {
            min-width: 58px;
            min-height: 38px;
            padding: 8px 16px;
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .category-nav {
            margin-top: -34px;
            top: 0;
            border-bottom: 0;
            background: transparent;
            z-index: 101;
        }

        .category-nav.scrolled {
            background: var(--bg-nav);
            box-shadow: 0 10px 32px rgba(32, 24, 18, 0.08);
        }

        .nav-scroll {
            width: min(calc(100% - 28px), 760px);
            margin: 0 auto;
            padding: 10px;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 0 18px 46px rgba(32, 24, 18, 0.12);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .nav-item {
            min-height: 38px;
            padding: 8px 16px;
            border-radius: 12px;
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 800;
            border: 1px solid transparent;
        }

        .nav-item:hover {
            background: rgba(122, 75, 42, 0.08);
            color: var(--accent);
        }

        .nav-item.active {
            color: #fff;
            background: linear-gradient(135deg, #8B5732, #3A2418);
            box-shadow: 0 10px 24px rgba(122, 75, 42, 0.25);
        }

        .menu-wrapper {
            max-width: 760px;
            padding: 34px 18px 72px;
        }

        .menu-section {
            padding-top: 36px;
            margin-bottom: 22px;
        }

        .section-heading {
            position: sticky;
            top: 72px;
            z-index: 3;
            gap: 14px;
            margin-bottom: 16px;
            padding: 10px 4px;
            background: linear-gradient(180deg, rgba(250, 248, 244, 0.94), rgba(250, 248, 244, 0.76));
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .section-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(32, 24, 18, 0.07);
        }

        .icon-coffee { background: #F2E1C7; }
        .icon-chappati { background: #F4D8A3; }
        .icon-tea { background: #EAD7B8; }
        .icon-flask { background: #F0E3D2; }
        .icon-dessert { background: #F2D8D5; }
        .icon-teapot { background: #E8D8C4; }

        .section-heading h2 {
            font-size: 1.18rem;
            line-height: 1.35;
            letter-spacing: 0;
        }

        .section-count {
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 800;
        }

        .items-list {
            gap: 8px;
        }

        .menu-item,
        .menu-item:first-child,
        .menu-item:last-child,
        .menu-item:only-child {
            position: relative;
            align-items: flex-start;
            padding: 16px 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.78);
            background: var(--bg-card);
            box-shadow: 0 10px 28px rgba(32, 24, 18, 0.055);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .menu-item::before {
            content: '';
            position: absolute;
            inset-inline-start: 0;
            top: 14px;
            bottom: 14px;
            width: 3px;
            border-radius: 999px;
            background: rgba(184, 138, 85, 0.44);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .menu-item:hover {
            transform: translateY(-1px);
            border-color: rgba(184, 138, 85, 0.2);
            box-shadow: 0 18px 38px rgba(32, 24, 18, 0.1);
        }

        .menu-item:hover::before {
            opacity: 1;
        }

        .item-name {
            font-size: 0.94rem;
            font-weight: 800;
            line-height: 1.45;
        }

        .item-desc {
            margin-top: 4px;
            font-size: 0.76rem;
            color: var(--text-secondary);
        }

        .item-cal {
            margin-top: 7px;
            padding: 3px 8px;
            border-radius: 999px;
            color: #805633;
            background: rgba(216, 181, 109, 0.18);
            font-size: 0.58rem;
        }

        .item-prices {
            align-items: flex-start;
            gap: 8px;
        }

        .price-tag {
            min-width: 42px;
            padding: 5px 7px;
            border-radius: 11px;
            background: rgba(122, 75, 42, 0.07);
        }

        .price-size {
            color: var(--accent-light);
            font-size: 0.56rem;
        }

        .price-value,
        .price-single,
        .price-range {
            color: #6E4125;
            font-weight: 800;
        }

        .price-single,
        .price-range {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 5px 10px;
            border-radius: 11px;
            background: rgba(122, 75, 42, 0.07);
        }

        .currency {
            opacity: 0.72;
        }

        .section-divider {
            margin: 18px 10px 0;
            background: rgba(122, 75, 42, 0.1);
        }

        .menu-footer {
            padding-top: 18px;
        }

        .footer-line {
            width: 54px;
            background: linear-gradient(90deg, transparent, var(--accent-warm), transparent);
        }

        .disclaimer {
            border-color: rgba(255, 255, 255, 0.78);
            background: rgba(255, 255, 255, 0.68);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .scroll-top,
        .allergen-btn {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: linear-gradient(135deg, #8B5732, #3A2418);
            box-shadow: 0 16px 38px rgba(32, 24, 18, 0.2);
        }

        .allergen-btn:hover,
        .scroll-top:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #9A633D, #2C1810);
        }

        .popup-overlay {
            background: rgba(18, 14, 11, 0.68);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .popup-content {
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
        }

        .popup-close {
            top: 12px;
            right: 12px;
            background: rgba(25, 21, 18, 0.62);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 320px;
                padding: calc(42px + env(safe-area-inset-top)) 16px 66px;
            }

            .hero-logo {
                width: 86px;
                height: 86px;
                margin-bottom: 18px;
            }

            .hero h1 {
                font-size: 2.65rem;
            }

            .hero-tagline {
                max-width: 92%;
                justify-content: center;
                font-size: 0.68rem;
                letter-spacing: 0;
            }

            .category-nav {
                margin-top: -30px;
            }

            .nav-scroll {
                width: calc(100% - 20px);
                padding: 8px;
                border-radius: 16px;
            }

            .nav-item {
                min-height: 36px;
                padding: 8px 13px;
            }

            .menu-wrapper {
                padding: 28px 12px 56px;
            }

            .section-heading {
                top: 64px;
            }

            .menu-item {
                gap: 12px;
                padding: 15px 14px;
            }

            .item-prices {
                max-width: 112px;
                flex-wrap: wrap;
                justify-content: flex-end;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .menu-item:hover,
            .allergen-btn:hover,
            .scroll-top:hover,
            .lang-btn:hover {
                transform: none;
            }
        }

        @media (min-width: 768px) {
            .hero {
                min-height: 420px;
                padding: calc(70px + env(safe-area-inset-top)) 32px 92px;
            }

            .menu-wrapper {
                padding-top: 42px;
            }

            .menu-item {
                padding: 18px 22px;
            }
        }

        @media print {
            body {
                background: white;
            }

            .section-heading {
                position: static;
                background: transparent;
            }

            .menu-item {
                box-shadow: none;
                background: white;
            }
        }
