/*
 * Soul Food – Just Yummy
 * Jamaikanisches & African American Catering · Hamburg
 * ─────────────────────────────────────────────
 * LIGHT PREMIUM THEME · Warm · Modern · Professionell
 * Farben: Rot #E8221A · Grün #8DC63F · Gold #F5A800
 */

/* ════════════════════════════════════════════
   RESET & VARIABLES
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* ── Brand Colors ── */
    --red:          #E8221A;
    --red-dark:     #B81810;
    --red-light:    #FF4438;
    --green:        #8DC63F;
    --green-dark:   #5F8C1F;
    --gold:         #F5A800;
    --gold-dark:    #C88600;
    --orange:       #E8621A;

    /* ── Light Backgrounds ── */
    --bg:           #FFFCF8;
    --bg2:          #FFF7EE;
    --bg3:          #FFF0DC;
    --bg-warm:      #FEF3E8;
    --surface:      #FFFFFF;
    --surface2:     #FDF8F2;
    --surface3:     #FAF3EA;

    /* ── Text ── */
    --text:         #1C0E04;
    --text2:        #3A1A08;
    --text3:        #6B3A20;
    --muted:        #9A7060;
    --dim:          #C4A090;

    /* ── Borders ── */
    --border:       rgba(232,34,26,0.10);
    --border2:      rgba(232,34,26,0.18);
    --border-warm:  rgba(245,168,0,0.20);

    /* ── Gradients ── */
    --grad-red:     linear-gradient(135deg, #E8221A 0%, #C01815 100%);
    --grad-fire:    linear-gradient(135deg, #E8221A 0%, #E8621A 55%, #F5A800 100%);
    --grad-green:   linear-gradient(135deg, #8DC63F 0%, #5F8C1F 100%);
    --grad-gold:    linear-gradient(135deg, #F5A800 0%, #E8621A 100%);
    --grad-warm:    linear-gradient(160deg, #FFFCF8 0%, #FFF0DC 100%);
    --grad-hero:    linear-gradient(170deg, rgba(26,10,4,0.82) 0%, rgba(26,10,4,0.50) 60%, rgba(26,10,4,0.15) 100%);

    /* ── Shadows ── */
    --sh-xs:        0 1px 4px rgba(0,0,0,0.06);
    --sh-sm:        0 2px 12px rgba(0,0,0,0.08);
    --sh:           0 6px 28px rgba(0,0,0,0.10);
    --sh-lg:        0 16px 56px rgba(0,0,0,0.12);
    --sh-red:       0 6px 24px rgba(232,34,26,0.28);
    --sh-gold:      0 6px 24px rgba(245,168,0,0.28);
    --sh-card:      0 3px 18px rgba(26,10,4,0.08);

    /* ── Radii ── */
    --r-xs:         4px;
    --r-sm:         8px;
    --r:            14px;
    --r-lg:         20px;
    --r-xl:         30px;
    --r-full:       9999px;

    /* ── Transition ── */
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:            0.3s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(232,34,26,0.08);
    border: 1px solid rgba(232,34,26,0.15);
    border-radius: var(--r-full);
    padding: .35rem .85rem;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: .02em;
    color: var(--text);
    margin-bottom: .8rem;
}
.section-sub {
    color: var(--text3);
    font-size: 1rem;
    max-width: 600px;
}
.section-sub a { color: var(--red); font-weight: 600; }
.section-sub a:hover { text-decoration: underline; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.accent-red   { color: var(--red); }
.accent-green { color: var(--green); }
.accent-gold  { color: var(--gold); }

/* ════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */
.topbar {
    background: var(--red);
    color: #fff;
    font-size: .78rem;
    font-weight: 500;
    padding: .5rem 0;
    position: relative;
    z-index: 200;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.topbar a { color: #fff; opacity: .9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar i { font-size: .75rem; }
.sep { opacity: .5; }

/* ════════════════════════════════════════════
   HEADER & NAV
════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 150;
    background: var(--surface);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--sh); }

.nav {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 1.5rem;
}

/* ── Logo in Navbar ── */
.nav-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nav-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: transform var(--t);
}
.nav-logo:hover { transform: scale(1.04); }

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    padding: .45rem .85rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text2);
    border-radius: var(--r-sm);
    letter-spacing: .02em;
    transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
    background: rgba(232,34,26,0.07);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-shrink: 0;
}

.btn-wa-nav {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #25D366;
    color: #fff !important;
    padding: .5rem 1.1rem;
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 3px 12px rgba(37,211,102,0.28);
    transition: transform var(--t), box-shadow var(--t);
}
.btn-wa-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.40);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .4rem;
    width: 36px;
}
.burger span {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t);
    display: block;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════
   MOBILE NAV
════════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background: var(--surface);
    z-index: 400;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s var(--ease);
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
    align-self: flex-end;
    font-size: 1.4rem;
    color: var(--text);
    padding: .3rem;
    transition: color var(--t);
}
.mobile-nav-close:hover { color: var(--red); }
.mobile-logo { text-align: center; }
.mobile-logo img { height: 70px; width: auto; margin: 0 auto; object-fit: contain; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .3rem; }
.mobile-nav ul a {
    display: block;
    padding: .85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
}
.mobile-nav ul a:hover { color: var(--red); background: rgba(232,34,26,0.06); }
.btn-wa-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    padding: 1rem;
    border-radius: var(--r);
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 390;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.04);
    animation: none;
}
.hero-slide.active {
    opacity: 1;
    animation: heroZoom 6s ease-in-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
}

/* Slideshow Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .45rem;
    z-index: 3;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.40);
    border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all .3s ease;
}
.hero-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 1.5rem 4rem;
}
.hero-inner {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* ── LOGO WEISS-FIX (mix-blend-mode) ── */
.logo-blend {
    mix-blend-mode: multiply;
}
.about-logo-float {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: .4rem !important;
}
.about-logo-float img {
    mix-blend-mode: multiply;
}
.contact-logo img {
    mix-blend-mode: multiply;
}
.footer-logo {
    mix-blend-mode: multiply;
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
    display: inline-block;
    background: transparent;
    backdrop-filter: none;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--r-lg);
    padding: 1rem 1.4rem;
    max-width: 260px;
}
.hero-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.30));
}

.hero-tag {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.0;
    color: #fff;
    letter-spacing: .02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.40);
}
.hero-headline .accent-green { color: var(--green); text-shadow: 0 2px 15px rgba(141,198,63,0.40); }
.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.90);
    line-height: 1.7;
}
.hero-sub strong { color: #fff; }
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    padding: .35rem .8rem;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    padding-top: .4rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--grad-fire);
    color: #fff;
    padding: .85rem 1.8rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    box-shadow: var(--sh-red);
    transition: transform var(--t), box-shadow var(--t);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,34,26,0.42); }
.btn-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    padding: .85rem 1.8rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: transform var(--t), box-shadow var(--t);
}
.btn-wa-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.50); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
    font-size: 1rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-wrap {
    background: var(--red);
    padding: .7rem 0;
    overflow: hidden;
    border-bottom: 3px solid var(--red-dark);
}
.ticker {
    display: flex;
    gap: 2.5rem;
    animation: ticker-scroll 32s linear infinite;
    width: max-content;
}
.ticker span {
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   INFO STRIP
════════════════════════════════════════════ */
.info-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 2.2rem 0;
    box-shadow: var(--sh-xs);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: var(--r-sm);
    background: rgba(232,34,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
}
.info-icon.wa  { background: rgba(37,211,102,0.10); color: #25D366; }
.info-icon.ig  { background: rgba(193,53,132,0.10); color: #C13584; }
.info-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.info-text strong {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
}
.info-text span {
    font-size: .8rem;
    color: var(--text3);
}
.info-text a {
    font-size: .8rem;
    color: var(--red);
    font-weight: 600;
}
.info-text a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════
   SPEISEKARTE – TAB SYSTEM
════════════════════════════════════════════ */
.menu-section {
    padding: 5rem 0;
    background: var(--bg2);
}

/* ── Tab Navigation ── */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: .6rem;
    border-radius: var(--r-lg);
    margin-bottom: 3rem;
    box-shadow: var(--sh-xs);
}
.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.2rem;
    border-radius: var(--r);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text3);
    background: transparent;
    transition: all var(--t);
    letter-spacing: .02em;
    white-space: nowrap;
}
.tab-btn:hover { color: var(--red); background: rgba(232,34,26,0.06); }
.tab-btn.active {
    background: var(--grad-fire);
    color: #fff;
    box-shadow: var(--sh-red);
}

/* ── Tab Panels ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Menu Cards Grid ── */
.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.menu-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-card);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }

.menu-card-badge {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: var(--grad-fire);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: var(--r-full);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(232,34,26,0.30);
}
.premium-badge { background: var(--grad-gold); }
.veggie-badge  { background: var(--grad-green); }

.menu-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--bg3);
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body {
    padding: 1.2rem;
    position: relative;
}
.menu-num {
    position: absolute;
    top: -14px;
    right: 1.2rem;
    width: 28px;
    height: 28px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(232,34,26,0.30);
}
.menu-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
    line-height: 1.3;
}
.menu-card-body p {
    font-size: .83rem;
    color: var(--text3);
    line-height: 1.5;
    margin-bottom: .8rem;
}
.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    flex-wrap: wrap;
}
.menu-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--red);
}
.badge-v {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: .1rem .4rem;
    border-radius: 3px;
    vertical-align: middle;
}
.menu-badge-shrimp {
    font-size: .72rem;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ── Featured Card ── */
.menu-card.featured {
    border-color: rgba(232,34,26,0.25);
    box-shadow: 0 4px 24px rgba(232,34,26,0.12);
}
.menu-card.veggie-card { border-color: rgba(141,198,63,0.25); }
.menu-card.premium { border-color: rgba(245,168,0,0.30); }

/* ── Dessert Cards ── */
.menu-card.dessert-card { border-color: var(--border-warm); }
.menu-card-img.dessert-img {
    height: 140px;
    background: linear-gradient(135deg, #FFF0DC, #FFE4C0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dessert-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.avail-note {
    font-size: .72rem;
    color: var(--muted);
    font-style: italic;
}

/* ── Kinder Strip ── */
.kinder-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #FFF8E8, #FFF0C8);
    border: 2px solid var(--gold);
    border-radius: var(--r-lg);
    padding: 1.2rem 1.8rem;
    flex-wrap: wrap;
    box-shadow: var(--sh-gold);
    margin-top: 2rem;
}
.kinder-emoji { font-size: 2rem; }
.kinder-strip > div {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.kinder-strip strong { font-size: 1rem; font-weight: 700; color: var(--text); }
.kinder-strip span   { font-size: .85rem; color: var(--text3); }
.kinder-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-dark);
}
.btn-order-small {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #25D366;
    color: #fff;
    padding: .6rem 1.2rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .85rem;
}
.btn-order-small:hover { opacity: .88; }

/* ════════════════════════════════════════════
   SIDES LIST (Tab)
════════════════════════════════════════════ */
.sides-list {
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--sh-card);
    margin-bottom: 2rem;
}
.side-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--t);
}
.side-item:last-child { border-bottom: none; }
.side-item:hover { background: var(--bg2); }
.side-item.muted { opacity: .7; }
.side-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(232,34,26,0.09);
    color: var(--red);
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.side-info strong { font-size: .95rem; font-weight: 700; color: var(--text); }
.side-info span   { font-size: .82rem; color: var(--text3); }
.side-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--red);
    white-space: nowrap;
}
.on-request { color: var(--muted); font-style: italic; }

.sides-img-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.sides-img-item {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    height: 200px;
    box-shadow: var(--sh-sm);
}
.sides-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.sides-img-item:hover img { transform: scale(1.05); }
.sides-img-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: .6rem .8rem;
}

/* ════════════════════════════════════════════
   DRINKS TAB
════════════════════════════════════════════ */
.drinks-tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.drinks-col {
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--sh-card);
    display: flex;
    flex-direction: column;
}
.drinks-col.alcohol { border-color: rgba(245,168,0,0.30); }
.drinks-col.spice   { border-color: rgba(232,34,26,0.20); }

.drinks-col-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .6rem;
    background: var(--surface2);
}
.drinks-col-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    border-radius: var(--r-sm);
}
.drinks-col-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.drinks-col-header h3 i { color: var(--red); }
.drinks-subtitle {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.drinks-list {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}
.drinks-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .55rem .7rem;
    border-radius: var(--r-sm);
    background: var(--bg2);
    font-size: .88rem;
    font-weight: 500;
    color: var(--text2);
}
.drinks-row span:last-child { font-weight: 800; color: var(--red); white-space: nowrap; }
.drinks-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 700;
    margin-right: .4rem;
}
.drinks-spice-note {
    padding: .8rem 1.5rem 1rem;
    font-size: .8rem;
    color: var(--text3);
    font-style: italic;
    line-height: 1.5;
}

/* ════════════════════════════════════════════
   CATERING PACKAGES (Tab)
════════════════════════════════════════════ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.package-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--sh-card);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.package-card.popular {
    border-color: var(--red);
    box-shadow: 0 6px 32px rgba(232,34,26,0.15);
    transform: scale(1.02);
}
.package-card.popular:hover { transform: scale(1.02) translateY(-4px); }

.package-popular-badge {
    background: var(--grad-fire);
    color: #fff;
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .45rem;
}
.package-header {
    padding: 1.8rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
.package-header.basic   { background: linear-gradient(135deg, #F8F4EE, #EEE8DC); }
.package-header.classic { background: linear-gradient(135deg, #FFF0E0, #FFE0C0); }
.package-header.premium { background: linear-gradient(135deg, #FFF8E0, #FFE8A0); }
.package-icon { font-size: 2.5rem; }
.package-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .06em;
    color: var(--text);
}
.package-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1.1;
}
.package-price span {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text3);
}
.package-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.package-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.4;
}
.package-list li i { color: var(--green); font-size: .75rem; margin-top: .2rem; flex-shrink: 0; }
.package-list li.muted-item { opacity: .45; }
.package-list li.muted-item i { color: var(--muted); }
.package-min {
    text-align: center;
    font-size: .78rem;
    color: var(--muted);
    padding: 0 1.5rem .8rem;
}
.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    margin: 0 1.5rem 1.5rem;
    padding: .85rem;
    border-radius: var(--r);
    font-weight: 700;
    font-size: .9rem;
    transition: transform var(--t), opacity var(--t);
}
.btn-package:hover { opacity: .9; transform: translateY(-2px); }

/* ════════════════════════════════════════════
   ÜBER UNS
════════════════════════════════════════════ */
.about {
    padding: 5rem 0;
    background: var(--surface);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-images {
    position: relative;
    height: 520px;
}
.about-img-main {
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-overlay {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    height: 260px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh);
    border: 4px solid var(--surface);
}
.about-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Logo im "Über uns" Bild */
.about-logo-float {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--r);
    padding: .6rem .8rem;
    box-shadow: var(--sh-sm);
    z-index: 2;
    max-width: 130px;
}
.about-logo-float img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-text { display: flex; flex-direction: column; gap: 1.2rem; }
.about-lead {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text2);
    line-height: 1.6;
}
.about-body {
    font-size: .95rem;
    color: var(--text3);
    line-height: 1.75;
}
.about-facts {
    display: flex;
    gap: 1.5rem;
    background: var(--bg2);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.fact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
}
.fact-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    letter-spacing: .04em;
    line-height: 1;
}
.fact-label {
    font-size: .78rem;
    color: var(--text3);
    line-height: 1.4;
}
.about-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-ig {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.2rem;
    border-radius: var(--r-full);
    font-size: .85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220,39,67,0.30);
    transition: transform var(--t), box-shadow var(--t);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,0.45); }
.btn-ig.secondary { background: linear-gradient(135deg, #cc2366, #bc1888, #8a3ab9); }

/* ════════════════════════════════════════════
   CATERING SECTION
════════════════════════════════════════════ */
.catering-section {
    padding: 5rem 0;
    background: var(--bg2);
}
.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.catering-visual { display: flex; flex-direction: column; gap: 1rem; }
.catering-img-main {
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--sh-lg);
}
.catering-img-main img { width: 100%; height: 100%; object-fit: cover; }
.catering-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.catering-img-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    transition: transform var(--t);
}
.catering-img-grid img:hover { transform: scale(1.04); }

.catering-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: .04em;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.catering-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.catering-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: box-shadow var(--t);
}
.catering-feature:hover { box-shadow: var(--sh-sm); }
.cf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(232,34,26,0.08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1rem;
}
.catering-feature strong { display: block; font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: .15rem; }
.catering-feature span { font-size: .83rem; color: var(--text3); }
.btn-catering-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: transform var(--t), box-shadow var(--t);
    margin-bottom: .8rem;
}
.btn-catering-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }
.catering-phone { font-size: .88rem; color: var(--text3); }
.catering-phone a { color: var(--red); font-weight: 700; }

/* ════════════════════════════════════════════
   GALERIE
════════════════════════════════════════════ */
.gallery-section {
    padding: 5rem 0;
    background: var(--surface);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--sh-sm);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.68) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
    opacity: 0;
    transition: opacity var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* ════════════════════════════════════════════
   FLYER SECTION (Standorte)
════════════════════════════════════════════ */
.flyer-section {
    padding: 5rem 0;
    background: var(--bg2);
}
.flyer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.flyer-card {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh);
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
}
.flyer-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.flyer-img-wrap {
    overflow: hidden;
    height: 500px;
    background: var(--bg3);
}
.flyer-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.flyer-info {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.flyer-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.flyer-info h3 i { color: var(--red); }
.flyer-info p { font-size: .88rem; color: var(--text3); display: flex; align-items: center; gap: .5rem; }
.flyer-info p i { color: var(--red); width: 16px; }
.btn-flyer-order {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    padding: .7rem 1.4rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .88rem;
    margin-top: .5rem;
    align-self: flex-start;
    transition: transform var(--t);
}
.btn-flyer-order:hover { transform: translateY(-2px); }

/* Vorbestellung Hinweis */
.preorder-note {
    background: linear-gradient(135deg, #FFF3CD, #FFEAA0);
    border: 1.5px solid var(--gold);
    border-radius: var(--r);
    padding: .5rem .75rem !important;
    color: #7A5500 !important;
    font-size: .85rem !important;
    line-height: 1.5;
}
.preorder-note i { color: var(--gold) !important; }

/* Sorrel Drink Row */
.sorrel-row {
    background: linear-gradient(135deg, #FFF0F5, #FFE0EC);
    border: 1px solid #E8A0C0;
    border-radius: var(--r-sm);
}

/* ════════════════════════════════════════════
   BRAND LOGOS SHOWCASE
════════════════════════════════════════════ */
.brand-section {
    padding: 5rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    text-align: center;
}
.brand-logo-frame {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: var(--sh-card);
    transition: transform var(--t), box-shadow var(--t);
    overflow: hidden;
}
.brand-logo-frame:hover { transform: scale(1.05); box-shadow: var(--sh); }
.brand-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.red-frame    { background: linear-gradient(135deg, #FFF0EE, #FFE0DC); border: 1px solid rgba(232,34,26,0.15); }
.green-frame  { background: linear-gradient(135deg, #F0F8E0, #E0F0C0); border: 1px solid rgba(141,198,63,0.20); }
.yellow-frame { background: linear-gradient(135deg, #FFF8E0, #FFF0B0); border: 1px solid rgba(245,168,0,0.20); }
.gp-frame     { background: linear-gradient(135deg, #F0F8E8, #E0F0D0); border: 1px solid rgba(141,198,63,0.20); }
.mm-frame     { background: linear-gradient(135deg, #FFF8E8, #FFE8C0); border: 1px solid rgba(245,168,0,0.20); }
.spice-frame  { background: linear-gradient(135deg, #FFF0E8, #FFE0C0); border: 1px solid rgba(232,34,26,0.15); }

.brand-logo-item span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text3);
    letter-spacing: .04em;
}

/* ════════════════════════════════════════════
   KONTAKT
════════════════════════════════════════════ */
.contact {
    padding: 5rem 0;
    background: var(--bg2);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-lead {
    font-size: .98rem;
    color: var(--text3);
    line-height: 1.7;
    max-width: 400px;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .9rem 1rem;
    background: var(--surface);
    border-radius: var(--r);
    border: 1px solid var(--border);
}
.ci-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: var(--r-sm);
    background: rgba(232,34,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
}
.ci-icon.wa   { background: rgba(37,211,102,0.10); color: #25D366; }
.ci-icon.ig   { background: rgba(193,53,132,0.10); color: #C13584; }
.ci-icon.web  { background: rgba(141,198,63,0.10); color: var(--green); }
.ci-icon.time { background: rgba(245,168,0,0.10);  color: var(--gold-dark); }
.ci-icon.mail { background: rgba(232,34,26,0.10);  color: var(--red); }
.ci-text {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.ci-text span { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.ci-text a { font-size: .9rem; font-weight: 600; color: var(--text2); }
.ci-text a:hover { color: var(--red); }
.ci-text strong { font-size: .9rem; color: var(--text); }

/* Logo im Kontakt-Bereich */
.contact-logo { max-width: 180px; }
.contact-logo img { width: 100%; height: auto; object-fit: contain; }

/* Kontaktformular Channel-Switcher */
.contact-channel-choice {
    display: flex;
    gap: .6rem;
    margin-bottom: .5rem;
}
.channel-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.2rem;
    border-radius: var(--r-full);
    border: 2px solid var(--border2);
    background: var(--surface2);
    color: var(--text3);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .2s ease;
    font-family: inherit;
}
.channel-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(232,34,26,0.05);
}
.channel-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 2px 10px rgba(232,34,26,0.30);
}
.channel-btn.active[data-channel="whatsapp"] {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 2px 10px rgba(37,211,102,0.30);
}

/* ── Kontaktformular ── */
.contact-right {
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: var(--sh);
    border: 1px solid var(--border);
}
.contact-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .06em;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text2); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: .8rem 1rem;
    border: 1.5px solid var(--border2);
    border-radius: var(--r);
    font-size: .92rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--t), box-shadow var(--t);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(232,34,26,0.10);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: #25D366;
    color: #fff;
    padding: 1rem;
    border-radius: var(--r);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(37,211,102,0.30);
    transition: transform var(--t), box-shadow var(--t);
    border: none;
    cursor: pointer;
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.42); }
.form-note {
    margin-top: .8rem;
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.85);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    object-position: left;
    /* Filter für hellen Logo auf dunklem Footer */
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: .83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 260px;
}
.footer-social { display: flex; flex-direction: column; gap: .4rem; }
.footer-social a {
    font-size: .82rem;
    color: rgba(255,255,255,0.65);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color var(--t);
}
.footer-social a:hover { color: #fff; }

.footer-links h4,
.footer-contact-col h4,
.footer-logos-col h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links ul a {
    font-size: .88rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--t);
}
.footer-links ul a:hover { color: #fff; }

.footer-contact-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-col p {
    font-size: .85rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.5;
}
.footer-contact-col p i { color: var(--red); width: 14px; }
.footer-contact-col a { color: rgba(255,255,255,0.80); }
.footer-contact-col a:hover { color: #fff; }

.footer-drink-logos {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.footer-drink-logos img {
    height: 70px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: brightness(0.85) saturate(0.8);
    transition: filter var(--t);
}
.footer-drink-logos img:hover { filter: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 1.5rem;
    text-align: center;
}
.footer-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,0.40);
}

/* ════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    z-index: 300;
    transition: transform var(--t), box-shadow var(--t);
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: var(--text);
    font-size: .8rem;
    font-weight: 700;
    padding: .4rem .8rem;
    border-radius: var(--r-full);
    white-space: nowrap;
    box-shadow: var(--sh-sm);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--t), transform var(--t);
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999;
    display: none;
    cursor: zoom-out;
}
.lightbox-overlay.active { display: block; }
.lightbox-img-wrap {
    position: relative;
    z-index: 1001;
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--r);
    box-shadow: var(--sh-lg);
}
#lightbox-caption {
    color: rgba(255,255,255,0.80);
    font-size: .88rem;
    margin-top: .8rem;
    font-weight: 500;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    z-index: 1002;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--t);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 1.5rem; transform: translateY(-50%); }

/* ════════════════════════════════════════════
   RESPONSIVE – Tablet
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 380px; }
    .catering-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .packages-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .package-card.popular { transform: none; }
    .package-card.popular:hover { transform: translateY(-4px); }
    .brand-logos-grid { grid-template-columns: repeat(3, 1fr); }
    .drinks-tab-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .burger { display: flex; }
    .nav-logo { height: 44px; }

    /* Topbar */
    .topbar-right { display: none; }

    /* Sections */
    .menu-section,
    .about,
    .catering-section,
    .gallery-section,
    .flyer-section,
    .brand-section,
    .contact { padding: 3.5rem 0; }

    /* Tabs */
    .menu-tabs { gap: .3rem; padding: .5rem; }
    .tab-btn { padding: .5rem .8rem; font-size: .75rem; }
    .tab-btn i { display: none; }

    /* Menu Cards */
    .menu-cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .menu-card-img { height: 160px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .gallery-item.wide { grid-column: span 2; }

    /* Flyer */
    .flyer-grid { grid-template-columns: 1fr; }
    .flyer-img-wrap { height: 360px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; }

    /* Brand */
    .brand-logos-grid { grid-template-columns: repeat(2, 1fr); }

    /* Info */
    .info-grid { grid-template-columns: 1fr 1fr; }

    /* About */
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 320px; }
    .about-img-overlay { right: 0; bottom: -1rem; width: 52%; height: 180px; }

    /* Sides Imgs */
    .sides-img-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .menu-cards-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .info-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
    .brand-logos-grid { grid-template-columns: repeat(2, 1fr); }
    .kinder-strip { flex-direction: column; align-items: flex-start; gap: .8rem; }
    .contact-right { padding: 1.5rem; }
    .menu-tabs { gap: .2rem; }
    .tab-btn { padding: .4rem .6rem; font-size: .72rem; }
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════
   SIGNATURE DISHES SHOWCASE SECTION
════════════════════════════════════════════ */
.signature-section {
    padding: 5rem 0 4rem;
    background: var(--bg);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.sig-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.sig-card.sig-large {
    height: 480px;
}

.sig-card.sig-medium {
    height: 320px;
}

.sig-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.sig-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.sig-card:hover .sig-img-wrap img {
    transform: scale(1.06);
}

.sig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.90) 0%,
        rgba(0,0,0,0.50) 40%,
        rgba(0,0,0,0.10) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    transition: background 0.3s ease;
}

.sig-card:hover .sig-overlay {
    background: linear-gradient(
        to top,
        rgba(232,34,26,0.85) 0%,
        rgba(0,0,0,0.60) 40%,
        rgba(0,0,0,0.15) 70%,
        transparent 100%
    );
}

.sig-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border-radius: var(--r-full);
    margin-bottom: .6rem;
    width: fit-content;
}

.sig-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: .06em;
    color: #fff;
    line-height: 1;
    margin-bottom: .4rem;
}

.sig-card.sig-medium .sig-name {
    font-size: 1.55rem;
}

.sig-tagline {
    font-size: .8rem;
    color: rgba(255,255,255,0.80);
    font-style: italic;
    margin-bottom: .8rem;
    line-height: 1.3;
}

.sig-desc {
    font-size: .82rem;
    color: rgba(255,255,255,0.90);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sig-order-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #25D366;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: .55rem 1.1rem;
    border-radius: var(--r-full);
    text-decoration: none;
    width: fit-content;
    transition: background var(--t), transform var(--t);
}

.sig-order-btn:hover {
    background: #1DA851;
    transform: translateY(-1px);
}

.sig-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   DRINKS VISUAL GRID (in Drinks Tab)
════════════════════════════════════════════ */
.drinks-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.drink-visual-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    background: #111;
    border: 1px solid var(--border);
}

.drink-visual-card.cocktail {
    border: 2px solid rgba(245,168,0,0.35);
}

.drink-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.drink-visual-card:hover img {
    transform: scale(1.07);
}

.drink-visual-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: .8rem 1rem .7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.drink-visual-info h4 {
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
}

.drink-visual-info span {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: .5rem;
}

.drink-visual-card.cocktail .drink-visual-info h4 {
    color: var(--gold);
}

/* ════════════════════════════════════════════
   GALLERY FILTER TABS
════════════════════════════════════════════ */
.gallery-filter-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.gf-tab {
    padding: .5rem 1.2rem;
    border: 2px solid var(--border2);
    background: var(--surface);
    color: var(--text3);
    font-size: .82rem;
    font-weight: 600;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--t);
    letter-spacing: .04em;
}

.gf-tab:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(232,34,26,0.05);
}

.gf-tab.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* ════════════════════════════════════════════
   RESPONSIVE – SIGNATURE & DRINKS GRID
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sig-card.sig-large {
        height: 400px;
    }
    .drinks-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .signature-grid {
        grid-template-columns: 1fr 1fr;
        gap: .8rem;
    }
    .sig-card.sig-large {
        height: 320px;
        grid-column: span 1;
    }
    .sig-card.sig-medium {
        height: 240px;
    }
    .sig-name { font-size: 1.5rem; }
    .sig-card.sig-medium .sig-name { font-size: 1.25rem; }
    .sig-overlay { padding: 1.2rem; }
    .sig-desc { display: none; }

    .drinks-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .drink-visual-card {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .signature-grid {
        grid-template-columns: 1fr;
    }
    .sig-card.sig-large,
    .sig-card.sig-medium {
        height: 260px;
    }

    .drinks-visual-grid {
        grid-template-columns: 1fr 1fr;
    }
    .drink-visual-card {
        height: 150px;
    }

    .gallery-filter-tabs {
        gap: .3rem;
    }
    .gf-tab {
        padding: .4rem .8rem;
        font-size: .75rem;
    }
}
.flyer-preview-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--surface);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--sh);
    margin-bottom: 2.5rem;
}
.flyer-preview-img {
    height: 380px;
    overflow: hidden;
}
.flyer-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s var(--ease);
}
.flyer-preview-row:hover .flyer-preview-img img { transform: scale(1.03); }
.flyer-preview-intro {
    padding: 2rem 2.5rem 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.flyer-preview-intro h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: .06em;
    color: var(--text);
    line-height: 1.2;
}
.flyer-preview-intro p {
    font-size: .95rem;
    color: var(--text3);
    line-height: 1.7;
}
.flyer-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: .5rem;
}
.flyer-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text2);
    background: var(--bg2);
    border: 1px solid var(--border2);
    padding: .4rem .85rem;
    border-radius: var(--r-full);
    transition: background var(--t), color var(--t);
}
.flyer-contact-row a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.flyer-contact-row a i { color: var(--red); font-size: .78rem; }
.flyer-contact-row a:hover i { color: #fff; }

/* ── Package Sub-line ── */
.package-sub {
    font-size: .8rem;
    color: var(--muted);
    margin-top: .2rem;
}

/* ════════════════════════════════════════════
   VEGAN STRIP
════════════════════════════════════════════ */
.vegan-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #F0F8E8, #E4F4D0);
    border: 2px solid rgba(141,198,63,0.35);
    border-radius: var(--r-lg);
    padding: 1.2rem 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 16px rgba(141,198,63,0.15);
}
.vegan-strip-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
}
.vegan-strip-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
}
.badge-v.large {
    width: 32px;
    height: 32px;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.vegan-items {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    flex: 1;
}
.vegan-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--green-dark);
    background: rgba(255,255,255,0.70);
    padding: .45rem .9rem;
    border-radius: var(--r-full);
    border: 1px solid rgba(141,198,63,0.30);
}
.vegan-item i { color: var(--green); }

/* Drinks Emoji tag */
.drinks-price-tag { font-size: 1.1rem; }

    .flyer-preview-row { grid-template-columns: 1fr; }
    .flyer-preview-img { height: 260px; }
    .flyer-preview-intro { padding: 1.5rem; }
    .vegan-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ════════════════════════════════════════════
   KUNDENBEWERTUNGEN
════════════════════════════════════════════ */
.reviews-section {
    background: var(--bg);
    padding: 5.5rem 0;
}

/* Gesamt-Rating Banner */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0 3rem;
    box-shadow: var(--sh);
    flex-wrap: wrap;
}
.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}
.score-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    line-height: 1;
    color: var(--red);
    letter-spacing: .02em;
}
.score-stars {
    display: flex;
    gap: .2rem;
    color: var(--gold);
    font-size: 1.3rem;
}
.score-count {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
}
.reviews-platforms {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.review-platform-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1rem 1.5rem;
    min-width: 110px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.review-platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh);
}
.review-platform-badge i {
    font-size: 1.5rem;
    color: var(--red);
}
.review-platform-badge i.fa-google   { color: #4285F4; }
.review-platform-badge i.fa-instagram { color: #C13584; }
.review-platform-badge i.fa-whatsapp  { color: #25D366; }
.review-platform-badge span {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.review-platform-badge strong {
    font-size: .88rem;
    color: var(--text);
    font-weight: 700;
}

/* Bewertungs-Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    box-shadow: var(--sh-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh);
}
.review-card.review-featured {
    grid-column: span 1;
    border: 2px solid var(--red);
    background: linear-gradient(145deg, #fff 0%, #FFF5F5 100%);
    box-shadow: 0 4px 24px rgba(232,34,26,0.12);
}
.review-quote-icon {
    font-size: 1.4rem;
    color: var(--red);
    opacity: .25;
    line-height: 1;
}
.review-stars {
    display: flex;
    gap: .15rem;
    color: var(--gold);
    font-size: .95rem;
}
.review-text {
    font-size: .93rem;
    line-height: 1.7;
    color: var(--text2);
    flex: 1;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: auto;
    padding-top: .8rem;
    border-top: 1px solid var(--border);
}
.review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.review-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.review-author-info strong {
    font-size: .9rem;
    color: var(--text);
    font-weight: 700;
}
.review-author-info span {
    font-size: .75rem;
    color: var(--muted);
}
.review-source {
    font-size: 1.1rem;
    color: var(--dim);
}
.review-source i.fa-google    { color: #4285F4; }
.review-source i.fa-instagram { color: #C13584; }

/* CTA unter Reviews */
.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .review-card.review-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card.review-featured { grid-column: span 1; }
    .reviews-summary { flex-direction: column; text-align: center; }
    .reviews-platforms { justify-content: center; }
}

/* ════════════════════════════════════════════
   KINDER STRIP IMAGE WRAP
════════════════════════════════════════════ */
.kinder-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gold);
    box-shadow: 0 2px 12px rgba(245,168,0,0.35);
}
.kinder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ════════════════════════════════════════════
   ORDER SECTION (Standorte / Bestellen)
════════════════════════════════════════════ */
.order-section {
    background: var(--bg2);
    padding: 5rem 0;
}
.order-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}
.order-location-card {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.order-location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}
.order-loc-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.order-loc-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.order-location-card:hover .order-loc-visual img {
    transform: scale(1.05);
}
.order-loc-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--grad-fire);
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: .08em;
    padding: .3rem .9rem;
    border-radius: var(--r-full);
    box-shadow: 0 2px 8px rgba(232,34,26,0.4);
}
.order-loc-info {
    padding: 1.8rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.order-loc-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: .05em;
    color: var(--text);
}
.preorder-note {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(232,34,26,0.08);
    border: 1px solid rgba(232,34,26,0.20);
    border-radius: var(--r-md);
    padding: .7rem 1rem;
    font-size: .88rem;
    color: var(--red-dark);
}
.preorder-note i { color: var(--red); }
.order-loc-details {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.order-detail-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    color: var(--text2);
}
.order-detail-row i {
    width: 18px;
    color: var(--red);
    flex-shrink: 0;
}
.order-detail-row a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.order-detail-row a:hover { color: var(--red-dark); }
.btn-flyer-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 1.8rem;
    border-radius: var(--r-full);
    text-decoration: none;
    margin-top: auto;
    transition: opacity .2s, transform .2s;
}
.btn-flyer-order:hover { opacity: .9; transform: translateY(-1px); }

@media (max-width: 768px) {
    .order-locations-grid { grid-template-columns: 1fr; }
    .order-loc-visual { height: 200px; }
}

/* ════════════════════════════════════════════
   SPECIAL EDITION SAUCE SECTION
════════════════════════════════════════════ */
.sauce-section {
    background: #0C0806;
    padding: 5.5rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sauce-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232,34,26,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(245,168,0,0.12) 0%, transparent 55%);
    pointer-events: none;
}
.sauce-section .section-tag { color: var(--gold); }
.sauce-section .section-title { color: #fff; }
.sauce-section .section-sub { color: rgba(255,255,255,0.55); }
.accent-gold { color: var(--gold); }

.sauce-showcase {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

/* Sauce Hero Card */
.sauce-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,34,26,0.25);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(232,34,26,0.20);
}
.sauce-hero-img {
    position: relative;
    height: 440px;
    overflow: hidden;
}
.sauce-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.sauce-hero-card:hover .sauce-hero-img img { transform: scale(1.04); }
.sauce-hero-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--grad-fire);
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: .08em;
    padding: .4rem 1rem;
    border-radius: var(--r-full);
    box-shadow: 0 2px 12px rgba(232,34,26,0.5);
}
.sauce-hero-info {
    padding: 2.5rem 2.5rem 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Fiyah Wata Showcase */
.fiyah-wata-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245,168,0,0.25);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(245,168,0,0.12);
}
.fiyah-wata-img {
    position: relative;
    height: 460px;
    overflow: hidden;
    order: 2;
}
.fiyah-wata-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.fiyah-wata-showcase:hover .fiyah-wata-img img { transform: scale(1.04); }
.fiyah-wata-info {
    padding: 2.5rem 1rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    order: 1;
}

/* Shared sauce info styles */
.sauce-brand-tag {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .85;
}
.sauce-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: .05em;
    line-height: 1;
    color: #fff;
}
.sauce-title span {
    font-size: 1.6rem;
    color: var(--gold);
    font-family: 'Bebas Neue', cursive;
}
.sauce-desc {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    max-width: 420px;
}
.sauce-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.sauce-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border-radius: var(--r-full);
}
.sauce-tag-chip i { color: var(--red); }
.sauce-tag-chip.limited {
    background: rgba(245,168,0,0.15);
    border-color: rgba(245,168,0,0.35);
    color: var(--gold);
}
.btn-sauce-order {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .9rem 1.8rem;
    border-radius: var(--r-full);
    text-decoration: none;
    width: fit-content;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-sauce-order:hover { opacity: .9; transform: translateY(-2px); }
.btn-sauce-order.fiyah {
    background: var(--grad-gold);
    box-shadow: 0 4px 16px rgba(245,168,0,0.35);
}

/* Sauce Motive Grid – 4 Collector Editions */
.sauce-motives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.sauce-motive-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform .3s ease, box-shadow .3s ease;
}
.sauce-motive-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(232,34,26,0.4);
}
.sauce-motive-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.sauce-motive-card:hover img { transform: scale(1.06); }
.sauce-motive-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.sauce-motive-edition {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}
.sauce-motive-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.15rem;
    letter-spacing: .05em;
    color: #fff;
}
.sauce-motive-detail {
    font-size: .72rem;
    color: rgba(255,255,255,0.65);
}

/* Responsive Sauce Section */
@media (max-width: 1024px) {
    .sauce-motives-grid { grid-template-columns: repeat(2, 1fr); }
    .sauce-hero-card,
    .fiyah-wata-showcase { grid-template-columns: 1fr; }
    .sauce-hero-img,
    .fiyah-wata-img { height: 300px; order: 1 !important; }
    .sauce-hero-info,
    .fiyah-wata-info { padding: 2rem; order: 2 !important; }
}
@media (max-width: 600px) {
    .sauce-motives-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
    .sauce-title { font-size: 2.2rem; }
    .sauce-title span { font-size: 1.3rem; }
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
