        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Die Neutralen haben einen leichten warmen Stich. Sie stehen
               direkt neben Foodfotos; ein exakt neutrales Grau wirkt daneben
               kalt und blaustichig. */
            --black: #0b0908;
            --dark-gray: #1a1613;
            --medium-gray: #2a2521;
            --light-gray: #3e3833;
            --border-gray: #423b35;
            --text-gray: #bcb4ac;
            --white: #ffffff;
            --off-white: #f5f2ee;

            /* Markenfarbe, aus dem Logo. Vorher war --accent schlicht Weiss -
               die Seite hatte damit gar keine eigene Farbe, und das einzige
               Bunte war die Fehlerfarbe am Warenkorb.

               Regel: --brand markiert alles, was die Bestellung voranbringt
               (Composer, Ajouter au panier, Payer) und alles, was einen
               gewaehlten Zustand anzeigt (aktive Kategorie, gewaehlte
               Abholzeit, Anzahl im Warenkorb). Weiss bleibt fuer neutrale
               Flaechen (Panier, Itineraire, Retour).

               Kontrast: weisse Schrift auf --brand ist 5.2:1, besteht AA auch
               fuer kleine Schrift. Als Schriftfarbe auf dunklem Grund kaeme
               --brand nur auf 3.8:1 - dafuer gibt es --brand-text. */
            --brand: #c43d18;
            --brand-hover: #d94e27;
            --brand-text: #f2703f;
            --brand-soft: rgba(196, 61, 24, 0.16);
            --accent: var(--brand);

            --hover-gray: #38322d;
            --success: #22c55e;
            --danger: #ef4444;
            --focus-color: #60a5fa;
            --placeholder-bg: #221e1a;
        }

        /* Inter wird von fonts.css geladen (selbst gehostet).
           Frueher stand hier ein @import - der war hinter anderen Regeln
           ungueltig und wurde von jedem Browser ignoriert. */

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
            font-size: 1rem;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: transparent;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--white);
            color: var(--black);
            padding: 0.4rem 0.8rem;
            text-decoration: none;
            border-radius: 0.25rem;
            z-index: 10000;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .skip-link:focus {
            top: 6px;
        }

        button:focus,
        a:focus,
        input:focus,
        textarea:focus,
        .time-slot:focus {
            outline: 2px solid var(--focus-color);
            outline-offset: 1px;
        }

        ::-webkit-scrollbar {
            width: 0.5rem;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-gray);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--light-gray);
            border-radius: 0.25rem;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-gray);
        }

        header {
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(15px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-gray);
            height: 60px;
        }

        nav {
            max-width: 87.5rem;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1.5rem;
            height: 100%;
        }

        .logo {
            font-size: 0.95rem;
            font-weight: 800;
            letter-spacing: -0.02rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .logo-image {
            height: 2.8rem;
            width: auto;
            margin-right: 0.3rem;
            border-radius: 0.4rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-menu a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.025rem;
        }

        .nav-menu a:hover,
        .nav-menu a:focus {
            color: var(--white);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -0.2rem;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--white);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after,
        .nav-menu a:focus::after {
            width: 100%;
        }

        .nav-menu a[aria-current="page"] {
            color: var(--white);
        }

        .nav-menu a[aria-current="page"]::after {
            width: 100%;
            height: 2px;
            background: var(--brand);
        }

        .nav-actions {
            display: flex;
            gap: 0.6rem;
            align-items: center;
        }

        .social-icons {
            display: flex;
            gap: 0.6rem;
            align-items: center;
        }

        .social-icon {
            width: 1.8rem;
            height: 1.8rem;
            background: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 0.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover,
        .social-icon:focus {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(255,255,255,0.1);
        }

        .social-icon svg {
            width: 0.9rem;
            height: 0.9rem;
        }

        .cart-btn {
            background: var(--white);
            color: var(--black);
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.4rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.025rem;
        }

        .cart-btn:hover,
        .cart-btn:focus {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.1);
        }

        .cart-count {
            position: absolute;
            top: -0.3rem;
            right: -0.3rem;
            background: var(--brand);
            color: var(--white);
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.3rem;
            border-radius: 0.25rem;
            z-index: 1001;
        }

        .mobile-menu-btn:focus {
            background: var(--medium-gray);
            outline: none;
        }

        /* Das Hintergrundbild war eine Aufnahme mit fremdem Packaging - auf der
           Box stand gut lesbar eine andere Marke, auf Deutsch. hero.webp ist
           eine eigene Aufnahme (Berlin Crousty, 1600px) auf dunklem Holz.

           Der Abdunkler ist nicht mehr nur ein Verlauf von oben nach unten:
           der war in der Bildmitte am schwaechsten, und genau dort steht der
           Text. Die Ellipse legt den dunkelsten Punkt hinter den Textblock. */
        .hero {
            margin-top: 60px;
            min-height: 85vh;
            background:
                radial-gradient(ellipse 75% 60% at 50% 50%,
                    rgba(0,0,0,0.68) 0%,
                    rgba(0,0,0,0.42) 60%,
                    rgba(0,0,0,0.12) 100%),
                linear-gradient(to bottom,
                    rgba(0,0,0,0.55) 0%,
                    rgba(0,0,0,0.20) 40%,
                    rgba(0,0,0,0.70) 100%),
                center/cover no-repeat url('images/hero.webp');
            background-color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-container {
            max-width: 62.5rem;
            margin: 0 auto;
            padding: 1.5rem;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.2rem;
            letter-spacing: -0.15rem;
        }

        .hero-highlight {
            display: inline-block;
            position: relative;
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: -0.5rem;
            right: -0.5rem;
            height: 25%;
            background: rgba(255,255,255,0.1);
            z-index: -1;
            transform: skewY(-2deg);
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .btn-primary {
            background: var(--brand);
            color: var(--white);
            display: inline-block;
            text-decoration: none;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 0.4rem;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.025rem;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--brand-hover);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(196, 61, 24, 0.35);
        }

        .hero-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-wrapper {
            width: 25rem;
            height: 25rem;
            background: var(--medium-gray);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12rem;
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-1rem); }
        }

        .container {
            max-width: 87.5rem;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 0.8rem;
            letter-spacing: -0.1rem;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-gray);
        }

        .apropos-content {
            max-width: 42rem;
            margin: 0 auto;
        }

        .apropos-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }

        .apropos-content p:last-child {
            margin-bottom: 0;
        }

        .category-btn.active {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
        }

        .menu-item:hover .food-img {
            transform: scale(1.05);
        }

        .menu-item-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .boissons-section {
            padding: 4rem 1.5rem;
            background: var(--medium-gray);
        }

        .boissons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
            gap: 0.8rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        .boisson-item {
            background: var(--dark-gray);
            border: 1px solid var(--border-gray);
            border-radius: 0.6rem;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .boisson-item:hover,
        .boisson-item:focus-within {
            transform: translateY(-0.15rem);
            border-color: var(--white);
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
        }

        .boisson-image {
            height: 10rem;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .boisson-item:hover .drink-img {
            transform: scale(1.1);
        }

        .boisson-image::after {
            display: none;
        }

        .boisson-content {
            padding: 0.4rem;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .boisson-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.15rem;
            text-align: center;
        }

        .boisson-title {
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.1;
            text-align: center;
        }

        .boisson-price {
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--white);
        }

        .boisson-item .add-to-cart-btn {
            padding: 0.25rem 0.4rem;
            font-size: 0.7rem;
            border-radius: 0.3rem;
            font-weight: 900;
        }

        /* Unterseiten ohne Hero brauchen Abstand zur festen Kopfleiste (60px). */
        .page-main { margin-top: 60px; }

        .page-section { padding: 3rem 0 4rem; }

        /* Vorstellungstext im Bereich "A propos" */
        .about-text {
            max-width: 44rem;
            margin: 0 auto 2.5rem;
            text-align: center;
        }

        .about-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-gray);
            margin: 0 0 1.2rem;
        }

        .about-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-points li {
            border: 1px solid var(--border-gray);
            border-radius: 2rem;
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--white);
        }

        /* ============================================================
           Startseite: Kartenauszug, Ablauf in drei Schritten, fait maison
           ============================================================ */
        .home-section {
            padding: 4rem 1.5rem;
        }

        .home-section--raised {
            background: var(--dark-gray);
        }

        /* Gemeinsame Bild-Primitive fuer Startseite und Karte. */
        .media-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .media-img.is-missing { display: none; }

        .media-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a423b;
            background: var(--placeholder-bg);
        }

        .media-placeholder svg { width: 34%; max-width: 46px; height: auto; }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 40rem) {
            .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            background: var(--dark-gray);
            border: 1px solid var(--border-gray);
            border-radius: 0.85rem;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: border-color 0.2s, transform 0.2s;
        }

        .home-section--raised .feature-card { background: var(--medium-gray); }

        .feature-card:hover,
        .feature-card:focus-visible {
            border-color: var(--brand);
            transform: translateY(-3px);
        }

        /* Gleiches Bildformat wie die Produktkarten auf menu.html. */
        .feature-media {
            position: relative;
            width: 100%;
            aspect-ratio: 800 / 491;
            background: var(--placeholder-bg);
        }

        .feature-body {
            padding: 0.9rem 1rem 1.05rem;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            flex: 1;
        }

        .feature-name {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.25;
        }

        .feature-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.6rem;
            margin-top: auto;
        }

        .feature-price {
            font-size: 1.15rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .feature-action {
            font-size: 0.74rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--white);
            background: var(--brand);
            border-radius: 0.45rem;
            padding: 0.6rem 1rem;
            min-height: 2.5rem;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
        }

        .feature-card:hover .feature-action,
        .feature-card:focus-visible .feature-action {
            background: var(--brand-hover);
        }

        .section-more {
            text-align: center;
            margin: 2rem 0 0;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            min-height: 2.75rem;
            padding: 0.7rem 1.6rem;
            border: 1px solid var(--border-gray);
            border-radius: 0.5rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-ghost:hover,
        .btn-ghost:focus-visible {
            border-color: var(--white);
            background: var(--medium-gray);
        }

        /* Die Nummern stehen fuer eine echte Reihenfolge, deshalb <ol>. */
        .steps-grid {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 48rem) {
            .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }

        .step {
            display: grid;
            grid-template-columns: 2.5rem 1fr;
            column-gap: 1rem;
            row-gap: 0.35rem;
            align-items: start;
        }

        .step-num {
            grid-row: 1 / span 2;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: var(--brand);
            color: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
        }

        .step-heading {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            align-self: center;
        }

        .step p {
            margin: 0;
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .maison-lede {
            max-width: 44rem;
            margin: 0 auto 2.5rem;
            text-align: center;
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-gray);
        }

        .proof-grid {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1px;
            background: var(--border-gray);
            border: 1px solid var(--border-gray);
            border-radius: 0.85rem;
            overflow: hidden;
        }

        @media (min-width: 48rem) {
            .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }

        .proof {
            background: var(--dark-gray);
            padding: 1.6rem 1.4rem;
            text-align: center;
        }

        .proof-num {
            display: block;
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--brand-text);
            font-variant-numeric: tabular-nums;
            margin-bottom: 0.45rem;
        }

        .proof-label {
            display: block;
            font-size: 0.9rem;
            line-height: 1.4;
            color: var(--text-gray);
        }

        .location-section {
            padding: 4rem 1.5rem;
            background: var(--dark-gray);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        .contact-wrap {
            background: var(--dark-gray);
            padding: 1.2rem;
            display: grid;
            place-items: start;
        }

        .contact-card {
            width: min(24rem, 100%);
            background: var(--medium-gray);
            border: 1px solid var(--border-gray);
            border-radius: 0.8rem;
            box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.45);
            padding: 1rem;
            color: var(--white);
        }

        .contact-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0.7rem;
        }

        .row {
            display: grid;
            grid-template-columns: 1.3rem 1fr;
            align-items: center;
            column-gap: 0.6rem;
        }

        .icon {
            color: var(--white);
            opacity: 0.9;
            display: inline-flex;
        }

        .text {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .text strong {
            font-weight: 700;
            letter-spacing: 0.01rem;
        }

        .contact-muted {
            color: var(--text-gray);
        }

        .contact-link {
            color: var(--white);
            text-decoration: none;
        }

        .contact-link:hover,
        .contact-link:focus {
            text-decoration: underline;
            outline: none;
        }

        .contact-cta {
            margin-top: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 0.8rem;
            background: var(--white);
            color: var(--black);
            border-radius: 0.6rem;
            border: 1px solid var(--border-gray);
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.08s ease, box-shadow 0.2s ease;
            box-shadow: 0 0.1rem 0.5rem rgba(255,255,255,0.06);
            font-size: 0.85rem;
        }

        .contact-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 0.3rem 0.9rem rgba(255,255,255,0.12);
        }

        .contact-cta:active {
            transform: translateY(0);
        }

        .contact-cta:focus {
            outline: 2px solid var(--focus-color);
            outline-offset: 2px;
        }

        .cta-icon {
            display: inline-flex;
        }

        .map-container {
            border-radius: 0.8rem;
            overflow: hidden;
            border: 1px solid var(--border-gray);
            height: 20rem;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ============================================================
           Getraenkevorschlag

           Erscheint einmal pro Bestellung, wenn beim Oeffnen des Warenkorbs
           kein Getraenk drin ist. Der Banner oben ist das Kategoriebild der
           Getraenke - ein helles Foto bunter Dosen auf Holz, deshalb liegt
           ein kraeftiger Verlauf darunter, damit die weisse Schrift steht.
           ============================================================ */
        /* Ueber dem Toast (z-index 10000): sonst deckt eine noch sichtbare
           Meldung vom vorherigen Hinzufuegen auf dem Handy genau den
           Weiter-Knopf ab. */
        .modal.drink-prompt {
            /* Zwei Klassen, damit die Regel .modal { z-index: 9999 } schlaegt -
               die steht weiter unten in dieser Datei und gewaenne sonst bei
               gleicher Spezifitaet. */
            z-index: 10001;
        }

        .drink-prompt .drink-panel {
            background: var(--dark-gray);
            border: 1px solid var(--border-gray);
            width: 92%;
            max-width: 42rem;
            margin: 2.5rem auto;
            border-radius: 1rem;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: slideUp 0.3s;
        }

        .drink-banner {
            position: relative;
            aspect-ratio: 16 / 7;
            flex: none;
            background: var(--medium-gray);
            overflow: hidden;
        }

        /* Das Kategoriebild ist hochkant; der Ausschnitt nimmt die Bildmitte,
           dort stehen die Dosen. */
        .drink-banner-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 34%;
            display: block;
        }

        .drink-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(11, 9, 8, 0.96) 0%,
                rgba(11, 9, 8, 0.78) 32%,
                rgba(11, 9, 8, 0.22) 68%,
                rgba(11, 9, 8, 0.08) 100%);
        }

        .drink-banner-text {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 1.1rem 1.4rem 1.2rem;
            z-index: 1;
        }

        .drink-eyebrow {
            margin: 0 0 0.35rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--brand-text);
        }

        .drink-title {
            margin: 0;
            font-size: clamp(1.35rem, 4vw, 1.85rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -0.02em;
            color: var(--white);
        }

        .drink-title:focus { outline: none; }

        .drink-title:focus-visible {
            outline: 2px solid var(--focus-color);
            outline-offset: 3px;
        }

        .drink-body {
            position: relative;
            padding: 1.1rem 1.2rem 1.3rem;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;

            /* Weicher Auslauf am unteren Rand: zeigt, dass unter der
               Fussleiste noch Getraenke stehen. Der Verlauf scrollt mit dem
               Rahmen, nicht mit dem Inhalt. */
            -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 2.2rem), transparent 100%);
            mask-image: linear-gradient(to bottom, #000 calc(100% - 2.2rem), transparent 100%);
        }

        /* Ist alles sichtbar, braucht es keinen Auslauf. */
        .drink-body.is-complete {
            -webkit-mask-image: none;
            mask-image: none;
        }

        .drink-hint {
            margin: 0 0 1rem;
            font-size: 0.88rem;
            color: var(--text-gray);
            text-align: center;
        }

        .drink-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.7rem;
        }

        @media (min-width: 30rem) {
            .drink-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }

        @media (min-width: 42rem) {
            .drink-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
        }

        .drink-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            padding: 0 0 0.6rem;
            background: var(--medium-gray);
            border: 2px solid transparent;
            border-radius: 0.7rem;
            overflow: hidden;
            color: var(--white);
            font: inherit;
            cursor: pointer;
            transition: border-color 0.15s, transform 0.15s;
        }

        .drink-card:hover,
        .drink-card:focus-visible {
            border-color: var(--brand);
            transform: translateY(-2px);
        }

        .drink-card.is-added {
            border-color: var(--brand);
            background: var(--brand-soft);
        }

        .drink-media {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--placeholder-bg);
            display: block;
        }

        /* Zaehlt mit, wie oft das Getraenk schon im Korb liegt. */
        .drink-badge {
            position: absolute;
            top: 0.3rem;
            right: 0.3rem;
            min-width: 1.35rem;
            height: 1.35rem;
            padding: 0 0.3rem;
            border-radius: 999px;
            background: var(--brand);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
        }

        .drink-badge[hidden] { display: none; }

        .drink-name {
            font-size: 0.72rem;
            font-weight: 600;
            line-height: 1.2;
            text-align: center;
            padding: 0 0.3rem;
            min-height: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .drink-price {
            font-size: 0.8rem;
            font-weight: 800;
        }

        .drink-foot {
            flex: none;
            padding: 1rem 1.2rem calc(1rem + env(safe-area-inset-bottom, 0px));
            border-top: 1px solid var(--border-gray);
            background: var(--dark-gray);
        }

        /* Solange nichts gewaehlt ist, ist "Non merci" ein ruhiger Knopf.
           Sobald ein Getraenk drin liegt, wird daraus die Hauptaktion. */
        .drink-skip {
            width: 100%;
            min-height: 3rem;
            background: transparent;
            color: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }

        .drink-skip:hover,
        .drink-skip:focus-visible {
            background: var(--medium-gray);
            border-color: var(--white);
        }

        .drink-skip.is-filled {
            background: var(--brand);
            border-color: var(--brand);
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            font-weight: 800;
        }

        .drink-skip.is-filled:hover,
        .drink-skip.is-filled:focus-visible {
            background: var(--brand-hover);
            border-color: var(--brand-hover);
        }

        @media (max-width: 30rem) {
            .drink-prompt .drink-panel {
                width: 100%;
                max-width: none;
                margin: 0;
                min-height: 100%;
                border: none;
                border-radius: 0;
            }

            .drink-banner { aspect-ratio: 16 / 7; }
        }

        @media (prefers-reduced-motion: reduce) {
            .drink-card { transition: none; }
        }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            z-index: 9999;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: var(--dark-gray);
            border: 1px solid var(--border-gray);
            width: 90%;
            max-width: 35rem;
            margin: 2.5rem auto;
            border-radius: 1rem;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s;
        }

        .modal-content.wide {
            max-width: 45rem;
        }

        @keyframes slideUp {
            from {
                transform: translateY(2.5rem);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-gray);
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.025rem;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-body h3 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.6rem;
            color: var(--white);
        }

        .modal-body p {
            margin-bottom: 0.8rem;
            line-height: 1.6;
            color: var(--text-gray);
        }

        .modal-body ul {
            margin-bottom: 0.8rem;
            margin-left: 1.2rem;
            color: var(--text-gray);
        }

        .modal-body li {
            margin-bottom: 0.4rem;
            line-height: 1.5;
        }

        .cart-empty {
            text-align: center;
            padding: 2.5rem;
            color: var(--text-gray);
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem;
            background: var(--medium-gray);
            border-radius: 0.5rem;
            margin-bottom: 0.8rem;
            transition: all 0.3s;
        }

        .cart-item:hover,
        .cart-item:focus-within {
            background: var(--hover-gray);
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .cart-item-price {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-right: 0.8rem;
        }

        .quantity-btn {
            background: var(--light-gray);
            color: var(--white);
            border: none;
            width: 1.3rem;
            height: 1.3rem;
            border-radius: 0.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .quantity-btn:hover,
        .quantity-btn:focus {
            background: var(--white);
            color: var(--black);
        }

        .quantity-display {
            min-width: 1.5rem;
            text-align: center;
            font-weight: 600;
        }

        .remove-item {
            background: transparent;
            color: var(--text-gray);
            border: 1px solid var(--border-gray);
            padding: 0.4rem;
            border-radius: 0.3rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .remove-item:hover,
        .remove-item:focus {
            background: var(--danger);
            border-color: var(--danger);
            color: var(--white);
        }

        .cart-summary {
            margin-top: 1.5rem;
            padding: 1.2rem;
            background: var(--medium-gray);
            border-radius: 0.6rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.6rem;
            color: var(--text-gray);
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
            font-weight: 800;
            padding-top: 0.8rem;
            border-top: 1px solid var(--border-gray);
        }

        .payment-notice {
            background: var(--white);
            color: var(--black);
            padding: 0.8rem;
            border-radius: 0.4rem;
            margin: 1.2rem 0;
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .checkout-section {
            margin-top: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.6rem;
            background: var(--medium-gray);
            border: 1px solid var(--border-gray);
            border-radius: 0.4rem;
            color: var(--white);
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--focus-color);
            background: var(--hover-gray);
            box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.3);
        }

        .pickup-time {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .time-slot {
            background: var(--medium-gray);
            border: 1px solid var(--border-gray);
            padding: 0.6rem;
            border-radius: 0.4rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            tabindex: 0;
            font-size: 0.8rem;
        }

        .time-slot:hover,
        .time-slot:focus {
            background: var(--hover-gray);
        }

        .time-slot.selected {
            background: var(--brand);
            color: var(--white);
            border-color: var(--brand);
            font-weight: 700;
        }

        /* Nach Ladenschluss steht hier ein Satz statt der Zeiten. Er braucht
           die ganze Breite - das Raster wuerde ihn sonst in eine der vier
           Spalten quetschen und der Kunde liest eine Zeichenkolonne. */
        .pickup-time__closed {
            grid-column: 1 / -1;
            margin: 0;
            padding: 0.6rem;
            font-size: 0.85rem;
            line-height: 1.5;
            opacity: 0.8;
        }

        .modal-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border-gray);
            display: flex;
            gap: 0.8rem;
            justify-content: flex-end;
        }

        .btn-cancel {
            background: transparent;
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border: 1px solid var(--border-gray);
            border-radius: 0.4rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.85rem;
        }

        .btn-cancel:hover,
        .btn-cancel:focus {
            background: var(--medium-gray);
        }

        .btn-checkout {
            background: var(--brand);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 0.4rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.025rem;
            font-size: 0.85rem;
        }

        .btn-checkout:hover,
        .btn-checkout:focus {
            background: var(--brand-hover);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(196, 61, 24, 0.4);
        }

        footer {
            background: var(--black);
            border-top: 1px solid var(--border-gray);
            padding: 1.5rem 0;
        }

        .footer-content {
            max-width: 87.5rem;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-link:hover,
        .footer-link:focus {
            color: var(--white);
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .toast {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: var(--white);
            color: var(--black);
            padding: 0.8rem 1.2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            display: none;
            animation: slideInToast 0.3s;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
            z-index: 10000;
            font-size: 0.85rem;
        }

        @keyframes slideInToast {
            from {
                transform: translateX(20rem);
            }
            to {
                transform: translateX(0);
            }
        }

        .toast.show {
            display: block;
        }

        .toast.success {
            background: var(--success);
            color: var(--black);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width: 48rem) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 75%;
                height: 100vh;
                height: 100dvh;   /* Adressleiste des Browsers einrechnen */
                overflow-y: auto;
                background: var(--dark-gray);
                flex-direction: column;
                padding: 4rem 1.5rem 1.5rem;
                z-index: 1000;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .nav-menu.active {
                display: flex;
                transform: translateX(0);
            }

            .nav-menu li {
                margin-bottom: 1.2rem;
            }

            .nav-menu a {
                font-size: 1rem;
            }

            nav {
                padding: 0.5rem 1rem;
            }

            /* Der ausgeschriebene Name passt auf dem Handy nicht neben den
               Warenkorb-Knopf: Bildmarke bleibt, Schriftzug weicht. */
            .logo span {
                display: none;
            }

            .logo {
                font-size: 0.85rem;
                flex: 0 0 auto;
                min-width: 44px;
                min-height: 44px;
                justify-content: center;
            }

            .logo-image {
                height: 2.2rem;
                margin-right: 0;
            }

            nav {
                gap: 0.5rem;
            }

            /* Tippflaechen: mindestens 44px in beide Richtungen */
            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .cart-btn {
                padding: 0.75rem 1rem;
                font-size: 0.7rem;
                min-height: 44px;
            }

            .footer-link,
            .contact-link {
                display: inline-flex;
                align-items: center;
                min-height: 44px;
            }

            .social-icons {
                display: none;
            }

            .hero {
                margin-top: 60px;
                min-height: 70vh;
                padding: 1.5rem 1rem;
            }

            .hero-container {
                padding: 1rem;
            }

            .hero-features {
                flex-direction: column;
                gap: 0.8rem;
                align-items: center;
            }

            .btn-primary {
                padding: 1rem 1.8rem;
                font-size: 1rem;
            }

            .location-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .map-container {
                height: 250px;
            }

            .contact-card {
                width: 100%;
                margin: 0;
            }

            .contact-cta {
                padding: 0.8rem 1.2rem;
                font-size: 0.85rem;
            }

            .modal-content {
                width: 95%;
                margin: 15px auto;
                max-height: 95vh;
            }

            .modal-header {
                padding: 1.2rem 1rem;
            }

            .modal-body {
                padding: 1rem;
            }

            .modal-footer {
                padding: 1rem;
                flex-direction: column;
                gap: 0.4rem;
            }

            .btn-cancel,
            .btn-checkout {
                width: 100%;
                padding: 0.8rem;
                font-size: 0.9rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
                font-size: 0.9rem;
            }

            .pickup-time {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.6rem;
            }

            .time-slot {
                padding: 0.8rem;
                min-height: 40px;
                font-size: 0.85rem;
            }

            .toast {
                bottom: 15px;
                right: 15px;
                left: 15px;
                width: auto;
                text-align: center;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }
        }

        @media (max-width: 25rem) {
            .logo {
                font-size: 0.75rem;
            }

            .hero-container h1 {
                font-size: 1.8rem !important;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .contact-cta {
                transition: none;
            }
        }

        @media (prefers-contrast: high) {
            :root {
                --text-gray: #ffffff;
                --border-gray: #ffffff;
            }
        }

        /* Additional mobile optimizations */
        @media (hover: none) {
        }

        /* Touch-friendly adjustments */
        @media (pointer: coarse) {
            button, a, .time-slot {
                min-height: 40px;
                min-width: 40px;
            }

            .quantity-btn {
                min-height: 32px;
                min-width: 32px;
            }
        }
