/* Medienbro Concierge — Restaurant-Template
   Mobil-first, kein Framework, system-ui-Stack, 3 Varianten via Custom Properties. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Design-Tokens (Basis) ---------- */
:root {
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --max-width: 68rem;
  --narrow-width: 44rem;
}

/* Variante WARM — Terracotta / Creme (klassisches Restaurant, Imbiss) */
.variant-warm {
  --bg: #faf4ec;
  --surface: #ffffff;
  --surface-alt: #f3e8da;
  --ink: #382318;
  --muted: #74594a;
  --line: #e8d9c8;
  --line-strong: #cbb49d;
  --accent: #a63c14;
  --accent-hover: #8a3110;
  --accent-ink: #ffffff;
  --accent-soft: #f7e2d7;
  --hero-bg: linear-gradient(160deg, #7c2d0e 0%, #a63c14 55%, #c25a2b 100%);
  --hero-ink: #fff6ee;
  /* Kontrast-Fix (Nutzertest-Audit): #f6d9c5 auf #c25a2b (hellste Stelle des
     Hero-Gradients) hatte nur 3,27:1 -- unter WCAG-AA 4,5:1 fuer Fliesstext.
     #0d0702 auf #c25a2b misst 4,57:1 (Formel: (L1+0.05)/(L2+0.05), relative
     Luminanz nach WCAG). */
  --hero-muted: #0d0702;
  --banner-bg: #38251a;
  --banner-ink: #ffe9d6;
  --footer-bg: #38251a;
  --footer-ink: #eedbc9;
}

/* Variante FRESH — Grün / hell (frisch, gesund, Café) */
.variant-fresh {
  --bg: #f5faf5;
  --surface: #ffffff;
  --surface-alt: #e8f3e8;
  --ink: #16281c;
  --muted: #48604f;
  --line: #d7e6d8;
  --line-strong: #a9c5ab;
  --accent: #1e6b3c;
  --accent-hover: #175330;
  --accent-ink: #ffffff;
  --accent-soft: #ddefe2;
  --hero-bg: linear-gradient(160deg, #143f26 0%, #1e6b3c 60%, #2e8a50 100%);
  --hero-ink: #f2fbf4;
  /* Kontrast-Fix (Nutzertest-Audit): #cbe8d2 auf #2e8a50 (hellste Stelle des
     Hero-Gradients) hatte nur 3,29:1. #050b06 auf #2e8a50 misst 4,61:1. */
  --hero-muted: #050b06;
  --banner-bg: #143f26;
  --banner-ink: #dff3e4;
  --footer-bg: #142b1c;
  --footer-ink: #cfe3d4;
}

/* Variante BOLD — dunkel / Rot-Orange (Schnellgastro, Streetfood) */
.variant-bold {
  --bg: #17181c;
  --surface: #212329;
  --surface-alt: #2a2c33;
  --ink: #f4efe8;
  --muted: #b8b2a8;
  --line: #34363e;
  --line-strong: #4c4f59;
  --accent: #ff6b35;
  --accent-hover: #ff8556;
  --accent-ink: #23110a;
  --accent-soft: #3a2118;
  --hero-bg: linear-gradient(160deg, #101114 0%, #2a1510 60%, #4a1d0d 100%);
  --hero-ink: #fef4ec;
  /* Kontrast-Check (Nutzertest-Audit): #e8c2ad auf #4a1d0d (hellste Stelle des
     Hero-Gradients) misst bereits 8,66:1 -- unveraendert, deutlich ueber 4,5:1. */
  --hero-muted: #e8c2ad;
  --banner-bg: #ff6b35;
  --banner-ink: #23110a;
  --footer-bg: #101114;
  --footer-ink: #b8b2a8;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ---------- Grundlayout ---------- */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-narrow { max-width: var(--narrow-width); }
.section { padding: 3.5rem 0; }

h1, h2, h3 { line-height: 1.2; text-wrap: balance; }
h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 4px;
  margin-top: 0.6rem;
  border-radius: 2px;
  background: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.5rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Preview-Banner ---------- */
.preview-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  background: repeating-linear-gradient(-45deg, #1d232b, #1d232b 14px, #2c333d 14px, #2c333d 28px);
  color: #ffd166;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.preview-banner + .site-header { top: 2.1rem; }
.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand-logo { border-radius: 8px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  font-size: 0.95rem;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-alt); }
.nav-links a:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.variant-bold .nav-links a:focus-visible,
.variant-bold .btn:focus-visible,
.variant-bold a:focus-visible { outline-color: var(--accent-hover); }

/* ---------- Announcement ---------- */
.announcement {
  background: var(--banner-bg);
  color: var(--banner-ink);
  text-align: center;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  animation: announcement-slide-in 0.5s ease both;
}
@keyframes announcement-slide-in {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--hero-bg);
  color: var(--hero-ink);
  padding: 4.5rem 0 4rem;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hero-muted);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 7vw, 3.8rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--hero-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-actions .btn { width: 100%; }
@media (min-width: 30rem) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; }
}
.hero-status { font-weight: 700; font-size: 0.95rem; }
.hero-status.is-open::before,
.hero-status.is-closed::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-right: 0.45rem;
  background: #48d17c;
}
.hero-status.is-closed::before { background: #f2b8a2; }
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.feature-pills li {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--hero-ink);
  border-radius: 999px;
  padding: 0.2rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  min-height: 2.75rem;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-hover); }
.hero .btn-primary {
  background: #ffffff;
  color: #33241c;
}
.variant-fresh .hero .btn-primary { color: #143f26; }
.variant-bold .hero .btn-primary { background: var(--accent); color: var(--accent-ink); }
.hero .btn-primary:hover { filter: brightness(0.94); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); }
.hero .btn-secondary {
  color: var(--hero-ink);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Speisekarte ---------- */
.menu { background: var(--bg); }

.menu-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: -1rem 0 1.5rem;
  max-width: 42rem;
}

/* Kategorie-Sprungleiste: nur gerendert bei >2 Kategorien (has_menu_jump). Sticky
   direkt unter dem Header, horizontal scrollbar auf mobil, faellt ohne JS auf
   einfache Anker-Links zurueck (kein active-state, aber voll funktionsfaehig). */
.menu-jump {
  position: sticky;
  top: var(--header-h, 4rem);
  z-index: 40;
  background: var(--bg);
  padding: 0.6rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.menu-jump-list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.2rem;
}
.menu-jump-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 2.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.menu-jump-chip:hover { border-color: var(--accent); color: var(--accent); }
.menu-jump-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.menu-category {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-category:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12); }
.variant-bold .menu-category:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5); }
.menu-category h3 {
  font-size: 1.25rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-soft);
  color: var(--accent);
  letter-spacing: 0.01em;
}
.variant-bold .menu-category h3 { color: var(--accent); }
.menu-item { padding: 0.85rem 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: 0; padding-bottom: 0.25rem; }
.menu-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.6rem;
}
.menu-item-name { font-weight: 700; font-size: 1.02rem; }
.menu-dots {
  flex: 1 1 auto;
  min-width: 1.5rem;
  border-bottom: 2px dotted var(--line-strong);
  transform: translateY(-0.28em);
}
.menu-item-price {
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-item-desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.15rem;
  max-width: 38rem;
}
.menu-variants { margin-top: 0.4rem; }
.menu-variants li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.6rem;
  padding: 0.15rem 0 0.15rem 1rem;
}
.variant-name { color: var(--muted); font-size: 0.95rem; }

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  margin-left: 0.35rem;
  vertical-align: 0.12em;
  background: var(--surface-alt);
  color: var(--muted);
  border: 1px solid var(--line);
}
.badge-beliebt { background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.variant-bold .badge-beliebt { color: var(--accent-hover); }
.badge-neu { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.badge-vegetarisch, .badge-vegan { background: #e2efdd; color: #2a5a26; border-color: transparent; }
.variant-bold .badge-vegetarisch, .variant-bold .badge-vegan { background: #24331f; color: #a4d69a; }
.badge-scharf { background: #fbe3da; color: #9c2f0f; border-color: transparent; }
.variant-bold .badge-scharf { background: #3c1c11; color: #ffab8a; }

/* ---------- Über uns ---------- */
.about { background: var(--surface); border-block: 1px solid var(--line); }
.about p { margin-bottom: 1rem; max-width: 40rem; font-size: 1.05rem; }
.about p:last-child { margin-bottom: 0; }

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16); }
.variant-bold .gallery-item:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ---------- Öffnungszeiten ---------- */
.hours { background: var(--surface); border-block: 1px solid var(--line); }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.hours-table th { font-weight: 600; width: 45%; }
.hours-table td { font-variant-numeric: tabular-nums; }
.hours-table tr.is-today th, .hours-table tr.is-today td {
  background: var(--accent-soft);
  font-weight: 750;
}
.hours-table tr.is-today th { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.hours-table tr.is-today td { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.today-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  margin-left: 0.4rem;
  vertical-align: 0.14em;
}
.hours-note { margin-top: 0.9rem; color: var(--muted); font-size: 0.92rem; }

/* ---------- Kontakt ---------- */
.contact-card {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12); }
.variant-bold .contact-card:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5); }
.contact-name { font-weight: 800; font-size: 1.15rem; margin-bottom: 0.3rem; }
.contact-card p { display: flex; align-items: center; min-height: 1.6rem; }
.contact-card a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.contact-card a:hover { color: var(--accent-hover); }
.variant-bold .contact-card a { color: var(--accent); }
.variant-bold .contact-card a:hover { color: var(--accent-hover); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; }
.link-social {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.link-social:hover { color: var(--accent-hover); }

/* ---------- Legal ---------- */
.legal-page h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: 1.5rem; }
.legal-page p { margin-bottom: 1rem; max-width: 40rem; }
.legal-page h2 { font-size: 1.3rem; margin: 1.75rem 0 0.75rem; }
.legal-page h2::after { display: none; }
.legal-placeholder {
  background: var(--surface-alt);
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.legal-placeholder p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 2rem 0;
  font-size: 0.92rem;
}
.demo-badge {
  background: rgba(0, 0, 0, 0.18);
  color: var(--footer-ink);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.55rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.demo-badge a {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.demo-badge a:hover { color: #ffffff; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: inherit;
  font-weight: 600;
  text-underline-offset: 3px;
}
.site-footer a:hover { color: #ffffff; }

/* ---------- Scroll-Reveal (dezente Motion) ---------- */
/* .js wird per Inline-Script ganz oben im <body> gesetzt, damit ohne JS
   (oder bei deaktiviertem Script) alle Inhalte sofort normal sichtbar bleiben. */
.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
}
.js .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---------- Bestell-Spickzettel (Feature: order_list) ---------- */
.order-stepper {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  gap: 0.35rem;
}
.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.order-btn:hover { border-color: var(--accent); color: var(--accent); }
.order-btn:disabled { opacity: 0.4; cursor: default; }
.order-stepper .order-btn-minus,
.order-stepper .order-qty { display: none; }
.order-stepper.has-qty .order-btn-minus,
.order-stepper.has-qty .order-qty { display: inline-flex; }
.order-stepper.has-qty .order-btn-plus {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.order-qty {
  min-width: 1.4rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}
.order-bar[hidden] { display: none; }
.order-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem env(safe-area-inset-bottom, 0);
}
.order-bar-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  text-align: center;
}
.order-bar-toggle:focus-visible { outline: 3px solid var(--accent-ink); outline-offset: -3px; }

.order-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 15, 10, 0.5);
}
.order-panel-backdrop[hidden] { display: none; }
.order-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}
.order-panel[hidden] { display: none; }
.order-panel-inner { padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0)); }
.order-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.order-panel-head h2 { font-size: 1.2rem; margin: 0; }
.order-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
}
.order-panel-close:hover { background: var(--accent-soft); color: var(--accent); }
.order-panel-empty { color: var(--muted); margin-bottom: 0.5rem; }
.order-panel-list { margin-bottom: 0.5rem; }
.order-panel-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.order-panel-item:last-child { border-bottom: 0; }
.order-panel-item-price { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.order-panel-total {
  font-weight: 800;
  font-size: 1.05rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--line);
  margin-bottom: 0.75rem;
}
.order-panel-hint { color: var(--muted); font-size: 0.85rem; margin-bottom: 1rem; }
.order-panel-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.order-panel-actions .btn { width: 100%; }

@media (min-width: 40rem) {
  .order-panel {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(28rem, 90vw);
    max-height: 80vh;
    border-radius: var(--radius);
  }
  .order-panel-actions { flex-direction: row; }
  .order-panel-actions .btn { width: auto; flex: 1 1 auto; }
}

/* ---------- Grössere Screens ---------- */
@media (min-width: 48rem) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 6.5rem 0 5.5rem; }
  .menu-category { padding: 2rem 2rem; }
  .hours-table th { width: 40%; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .menu-category:hover,
  .gallery-item:hover,
  .contact-card:hover { transform: none; }
  .announcement { animation: none; }
}
html { scroll-behavior: smooth; }
