/* =====================================================================
   KING SUSHI & BUBBLE TEA  –  Stylesheet
   Aufbau: 1) Design-System (:root)  2) Reset/Base  3) Komponenten
           4) Sektionen  5) Responsive (Tablet/Desktop)
   Ansatz: MOBILE-FIRST. Basisstile gelten fürs Handy,
           Media-Queries erweitern nach oben.
   ===================================================================== */

/* =====================================================================
   1) DESIGN-SYSTEM  –  "Tropical Pop"
   Palette zentral; ein Theme-Wechsel geht allein über diese Werte.
   ===================================================================== */
:root {
  /* Farben – "Coral Pop" (heller, on-brand: Koralle + Türkis + Gelb + Pink) */
  --primary: #FF7E6B;       /* Koralle (Markenfarbe aus dem Logo) – Buttons, Fills */
  --primary-dark: #F0614C;  /* Koralle dunkler – Hover */
  --primary-deep: #DC4F38;  /* tiefe Koralle – Text auf hellem Grund (AA) */
  --teal: #2FD4C6;          /* frisches Türkis – Akzent / Icons */
  --lime: #FFD23F;          /* Sonnengelb – Highlights / "offen"-Badge */
  --pink: #FF9FB6;          /* Soft-Pink – Bubble-Tea-Akzent */
  --cream: #FFFDF8;         /* sehr heller, warmer Hintergrund */
  --ink: #38333F;           /* weiches Anthrazit (statt hartem Schwarz) – Text/Outlines */
  --ink-soft: #797285;      /* sekundärer Text */
  --white: #FFFFFF;

  /* Flächen */
  --surface: var(--white);
  --surface-warm: #FFF4EC;

  /* Typo */
  --font-display: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;

  /* Radius & Schatten */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow: 0 10px 30px rgba(26, 18, 48, 0.12);
  --shadow-pop: 0 14px 0 rgba(26, 18, 48, 0.9); /* "Sticker"-Schatten */
  --shadow-soft: 0 6px 18px rgba(26, 18, 48, 0.10);

  /* Layout */
  --maxw: 1120px;
  --pad: clamp(16px, 5vw, 40px);
  --nav-h: 64px;

  /* Touch-Target Minimum */
  --touch: 48px;
}

/* =====================================================================
   2) RESET / BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 70px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden; /* kein horizontales Scrollen */
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }

ul { list-style: none; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.text-accent { color: var(--primary-deep); }

/* Fade-in (respektiert reduced-motion via JS) */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* Page-load Hero-Einblendung */
@keyframes heroSlideLeft  { from { opacity:0; transform: translateX(-48px) } to { opacity:1; transform: none } }
@keyframes heroSlideRight { from { opacity:0; transform: translateX( 48px) } to { opacity:1; transform: none } }
.hero-text   { animation: heroSlideLeft  .85s cubic-bezier(.22,1,.36,1) .1s  both; }
.hero-mascot { animation: heroSlideRight .85s cubic-bezier(.22,1,.36,1) .35s both; }

/* =====================================================================
   3) KOMPONENTEN
   ===================================================================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: var(--touch);
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-align: center;
}
.btn-lg { font-size: 1.15rem; padding: 16px 30px; }

.btn-primary { background: var(--primary); color: var(--ink); box-shadow: 0 6px 0 var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--ink); background: var(--primary-dark); color: var(--white); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }

.btn-ghost { background: var(--white); color: var(--ink); box-shadow: 0 6px 0 var(--ink); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--ink); background: var(--lime); }
.btn-ghost:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }

.btn-insta { background: linear-gradient(45deg, #F58529, #DD2A7B 50%, #8134AF); color: #fff; }

/* ---- Kicker / Section-Head ---- */
.kicker {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600;
  background: var(--lime); color: var(--ink);
  padding: 6px 16px; border-radius: var(--r-pill);
  border: 2.5px solid var(--ink);
  font-size: .9rem; margin-bottom: 14px; transform: rotate(-2deg);
}
.section { padding: clamp(56px, 9vw, 96px) 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-title { font-size: clamp(2rem, 7vw, 3.2rem); }
.section-sub { color: var(--ink-soft); max-width: 46ch; margin: 12px auto 0; font-size: 1.05rem; }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.navbar.is-scrolled { border-bottom-color: var(--ink); box-shadow: var(--shadow-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

.nav-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; }
.nav-logo-mark { font-size: 1.6rem; }
.nav-logo-text { display: flex; flex-direction: column; font-size: 1.25rem; line-height: 1; color: var(--ink); }
.nav-logo-text .nav-logo-accent { color: var(--primary-deep); }
.nav-logo-sub { font-size: .58rem; color: var(--ink-soft); font-weight: 600; letter-spacing: .03em; }

.nav-menu { display: none; }
.nav-link { font-family: var(--font-display); font-weight: 600; padding: 10px 6px; }
.nav-link:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: var(--ink) !important; padding: 10px 18px; border-radius: var(--r-pill); border: 2.5px solid var(--ink); }
.nav-cta:hover { background: var(--primary-dark); color: #fff !important; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: var(--touch); height: var(--touch);
  align-items: center; justify-content: center;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--r-sm);
  cursor: pointer;
}
.hamburger span { width: 24px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .25s, opacity .2s; }
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobiles Dropdown */
.nav-menu.is-open {
  display: flex; flex-direction: column; gap: 6px;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); border-bottom: 3px solid var(--ink);
  padding: 16px var(--pad) 22px; box-shadow: var(--shadow);
}
.nav-menu.is-open li { width: 100%; }
.nav-menu.is-open .nav-link { display: block; min-height: var(--touch); display: flex; align-items: center; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + 30px);
  padding-bottom: 70px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(47,212,198,.20), transparent 55%),
    radial-gradient(120% 90% at 0% 30%, rgba(255,126,107,.20), transparent 55%),
    radial-gradient(90% 70% at 50% 110%, rgba(255,159,182,.18), transparent 60%),
    var(--cream);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.hero-jp { font-family: var(--font-display); color: var(--teal); font-weight: 600; letter-spacing: .12em; }
.hero-title { font-size: clamp(2.6rem, 11vw, 4.6rem); margin: 8px 0 14px; }
.hero-title-king {
  display: inline-block; background: var(--primary); color: var(--ink);
  padding: 0 .25em; border-radius: 10px; transform: rotate(-3deg);
  box-shadow: var(--shadow-soft); margin-right: .1em;
}
.hero-claim { font-size: 1.15rem; color: var(--ink-soft); font-weight: 600; max-width: 40ch; margin-inline: auto; }

/* Öffnungs-Status-Badge */
.open-status {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
  background: var(--white); border: 2.5px solid var(--ink);
  border-radius: var(--r-pill); padding: 8px 18px; margin: 22px 0;
  font-weight: 700; box-shadow: var(--shadow-soft);
}
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink-soft); }
.open-status.is-open .status-dot { background: #2ecc71; box-shadow: 0 0 0 4px rgba(46,204,113,.25); }
.open-status.is-closed .status-dot { background: #e74c3c; box-shadow: 0 0 0 4px rgba(231,76,60,.2); }
.open-status.is-open .status-text { color: #1e8c4f; }
.open-status.is-closed .status-text { color: #c0392b; }
.status-hours { font-weight: 600; color: var(--ink-soft); font-size: .9rem; width: 100%; }

.hero-buttons { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 360px; margin-inline: auto; }

/* Maskottchen / Marken-Emblem (Sushi-Rollen + Bubble-Tea, am Logo orientiert) */
.hero-mascot { width: min(76vw, 320px); }
.mascot { width: 100%; height: auto; filter: drop-shadow(0 14px 22px rgba(42,32,48,.30)); animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }

/* Schwebende Bubble-Tea-Becher als Hero-Deko */
.float-tea { position: absolute; z-index: 0; width: 46px; height: auto; opacity: .9; filter: drop-shadow(0 6px 8px rgba(56,51,63,.14)); }
.float-tea.t1 { top: 16%; left: 7%;  animation: float 6s ease-in-out infinite; }
.float-tea.t2 { top: 60%; left: 5%;  width: 38px; animation: floatR 7.5s ease-in-out infinite; }
.float-tea.t3 { top: 24%; right: 8%; width: 40px; animation: floatR 6.8s ease-in-out infinite; }
.float-tea.t4 { top: 68%; right: 6%; width: 52px; animation: float 8s ease-in-out infinite; }
@keyframes floatR { 0%,100% { transform: translateY(0) rotate(6deg) } 50% { transform: translateY(-14px) rotate(-4deg) } }

/* Deko-Blobs & Bubbles */
.blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .5; z-index: 0; }
.blob-1 { width: 220px; height: 220px; background: var(--teal); top: -60px; right: -50px; }
.blob-2 { width: 180px; height: 180px; background: var(--lime); bottom: 30px; left: -60px; }
.bubble { position: absolute; border-radius: 50%; border: 3px solid var(--ink); z-index: 0; opacity: .3; }
.bubble-a { width: 26px; height: 26px; background: var(--primary); top: 22%; left: 12%; animation: float 6s ease-in-out infinite; }
.bubble-b { width: 18px; height: 18px; background: var(--teal); top: 60%; right: 14%; animation: float 7s ease-in-out infinite; }
.bubble-c { width: 14px; height: 14px; background: var(--lime); top: 35%; right: 22%; animation: float 5.5s ease-in-out infinite; }
.hero-inner, .hero-text, .hero-mascot { position: relative; z-index: 1; }

/* Wellen-Divider */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px; }

/* =====================================================================
   BESTELLEN
   ===================================================================== */
.order-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.order-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: 24px; min-height: var(--touch);
  box-shadow: 0 8px 0 var(--ink); transition: transform .16s, box-shadow .16s;
  position: relative; overflow: hidden;
}
.order-card::after { content: ""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; border-radius: 50%; opacity: .18; }
.order-uber::after { background: var(--lime); }
.order-wolt::after { background: #009DE0; }
.order-whatsapp::after { background: var(--teal); }
.order-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 var(--ink); }
.order-card:active { transform: translateY(2px); box-shadow: 0 4px 0 var(--ink); }
.order-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.order-icon svg { width: 100%; height: 100%; }
.order-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.order-desc { color: var(--ink-soft); font-weight: 600; }
.order-go { margin-top: 8px; font-family: var(--font-display); font-weight: 700; color: var(--primary-deep); }
.order-note { text-align: center; margin-top: 26px; font-weight: 700; color: var(--ink-soft); }

/* =====================================================================
   SPEISEKARTE
   ===================================================================== */
.menu-section { background: var(--surface-warm); }

/* Sticky Kategorie-Leiste */
.menu-nav-wrap {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(255,241,230,.92); backdrop-filter: blur(8px);
  border-block: 2.5px solid var(--ink); margin-bottom: 36px;
}
.menu-nav {
  display: flex; gap: 10px; overflow-x: auto; padding-block: 12px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-chip {
  flex: 0 0 auto; white-space: nowrap; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  padding: 9px 16px; min-height: 40px; display: inline-flex; align-items: center;
  transition: background .2s, color .2s, transform .12s;
}
.menu-chip:hover { transform: translateY(-2px); background: var(--lime); }
.menu-chip.is-active { background: var(--primary); color: var(--white); }

/* Kategorie-Sektionen */
.menu-category { margin-bottom: 38px; scroll-margin-top: calc(var(--nav-h) + 80px); }
.cat-icon { font-size: 1.5rem; }
.menu-category.is-featured {
  background: linear-gradient(135deg, rgba(47,212,198,.16), rgba(255,159,182,.16));
  border: 3px solid var(--ink); border-radius: var(--r-lg); padding: 22px;
  box-shadow: var(--shadow-soft);
}
.menu-category-note {
  display: inline-block; margin-bottom: 14px;
  background: var(--pink); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  padding: 5px 14px; font-weight: 700; font-size: .9rem;
}

/* Accordion */
.menu-category-title {
  all: unset; box-sizing: border-box;
  display: flex; align-items: center; gap: 10px; width: 100%;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 0; padding-bottom: 12px; border-bottom: 3px dashed rgba(26,18,48,.25);
  cursor: pointer; user-select: none;
}
.menu-category-title:hover { color: var(--primary-deep); }
.cat-chevron { margin-left: auto; font-size: 1.2rem; transition: transform .3s ease; display: inline-block; }
.menu-category.is-open .cat-chevron { transform: rotate(180deg); }
.dish-list-wrap {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease;
  overflow: hidden;
}
.menu-category.is-open .dish-list-wrap { grid-template-rows: 1fr; }
.dish-list-inner { min-height: 0; padding-top: 0; transition: padding-top .35s ease; }
.menu-category.is-open .dish-list-inner { padding-top: 14px; }

.dish-list { display: grid; gap: 12px; }
.dish {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--r-md);
  padding: 14px 16px; transition: transform .12s, box-shadow .12s;
}
.dish:hover { transform: translateX(4px); box-shadow: -5px 5px 0 rgba(26,18,48,.85); }
.dish-info { display: flex; flex-direction: column; gap: 2px; }
.dish-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.dish-desc { color: var(--ink-soft); font-size: .92rem; }
.dish-price {
  flex: 0 0 auto; font-family: var(--font-display); font-weight: 700;
  background: var(--lime); border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  padding: 4px 12px; height: fit-content; white-space: nowrap;
}

/* =====================================================================
   ÜBER UNS
   ===================================================================== */
.about-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.about-mascot { width: min(52vw, 210px); }
.mascot-sm { width: 100%; height: auto; filter: drop-shadow(0 8px 12px rgba(56,51,63,.14)); animation: float 6s ease-in-out infinite; }
.about-text p { margin-top: 14px; color: var(--ink-soft); font-weight: 600; }
.about-text p strong { color: var(--ink); }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.badge {
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  padding: 8px 16px; font-family: var(--font-display); font-weight: 600; box-shadow: var(--shadow-soft);
}

/* =====================================================================
   SOCIAL
   ===================================================================== */
.social-section {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,126,107,.16), transparent 60%),
    radial-gradient(90% 80% at 50% 100%, rgba(47,212,198,.14), transparent 60%),
    var(--cream);
  text-align: center;
}
.social-inner { display: flex; flex-direction: column; align-items: center; }
.social-inner .btn { margin-top: 22px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: #f0ecf7; padding: 56px 0 24px; }
.footer-inner { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--lime); margin-bottom: 12px; }
.footer-addr { color: #c9c2da; margin-bottom: 10px; }
.footer-col h4 { color: var(--teal); margin-bottom: 10px; font-size: 1.1rem; }
.footer-col p { color: #c9c2da; }
.footer-link { display: inline-block; color: #f0ecf7; font-weight: 600; padding: 6px 0; }
.footer-link:hover { color: var(--lime); }
.footer-min { margin-top: 12px; font-weight: 700; color: var(--lime); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: var(--touch); height: var(--touch); display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 1.4rem;
  transition: transform .15s, background .2s;
}
.footer-social:hover { transform: translateY(-3px); background: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 18px; text-align: center; color: #9a91b3; font-size: .9rem; }
.footer-legal { margin-top: 6px; }
.footer-legal a { color: #c9c2da; text-decoration: underline; }
.footer-todo { color: #6a6088; font-size: .8rem; }

/* =====================================================================
   5) RESPONSIVE  –  Tablet & Desktop
   ===================================================================== */
@media (min-width: 720px) {
  .order-grid { grid-template-columns: repeat(3, 1fr); }
  .dish-list { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-buttons { flex-direction: row; max-width: none; justify-content: center; }
}

@media (min-width: 920px) {
  .nav-menu { display: flex; align-items: center; gap: 22px; }
  .hamburger { display: none; }

  .hero-inner { flex-direction: row; text-align: left; gap: 40px; }
  .hero-text { flex: 1; }
  .hero-mascot { flex: 0 0 auto; width: min(38vw, 340px); }
  .hero-buttons { justify-content: flex-start; }
  .open-status { margin-left: 0; }

  .about-inner { flex-direction: row; text-align: left; }
  .about-text { flex: 1; }
  .about-badges { justify-content: flex-start; }
  .about-mascot { order: 2; }
}

/* Reduced motion: alle Deko-Animationen abschalten */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =====================================================================
   WARENKORB – Dish Add-Button
   ===================================================================== */
.dish-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 0 0 auto;
}

.dish-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  border: 2.5px solid var(--ink);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, background .15s;
  box-shadow: 0 3px 0 var(--ink);
}
.dish-add-btn:hover { background: var(--primary-dark); transform: scale(1.15); }
.dish-add-btn:active { transform: scale(0.9); box-shadow: 0 1px 0 var(--ink); }

@keyframes cartPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.dish-add-btn.pulse { animation: cartPulse .3s ease; }

/* =====================================================================
   WARENKORB – Floating Action Button
   ===================================================================== */
.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  border: 3px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.cart-fab:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--ink); }
.cart-fab:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }

.cart-fab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 800;
}

/* =====================================================================
   WARENKORB – Overlay
   ===================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 18, 48, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* =====================================================================
   WARENKORB – Drawer
   ===================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  width: min(380px, 100vw);
  background: var(--cream);
  border-left: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 3px solid var(--ink);
  background: var(--white);
  flex: 0 0 auto;
}
.cart-drawer-header h3 { font-family: var(--font-display); font-size: 1.35rem; }

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cart-close-btn:hover { background: var(--primary); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 0;
  font-weight: 600;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}
.cart-item-name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.2;
}
.cart-item-controls { display: flex; align-items: center; gap: 6px; }

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cart-qty-btn:hover { background: var(--primary); }

.cart-item-qty { font-weight: 700; min-width: 20px; text-align: center; }

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
  font-size: .88rem;
}

.cart-remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: .88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, background .15s;
}
.cart-remove-btn:hover { color: #e74c3c; background: rgba(231,76,60,.1); }

.cart-drawer-footer {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-top: 3px solid var(--ink);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.cart-form { display: flex; flex-direction: column; gap: 10px; }

.cart-name-input {
  width: 100%;
  padding: 11px 14px;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
}
.cart-name-input:focus { outline: 3px solid var(--teal); outline-offset: 0; }

.cart-payment-options {
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: .95rem;
}
.cart-payment-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cart-order-btn { width: 100%; }
.cart-order-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 6px 0 var(--ink) !important;
}

.cart-clear-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: .85rem;
  text-align: center;
  text-decoration: underline;
  padding: 0;
}
.cart-clear-btn:hover { color: var(--ink); }

/* =====================================================================
   WARENKORB – Lieferung/Abholung + Extrawünsche
   ===================================================================== */
.cart-delivery-options {
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: .95rem;
}
.cart-delivery-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cart-address-input,
.cart-wishes-input {
  width: 100%;
  padding: 11px 14px;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
  min-height: 58px;
}
.cart-address-input:focus,
.cart-wishes-input:focus { outline: 3px solid var(--teal); outline-offset: 0; }

/* =====================================================================
   RABATT – Frontpage Promo-Banner
   ===================================================================== */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 4px 0 var(--ink);
  margin-top: 4px;
}

.whatsapp-promo-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dcfce7;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
  font-size: .95rem;
  font-weight: 600;
  flex-wrap: wrap;
}
.promo-badge {
  background: #25D366;
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid var(--ink);
  white-space: nowrap;
}

/* =====================================================================
   RABATT – Cart Drawer Rabatt-Anzeige
   ===================================================================== */
.cart-discount-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-total-original {
  opacity: 0.6;
  font-size: .88rem;
}
.cart-strike { text-decoration: line-through; }
.cart-total-discount { color: #16a34a; font-size: .95rem; }
.cart-discount-amount { color: #16a34a; font-weight: 700; }
.cart-gift-note {
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border: 2px solid #16a34a;
  border-radius: var(--r-sm);
  padding: 6px 12px;
  margin-top: 2px;
}

/* --- PLZ-Feld & Liefergebühr ----------------------------------------- */
.cart-plz-input {
  width: 100%;
  padding: 11px 14px;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
  box-sizing: border-box;
  letter-spacing: .05em;
}
.cart-plz-input:focus { outline: 3px solid var(--teal); outline-offset: 0; }

.cart-plz-feedback {
  font-size: .82rem;
  padding: 4px 2px;
  min-height: 20px;
  font-weight: 600;
}
.cart-plz-feedback.cart-plz-error   { color: #c0392b; }
.cart-plz-feedback.cart-plz-warning { color: #d97706; }
.cart-plz-feedback.cart-plz-ok      { color: #16a34a; }

.cart-delivery-fee-row {
  justify-content: space-between;
}
.cart-delivery-fee-row span:last-child {
  color: var(--teal);
  font-weight: 700;
}
