        :root {
            --primary: #852B21;
            --background: #F1EAD9;
            --accent: #C69846;
            --text-dark: #1E3C2E;
            --text-light: #F1EAD9;
            --font-headings: 'Playfair Display', serif;
            --font-body: 'Lato', sans-serif;
            --header-height: 80px;
            --category-nav-height: 50px;
        }

        /* --- Cross-Browser Reset --- */
        *, *::before, *::after {
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            min-height: 100%;
        }

        html {
            font-size: 17px;
            scroll-behavior: smooth;
            background-color: var(--background);
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        #page-wrapper {
            width: 100%;
            overflow-x: clip;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-headings);
            color: var(--primary);
            font-weight: 700;
            margin: 0.25rem 0;
        }

        header {
            background-color: rgba(30, 60, 46, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: var(--header-height);
            display: flex;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--accent);
            transition: transform 0.3s ease-in-out;
        }

        .header-hidden header {
            transform: translateY(-100%);
        }

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

        .logo { height: 50px; }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        nav li { margin-left: 2rem; }

        nav a {
            color: var(--text-light);
            font-weight: bold;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav a:hover, nav a.active { color: var(--accent); }

        #hero {
            background-image: url('../images/main_desktop.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            color: var(--text-light);
            padding: var(--header-height) 1rem 0;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 800px;
        }

        #hero h1 {
            font-size: clamp(2.8rem, 10vw, 5rem);
            margin: 0;
            color: var(--text-light);
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            line-height: 1.1;
        }

        #hero p {
            font-size: clamp(1rem, 3vw, 1.4rem);
            font-family: var(--font-headings);
            color: var(--accent);
            margin: 0.5rem 0;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: var(--text-dark);
            padding: 0.8rem 2.2rem;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .cta-button:hover {
            background-color: #d8a64d;
            transform: translateY(-3px);
            color: var(--text-dark);
        }

        .uber-eats-img {
            height: 55px;
            width: auto;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .uber-eats-img:hover { transform: scale(1.05) translateY(-5px); }

        .hero-menu-link { margin-top: 1.2rem; }
        .hero-menu-link a {
            color: var(--text-light);
            text-decoration: underline;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: 0.3s;
        }
        .hero-menu-link a:hover { opacity: 1; color: var(--accent); }

        section { padding: 3rem 0; }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        #about p {
            max-width: 750px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
        }

        #menu { background-color: var(--text-dark); }
        #menu .section-title { color: var(--background); }

        .menu-intro-text {
            color: var(--background);
            text-align: center;
            max-width: 600px;
            margin: -0.8rem auto 2rem;
            font-size: 1rem;
            opacity: 0.8;
            line-height: 1.4;
            padding: 0 1rem;
        }

        @media (max-width: 768px) {
            .menu-intro-text {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
        }

        .category-nav {
            position: -webkit-sticky;
            position: sticky;
            top: var(--header-height);
            background: var(--text-dark);
            z-index: 900;
            height: var(--category-nav-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--accent);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            width: 100%;
            transition: top 0.3s ease-in-out;
        }

        .header-hidden .category-nav {
            top: 0;
        }

        .category-scroll {
            display: flex;
            overflow-x: auto;
            gap: 1.2rem;
            width: 100%;
            justify-content: center;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 1rem;
        }

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

        .category-item {
            white-space: nowrap;
            color: var(--text-light);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .category-item.active { background: var(--accent); color: var(--text-dark); }

        .menu-category-wrapper {
            text-align: center;
            scroll-margin-top: calc(var(--header-height) + var(--category-nav-height) + 30px);
        }

        .menu-category-title {
            font-family: var(--font-headings);
            color: var(--accent);
            font-size: 2.2rem;
            display: inline-block;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid var(--accent);
            margin-bottom: 2rem;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .menu-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1.2rem;
                padding: 0.5rem 1rem 1.5rem;
                margin: 0 -1rem; /* Pour que le scroll aille jusqu'au bord de l'écran */
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .menu-grid::-webkit-scrollbar {
                display: none;
            }

            .menu-item {
                flex: 0 0 85%; /* Chaque plat prend 85% de la largeur pour laisser voir le suivant */
                scroll-snap-align: center;
            }
        }

        .menu-item {
            position: relative;
            background: var(--background);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .badge-favorite, .badge-veggie {
            position: absolute;
            top: 12px; right: 12px;
            background: var(--accent);
            color: var(--text-dark);
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            z-index: 10;
        }

        .badge-veggie { background: #2e7d32; color: white; z-index: 9; }
        .badge-favorite + .badge-veggie { top: 48px; }

        .menu-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .menu-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.6s;
        }

        .menu-item:hover img { transform: scale(1.08); }

        .menu-item-content { padding: 1.5rem; }
        .menu-item h4 { font-size: 1.5rem; margin-bottom: 0.2rem; }

        .menu-item-price {
            font-family: var(--font-headings);
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .menu-item-price small { font-size: 0.7rem; vertical-align: super; }

        .menu-item-description {
            font-size: 0.85rem;
            color: #555;
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        .menu-footer {
            text-align: center;
            margin-top: 2rem;
        }

        .discreet-pdf-link {
            color: var(--background);
            text-decoration: underline;
            font-size: 0.95rem;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.5rem 1rem;
        }

        .discreet-pdf-link:hover {
            opacity: 1;
            color: var(--accent);
        }

        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 3rem 0;
            text-align: center;
        }

        footer .section-title { color: var(--background); margin-bottom: 1rem; }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-section h4 { color: var(--accent); font-size: 1.4rem; margin-bottom: 1rem; }

        .footer-bottom {
            margin-top: 2rem;
            border-top: 1px solid var(--accent);
            padding-top: 1.5rem;
        }

        .sticky-cta {
            position: fixed;
            bottom: 25px; right: 25px;
            z-index: 2000;
            opacity: 0; visibility: hidden;
            transition: 0.4s;
            transform: translateY(10px);
        }

        .sticky-cta.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .sticky-cta img { height: 50px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3)); }

        .trust-badge {
            font-size: 0.8rem;
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 1rem;
            font-weight: bold;
        }

        .opening-announcement {
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--accent);
            border-radius: 10px;
            padding: 1.2rem;
            margin: 1.2rem auto 0;
            max-width: 650px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .opening-announcement h3 { color: var(--accent); font-size: 1.5rem; }
        .opening-announcement p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 0.5rem; }
        .opening-announcement .offer-details { font-weight: bold; color: var(--accent); }

        .chili-icon { font-size: 1rem; margin-left: 8px; vertical-align: middle; }
        .chili-note { font-weight: bold; color: var(--accent) !important; margin-top: 0.5rem !important; }

        @media (max-width: 768px) {
            :root { --header-height: 75px; }
            header .container {
                padding: 0 1.5rem;
                width: 100%;
                max-width: 100%;
            }
            .logo { height: 42px; }
            nav li { margin-left: 1.2rem; }
            nav a { font-size: 0.85rem; letter-spacing: 0.5px; }
            #hero h1 { font-size: 2.5rem; }
            .category-scroll { justify-content: center; }
            .sticky-cta {
                bottom: 0; left: 0; right: 0;
                background: rgba(30, 60, 46, 0.95);
                padding: 10px;
                border-top: 1px solid var(--accent);
                width: 100%;
                border-radius: 0;
                transform: none;
            }
            .sticky-cta.visible {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .sticky-cta img { height: 35px; }

            /* Overrides for smaller dish cards on mobile */
            .menu-item img {
                height: 180px;
            }

            .menu-item-content {
                padding: 1rem;
            }

            .menu-item h4 {
                font-size: 1.25rem;
            }

            .menu-item-price {
                margin-bottom: 0.4rem;
            }

            .menu-item-description {
                line-height: 1.3;
                margin-top: 0.3rem;
            }
        }
