/* ════════════════════════════════════════════════════════════
   RONII Imbisswagen — Design System "Feuer & Brot"
   Appetit-Psychologie: Glut-Rot (Hunger/CTA), Amber (Wärme),
   Kohle (Premium-Kontrast), Creme (frisches Brot), Grün (Frische)
   ════════════════════════════════════════════════════════════ */

:root {
  --ember: #C41E2E;
  --ember-deep: #8F1622;
  --ember-hot: #E2263A;
  --flame: #F2790F;
  --amber: #FFB627;
  --coal: #161010;
  --coal-2: #211614;
  --coal-3: #2C1D18;
  --smoke: #4A342B;
  --cream: #FAF3E8;
  --cream-2: #F1E6D2;
  --paper: #FFFDF8;
  --green: #3E7C4A;
  --green-soft: #E7F1E7;
  --wa: #25D366;
  --wa-deep: #128C4A;
  --ink: #241812;
  --ink-soft: #6B564A;
  --gold-grad: linear-gradient(135deg, #FFB627, #F2790F);
  --ember-grad: linear-gradient(135deg, #E2263A, #A31621);
  --radius: 18px;
  --radius-s: 12px;
  --shadow-1: 0 2px 10px rgba(36, 24, 18, .08);
  --shadow-2: 0 10px 34px rgba(36, 24, 18, .16);
  --shadow-hot: 0 10px 30px rgba(196, 30, 46, .35);
  --font-display: 'Anton', 'Arial Narrow', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
input, select { font: inherit; }
[hidden] { display: none !important; }
.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--flame); outline-offset: 2px; border-radius: 4px; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(900px 480px at 50% 42%, #241612, var(--coal) 70%);
  display: grid; place-content: center; gap: 14px; justify-items: center;
  transition: opacity .45s, visibility .45s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-logo {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--ember-grad); display: grid; place-content: center;
  box-shadow: 0 10px 34px rgba(196, 30, 46, .5), 0 0 0 8px rgba(196, 30, 46, .12);
  animation: preGlow 1.6s ease-in-out infinite;
}
.pre-r { font-family: Georgia, serif; font-style: italic; font-weight: 800; font-size: 44px; color: var(--cream); }
.pre-name { font-family: var(--font-display); font-size: 26px; letter-spacing: 4px; color: var(--cream); display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.pre-name small { font-family: var(--font-body); font-size: 9px; font-weight: 700; letter-spacing: 4.5px; color: rgba(250,243,232,.55); }
@keyframes preGlow { 50% { transform: scale(1.06); box-shadow: 0 10px 44px rgba(226, 38, 58, .65), 0 0 0 14px rgba(196, 30, 46, .08); } }
@keyframes preSpin { 50% { transform: rotate(180deg) scale(1.15); } 100% { transform: rotate(360deg); } }
.pre-bar { width: 180px; height: 5px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 40%; border-radius: 99px; background: var(--ember-grad); animation: preLoad 1s ease-in-out infinite alternate; }
@keyframes preLoad { from { transform: translateX(-40%); } to { transform: translateX(340%); } }

/* ════════ HEADER ════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, color .35s;
  color: var(--cream);
}
#header.scrolled { background: rgba(250, 243, 232, .985); color: var(--ink); box-shadow: var(--shadow-1); }
.header-in { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-r {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ember-grad); color: var(--cream);
  font-family: Georgia, serif; font-style: italic; font-weight: 800; font-size: 26px;
  display: grid; place-content: center;
  box-shadow: 0 4px 14px rgba(196, 30, 46, .45);
}
.logo-txt { font-family: var(--font-display); font-size: 22px; letter-spacing: 1.5px; line-height: 1; display: flex; flex-direction: column; }
.logo-txt small { font-family: var(--font-body); font-size: 8.5px; font-weight: 700; letter-spacing: 3.2px; opacity: .75; }
.main-nav { display: flex; gap: 26px; margin-left: 26px; font-weight: 600; font-size: 14.5px; }
.main-nav a { opacity: .85; transition: opacity .2s; position: relative; padding: 6px 0; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--flame); transition: width .25s; border-radius: 2px; }
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }
.header-tools { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.status-pill {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700;
  padding: 6px 12px; border-radius: 99px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); white-space: nowrap;
}
#header.scrolled .status-pill { background: var(--green-soft); border-color: transparent; color: var(--green); }
.status-pill.is-closed { color: #ffb3b3; }
#header.scrolled .status-pill.is-closed { background: #FBE7E7; color: var(--ember-deep); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc6e; animation: pulseDot 1.6s infinite; }
.status-pill.is-closed .status-dot { background: var(--ember-hot); }
@keyframes pulseDot { 50% { box-shadow: 0 0 0 5px rgba(61, 220, 110, .25); } }
.lang-switch { display: flex; border-radius: 99px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); }
#header.scrolled .lang-switch { border-color: rgba(36,24,18,.18); }
.lang-switch button { padding: 6px 11px; font-size: 12px; font-weight: 800; letter-spacing: .5px; opacity: .65; transition: all .2s; }
.lang-switch button.active { opacity: 1; background: var(--ember); color: #fff; }
.cart-btn { position: relative; width: 44px; height: 44px; border-radius: 14px; display: grid; place-content: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); transition: transform .15s; }
#header.scrolled .cart-btn { background: var(--paper); border-color: rgba(36,24,18,.12); box-shadow: var(--shadow-1); }
.cart-btn:active { transform: scale(.92); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; border-radius: 99px;
  background: var(--ember-grad); color: #fff; font-size: 11px; font-weight: 800;
  display: grid; place-content: center; padding-inline: 5px;
  box-shadow: 0 2px 8px rgba(196,30,46,.5);
  animation: countPop .3s cubic-bezier(.5, 1.8, .5, 1);
}
@keyframes countPop { from { transform: scale(0); } }

/* ════════ HERO ════════ */
.hero {
  position: relative; min-height: 100svh;
  background:
    radial-gradient(1100px 520px at 78% 68%, rgba(242, 121, 15, .17), transparent 60%),
    radial-gradient(800px 420px at 15% 15%, rgba(196, 30, 46, .14), transparent 60%),
    linear-gradient(180deg, #1B120F 0%, var(--coal) 55%, #120C0A 100%);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 30px) 0 110px;
  isolation: isolate;
  overflow: hidden;
}
#embers { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .85; }
.hero-glow { position: absolute; left: 50%; bottom: -18%; width: 130%; height: 44%; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(242, 121, 15, .22), transparent 65%); z-index: 0; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 30px; }
.kicker { display: flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 12.5px; color: var(--amber); margin-bottom: 18px; }
.kicker-flame { animation: flicker 2.2s infinite; }
@keyframes flicker { 0%,100% { transform: scale(1); } 30% { transform: scale(1.18) rotate(-6deg); } 60% { transform: scale(.95) rotate(5deg); } }
.hero h1 { font-family: var(--font-display); font-size: clamp(46px, 7vw, 96px); line-height: .98; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 .line { display: block; animation: riseIn .8s cubic-bezier(.2, .9, .2, 1) both; }
.hero h1 .line-2 { color: transparent; background: linear-gradient(92deg, var(--amber), var(--flame) 55%, var(--ember-hot)); -webkit-background-clip: text; background-clip: text; animation-delay: .12s; }
@keyframes riseIn { from { transform: translateY(46px); opacity: 0; } }
.hero-sub { max-width: 46ch; margin-top: 20px; font-size: clamp(15px, 1.6vw, 18px); color: rgba(250, 243, 232, .82); animation: riseIn .8s .22s cubic-bezier(.2,.9,.2,1) both; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; animation: riseIn .8s .3s cubic-bezier(.2,.9,.2,1) both; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; font-size: 13.5px; font-weight: 600; color: rgba(250,243,232,.75); animation: riseIn .8s .38s cubic-bezier(.2,.9,.2,1) both; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; border-radius: 16px; transition: transform .18s, box-shadow .18s, background .18s; will-change: transform; }
.btn:active { transform: scale(.96); }
.btn-xl { padding: 17px 30px; font-size: 16.5px; }
.btn-primary { background: var(--ember-grad); color: #fff; box-shadow: var(--shadow-hot); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(196, 30, 46, .45); }
.btn-arrow { transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-wa { background: linear-gradient(135deg, #2BE071, #17A957); color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, .3); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 15px 38px rgba(37, 211, 102, .42); }
.btn-outline { border: 2px solid var(--ember); color: var(--ember); padding: 11px 20px; border-radius: 13px; font-size: 14.5px; margin-top: 14px; }
.btn-outline:hover { background: var(--ember); color: #fff; }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.35); color: var(--cream); padding: 11px 20px; border-radius: 13px; font-size: 14px; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }

/* ── 3D-Dönerspieß ── */
.hero-stage { position: relative; height: 560px; perspective: 1100px; display: grid; place-items: center; }
#doner3dCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.hero-stage.webgl #doner3dCanvas { display: block; }
.hero-stage.webgl .spit-scene { display: none; }
.heat-lamp {
  position: absolute; right: 8%; top: 50%; transform: translateY(-58%);
  width: 26px; height: 380px; border-radius: 14px;
  background: linear-gradient(180deg, #E2263A, #F2790F 30%, #FFB627 50%, #F2790F 70%, #E2263A);
  box-shadow: 0 0 34px 10px rgba(242, 121, 15, .5), 0 0 90px 30px rgba(226, 38, 58, .28);
  animation: lampFlicker 2.8s infinite;
  filter: saturate(1.2);
}
@keyframes lampFlicker { 0%,100% { opacity: 1; } 42% { opacity: .82; } 68% { opacity: .95; } 85% { opacity: .78; } }
.spit-scene { position: relative; transform-style: preserve-3d; }
.spit-tilt { position: relative; transform-style: preserve-3d; transition: transform .25s ease-out; display: flex; flex-direction: column; align-items: center; }
.skewer-top, .skewer-bottom { width: 9px; background: linear-gradient(90deg, #6e6e72, #d9d9de 45%, #86868c); border-radius: 5px; z-index: 2; }
.skewer-top { height: 74px; }
.skewer-bottom { height: 56px; }
.skewer-knob { width: 34px; height: 14px; border-radius: 7px; background: linear-gradient(180deg, #d9d9de, #7c7c82); margin-top: -4px; z-index: 2; box-shadow: 0 3px 8px rgba(0,0,0,.4); }
.doner-wrap { position: relative; transform-style: preserve-3d; }
.doner-cyl { position: relative; transform-style: preserve-3d; animation: spin 15s linear infinite; margin-inline: auto; }
.doner-cyl.doner-carved { animation-duration: 15s; }
@keyframes spin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
.slat { position: absolute; left: 50%; top: 0; transform-origin: center; backface-visibility: hidden; }
.doner-light {
  position: absolute; z-index: 3; pointer-events: none;
  background: linear-gradient(97deg, rgba(255, 205, 130, .30) 6%, transparent 45%, rgba(22, 9, 4, .45) 96%);
  border-radius: 46% / 14px;
}
.drip-pan {
  width: 190px; height: 22px; border-radius: 50%;
  background: radial-gradient(ellipse at center, #3a2a20, #241812 70%);
  border: 3px solid #4c3a2c; margin-top: 8px;
  box-shadow: inset 0 4px 12px rgba(0,0,0,.6), 0 6px 18px rgba(242,121,15,.15);
}
.stage-shadow { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 300px; height: 46px; background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%); filter: blur(6px); }
.slice {
  position: absolute; width: 26px; height: 12px; border-radius: 6px 10px 8px 5px;
  background: linear-gradient(180deg, #B0623A, #7C4326);
  box-shadow: inset 0 2px 3px rgba(255, 190, 120, .4);
  left: 58%; top: 58%; opacity: 0; z-index: 4;
  animation: sliceFall 5.2s ease-in infinite;
}
.slice.s2 { left: 46%; animation-delay: 1.8s; width: 21px; }
.slice.s3 { left: 63%; animation-delay: 3.4s; width: 17px; }
@keyframes sliceFall {
  0%, 55% { opacity: 0; transform: translateY(0) rotate(0deg); }
  58% { opacity: 1; }
  74% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(150px) rotate(140deg); }
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 68px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(250,243,232,.65); transition: color .2s;
}
.hero-scroll:hover { color: var(--amber); }
.scroll-chevron { font-size: 18px; animation: bounceDown 1.6s infinite; }
@keyframes bounceDown { 50% { transform: translateY(6px); } }
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; pointer-events: none; }
.hero-curve svg { width: 100%; height: 90px; }

/* ════════ USP ════════ */
.usp { padding: 26px 0 8px; position: relative; z-index: 3; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -74px; }
.usp-card {
  background: var(--paper); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-2); text-align: center;
  transition: transform .2s, box-shadow .2s;
  transform-style: preserve-3d;
}
.usp-card-hot { background: linear-gradient(150deg, #FFF6E4, #FFEFD2); border: 1.5px solid rgba(255, 182, 39, .5); }
.usp-ico { font-size: 34px; margin-bottom: 8px; transform: translateZ(30px); }
.usp-card h3 { font-size: 16.5px; font-weight: 800; transform: translateZ(22px); }
.usp-card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; transform: translateZ(14px); }

/* ════════ MENU ════════ */
.menu-section { padding: 68px 0 40px; }
.sec-head { text-align: center; margin-bottom: 34px; }
.sec-head h2 { font-family: var(--font-display); font-size: clamp(32px, 4.6vw, 52px); text-transform: uppercase; letter-spacing: 1px; }
.sec-head h2::after { content: ''; display: block; width: 74px; height: 5px; border-radius: 4px; background: var(--gold-grad); margin: 12px auto 0; }
.sec-head p { color: var(--ink-soft); margin-top: 10px; font-size: 15.5px; }
.sec-head-light h2, .sec-head-light p { color: var(--cream); }
.menu-tools { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.search-box {
  flex: 1 1 300px; display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1.5px solid rgba(36,24,18,.12); border-radius: 15px;
  padding: 13px 17px; box-shadow: var(--shadow-1); color: var(--ink-soft);
  transition: border-color .2s, box-shadow .2s;
}
.search-box:focus-within { border-color: var(--flame); box-shadow: 0 0 0 4px rgba(242,121,15,.14); }
.search-box input { flex: 1; border: 0; outline: 0; background: none; color: var(--ink); font-size: 15px; }
.quick-filters { display: flex; gap: 8px; }
.qf {
  padding: 11px 18px; border-radius: 99px; font-size: 13.5px; font-weight: 700;
  background: var(--paper); border: 1.5px solid rgba(36,24,18,.12); transition: all .2s;
}
.qf.active { background: var(--coal); color: var(--cream); border-color: var(--coal); }
.qf:hover:not(.active) { border-color: var(--flame); }

/* Kategorie-Chips (sticky) */
.cat-bar { position: sticky; top: var(--header-h); z-index: 50; background: rgba(250, 243, 232, .985); padding: 10px 0; margin-top: 10px; border-bottom: 1px solid rgba(36,24,18,.07); }
.cat-bar-in { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.cat-bar-in::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto; display: flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 99px; font-size: 13.5px; font-weight: 700;
  background: var(--paper); border: 1.5px solid rgba(36,24,18,.1);
  transition: all .18s; white-space: nowrap;
}
.cat-chip:hover { border-color: var(--ember); transform: translateY(-1px); }
.cat-chip.active { background: var(--ember-grad); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(196,30,46,.3); }

/* Kategorien + Karten */
.menu-cat { padding-top: 26px; }
.menu-cat-head { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 16px; }
.menu-cat-head .cat-ico { font-size: 26px; }
.menu-cat-head h3 { font-family: var(--font-display); font-size: 25px; letter-spacing: .6px; text-transform: uppercase; }
.menu-cat-head .cat-count { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); background: var(--cream-2); padding: 3px 10px; border-radius: 99px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 14px; }
.item-card {
  position: relative; display: flex; flex-direction: column; gap: 0;
  background: var(--paper); border-radius: var(--radius); padding: 0; overflow: hidden;
  border: 1.5px solid rgba(36,24,18,.07); box-shadow: var(--shadow-1);
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s, border-color .2s;
  transform-style: preserve-3d;
}
/* Hover: Karte kommt nach VORNE (wachsen + anheben) statt wegzukippen —
   Annäherung fördert die Kauflust, „Zurückweichen" hemmt sie. */
.item-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 44px rgba(36, 24, 18, .22);
  border-color: rgba(242, 121, 15, .55);
}
/* CTA beim Hover hervorheben → Blick zum „Hinzufügen" lenken */
.item-card:hover .add-btn { background: var(--ember); box-shadow: 0 8px 20px rgba(196, 30, 46, .38); }
.item-photo { position: relative; aspect-ratio: 16 / 8.6; background: var(--cream-2); }
.item-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform .55s cubic-bezier(.2,.7,.2,1); display: block; }
.item-card:hover .item-photo img { transform: scale(1.14); }
.item-photo .item-no { position: absolute; top: 10px; left: 10px; z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
.item-photo .photo-flags { position: absolute; top: 10px; right: 10px; z-index: 2; display: flex; gap: 5px; }
.item-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,6,.16), transparent 30%); pointer-events: none; }
.drink-tile { aspect-ratio: 16 / 8.6; display: grid; place-content: center; font-size: 54px; position: relative; }
.drink-tile .item-no { position: absolute; top: 10px; left: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.item-body { display: flex; flex-direction: column; gap: 8px; padding: 13px 16px 14px; flex: 1; }
.item-top { display: flex; align-items: flex-start; gap: 10px; }
.item-no {
  flex: 0 0 auto; min-width: 34px; height: 34px; border-radius: 10px;
  background: var(--ember-grad); color: #fff; font-weight: 800; font-size: 14px;
  display: grid; place-content: center; padding-inline: 6px;
  box-shadow: 0 4px 10px rgba(196,30,46,.28); transform: translateZ(18px);
}
.item-info { flex: 1; min-width: 0; }
.item-name { font-weight: 800; font-size: 16px; line-height: 1.25; }
.item-desc { font-size: 12.8px; color: var(--ink-soft); margin-top: 3px; }
.item-flags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.flag { font-size: 10.5px; font-weight: 800; letter-spacing: .4px; padding: 3px 8px; border-radius: 99px; }
.flag-pop { background: #FFF1D6; color: #A96A00; border: 1px solid #F5CE84; }
.flag-veg { background: var(--green-soft); color: var(--green); border: 1px solid #BAD8BA; }
.flag-al { background: var(--cream-2); color: var(--ink-soft); border: 1px solid rgba(36,24,18,.1); cursor: help; }
.item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.item-price { font-weight: 800; font-size: 21px; letter-spacing: -.5px; }
.item-price .cur { font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-left: 2px; }
.item-price .from { font-size: 11.5px; font-weight: 700; color: var(--ink-soft); display: block; margin-bottom: -3px; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--coal); color: var(--cream); font-weight: 800; font-size: 13.5px;
  padding: 11px 18px; border-radius: 13px; transition: all .18s; transform: translateZ(14px);
}
.add-btn:hover { background: var(--ember); box-shadow: 0 8px 18px rgba(196,30,46,.35); }
.add-btn:active { transform: scale(.94) translateZ(14px); }
.add-btn .plus { font-size: 16px; line-height: 1; }
.item-stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--cream-2); border-radius: 13px; padding: 4px; }
.item-stepper button { width: 34px; height: 34px; border-radius: 10px; background: var(--paper); font-weight: 800; font-size: 17px; box-shadow: var(--shadow-1); transition: all .15s; }
.item-stepper button:hover { background: var(--ember); color: #fff; }
.item-stepper .stq { min-width: 26px; text-align: center; font-weight: 800; font-size: 15px; }
.no-results { text-align: center; padding: 50px 0; color: var(--ink-soft); font-size: 17px; }

/* Allergene */
.allergen-box { margin-top: 44px; }
.allergen-box details { background: var(--paper); border-radius: var(--radius); border: 1.5px solid rgba(36,24,18,.09); padding: 18px 22px; }
.allergen-box summary { font-weight: 800; cursor: pointer; font-size: 15px; }
.allergen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px 18px; margin-top: 14px; }
.allergen-grid span { font-size: 13px; color: var(--ink-soft); }
.allergen-grid b { color: var(--ember); font-weight: 800; margin-right: 4px; }
.allergen-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); font-style: italic; }

/* ════════ ORDER / QR ════════ */
.order-section {
  margin-top: 60px; padding: 78px 0 84px;
  background:
    radial-gradient(900px 400px at 85% 10%, rgba(242,121,15,.12), transparent 60%),
    linear-gradient(180deg, #1B120F, var(--coal-2));
  color: var(--cream);
}
.order-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 0; position: relative; }
.step { display: flex; gap: 18px; padding: 17px 0; position: relative; animation: riseIn .7s calc(var(--i) * .1s) both; }
.step::before { content: ''; position: absolute; left: 23px; top: 60px; bottom: -10px; width: 2px; background: linear-gradient(180deg, rgba(255,182,39,.5), rgba(255,182,39,.08)); }
.step:last-child::before { display: none; }
.step-n {
  flex: 0 0 auto; width: 47px; height: 47px; border-radius: 15px;
  background: var(--gold-grad); color: var(--coal);
  font-family: var(--font-display); font-size: 21px; display: grid; place-content: center;
  box-shadow: 0 8px 20px rgba(242, 121, 15, .35);
}
.step h3 { font-size: 17px; font-weight: 800; }
.step p { font-size: 13.8px; color: rgba(250,243,232,.68); margin-top: 3px; }
.qr-card {
  background: var(--paper); color: var(--ink); border-radius: 26px; padding: 30px 28px;
  text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.42);
  position: relative;
}
.qr-frame { position: relative; width: min(258px, 70vw); margin: 0 auto; padding: 14px; border-radius: 22px; background: #fff; border: 3px solid var(--wa); box-shadow: 0 10px 26px rgba(37, 211, 102, .22); }
#qrBox svg { width: 100%; height: auto; border-radius: 8px; }
.qr-wa-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 14px; background: var(--wa);
  display: grid; place-content: center; border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.22);
}
.qr-caption { font-weight: 800; margin-top: 16px; font-size: 16px; }
.qr-number { font-weight: 700; color: var(--ink-soft); font-size: 14.5px; margin-top: 3px; }
.qr-actions { margin-top: 16px; display: flex; justify-content: center; }
.qr-actions .btn-ghost-light { border-color: rgba(36,24,18,.25); color: var(--ink); }
.qr-actions .btn-ghost-light:hover { background: var(--cream-2); }
.or-call { margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); }
.or-call a { color: var(--ember); font-weight: 800; }

/* ════════ CATERING ════════ */
.catering { padding: 78px 0; background: linear-gradient(180deg, var(--cream), #F6E7CE 130%); overflow: hidden; }
.catering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.catering-copy h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; line-height: 1.05; }
.catering-copy > p { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; max-width: 50ch; }
.catering-points { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 9px; font-weight: 600; font-size: 14.5px; }
.truck-stage { position: relative; display: grid; place-items: center; padding: 30px 0 10px; perspective: 900px; }
.string-lights { position: absolute; top: 0; left: 6%; right: 6%; height: 30px; display: flex; justify-content: space-between; }
.string-lights::before { content: ''; position: absolute; left: 0; right: 0; top: 8px; height: 14px; border: 2px solid rgba(74, 52, 43, .35); border-top: 0; border-radius: 0 0 100% 100%/0 0 26px 26px; }
.string-lights i { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); margin-top: 20px; box-shadow: 0 0 12px 3px rgba(255, 182, 39, .55); animation: twinkle 2.4s infinite; }
.string-lights i:nth-child(2n) { animation-delay: .6s; }
.string-lights i:nth-child(3n) { animation-delay: 1.1s; }
@keyframes twinkle { 50% { opacity: .45; } }
.truck-photo { position: relative; transform-style: preserve-3d; transition: transform .25s ease-out; margin: 26px 0 0; max-width: min(560px, 92%); }
.truck-photo img { width: 100%; border-radius: 22px; border: 3px solid rgba(44, 29, 24, .85); box-shadow: 0 26px 60px rgba(36, 24, 18, .35); display: block; }
.truck-photo figcaption { position: absolute; left: 14px; bottom: 14px; background: rgba(22, 16, 16, .82); color: var(--cream); font-weight: 700; font-size: 12.5px; padding: 8px 14px; border-radius: 99px; letter-spacing: .4px; }
.truck { position: relative; transform-style: preserve-3d; transition: transform .25s ease-out; }
.truck-body {
  position: relative; width: min(400px, 82vw); height: 218px; border-radius: 20px;
  background: linear-gradient(180deg, #FFFEFB, #F2EADB);
  border: 2.5px solid #2C1D18; box-shadow: var(--shadow-2);
}
.truck-sign {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  background: var(--paper); border: 2.5px solid #2C1D18; border-radius: 10px;
  font-family: Georgia, serif; font-style: italic; font-weight: 800; letter-spacing: 4px;
  padding: 5px 22px; font-size: 19px; color: var(--ember);
}
.truck-window { position: absolute; left: 26px; right: 26px; top: 38px; height: 86px; border-radius: 12px; background: linear-gradient(180deg, #2C1D18, #4A342B); border: 2.5px solid #2C1D18; display: grid; place-content: center; overflow: hidden; }
.truck-window .chef { font-size: 44px; animation: chefBob 3s ease-in-out infinite; }
@keyframes chefBob { 50% { transform: translateY(-5px) rotate(-4deg); } }
.truck-awning { position: absolute; left: 12px; right: 12px; top: 22px; height: 22px; display: flex; border-radius: 8px 8px 0 0; overflow: hidden; transform: rotate(-1deg); box-shadow: 0 4px 10px rgba(0,0,0,.15); }
.truck-awning i { flex: 1; background: var(--ember); }
.truck-awning i:nth-child(2n) { background: var(--paper); }
.truck-r { position: absolute; left: 30px; bottom: 14px; font-family: Georgia, serif; font-style: italic; font-weight: 800; font-size: 46px; color: var(--ember); }
.truck-wheel { position: absolute; bottom: -26px; width: 54px; height: 54px; border-radius: 50%; background: #241812; border: 7px solid #4A342B; box-shadow: inset 0 0 0 6px #241812, inset 0 0 0 9px #6B564A; }
.truck-wheel.w1 { left: 58px; } .truck-wheel.w2 { right: 58px; }
.truck-shadow { width: 70%; height: 26px; margin-top: 40px; border-radius: 50%; background: radial-gradient(ellipse, rgba(36,24,18,.3), transparent 70%); filter: blur(4px); }

/* ════════ CONTACT ════════ */
.contact { padding: 74px 0 66px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.c-card { background: var(--paper); border-radius: var(--radius); padding: 24px; border: 1.5px solid rgba(36,24,18,.08); box-shadow: var(--shadow-1); }
.c-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 12px; }
.c-card h3.mt { margin-top: 20px; }
.c-strong { font-weight: 800; }
.c-muted { color: var(--ink-soft); font-size: 13px; margin-top: 4px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 7px 0; border-bottom: 1px dashed rgba(36,24,18,.12); }
.hours-table td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.hours-table tr:last-child td { border-bottom: 0; }
.closed-cell { color: var(--ember); }
.live-status { margin-top: 12px; font-size: 13px; font-weight: 700; padding: 9px 13px; border-radius: 11px; background: var(--green-soft); color: var(--green); }
.live-status.closed { background: #FBE7E7; color: var(--ember-deep); }
.c-gift { margin-top: 14px; font-size: 13.5px; font-weight: 700; background: #FFF1D6; border: 1px dashed #F5CE84; padding: 10px 13px; border-radius: 11px; }
.c-phone { font-size: 22px; font-weight: 800; color: var(--ember); }

/* ════════ FOOTER ════════ */
.footer { background: var(--coal); color: rgba(250,243,232,.85); text-align: center; padding: 48px 0 110px; }
.footer-heart { font-size: 30px; animation: heartBeat 1.8s infinite; }
@keyframes heartBeat { 0%,100% { transform: scale(1); } 12% { transform: scale(1.22); } 24% { transform: scale(1); } 36% { transform: scale(1.14); } }
.footer-wish { max-width: 54ch; margin: 12px auto 0; font-size: 15px; }
.footer-brand { font-family: var(--font-display); letter-spacing: 4px; margin-top: 16px; color: var(--amber); }
.footer-small { margin-top: 18px; font-size: 12px; color: rgba(250,243,232,.5); }

/* ════════ CART DRAWER ════════ */
.cart-overlay { position: fixed; inset: 0; z-index: 140; background: rgba(20, 10, 8, .6); opacity: 0; transition: opacity .3s; }
.cart-overlay.show { opacity: 1; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
  width: min(430px, 100vw); background: var(--cream);
  box-shadow: -18px 0 60px rgba(0,0,0,.3);
  display: flex; flex-direction: column;
  transform: translateX(103%); transition: transform .38s cubic-bezier(.3, 1, .3, 1);
}
.cart-drawer.show { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px 14px; border-bottom: 1.5px solid rgba(36,24,18,.09); }
.cart-head h2 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: .5px; }
.cart-close { width: 40px; height: 40px; border-radius: 12px; background: var(--paper); box-shadow: var(--shadow-1); font-size: 16px; font-weight: 800; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 22px 30px; }
.cart-empty { text-align: center; padding: 60px 10px; }
.cart-empty .ce-ico { font-size: 54px; animation: preSpin 2.4s ease-in-out infinite; display: inline-block; }
.cart-empty h3 { margin-top: 16px; font-size: 18px; }
.cart-empty p { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
.cart-empty .btn { margin-top: 18px; padding: 14px 26px; font-size: 15px; }
.ci { display: flex; gap: 12px; align-items: center; background: var(--paper); border-radius: 15px; padding: 12px 14px; margin-bottom: 10px; border: 1.5px solid rgba(36,24,18,.07); }
.ci-no { flex: 0 0 auto; min-width: 30px; height: 30px; border-radius: 9px; background: var(--ember-grad); color: #fff; font-weight: 800; font-size: 12.5px; display: grid; place-content: center; padding-inline: 5px; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-weight: 700; font-size: 13.8px; line-height: 1.25; }
.ci-price { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.ci-stepper { display: flex; align-items: center; gap: 3px; }
.ci-stepper button { width: 29px; height: 29px; border-radius: 9px; background: var(--cream-2); font-weight: 800; transition: all .15s; }
.ci-stepper button:hover { background: var(--ember); color: #fff; }
.ci-stepper .q { min-width: 22px; text-align: center; font-weight: 800; font-size: 14px; }
.ci-total { font-weight: 800; font-size: 14.5px; min-width: 62px; text-align: right; }
.ci-custom-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .5px; background: var(--gold-grad); color: var(--coal); border-radius: 99px; padding: 2px 8px; margin-left: 6px; vertical-align: 1px; }
.ci-parts { font-size: 11.5px; color: var(--ink-soft); margin-top: 3px; line-height: 1.45; }

/* Gratis-Getränk Fortschritt */
.drink-progress { background: var(--paper); border: 1.5px dashed rgba(242,121,15,.55); border-radius: 15px; padding: 14px 16px; margin: 16px 0; }
.dp-label { font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; gap: 8px; }
.dp-label > span:last-child { white-space: nowrap; color: var(--ink-soft); font-size: 12px; align-self: center; }
.dp-label .dp-val { color: var(--flame); }
.dp-track { position: relative; height: 14px; background: var(--cream-2); border-radius: 99px; margin-top: 9px; overflow: visible; }
.dp-fill { position: relative; height: 100%; border-radius: 99px; background: var(--gold-grad); transition: width .5s cubic-bezier(.3, 1, .3, 1); box-shadow: 0 2px 8px rgba(242,121,15,.4); min-width: 0; }
.dp-cup { position: absolute; right: -7px; top: 50%; transform: translateY(-52%); font-size: 19px; filter: drop-shadow(0 2px 3px rgba(0,0,0,.25)); }
.drink-progress.unlocked { border-color: var(--green); background: var(--green-soft); animation: unlockPulse .5s; }
.drink-progress.unlocked .dp-fill { background: linear-gradient(135deg, #6FCF8C, var(--green)); }
@keyframes unlockPulse { 50% { transform: scale(1.03); } }

/* Zonen + Checkout-Formular */
.cart-sub { display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; padding: 10px 2px 4px; }
.zone-box { margin: 12px 0; }
.zone-label, .fld label { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.zone-btns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.zone-btn { padding: 10px 6px; border-radius: 12px; font-size: 12px; font-weight: 700; background: var(--paper); border: 1.5px solid rgba(36,24,18,.12); transition: all .18s; line-height: 1.25; }
.zone-btn.active { border-color: var(--ember); background: #FDECEC; color: var(--ember-deep); }
.zone-hint { margin-top: 9px; font-size: 12.8px; font-weight: 700; padding: 9px 12px; border-radius: 10px; background: #FFF1D6; color: #A96A00; }
.zone-hint.ok { background: var(--green-soft); color: var(--green); }
.mode-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 12px 0; }
.mode-btn { padding: 12px; border-radius: 12px; font-weight: 800; font-size: 14px; background: var(--paper); border: 1.5px solid rgba(36,24,18,.12); transition: all .18s; }
.mode-btn.active { background: var(--coal); color: var(--cream); border-color: var(--coal); }
.fld { margin: 11px 0; }
.fld input, .fld textarea {
  width: 100%; padding: 13px 15px; border-radius: 13px; border: 1.5px solid rgba(36,24,18,.14);
  background: var(--paper); font-size: 14.5px; color: var(--ink); outline: 0; transition: border-color .2s, box-shadow .2s;
  font-family: var(--font-body); resize: vertical;
}
.fld input:focus, .fld textarea:focus { border-color: var(--flame); box-shadow: 0 0 0 4px rgba(242,121,15,.13); }
.fld input.err { border-color: var(--ember); box-shadow: 0 0 0 4px rgba(196,30,46,.12); animation: shake .35s; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.wa-checkout {
  width: 100%; justify-content: center; margin-top: 14px;
  background: linear-gradient(135deg, #2BE071, #17A957); color: #fff;
  padding: 17px; border-radius: 15px; font-size: 15.5px; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35); transition: transform .18s, box-shadow .18s;
}
.wa-checkout:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 211, 102, .45); }
.checkout-hint { text-align: center; font-size: 12px; color: var(--ink-soft); margin-top: 9px; }
.clear-cart { display: block; margin: 14px auto 0; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-decoration: underline; }
.clear-cart:hover { color: var(--ember); }
#confetti { position: absolute; inset: 0; pointer-events: none; z-index: 5; }

/* ════════ FLOATING WA ════════ */
.wa-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 120;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #2BE071, #17A957);
  display: grid; place-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08) rotate(6deg); }
.wa-fab-ring { position: absolute; inset: 0; border-radius: 50%; border: 2.5px solid rgba(37, 211, 102, .65); animation: ringOut 2.2s infinite; }
.wa-fab-ring.r2 { animation-delay: 1.1s; }
@keyframes ringOut { from { transform: scale(1); opacity: 1; } to { transform: scale(1.75); opacity: 0; } }

/* ════════ BOTTOM NAV (mobil) ════════ */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none; grid-template-columns: repeat(4, 1fr);
  background: rgba(250, 243, 232, .985);
  border-top: 1.5px solid rgba(36,24,18,.1);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav a, .bottom-nav button { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 700; color: var(--ink-soft); }
.bn-ico { font-size: 21px; position: relative; }
.bn-badge { position: absolute; top: -6px; right: -11px; min-width: 17px; height: 17px; border-radius: 99px; background: var(--ember-grad); color: #fff; font-size: 10px; font-weight: 800; display: grid; place-content: center; padding-inline: 4px; }
.bn-wa { background: linear-gradient(135deg, #2BE071, #17A957); width: 44px; height: 44px; border-radius: 50%; display: grid; place-content: center; margin-top: -22px; box-shadow: 0 8px 20px rgba(37,211,102,.4); border: 3px solid var(--cream); }

/* ════════ 2K MENÜKARTE LIGHTBOX ════════ */
.item-photo, .drink-tile { cursor: zoom-in; }
.card-lightbox {
  position: fixed; inset: 0; z-index: 170; padding: 24px;
  background: rgba(12, 7, 5, .88); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.card-lightbox.show { opacity: 1; pointer-events: auto; }
.card-lightbox img {
  max-width: min(1400px, 96vw); max-height: 92vh; width: auto; height: auto;
  border-radius: 18px; box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
  transform: scale(.96); transition: transform .3s;
}
.card-lightbox.show img { transform: scale(1); }
.clb-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(250, 243, 232, .14); color: var(--cream);
  font-size: 18px; font-weight: 800; transition: background .2s;
}
.clb-close:hover { background: var(--ember); }

/* ════════ TOAST ════════ */
.toast {
  position: fixed; left: 50%; bottom: 92px; transform: translate(-50%, 20px);
  z-index: 160; background: var(--coal); color: var(--cream);
  padding: 13px 22px; border-radius: 14px; font-weight: 700; font-size: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35); opacity: 0; pointer-events: none;
  transition: all .3s cubic-bezier(.3, 1, .3, 1); max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ════════ Scroll-Reveal ════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s cubic-bezier(.2, .9, .2, 1); }
.reveal.in { opacity: 1; transform: none; }


/* ════════ BAUKASTEN (Builder) ════════ */
.builder-section { padding: 74px 0 60px; background:
  radial-gradient(700px 320px at 12% 0%, rgba(255, 182, 39, .14), transparent 60%),
  linear-gradient(180deg, #FFF9EE, var(--cream)); }
.builder { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 26px; align-items: start; }
.b-stage-wrap { position: sticky; top: calc(var(--header-h) + 14px); }
.b-stage {
  background:
    radial-gradient(420px 240px at 50% 8%, rgba(255,182,39,.18), transparent 70%),
    linear-gradient(180deg, #241812, #191110);
  border-radius: 24px; padding: 12px; box-shadow: 0 24px 54px rgba(36,24,18,.3);
  border: 1.5px solid rgba(255,182,39,.25);
}
.b-stage svg { width: 100%; height: auto; display: block; }
.b-stage-3d { padding: 0; aspect-ratio: 460 / 340; overflow: hidden; }
.b-stage-3d canvas { width: 100%; height: 100%; display: block; cursor: grab; border-radius: inherit; }
.b-stage-3d canvas:active { cursor: grabbing; }
.b-price-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--paper); border-radius: 18px; padding: 13px 16px; margin-top: 12px; box-shadow: var(--shadow-2); border: 1.5px solid rgba(36,24,18,.08); }
.b-price { font-size: 26px; font-weight: 800; letter-spacing: -.5px; }
.b-price small { font-size: 12px; color: var(--ink-soft); font-weight: 700; display: block; letter-spacing: .4px; }
.b-add { display: inline-flex; align-items: center; gap: 8px; background: var(--ember-grad); color: #fff; font-weight: 800; font-size: 14.5px; padding: 13px 20px; border-radius: 14px; box-shadow: var(--shadow-hot); transition: transform .18s, box-shadow .18s; }
.b-add:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(196,30,46,.45); }
.b-add:active { transform: scale(.95); }
.b-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.b-tab { padding: 13px 8px; border-radius: 15px; font-weight: 800; font-size: 14px; background: var(--paper); border: 2px solid rgba(36,24,18,.1); transition: all .2s; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.b-tab .bt-ico { font-size: 24px; }
.b-tab .bt-price { font-size: 11px; color: var(--ink-soft); font-weight: 700; }
.b-tab.active { border-color: var(--ember); background: #FDECEC; box-shadow: 0 8px 20px rgba(196,30,46,.15); }
.b-group { margin-bottom: 14px; background: var(--paper); border-radius: 18px; border: 1.5px solid rgba(36,24,18,.08); padding: 14px 16px; }
.b-group-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.b-group-head .bg-ico { font-size: 19px; }
.b-group-head h3 { font-size: 14px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.b-group-head .bg-hint { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--ink-soft); }
.b-opts { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 7px; }
.b-opt {
  display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center;
  padding: 10px 6px 8px; border-radius: 13px; border: 2px solid rgba(36,24,18,.1);
  background: var(--cream); font-weight: 700; font-size: 12px; line-height: 1.2;
  transition: all .16s; position: relative; cursor: pointer;
}
.b-opt .bo-ico { font-size: 22px; }
.b-opt .bo-price { font-size: 10.5px; color: var(--ink-soft); font-weight: 700; }
.b-opt:hover { border-color: var(--flame); transform: translateY(-1px); }
.b-opt.active { border-color: var(--ember); background: #FDECEC; }
.b-opt.active::after { content: '✓'; position: absolute; top: -7px; right: -5px; width: 19px; height: 19px; border-radius: 50%; background: var(--ember-grad); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-content: center; box-shadow: 0 3px 8px rgba(196,30,46,.4); }
.b-opt.veg-mark::before { content: '🌱'; position: absolute; top: -7px; left: -5px; font-size: 12px; }
.b-summary { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
.b-summary b { color: var(--ink); }
@keyframes bPop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.b-stage .pop { animation: bPop .45s cubic-bezier(.3, 1.4, .4, 1) both; transform-origin: center; transform-box: fill-box; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1140px) {
  .status-pill { display: none; }
  .main-nav { gap: 18px; margin-left: 14px; }
}
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .builder { grid-template-columns: 1fr; }
  .b-stage-wrap { position: static; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-stage { height: 430px; margin-top: -10px; }
  .heat-lamp { right: 14%; height: 290px; }
  .order-grid { grid-template-columns: 1fr; gap: 34px; }
  .catering-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav, .status-pill { display: none; }
  .logo-txt small { display: none; }
  .header-in { gap: 10px; }
  .lang-switch button { padding: 6px 9px; }
  .usp-grid { grid-template-columns: 1fr; margin-top: -50px; }
  .menu-grid { grid-template-columns: 1fr; }
  .bottom-nav { display: grid; }
  /* Alt navigasyonda WhatsApp zaten var — mobilde çift buton olmasın */
  .wa-fab { display: none; }
  .footer { padding-bottom: 130px; }
  .hero { padding-bottom: 130px; }
  .hero-scroll { display: none; }
  .cart-drawer { width: 100vw; }
  .toast { bottom: 150px; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .hero-stage { height: 400px; }
  .doner-scale { transform: scale(.82); }
}
@media (min-width: 761px) {
  .bottom-nav { display: none !important; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .15s !important; }
  .doner-cyl { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ══════════ Foto-gerçek builder sahnesi (bph) ══════════ */
.b-stage-photo { padding: 10px; }
.bph { position: relative; margin: 0; perspective: 950px; }
.bph-tilt {
  position: relative; aspect-ratio: 16 / 10.4; border-radius: 18px; overflow: hidden;
  transform-style: preserve-3d; transition: transform .4s cubic-bezier(.2, .8, .3, 1);
  background: #1c1410; box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.bph-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform-origin: 50% 55%;
}
.bph:not(.bph-static) .bph-img { animation: bphKen 17s ease-in-out infinite alternate; }
@keyframes bphKen {
  from { transform: scale(1.04) translate(.5%, .3%); }
  to   { transform: scale(1.12) translate(-.7%, -.5%); }
}
.bph-img.bph-b { opacity: 0; transition: opacity .55s ease; }
.bph-img.bph-b.on { opacity: 1; }
.bph-img.bph-b.instant { transition: none; }
.bph-glare {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 236, 200, .14) 0%, transparent 32%),
              radial-gradient(90% 60% at 50% 118%, rgba(0, 0, 0, .42), transparent 60%);
}
.bph-scrim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(16, 10, 8, .78));
}
.bph-steam { position: absolute; left: 50%; top: 6%; width: 0; height: 0; pointer-events: none; }
.bph-steam i {
  position: absolute; left: -18px; bottom: -120px; width: 36px; height: 120px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 252, 246, .28), transparent 72%);
  filter: blur(7px); opacity: 0; animation: bphSteam 5.4s linear infinite;
}
.bph-steam i:nth-child(2) { left: -52px; animation-delay: 1.8s; animation-duration: 6.2s; }
.bph-steam i:nth-child(3) { left: 14px;  animation-delay: 3.4s; animation-duration: 5.8s; }
.bph-static .bph-steam i { animation: none; }
@keyframes bphSteam {
  0% { transform: translateY(64px) scaleX(.7) rotate(-3deg); opacity: 0; }
  22% { opacity: .55; }
  100% { transform: translateY(-96px) scaleX(1.35) rotate(4deg); opacity: 0; }
}
.bph-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font: 700 .72rem/1 Inter, sans-serif; letter-spacing: .04em; color: #FAF3E8;
  background: rgba(22, 16, 16, .62); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 182, 39, .4); border-radius: 999px; padding: 7px 12px;
}
.bph-caption {
  position: absolute; left: 16px; right: 16px; bottom: 12px; z-index: 3;
  display: flex; flex-direction: column; gap: 2px; color: #FAF3E8;
}
.bph-caption strong { font: 800 1.15rem/1.15 Inter, sans-serif; text-shadow: 0 2px 10px rgba(0, 0, 0, .6); }
.bph-caption span { font: 500 .72rem/1.2 Inter, sans-serif; opacity: .75; letter-spacing: .03em; }
.bph-chips {
  display: flex; gap: 10px; padding: 12px 4px 4px; overflow-x: auto; scrollbar-width: none;
}
.bph-chips::-webkit-scrollbar { display: none; }
.bph-chip {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 62px;
}
.bph-chip.pop { animation: bphChipPop .5s cubic-bezier(.3, 1.5, .4, 1) both; }
@keyframes bphChipPop {
  0% { transform: scale(.3) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.bphc-media {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid rgba(255, 182, 39, .55); box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  background-size: cover; background-position: center; font-size: 1.3rem;
  background-color: #2a1d16;
}
.bphc-sauce {
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .85) 0 12%, transparent 34%),
              radial-gradient(circle at 50% 55%, var(--sc) 0 68%, color-mix(in srgb, var(--sc) 70%, #000) 100%);
}
.bphc-label {
  font: 600 .62rem/1.15 Inter, sans-serif; color: rgba(250, 243, 232, .85);
  text-align: center; max-width: 62px; overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
@media (max-width: 760px) {
  .bph-caption strong { font-size: 1rem; }
  .bph-tilt { aspect-ratio: 16 / 11; }
}
