/* ============================================
   PIZZERIA ITALIANO · ALL-DARK EDITION
   Editorial Restaurant · Cinematic · Readable
   ============================================ */

:root {
  --bg: #0f0a08;
  --bg-soft: #161110;
  --surface: #1c1614;
  --surface-elev: #241d1a;
  --surface-hi: #2c2421;

  --text: #f6efe2;
  --text-soft: #c9bfae;
  --text-mid: #998d7c;
  --text-mute: #6b6053;

  --tomato: #e2543d;
  --tomato-deep: #c8341d;
  --tomato-soft: #ec7058;
  --olive: #98b25c;
  --olive-deep: #6b8e3d;
  --gold: #e0b656;
  --gold-light: #f0d690;
  --basil: #a8c474;
  --cream: #f6efe2;

  --line: rgba(246, 239, 226, 0.1);
  --line-strong: rgba(246, 239, 226, 0.18);
  --line-faint: rgba(246, 239, 226, 0.05);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 16px 36px -12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 32px 80px -20px rgba(0, 0, 0, 0.7);

  --font-display: 'Fraunces', 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  background-image:
    radial-gradient(circle at 0% 0%, rgba(226, 84, 61, 0.06), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(224, 182, 86, 0.04), transparent 50%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
em, .italic { font-family: var(--font-display); font-style: italic; }
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 10, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--tomato);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(226, 84, 61, 0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-line-1 {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tomato);
  font-weight: 700;
}
.logo-line-2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.main-nav a:hover { color: var(--tomato); }
.main-nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--tomato);
  transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface);
  transition: all 0.25s;
}
.icon-btn:hover { background: var(--tomato); color: white; border-color: var(--tomato); transform: translateY(-1px); }
.cart-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--tomato); color: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 6px 16px -4px rgba(226, 84, 61, 0.4);
}
.cart-btn:hover {
  background: var(--tomato-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(200, 52, 29, 0.6);
}
.cart-count {
  background: rgba(0,0,0,0.3); color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(226, 84, 61, 0.18), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(224, 182, 86, 0.10), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  margin-bottom: 28px;
  font-weight: 700;
  padding: 8px 16px;
  border: 1px solid rgba(236, 112, 88, 0.3);
  border-radius: 100px;
  background: rgba(236, 112, 88, 0.08);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--tomato-soft);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(236, 112, 88, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 7px rgba(236, 112, 88, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-title em {
  color: var(--tomato);
  font-style: italic;
  font-weight: 400;
}
.hero-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--tomato); color: white;
  box-shadow: 0 8px 20px -6px rgba(226, 84, 61, 0.5);
}
.btn-primary:hover {
  background: var(--tomato-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(200, 52, 29, 0.6);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--tomato); background: rgba(226, 84, 61, 0.08); color: var(--tomato-soft); }
.btn-light {
  background: var(--text); color: var(--bg);
}
.btn-light:hover { background: white; transform: translateY(-1px); }
.btn .icon { transition: transform 0.25s; }
.btn:hover .icon[data-icon="arrowright"] { transform: translateX(3px); }
.btn-small { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 1;
}
.pizza-art {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
}
.pizza-art .ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.pizza-art .ring.outer { animation-duration: 90s; }
.pizza-art .ring.middle { inset: 8%; border-style: dashed; }
.pizza-art .ring.inner { inset: 18%; }
@keyframes spin { to { transform: rotate(360deg); } }
.pizza-art .center {
  position: absolute;
  inset: 28%;
  background: linear-gradient(135deg, var(--tomato) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow:
    0 30px 60px -10px rgba(226, 84, 61, 0.5),
    inset 0 -20px 40px rgba(155, 40, 20, 0.4);
}
.pizza-art .center::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}
.pizza-art .word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  color: white;
  text-align: center;
  line-height: 1;
  z-index: 1;
}
.pizza-art .word small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-style: normal;
  margin-top: 8px;
  opacity: 0.8;
  font-weight: 600;
}
.curved-text { position: absolute; inset: 0; pointer-events: none; }
.curved-text text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 600;
  fill: rgba(246, 239, 226, 0.4);
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1320px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--tomato-soft);
  font-weight: 400;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
}
.hero-stat-text {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features {
  background: var(--surface);
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature { display: flex; align-items: center; gap: 14px; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(226, 84, 61, 0.12);
  display: grid; place-items: center;
  color: var(--tomato-soft);
  flex-shrink: 0;
  border: 1px solid rgba(226, 84, 61, 0.2);
}
.feature-text { display: flex; flex-direction: column; }
.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.feature-sub {
  font-size: 12px;
  color: var(--text-mid);
}

/* ============================================
   STORY
   ============================================ */
.story {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 32px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 20px;
}
.section-title em { color: var(--tomato); font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 560px;
}
.story-text .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 20px;
}
.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.story-text strong { color: var(--tomato-soft); font-weight: 700; }
.story-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-hand);
  font-size: 38px;
  color: var(--tomato-soft);
  line-height: 1;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  background: var(--surface);
  padding: 100px 32px 120px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(226, 84, 61, 0.08), transparent 60%);
  pointer-events: none;
}
.menu-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }
.menu-header {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.menu-header-text { max-width: 640px; }
.menu-header .section-title { margin-bottom: 12px; }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--bg);
  border-radius: 100px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}
.menu-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.menu-tab .icon { width: 16px; height: 16px; }
.menu-tab:hover { color: var(--text); background: var(--surface-elev); }
.menu-tab.active {
  background: var(--tomato);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(226, 84, 61, 0.5);
}

.menu-category { display: none; }
.menu-category.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cat-info {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.cat-info-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--tomato);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(226, 84, 61, 0.4);
}
.cat-info-text { display: flex; flex-direction: column; }
.cat-info-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  font-weight: 500;
}
.cat-info-sub {
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 4px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.dish-card {
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dish-card:hover {
  border-color: var(--tomato);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--surface-hi);
}
.dish-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--tomato), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}
.dish-card:hover::before { opacity: 1; }
.dish-head {
  display: flex; justify-content: space-between; align-items: start;
  gap: 14px;
}
.dish-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.dish-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--tomato-soft);
  font-weight: 500;
  white-space: nowrap;
}
.dish-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
}
.dish-add {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  align-self: flex-start;
  transition: all 0.25s;
}
.dish-add .icon { width: 14px; height: 14px; }
.dish-card:hover .dish-add {
  background: var(--tomato);
  color: white;
  border-color: var(--tomato);
}

/* ============================================
   BESUCH
   ============================================ */
.besuch {
  background: var(--bg);
  padding: 100px 32px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.besuch::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224, 182, 86, 0.06), transparent 60%);
  pointer-events: none;
}
.besuch-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hours-card {
  margin-top: 36px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hours-card h3 {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tomato-soft);
  margin-bottom: 16px;
}
.hours-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-faint);
  font-size: 15px;
  color: var(--text-soft);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .dots { flex: 1; border-bottom: 1px dotted var(--line); margin-bottom: 6px; }
.hours-row span:last-child {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}
.hours-row.closed span:last-child { color: var(--tomato-soft); font-style: italic; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.contact-card:hover {
  background: var(--surface-elev);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.contact-card-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-card .adresse {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-faint);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-row-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}
.contact-row-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
}
.contact-row-value.small { font-size: 15px; font-family: var(--font-body); font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-soft);
  padding: 60px 32px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-faint);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
  display: block;
}
.footer-col a:hover { color: var(--tomato-soft); }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-mute);
  flex-wrap: wrap; gap: 12px;
}
.footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--text-soft);
}

/* ============================================
   PROMO BANNER · COUPON · RABATT
   ============================================ */
.promo-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(90deg, var(--tomato) 0%, var(--gold) 100%);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  z-index: 99;
}
.promo-banner .icon { color: var(--bg); }
.promo-banner strong { font-weight: 800; }

.coupon-row {
  display: flex; gap: 8px;
  margin-bottom: 14px;
}
.coupon-row input {
  flex: 1;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.coupon-row input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-elev);
  box-shadow: 0 0 0 3px rgba(224, 182, 86, 0.15);
}
.coupon-row input::placeholder { color: var(--text-mute); text-transform: none; letter-spacing: 0; }
.coupon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.coupon-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.coupon-applied {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: rgba(152, 178, 92, 0.12);
  border: 1px solid rgba(152, 178, 92, 0.25);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--olive);
}
.coupon-applied strong { color: var(--olive); margin-right: 4px; }
.coupon-remove {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: var(--text);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.coupon-remove:hover { background: var(--tomato); transform: rotate(90deg); }
.coupon-remove .icon { width: 11px; height: 11px; }

.cart-row.rabatt, .summary-row.rabatt {
  color: var(--olive);
}
.cart-row.rabatt span:last-child, .summary-row.rabatt span:last-child {
  color: var(--olive);
  font-weight: 700;
}

/* ============================================
   TESTPHASE-POPUP
   ============================================ */
.test-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: grid; place-items: center;
  padding: 24px;
  animation: testFade 0.3s ease;
}
@keyframes testFade { from { opacity: 0; } to { opacity: 1; } }
.test-modal {
  background: linear-gradient(180deg, var(--surface-elev) 0%, var(--surface) 100%);
  border: 1px solid rgba(224, 182, 86, 0.3);
  border-radius: 22px;
  width: 100%; max-width: 540px;
  padding: 48px 40px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(224, 182, 86, 0.2), 0 50px 120px rgba(0,0,0,0.7);
  animation: testSlideIn 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
@keyframes testSlideIn {
  from { transform: scale(0.92) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.test-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--tomato), var(--gold));
  border-radius: 22px 22px 0 0;
}
.test-icon {
  width: 88px; height: 88px;
  margin: -88px auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--tomato));
  color: white;
  display: grid; place-items: center;
  border: 6px solid var(--surface);
  box-shadow: 0 16px 32px rgba(224, 182, 86, 0.4);
  animation: testWobble 2.4s ease-in-out infinite;
}
@keyframes testWobble {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-4deg); }
  80% { transform: rotate(4deg); }
}
.test-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.test-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.test-title em {
  background: linear-gradient(135deg, var(--gold), var(--tomato));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.test-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.test-text strong { color: var(--tomato-soft); font-weight: 600; }
.test-info {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 22px 24px;
  background: rgba(226, 84, 61, 0.08);
  border: 1px solid rgba(226, 84, 61, 0.2);
  border-left: 3px solid var(--tomato);
  border-radius: 14px;
  margin-bottom: 22px;
}
.test-info-row {
  display: flex; align-items: flex-start; gap: 14px;
  text-align: left;
}
.test-info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.test-info-text { display: flex; flex-direction: column; gap: 4px; }
.test-info-text strong {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.test-info-text span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}
.test-phone {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--tomato-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(226, 84, 61, 0.25);
  background: rgba(226, 84, 61, 0.05);
  transition: all 0.2s;
}
.test-phone:hover {
  background: var(--tomato);
  color: white;
  transform: translateY(-2px);
  border-color: var(--tomato);
}
.test-foot {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 24px;
}
.test-foot em { color: var(--gold); font-style: italic; font-family: var(--font-display); font-size: 16px; }
.test-close-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--tomato), var(--gold));
  color: var(--bg);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 12px 28px -8px rgba(226, 84, 61, 0.5);
}
.test-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -8px rgba(226, 84, 61, 0.6);
}
.test-close-btn .icon { transition: transform 0.2s; }
.test-close-btn:hover .icon { transform: translateX(4px); }

@media (max-width: 540px) {
  .test-modal { padding: 40px 24px 28px; }
  .test-title { font-size: 32px; }
  .test-text { font-size: 15px; }
  .test-phone { font-size: 26px; }
  .test-close-btn { padding: 14px 22px; font-size: 12px; }
}

/* ============================================
   TOAST
   ============================================ */
.toast-stack {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  display: flex; flex-direction: column;
  gap: 10px;
  max-width: calc(100vw - 48px);
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px 16px 18px;
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  box-shadow: var(--shadow-md);
  min-width: 280px;
  max-width: 380px;
  pointer-events: auto;
  animation: toastIn 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), toastOut 0.35s 4s forwards;
  position: relative;
  overflow: hidden;
}
.toast::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--tomato);
}
.toast.success::before { background: var(--olive); }
.toast.warn::before { background: var(--gold); }
.toast.error::before { background: var(--tomato); }
.toast-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: rgba(226, 84, 61, 0.12);
  color: var(--tomato-soft);
}
.toast.success .toast-icon { background: rgba(152, 178, 92, 0.14); color: var(--olive); }
.toast.warn .toast-icon { background: rgba(224, 182, 86, 0.14); color: var(--gold); }
.toast-body { flex: 1; min-width: 0; }
.toast-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  color: var(--text);
}
.toast-msg {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.toast-close {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--text-mid);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
}
.toast-close:hover { background: var(--bg); color: var(--text); }
.toast.removing { animation: toastOut 0.3s forwards; }
@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
  to { transform: translateX(120%); opacity: 0; }
}
@media (max-width: 720px) {
  .toast-stack { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: 0; max-width: none; }
}

/* ============================================
   MIN-BESTELLWERT BANNER (im Cart)
   ============================================ */
.min-warn {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: rgba(224, 182, 86, 0.08);
  border: 1px solid rgba(224, 182, 86, 0.25);
  border-radius: var(--radius);
}
.min-warn-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.min-warn-head .icon { color: var(--gold); }
.min-warn-head strong {
  color: var(--gold-light);
  font-weight: 700;
}
.min-bar {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}
.min-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--tomato));
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.btn.disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Form-Field Error */
.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--tomato);
  background: rgba(226, 84, 61, 0.06);
  box-shadow: 0 0 0 3px rgba(226, 84, 61, 0.12);
}

/* ============================================
   ADDRESS AUTOCOMPLETE
   ============================================ */
.addr-autocomplete { position: relative; }
.addr-suggestions {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: var(--surface-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.5);
  padding: 6px;
}
.addr-suggestion {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.addr-suggestion:hover, .addr-suggestion.highlighted {
  background: var(--surface-hi);
}
.addr-pin {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(226, 84, 61, 0.12);
  color: var(--tomato-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.addr-pin .icon { width: 16px; height: 16px; }
.addr-text { flex: 1; min-width: 0; }
.addr-line-1 {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.addr-line-2 {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 2px;
}
.addr-empty {
  padding: 18px;
  text-align: center;
  color: var(--text-mid);
  font-size: 13px;
  font-style: italic;
}
.addr-loading {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.spinner {
  width: 16px; height: 16px;
  border: 2px solid var(--line);
  border-top-color: var(--tomato);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================
   LIEFERGEBIET-BANNER (Warnung)
   ============================================ */
.liefer-warn[hidden] { display: none !important; }
.liefer-warn {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(226, 84, 61, 0.18) 0%, rgba(216, 71, 61, 0.1) 100%);
  border: 1px solid rgba(226, 84, 61, 0.4);
  border-left: 4px solid var(--tomato);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  animation: warnPulse 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
@keyframes warnPulse {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.liefer-warn::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 100%;
  background: radial-gradient(circle, rgba(226, 84, 61, 0.15), transparent 70%);
  pointer-events: none;
}
.liefer-warn-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -4px rgba(226, 84, 61, 0.5);
  animation: shake 0.6s ease-in-out;
}
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}
.liefer-warn-body {
  flex: 1; min-width: 0;
  position: relative; z-index: 1;
}
.liefer-warn-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--tomato-soft);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.1;
}
.liefer-warn-msg {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 8px;
}
.liefer-warn-zones {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}
.liefer-warn-zones strong { color: var(--gold); font-weight: 600; }

.liefer-ok {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
  background: rgba(152, 178, 92, 0.1);
  border: 1px solid rgba(152, 178, 92, 0.3);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--olive);
  font-weight: 500;
  animation: warnPulse 0.4s ease;
}
.liefer-ok .icon { color: var(--olive); }

/* ============================================
   DISH MODAL (Sonderwunsch)
   ============================================ */
.dish-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  z-index: 250;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  display: grid; place-items: center;
  padding: 24px;
}
.dish-overlay.open { opacity: 1; pointer-events: auto; }
.dish-modal {
  background: var(--surface);
  width: 100%; max-width: 560px;
  max-height: 92vh;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
  position: relative;
}
.dish-overlay.open .dish-modal { transform: scale(1) translateY(0); }
.dish-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: grid; place-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  transition: all 0.25s;
  z-index: 2;
}
.dish-close:hover { background: var(--tomato); color: white; border-color: var(--tomato); transform: rotate(90deg); }

.dish-modal-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, var(--surface-elev) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.dish-modal-head::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--tomato), var(--gold));
}
.dish-modal-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--tomato);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -4px rgba(226, 84, 61, 0.5);
}
.dish-modal-icon .icon { width: 26px; height: 26px; }
.dish-modal-info { min-width: 0; padding-right: 32px; }
.dish-modal-cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  font-weight: 700;
  margin-bottom: 4px;
}
.dish-modal-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.dish-modal-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.dish-modal-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--tomato-soft);
  font-weight: 500;
  white-space: nowrap;
}

.dish-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}
.dm-section { margin-bottom: 22px; }
.dm-section:last-child { margin-bottom: 0; }
.dm-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  font-weight: 700;
  margin-bottom: 12px;
}
.dm-label .icon { color: var(--tomato-soft); }

.dm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dm-tag {
  padding: 9px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}
.dm-tag:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
.dm-tag.active {
  background: var(--tomato);
  color: white;
  border-color: var(--tomato);
  box-shadow: 0 4px 10px -2px rgba(226, 84, 61, 0.4);
}
.dm-tag-paid {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 8px 9px 14px;
}
.dm-tag-paid .dm-tag-price {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  background: rgba(224, 182, 86, 0.12);
  padding: 3px 9px;
  border-radius: 100px;
  font-weight: 500;
}
.dm-tag-paid.active .dm-tag-price {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* Cart extras */
.cart-item-extras {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(224, 182, 86, 0.06);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}
.cart-extra-line {
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--text-soft);
  padding: 2px 0;
}
.cart-extra-line span:last-child {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
}

#dmNotiz {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  resize: vertical;
  min-height: 84px;
  transition: all 0.2s;
}
#dmNotiz:focus {
  outline: none;
  border-color: var(--tomato);
  background: var(--surface-elev);
  box-shadow: 0 0 0 3px rgba(226, 84, 61, 0.15);
}
#dmNotiz::placeholder { color: var(--text-mute); }
.dm-counter {
  text-align: right;
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 6px;
  letter-spacing: 0.1em;
  font-family: var(--font-mono, monospace);
}

.dish-modal-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--surface-elev);
  border-top: 1px solid var(--line);
}
.dm-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.dm-qty-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-elev);
  display: grid; place-items: center;
  color: var(--text);
  transition: all 0.2s;
}
.dm-qty-btn:hover { background: var(--tomato); color: white; }
.dm-qty-num {
  font-family: var(--font-display);
  font-size: 22px;
  min-width: 32px;
  text-align: center;
  color: var(--text);
  font-weight: 500;
}
.dish-modal-foot .btn {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px;
}
.dish-modal-foot .btn strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

/* CART ITEM NOTIZ */
.cart-item-notiz {
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(226, 84, 61, 0.08);
  border-left: 2px solid var(--tomato);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
  font-style: italic;
}
.cart-item-notiz strong {
  display: inline-flex; align-items: center; gap: 4px;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  font-weight: 700;
  margin-right: 6px;
}

@media (max-width: 720px) {
  .dish-modal-head { grid-template-columns: auto 1fr; padding: 24px 20px 20px; }
  .dish-modal-price { grid-column: 1 / -1; text-align: right; }
  .dish-modal-info { padding-right: 0; }
  .dish-modal-body { padding: 20px; }
  .dish-modal-foot { padding: 16px 20px; }
  .dish-modal-name { font-size: 24px; }
}

/* ============================================
   WARENKORB DRAWER
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 460px;
  background: var(--surface);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--line);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--surface-elev);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  font-weight: 500;
}
.cart-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.cart-close:hover { background: var(--tomato); color: white; border-color: var(--tomato); transform: rotate(90deg); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 28px; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty .icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(226, 84, 61, 0.12);
  display: grid; place-items: center;
  color: var(--tomato-soft);
}
.cart-empty .icon-wrap .icon { width: 32px; height: 32px; }
.cart-empty-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}
.cart-empty-text {
  font-size: 13px;
  color: var(--text-mid);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-faint);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 500;
}
.cart-item-price {
  font-size: 12px;
  color: var(--text-mid);
}
.cart-item-controls {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text);
  transition: all 0.2s;
}
.qty-btn .icon { width: 12px; height: 12px; }
.qty-btn:hover { background: var(--tomato); color: white; border-color: var(--tomato); }
.qty-num {
  font-family: var(--font-display);
  font-size: 18px;
  min-width: 20px;
  text-align: center;
  color: var(--text);
}
.cart-item-total {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--tomato-soft);
  text-align: right;
  align-self: start;
  font-weight: 500;
}
.cart-item-remove {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 10px;
  text-align: right;
  width: 100%;
  justify-content: flex-end;
}
.cart-item-remove .icon { width: 11px; height: 11px; }
.cart-item-remove:hover { color: var(--tomato); }

.cart-footer {
  padding: 24px 28px;
  background: var(--surface-elev);
  border-top: 1px solid var(--line);
}
.cart-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-mid);
}
.cart-row.total {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}
.cart-row.total span:last-child { color: var(--tomato-soft); }

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  display: grid; place-items: center;
  padding: 24px;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal {
  background: var(--surface);
  width: 100%; max-width: 880px;
  max-height: 92vh;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: scale(0.97) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.checkout-overlay.open .checkout-modal { transform: scale(1) translateY(0); }

.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  background: var(--surface-elev);
  border-bottom: 1px solid var(--line);
}
.checkout-steps { display: flex; gap: 28px; flex-wrap: wrap; }
.step {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
  opacity: 0.45;
  transition: opacity 0.25s;
}
.step.active { opacity: 1; color: var(--tomato-soft); }
.step.done { opacity: 1; color: var(--olive); }
.step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.checkout-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.checkout-close:hover { background: var(--tomato); color: white; border-color: var(--tomato); transform: rotate(90deg); }

.checkout-step { display: none; padding: 36px; overflow-y: auto; }
.checkout-step.active { display: block; animation: fadeIn 0.3s ease; }
.checkout-step h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 8px;
  line-height: 1.1;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.checkout-step h2 em { color: var(--tomato-soft); font-style: italic; font-weight: 500; }
.checkout-step .step-intro {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}
.form-field input, .form-field textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--tomato);
  background: var(--surface-elev);
  box-shadow: 0 0 0 3px rgba(226, 84, 61, 0.15);
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--text-mute);
}

.checkout-actions {
  display: flex; justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* PAYMENT */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.payment-option { cursor: pointer; }
.payment-option input { display: none; }
.payment-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex; align-items: center; gap: 14px;
  transition: all 0.2s;
}
.payment-option input:checked + .payment-card {
  border-color: var(--tomato);
  background: var(--surface-elev);
  box-shadow: 0 6px 18px -6px rgba(226, 84, 61, 0.4);
}
.payment-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-elev);
  color: var(--text-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.payment-option input:checked + .payment-card .payment-icon {
  background: var(--tomato);
  color: white;
}
.payment-card-text { display: flex; flex-direction: column; gap: 2px; }
.payment-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}
.payment-desc {
  font-size: 12px;
  color: var(--text-mid);
}

.payment-details { margin-bottom: 28px; }
.info-box {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  background: rgba(226, 84, 61, 0.08);
  border-left: 3px solid var(--tomato);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.info-box .icon { color: var(--tomato-soft); margin-top: 2px; flex-shrink: 0; }
.info-box strong { color: var(--text); }

.card-visual {
  background: linear-gradient(135deg, var(--bg) 0%, var(--tomato-deep) 100%);
  color: white;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6;
  max-width: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}
.card-visual::before {
  content: 'PIZZERIA ITALIANO';
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.7;
  font-weight: 500;
}
.card-chip {
  width: 40px; height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 5px;
  margin-top: 24px;
  position: relative;
}
.card-chip::after {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
}
.card-num {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  letter-spacing: 0.12em;
}
.card-bottom {
  display: flex; justify-content: space-between; align-items: end;
  font-size: 11px;
}
.card-bottom span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.card-bottom div > div {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* CONSENT */
.consent-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.consent-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.consent-item:hover { border-color: var(--tomato); background: var(--surface-elev); }
.consent-item input { display: none; }
.consent-box {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: transparent;
  transition: all 0.2s;
}
.consent-item input:checked ~ .consent-box {
  background: var(--tomato);
  border-color: var(--tomato);
  color: white;
}
.consent-item.required { border-left: 3px solid var(--tomato); }
.consent-item.recommended { border-left: 3px solid var(--gold); }
.consent-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.consent-text strong {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.consent-text strong em.req {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  font-weight: 700;
  background: rgba(226, 84, 61, 0.15);
  padding: 2px 7px;
  border-radius: 100px;
}
.consent-text strong em.emp {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  background: rgba(224, 182, 86, 0.15);
  padding: 2px 7px;
  border-radius: 100px;
}
.consent-text span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
}
.consent-text a { color: var(--tomato-soft); border-bottom: 1px dashed var(--tomato-soft); }

/* SUMMARY */
.checkout-summary {
  margin-bottom: 24px;
  padding: 20px 22px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.checkout-summary h4 {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tomato-soft);
  margin-bottom: 14px;
  font-weight: 700;
}
.summary-item, .summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}
.summary-item { color: var(--text); }
.summary-row { color: var(--text-mid); }
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
}
.summary-row.total span:last-child { color: var(--tomato-soft); }

/* SUCCESS */
.success { text-align: center; padding: 40px 16px; }
.success-circle {
  width: 88px; height: 88px;
  margin: 0 auto 28px;
  color: white;
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  border-radius: 50%;
  display: grid; place-items: center;
  animation: spinIn 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: 0 16px 32px -8px rgba(107, 142, 61, 0.5);
}
.success-circle .icon { width: 42px; height: 42px; }
@keyframes spinIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.success h2 {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}
.success-text {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.order-number {
  display: inline-flex; flex-direction: column; gap: 6px;
  padding: 18px 36px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
.order-number span {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}
.order-number strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--tomato-soft);
  font-weight: 500;
}
.success-eta {
  font-size: 16px;
  margin-bottom: 28px;
  color: var(--text-soft);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.show-mobile { display: none; }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(15, 10, 8, 0.97);
  backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line-faint);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--tomato); }
.mobile-admin {
  display: flex !important; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 12px 16px !important;
  background: rgba(226, 84, 61, 0.1);
  border: 1px solid rgba(226, 84, 61, 0.2);
  border-radius: 8px;
  color: var(--tomato-soft) !important;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .features-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .story-grid, .besuch-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .header-inner { padding: 12px 16px; gap: 12px; }
  .main-nav { display: none; }
  .show-mobile { display: grid; }
  .hide-mobile { display: none; }
  .logo-line-2 { font-size: 18px; }
  .logo-mark { width: 38px; height: 38px; font-size: 15px; }
  .header-actions { gap: 6px; }
  .cart-label { display: none; }
  .cart-btn { padding: 9px 12px 9px 14px; gap: 8px; font-size: 12px; }
  .icon-btn { width: 38px; height: 38px; }

  .hero { padding: 40px 18px 56px; }
  .hero-inner { gap: 40px; }
  .hero-content { max-width: none; }
  .hero-eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 20px; letter-spacing: 0.22em; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); line-height: 1; margin-bottom: 20px; }
  .hero-text { font-size: 15px; margin-bottom: 28px; line-height: 1.55; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; min-width: 140px; justify-content: center; }
  .hero-visual { max-width: 240px; }
  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
  }
  .hero-stat-num { font-size: 32px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.18em; }
  .hero-stat-text { font-size: 11px; }

  .features { padding: 18px; }
  .features-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature { gap: 10px; }
  .feature-icon { width: 36px; height: 36px; }
  .feature-title { font-size: 12px; }
  .feature-sub { font-size: 11px; }

  .story, .besuch { padding: 64px 18px; }
  .story-grid, .besuch-grid, .besuch-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-title { font-size: clamp(32px, 8vw, 44px); }
  .section-sub { font-size: 15px; }
  .story-text .lead { font-size: 17px; }
  .story-text p { font-size: 15px; }
  .story-sig { font-size: 32px; margin-top: 28px; padding-top: 20px; }

  .menu { padding: 64px 18px 80px; }
  .menu-header { flex-direction: column; align-items: start; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; }
  .menu-tabs { width: 100%; padding: 4px; gap: 4px; flex-wrap: nowrap; overflow-x: auto; }
  .menu-tab { padding: 8px 14px; font-size: 12px; }
  .cat-info { gap: 12px; margin-bottom: 20px; }
  .cat-info-icon { width: 44px; height: 44px; }
  .cat-info-name { font-size: 26px; }
  .dish-grid { grid-template-columns: 1fr; gap: 14px; }
  .dish-card { padding: 18px; gap: 10px; }
  .dish-name { font-size: 19px; }
  .dish-price { font-size: 19px; }
  .dish-desc { font-size: 13px; }

  .hours-card, .contact-card { padding: 22px; }
  .contact-card .adresse { font-size: 22px; }
  .contact-row-value { font-size: 17px; }
  .contact-row-value.small { font-size: 13px; word-break: break-all; }

  .site-footer { padding: 48px 18px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Cart */
  .cart-drawer { max-width: 100%; }
  .cart-header { padding: 20px 22px; }
  .cart-header h3 { font-size: 22px; }
  .cart-items { padding: 12px 22px; }
  .cart-footer { padding: 20px 22px; }
  .cart-item-name { font-size: 16px; }
  .cart-item-total { font-size: 18px; }
  .qty-btn { width: 32px; height: 32px; }

  /* Checkout */
  .checkout-overlay { padding: 0; align-items: stretch; }
  .checkout-modal { max-height: 100vh; max-width: 100%; border-radius: 0; height: 100vh; }
  .checkout-header { padding: 16px 18px; }
  .checkout-step { padding: 20px 18px 28px; }
  .checkout-step h2 { font-size: 24px; }
  .checkout-step .step-intro { font-size: 14px; margin-bottom: 22px; }
  .form-grid, .payment-methods { grid-template-columns: 1fr; gap: 12px; margin-bottom: 22px; }
  .form-field input, .form-field textarea { font-size: 16px; padding: 13px 14px; }
  .checkout-steps { gap: 14px; flex: 1; min-width: 0; overflow-x: auto; }
  .step { font-size: 9px; letter-spacing: 0.12em; flex-shrink: 0; }
  .step span:not(.step-num) { display: none; }
  .step.active span:not(.step-num) { display: inline; }
  .step-num { font-size: 16px; }
  .checkout-actions { flex-direction: column-reverse; gap: 10px; }
  .checkout-actions .btn { width: 100%; justify-content: center; }
  .checkout-summary { padding: 16px; }
  .card-visual { max-width: 100%; padding: 20px; }
  .card-num { font-size: 17px; }
  .success h2 { font-size: 36px; }
  .success-text { font-size: 16px; }
  .order-number { padding: 16px 28px; }
  .order-number strong { font-size: 28px; }

  /* Dish Modal */
  .dish-overlay { padding: 0; align-items: flex-end; }
  .dish-modal { max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .dish-modal-head { padding: 22px 18px 16px; gap: 14px; }
  .dish-modal-icon { width: 46px; height: 46px; border-radius: 12px; }
  .dish-modal-icon .icon { width: 22px; height: 22px; }
  .dish-modal-name { font-size: 22px; }
  .dish-modal-desc { font-size: 13px; }
  .dish-modal-price { font-size: 22px; }
  .dish-modal-body { padding: 18px; }
  .dish-modal-foot { padding: 14px 18px; gap: 10px; }
  .dm-tag, .dm-tag-paid { padding: 8px 12px; font-size: 12px; }
  .dm-tag-paid { padding: 8px 8px 8px 12px; gap: 6px; }
  .dm-tag-price { font-size: 12px; padding: 2px 8px; }
  .dm-qty-btn { width: 32px; height: 32px; }
  .dm-qty-num { font-size: 18px; min-width: 24px; }
  .dish-modal-foot .btn { padding: 12px 14px; font-size: 13px; }
  .dish-modal-foot .btn strong { font-size: 16px; }

  /* Toast */
  .toast-stack { left: 14px; right: 14px; bottom: 14px; }
  .toast { min-width: 0; max-width: none; padding: 14px 16px; }
  .toast-title { font-size: 12px; }
  .toast-msg { font-size: 13px; }

  /* Consent */
  .consent-item { padding: 14px 16px; gap: 12px; }
  .consent-text strong { font-size: 13px; }
  .consent-text span { font-size: 12px; }

  /* Min-warn */
  .min-warn-head { font-size: 12px; }
}

@media (max-width: 380px) {
  .hero-stats { grid-template-columns: 1fr; gap: 16px; padding-top: 20px; margin-top: 28px; }
  .features-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
