/* Self-hosted fonts — keine externe Verbindung zu Google Fonts */
@font-face {
  font-family: 'Murecho';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/murecho-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Murecho';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/murecho-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Pliant';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/pliant-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Pliant';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/pliant-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Pliant';
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/pliant-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Pliant';
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/pliant-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================================
   KIEZ KIOSK 21 — ALT-MOABIT 78
   TODO: Hex-Werte nach Erhalt der echten Logo-Datei prüfen
   ============================================================ */

/* --- Tokens ------------------------------------------------ */
:root {
  --orange:   #F0A82C;
  --rot:      #C13B28;
  --creme:    #FAF7F0;
  --dunkel:   #1A1A1A;
  --mittel:   #3D2B1A;
  --grau:     #6B6660;
  --hell:     #FFFFFF;

  --ff-display: "Pliant", Georgia, serif;
  --ff-body:    "Murecho", system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-s:   1rem;
  --space-m:   2rem;
  --space-l:   3.5rem;
  --space-xl:  6rem;

  --radius:    4px;
  --max-w:     1200px;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--creme);
  color: var(--dunkel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Skip-Link (Barrierefreiheit) -------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--dunkel);
  color: var(--hell);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* --- Nav --------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--dunkel);
  padding: 0.75rem var(--space-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.nav__links {
  display: flex;
  gap: var(--space-m);
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a:focus { color: var(--orange); }

/* --- Hamburger-Button -------------------------------------- */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--hell);
  z-index: 101;
  position: relative;
  align-items: center;
}
.nav__burger-top {
  transform-origin: center;
  transform: translateY(-7px);
  transition: transform 0.3s cubic-bezier(.5,.85,.25,1.1);
}
.nav__burger-middle {
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(.5,.85,.25,1.8);
}
.nav__burger-bottom {
  transform-origin: center;
  transform: translateY(7px);
  transition: transform 0.3s cubic-bezier(.5,.85,.25,1.1);
}
.nav__burger[aria-expanded="true"] .nav__burger-top    { transform: translateY(0) rotate(315deg); }
.nav__burger[aria-expanded="true"] .nav__burger-middle { transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-bottom { transform: translateY(0) rotate(135deg); }

/* --- Mobile Nav-Overlay ------------------------------------ */
.nav__mobile {
  position: fixed;
  inset: 56px 0 0 0;
  background: var(--dunkel);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.22,1,0.36,1),
              transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.nav__mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}
.nav__mobile-link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: inline-block;
  filter: blur(4px);
  transform: translateY(14px);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1),
              filter 0.38s ease,
              color 0.2s;
}
.nav__mobile.is-open .nav__mobile-link {
  filter: blur(0);
  transform: translateY(0);
}
.nav__mobile.is-open li:nth-child(1) .nav__mobile-link { transition-delay: 0.04s; }
.nav__mobile.is-open li:nth-child(2) .nav__mobile-link { transition-delay: 0.09s; }
.nav__mobile.is-open li:nth-child(3) .nav__mobile-link { transition-delay: 0.14s; }
.nav__mobile.is-open li:nth-child(4) .nav__mobile-link { transition-delay: 0.19s; }
.nav__mobile.is-open li:nth-child(5) .nav__mobile-link { transition-delay: 0.24s; }
.nav__mobile-link:hover,
.nav__mobile-link:focus { color: var(--orange); }

/* Nav CTA-Button (Desktop) */
.nav__cta {
  background: var(--orange);
  color: var(--dunkel) !important;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover,
.nav__cta:focus {
  background: #e09520;
  color: var(--dunkel) !important;
  transform: translateY(-1px);
}


@media (max-width: 600px) {
  .nav { padding: 0.75rem 1rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* --- Hero -------------------------------------------------- */
.hero {
  background: var(--dunkel);
  padding-top: 56px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--orange);
  margin-top: -4px; /* kompensiert nav, liegt direkt drunter */
}
.hero__inner {
  padding: var(--space-m) var(--space-m) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  flex: 1;
}

/* Logo klein, links oben — kein zentriertes Badge */
.hero__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  filter: drop-shadow(0 2px 10px rgba(240,168,44,0.4));
  margin-bottom: 0.25rem;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
}
.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--hell);
  margin-top: 0.15rem;
}
.hero__headline span { color: var(--orange); }

/* Öffnungszeiten — typografisch, kein Box-Element */
.hero__oeffnung {
  margin-top: auto;
  padding-top: var(--space-m);
}
.hero__oeffnung-linie {
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
  margin-bottom: var(--space-s);
}
.hero__zeit-block {
  margin-bottom: var(--space-m);
}
.hero__zeit-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-family: var(--ff-body);
  margin-bottom: 0.1rem;
}
.hero__zeit-uhr {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-style: italic;
  line-height: 1.0;
  color: var(--hell);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hero__oeffnung-linie--unten {
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
  margin-top: var(--space-s);
}

.hero__ctas {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  padding: var(--space-m);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.btn-lieferung {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: opacity 0.15s, box-shadow 0.25s ease, transform 0.08s;
}
.btn-lieferung:hover, .btn-lieferung:focus { opacity: 0.88; }
.btn-lieferung:active { transform: scale(0.97); }
.btn-lieferung--wolt   { background: var(--orange); color: var(--dunkel); }
.btn-lieferung--lief   { background: var(--rot);    color: var(--hell); }

/* --- Bestell-Section --------------------------------------- */
.bestell-section {
  background: var(--dunkel);
  padding: var(--space-xl) var(--space-m);
}
.bestell-section__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  border-left: 4px solid var(--orange);
  padding-left: var(--space-m);
}
.bestell-section__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: var(--space-s);
}
.bestell-section__titel {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--hell);
  line-height: 1.05;
  margin: 0 0 var(--space-m);
}

/* Platform Row — editorial, text-based */
.platform-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-s);
}
.platform-row__sep {
  color: rgba(255,255,255,0.18);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
.platform-entry {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.45rem 1.1rem 0.5rem;
  border-radius: var(--radius);
  transition: filter 0.2s ease,
              translate 0.2s cubic-bezier(0.22,1,0.36,1),
              scale 0.08s ease,
              box-shadow 0.2s ease;
}
.platform-entry--wolt  { background: #009DE0; color: #fff; }
.platform-entry--ue    { background: #06C167; color: #000; }
.platform-entry--lief  { background: #F97316; color: #fff; }
.platform-entry:hover,
.platform-entry:focus  {
  filter: brightness(1.1);
  translate: 0 -2px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
}
.platform-entry:active { scale: 0.97; }

.platform-entry__arrow {
  font-style: normal;
  font-family: var(--ff-body);
  font-size: 0.65em;
  opacity: 0.5;
}

@media (max-width: 560px) {
  .platform-row { flex-direction: column; gap: 0.6rem; }
  .platform-row__sep { display: none; }
  .bestell-section__inner { padding-left: var(--space-s); }
}

/* --- Section gemeinsam ------------------------------------- */
.section {
  padding: var(--space-xl) var(--space-m);
  max-width: var(--max-w);
  margin-inline: auto;
}
.section--full { max-width: none; padding-inline: 0; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: var(--space-s);
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--dunkel);
  margin-bottom: var(--space-m);
}
.section-title--hell { color: var(--hell); }

/* --- Aktionen ---------------------------------------------- */
#aktionen {
  background: var(--creme);
}
.aktionen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  margin-top: var(--space-m);
  align-items: stretch;
}
.aktion-card {
  flex: 1 1 260px;
  min-width: 0;
  background: var(--hell);
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
@media (max-width: 600px) {
  .aktionen-grid { flex-direction: column; }
}
.aktion-card__titel {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dunkel);
}
.aktion-card__text {
  font-size: 0.9rem;
  color: var(--grau);
  flex: 1;
}
.aktion-card__bis {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rot);
  margin-top: 0.25rem;
}
.aktion-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  align-self: flex-start;
}
.aktion-card__badge--wolt       { background: #00D672; color: #000; }
.aktion-card__badge--lieferando { background: #F97316; color: #fff; }
.aktion-card__badge--ubereats   { background: #1a1a1a; color: #fff; }
.aktion-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dunkel);
  margin-top: 0.25rem;
  text-decoration: none;
}
.aktion-card__link:hover { opacity: 0.7; }


/* --- Sortiment --------------------------------------------- */
#sortiment {
  background: var(--mittel);
  min-height: calc(100vh - 56px);
}
#sortiment .section-label { color: rgba(255,255,255,0.4); }

.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 0;
}
@media (min-width: 480px) {
  .sortiment-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .sortiment-grid { grid-template-columns: repeat(4, 1fr); }
}

.produkt-card {
  background: rgba(255,255,255,0.05);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--space-s);
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}
.produkt-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.produkt-card__kategorie {
  position: relative;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--dunkel);
  padding: 0.15rem 0.4rem;
  font-weight: 700;
}
.produkt-card__name {
  position: relative;
  font-size: 0.85rem;
  color: var(--hell);
  text-align: center;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* --- Google Rezensionen ------------------------------------ */
#rezensionen {
  background: var(--hell);
}
.rez-columns {
  display: flex;
  gap: var(--space-m);
  max-height: 580px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  margin-top: var(--space-m);
}
.rez-col { flex: 1; min-width: 0; }
.rez-col--md { display: none; }
.rez-col--lg { display: none; }
@media (min-width: 640px)  { .rez-col--md { display: block; } }
@media (min-width: 1024px) { .rez-col--lg { display: block; } }
.rez-track {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  animation: rez-scroll-up var(--rez-dur, 15s) linear var(--rez-delay, 0s) infinite;
}
.rez-track:hover { animation-play-state: paused; }
@keyframes rez-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.rezension-card {
  border: 1px solid rgba(0,0,0,0.08);
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: translate 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s ease;
}
@media (pointer: fine) {
  .rezension-card:hover {
    translate: 0 -2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
}
.rezension-card__sterne {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.rezension-card__text {
  font-size: 0.9rem;
  color: var(--grau);
  flex: 1;
  line-height: 1.5;
}
.rezension-card__autor {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dunkel);
}
.rezension-card__datum {
  font-size: 0.75rem;
  color: var(--grau);
}
.rezensionen-quelle {
  margin-top: var(--space-m);
  font-size: 0.8rem;
  color: var(--grau);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Reels ------------------------------------------------- */
#reels {
  background: #111;
  padding-bottom: var(--space-xl);
}
#reels .section-label { color: rgba(250,247,240,0.45); }
#reels .section-title { color: var(--creme); margin-bottom: 0; }

.reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-m);
  padding: var(--space-xl) var(--space-m) 0;
  max-width: var(--max-w);
  margin-inline: auto;
}

.reels-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.3rem;
}
.reels-nav__btn {
  width: auto; height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(250,247,240,0.28);
  background: transparent;
  color: var(--creme);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, scale 0.08s ease;
}
.reels-nav__btn:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
}
.reels-nav__btn:active:not(:disabled) { scale: 0.95; }
.reels-nav__btn:disabled { opacity: 0.28; cursor: default; }

.reels-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-m) var(--space-m);
  cursor: grab;
  scroll-snap-type: x mandatory;
  user-select: none;
}
.reels-scroll::-webkit-scrollbar { display: none; }
.reels-scroll.is-grabbing { cursor: grabbing; }

.reels-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}

.reel-card {
  position: relative;
  /* Mobile-First: 1 Karte mit Peek-Effekt */
  width: 72vw;
  aspect-ratio: 9 / 16;
  height: auto;
  min-width: unset;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dunkel);
  flex-shrink: 0;
  scroll-snap-align: center;
  box-shadow: none;
  transition: outline 0.15s ease;
  cursor: pointer;
}
.reel-card:hover {
  outline: 2.5px solid var(--orange);
  outline-offset: -2px;
  transform: none;
  box-shadow: none;
}
.reel-card.is-playing {
  outline: 3px solid var(--rot);
  outline-offset: -3px;
}
.reel-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* --- Reel-Tag: Entrance wenn Section sichtbar wird ---------- */
.reel-tag {
  opacity: 0;
  transform: scale(0.78) translateY(4px);
  transition: opacity 0.35s ease, transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
}
.reel-tag.is-staged {
  opacity: 1;
  transform: none;
}

/* 02px-Style: Label-Pill oben links */
.reel-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(26,26,26,0.82);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 4;
  backdrop-filter: blur(6px);
  pointer-events: none;
}


/* 02px-Style: Tagline-Overlay auf ausgewählten Karten */
.reel-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--orange);
  position: absolute;
  bottom: 44px; left: 0.75rem; right: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 4;
}
.reel-card:hover .reel-tagline {
  opacity: 1;
  transform: translateY(0);
}

.reel-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0)    35%,
    rgba(0,0,0,0.62) 100%
  );
}

.reel-mute {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.42);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  align-self: flex-end;
  transition: background 0.2s;
  flex-shrink: 0;
}
.reel-mute:hover { background: rgba(0,0,0,0.68); }
.reel-mute svg { width: 15px; height: 15px; stroke: var(--creme); }

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(250,247,240,0.92);
  border: none; cursor: pointer;
  overflow: hidden;
  transition: opacity 0.25s ease,
              transform 0.25s cubic-bezier(0.22,1,0.36,1);
  pointer-events: all;
}
.reel-play:hover { transform: translate(-50%, -50%) scale(1.1); }
.reel-card.is-playing .reel-play { opacity: 0; pointer-events: none; }
.reel-card.is-playing:hover .reel-play { opacity: 1; pointer-events: all; }

/* Dual-Icon-Crossfade im Play-Button */
.reel-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease,
              transform 0.22s cubic-bezier(0.22,1,0.36,1);
}
.reel-icon svg { fill: var(--dunkel); width: 20px; height: 20px; }
.reel-icon--play  svg { margin-left: 3px; }
.reel-icon--pause { opacity: 0; transform: scale(0.6) rotate(-15deg); }
.reel-card.is-playing .reel-icon--play  { opacity: 0; transform: scale(0.6) rotate(15deg); }
.reel-card.is-playing .reel-icon--pause { opacity: 1; transform: none; }

.reel-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  color: var(--creme);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  position: absolute;
  bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
}


.reels-socials {
  display: flex;
  gap: var(--space-m);
  padding: var(--space-m) var(--space-m) 0;
  max-width: var(--max-w);
  margin-inline: auto;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dunkel);
  border-bottom: 2px solid var(--dunkel);
  padding-bottom: 2px;
  transition: opacity 0.15s, translate 0.18s cubic-bezier(0.22,1,0.36,1);
}
.social-link:hover, .social-link:focus { opacity: 0.65; translate: 2px 0; }
.social-link svg {
  width: 20px; height: 20px;
  transition: scale 0.18s cubic-bezier(0.22,1,0.36,1);
}
.social-link:hover svg, .social-link:focus svg { scale: 1.12; }
#reels .social-link {
  color: var(--creme);
  border-bottom-color: rgba(250,247,240,0.35);
}

/* Tablet 481–768px: 2 Karten sichtbar */
@media (min-width: 481px) {
  .reel-card {
    width: clamp(160px, calc((100vw - 4rem - 1.5rem) / 2), 260px);
  }
}

/* Desktop ≥769px: 3 Karten füllen die Breite */
@media (min-width: 769px) {
  .reel-card {
    width: clamp(180px, calc((100vw - 4rem - 3rem) / 3), 300px);
  }
}

/* Mobile ≤480px */
@media (max-width: 480px) {
  .reels-header { padding-top: var(--space-l); }
  .reels-controls { display: none; }
  .reels-scroll {
    padding-inline: calc(50% - 41vw);
    scroll-padding-inline: calc(50% - 41vw);
  }
}

/* --- Services --------------------------------------------- */
#services {
  background: var(--creme);
}
.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--space-s);
  margin-top: var(--space-m);
  align-items: stretch;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-hero  { grid-row: auto !important; }
}

/* Shared base */
.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-item__icon {
  width: 40px;
  height: 40px;
  color: var(--rot);
}
.service-item__name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dunkel);
}
.service-item__text {
  font-size: 0.85rem;
  color: var(--grau);
  max-width: none;
}

/* Hero-Card (Paketshop) — dunkel, groß, orange Akzent */
.service-hero {
  grid-row: span 3;
  background: radial-gradient(ellipse at 18% 82%, rgba(240,168,44,0.08) 0%, transparent 55%), var(--dunkel);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.service-hero::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 4px; height: 0;
  background: var(--orange);
  transition: height 0.65s ease 0.3s, width 0.25s ease;
}
.service-hero.is-visible::before { height: 100%; }
.service-hero:hover::before { width: 7px; }
.service-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.service-hero .service-item__icon {
  width: 60px;
  height: 60px;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.service-hero .service-item__name {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: var(--hell);
  transition: color 0.25s ease;
}
.service-hero:hover .service-item__name { color: var(--orange); }
.service-hero .service-item__text {
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.6;
}

/* Kleine Cards (Lotto / Stehcafé / Lieferung) — horizontal */
.service-card {
  background: #F3EDE0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.07);
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-s);
  position: relative;
  transition: background 0.25s ease;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--rot);
  transition: height 0.65s ease 0.3s;
}
.service-card.is-visible::before { height: 100%; }
.service-card:hover { background: rgba(240,168,44,0.1); }
.service-card .service-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--rot);
  margin-top: 0.15rem;
}
.service-card__text-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.service-card .service-item__name { font-size: 1.15rem; }
.service-card .service-item__text { font-size: 0.85rem; color: var(--grau); }
.service-card__tag {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: block;
}

/* --- Standort --------------------------------------------- */
#standort {
  background: var(--dunkel);
}
#standort .section-label { color: rgba(255,255,255,0.4); }
#standort .section-title--hell { color: var(--hell); }

.standort-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-l);
}
@media (min-width: 768px) {
  .standort-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

.standort-info { display: flex; flex-direction: column; gap: var(--space-m); }

.standort-adresse {
  font-size: 1rem;
  color: var(--hell);
  line-height: 1.8;
}
.standort-adresse strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}
.standort-zeiten { color: rgba(255,255,255,0.7); }
.standort-zeiten table { width: 100%; border-collapse: collapse; }
.standort-zeiten td { padding: 0.3rem 0; font-size: 0.9rem; }
.standort-zeiten td:last-child { text-align: right; color: var(--hell); }
.standort-zeiten tr.heute td { color: var(--orange); }

.standort-anfahrt {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) brightness(0.75) contrast(1.0);
  opacity: 0.4;
  transition: filter 1.2s cubic-bezier(0.22,1,0.36,1),
              opacity 1.2s cubic-bezier(0.22,1,0.36,1);
}
.map-wrap.is-visible iframe {
  filter: grayscale(25%) contrast(1.1) brightness(1.0);
  opacity: 1;
}

/* --- Footer ----------------------------------------------- */
.footer {
  background: #111;
  padding: var(--space-l) var(--space-m) var(--space-m);
}
.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}
@media (min-width: 600px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__brand {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: var(--space-s);
}
.footer__adresse {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer__adresse a {
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer__adresse a:hover,
.footer__adresse a:focus { color: var(--orange); }
.footer__heading {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-s);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer__links a:hover, .footer__links a:focus { color: var(--orange); }

.footer__bottom {
  max-width: var(--max-w);
  margin: var(--space-m) auto 0;
  padding-top: var(--space-m);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__alter {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: var(--space-s);
  max-width: 60ch;
}
.footer__copy {
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.02em;
}
.footer__copy a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__copy a:hover { color: var(--orange); }

/* --- Platzhalter-Farbe für fehlende Bilder ----------------- */
.img-placeholder {
  background: rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

/* --- Focus-Styles ----------------------------------------- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* --- Clip-Reveal für Footer-Brand -------------------------- */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
.clip-reveal.is-visible {
  clip-path: inset(0 0% 0 0);
}

/* --- Öffnungszeiten-Zeilen: Stagger wenn Elternteil sichtbar */
.standort-zeiten tr {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.38s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.standort-info.is-visible .standort-zeiten tr { opacity: 1; transform: none; }
.standort-info.is-visible .standort-zeiten tr:nth-child(1) { transition-delay: 0.42s; }
.standort-info.is-visible .standort-zeiten tr:nth-child(2) { transition-delay: 0.47s; }
.standort-info.is-visible .standort-zeiten tr:nth-child(3) { transition-delay: 0.52s; }
.standort-info.is-visible .standort-zeiten tr:nth-child(4) { transition-delay: 0.57s; }
.standort-info.is-visible .standort-zeiten tr:nth-child(5) { transition-delay: 0.62s; }
.standort-info.is-visible .standort-zeiten tr:nth-child(6) { transition-delay: 0.67s; }
.standort-info.is-visible .standort-zeiten tr:nth-child(7) { transition-delay: 0.72s; }

/* --- Reduced Motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  /* Nav-Link-Stagger deaktivieren */
  .nav__mobile.is-open li .nav__mobile-link { transition-delay: 0s !important; }
  /* Öffnungszeiten-Stagger deaktivieren */
  .standort-info.is-visible .standort-zeiten tr { transition-delay: 0s !important; }
  html { scroll-behavior: auto; }
}

/* --- Utility ---------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ANIMATIONEN & INTERAKTIONEN
   ============================================================ */

:root {
  --cursor-x: -9999px;
  --cursor-y: -9999px;
}

/* --- Hero-Erweiterungen ------------------------------------ */
.hero { overflow: hidden; }
.hero__inner,
.hero__ctas { position: relative; z-index: 2; }

.hero__grain {
  position: absolute;
  inset: -30%;
  width: 160%; height: 160%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  filter: url(#grain);
  animation: grain-drift 0.9s steps(2) infinite;
  will-change: transform;
}

.hero__dekor {
  position: absolute;
  right: -0.04em; bottom: -0.12em;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(28vw, 42vw, 440px);
  line-height: 0.85;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  animation: dekor-breathe 9s ease-in-out infinite;
}

/* Hero-Entrance (gestaffelt, beim Laden) */
.hero__logo     { animation: scale-in 0.65s cubic-bezier(.34,1.56,.64,1) both; }
.hero__eyebrow  { animation: fade-up  0.60s ease 0.18s both; }
.hero__headline { animation: fade-up  0.70s ease 0.32s both; }
.hero__oeffnung { animation: fade-up  0.70s ease 0.50s both; }
.hero__ctas     { animation: fade-up  0.55s ease 0.68s both; }

/* Hover-Glow auf Buttons (nur on-demand, kein Loop) */
.btn-lieferung--wolt:hover, .btn-lieferung--wolt:focus { box-shadow: 0 0 22px 5px rgba(240,168,44,0.42); }
.btn-lieferung--lief:hover, .btn-lieferung--lief:focus { box-shadow: 0 0 22px 5px rgba(193,59,40,0.48); }

/* --- Glitch ------------------------------------------------ */
.hero__headline { position: relative; }
.hero__headline::before,
.hero__headline::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.hero__headline::before { color: var(--orange); }
.hero__headline::after  { color: var(--rot); }
.hero__headline.is-glitching::before { animation: glitch-1 0.5s steps(3) forwards; }
.hero__headline.is-glitching::after  { animation: glitch-2 0.5s steps(3) forwards; }

/* --- Scroll-Reveal-System ---------------------------------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
[data-reveal="fade-up"]    { transform: translateY(48px); }
[data-reveal="fade-left"]  { transform: translateX(-52px); }
[data-reveal="fade-right"] { transform: translateX(52px); }
[data-reveal="scale-in"]   { transform: scale(0.94); }
[data-reveal="fade-in"]    { transform: none; }
[data-reveal].is-visible   { opacity: 1; transform: none; }

[data-reveal][style*="--i"] {
  transition-delay: calc(var(--i, 0) * 60ms);
}

/* --- Aktionen: Hover + Border-Draw ------------------------- */
.aktion-card {
  border-left: none;
  position: relative;
  transition: translate 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease;
}
.aktion-card:hover {
  translate: 0 -3px;
  box-shadow: 0 8px 28px rgba(240,168,44,0.13);
}
.aktion-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.65s ease 0.3s, width 0.3s ease;
}
.aktion-card.is-visible::before { height: 100%; }

/* Hero-Card: border wächst beim Hover, Titel wechselt Farbe */
.aktion-card--hero::before { transition: height 0.65s ease 0.3s, width 0.25s ease; }
.aktion-card--hero:hover::before { width: 6px; }
.aktion-card--hero .aktion-card__titel { transition: color 0.25s ease; }
.aktion-card--hero:hover .aktion-card__titel { color: var(--hell); }

/* --- Produkt-Cards: Hover-Upgrade + Link-Reset ------------- */
.produkt-card { transition: box-shadow 0.2s ease, transform 0.2s ease; cursor: default; }
a.produkt-card { text-decoration: none; color: inherit; cursor: pointer; }
.produkt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240,168,44,0.28), inset 0 0 0 1px rgba(240,168,44,0.2);
}

/* --- Preis-Badge auf Produkt-Karte ------------------------- */
.produkt-card__preis {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dunkel);
  background: var(--orange);
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
  letter-spacing: 0.01em;
}

/* --- Sortiment: Page-Header -------------------------------- */
.sortiment-header {
  padding: 7rem 1.5rem 2.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* --- Sortiment: Zwei-Spalten-Layout ------------------------ */
.sortiment-layout {
  display: flex;
  align-items: flex-start;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* --- Linke Sidebar ----------------------------------------- */
.sortiment-sidebar {
  width: 210px;
  flex-shrink: 0;
  position: sticky;
  top: 56px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  scrollbar-width: none;
  padding: 1.25rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sortiment-sidebar::-webkit-scrollbar { display: none; }

.sortiment-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(255,255,255,0.04);
  padding-right: 0.25rem;
}

/* "Sortiment" Label oben in der Sidebar */
.sortiment-sidebar__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 0.75rem 0.75rem;
}

.sortiment-sidebar__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  padding: 0.52rem 0.75rem;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  line-height: 1.3;
}
.sortiment-sidebar__link span {
  font-size: 0.68rem;
  opacity: 0.35;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.sortiment-sidebar__link:hover {
  background: rgba(255,255,255,0.07);
  color: var(--hell);
}
.sortiment-sidebar__link.is-aktiv {
  background: rgba(240,168,44,0.13);
  color: var(--orange);
  font-weight: 600;
}

/* --- Rechter Inhalt ---------------------------------------- */
.sortiment-inhalt {
  flex: 1;
  min-width: 0;
}

/* --- Kategorie-Sektion ------------------------------------- */
.kat-sektion {
  padding: 1.25rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  scroll-margin-top: 56px;
}
.kat-sektion:last-child { border-bottom: none; }

.kat-sektion__titel {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}

/* Grid innerhalb einer Sektion */
.kat-sektion .sortiment-grid { margin-top: 0; }

/* --- Mobile: Sidebar wird horizontale Leiste --------------- */
@media (max-width: 767px) {
  .sortiment-layout { flex-direction: column; }

  .sortiment-sidebar {
    width: 100%;
    height: auto;
    position: sticky;
    top: 56px;
    z-index: 10;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.65rem 0.75rem;
    gap: 0.3rem;
    background: var(--mittel);
  }

  .sortiment-sidebar__label { display: none; }

  .sortiment-sidebar__links {
    flex-direction: row;
    gap: 0.3rem;
    border-right: none;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sortiment-sidebar__links::-webkit-scrollbar { display: none; }

  .sortiment-sidebar__link {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
  }
  .sortiment-sidebar__link span { display: none; }

  .kat-sektion {
    padding: 1rem 1rem 1.5rem;
    scroll-margin-top: calc(56px + 42px);
  }
}

/* --- iPhone: Nike-Style 2-Spalten-Grid (< 480px) ---------- */
@media (max-width: 479px) {
  .sortiment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  /* Card: Bild oben, Text darunter — wie Nike */
  .produkt-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    aspect-ratio: unset;
    padding: 0;
    gap: 0;
  }

  /* Bild: oben, quadratisch, volle Breite, sichtbar */
  .produkt-card__img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    opacity: 1;
    object-fit: cover;
    flex-shrink: 0;
  }

  /* Text-Bereich unter dem Bild */
  .produkt-card__kategorie {
    display: none;
  }

  .produkt-card__name {
    position: static;
    text-align: left;
    text-shadow: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hell);
    padding: 0.5rem 0.5rem 0.1rem;
    line-height: 1.3;
  }

  .produkt-card__preis {
    position: static;
    padding: 0 0.5rem 0.6rem;
    margin-top: 0.1rem;
  }
}

/* --- Öffnungszeiten: Heute statisch hervorheben ----------- */
tr.heute td { font-weight: 700; }
tr.heute td:first-child {
  padding-left: 0.65rem;
  border-left: 2px solid var(--orange);
}

/* --- Marquee ----------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--orange); color: var(--dunkel);
  padding: 0.6rem 0;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  user-select: none;
}
.marquee__track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}
.marquee__item { padding: 0 1.6rem; white-space: nowrap; }
.marquee__dot  { padding: 0 0.2rem; opacity: 0.45; }

/* --- Floating WhatsApp-Button ------------------------------ */
.cta-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: #25D366; color: #fff;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(130%) scale(0.9); opacity: 0;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), opacity 0.35s ease, box-shadow 0.2s;
  z-index: 200; pointer-events: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
}
.cta-float.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.cta-float:hover      { box-shadow: 0 8px 36px rgba(37,211,102,0.7); transform: translateY(-2px); }
.cta-float.is-visible:active { transform: scale(0.93); }

.cta-float.on-yellow {
  background: #1faf57;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.cta-float.on-yellow:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}


/* --- Cursor Glow ------------------------------------------- */
body.cursor-glow::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9990;
  background: radial-gradient(
    300px circle at var(--cursor-x) var(--cursor-y),
    rgba(240,168,44,0.07), transparent 65%
  );
}

/* --- Keyframes --------------------------------------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.78); }
  to   { opacity: 1; transform: none; }
}
@keyframes grain-drift {
  0%   { transform: translate(0%,    0%)    scale(1.05); }
  25%  { transform: translate(-1.5%, 1%)    scale(1.05); }
  50%  { transform: translate(0.8%,  -1.5%) scale(1.05); }
  75%  { transform: translate(2%,    0.5%)  scale(1.05); }
}
@keyframes dekor-breathe {
  0%, 100% { opacity: 0.03; }
  50%       { opacity: 0.055; }
}
@keyframes glitch-1 {
  0%   { opacity: 1; clip-path: inset(12% 0 74% 0); transform: translateX(-4px); }
  25%  {             clip-path: inset(58% 0 12% 0); transform: translateX( 3px); }
  50%  {             clip-path: inset(32% 0 48% 0); transform: translateX(-2px); }
  75%  {             clip-path: inset(72% 0  5% 0); transform: translateX( 4px); }
  100% { opacity: 0; clip-path: inset(0%  0 100% 0); transform: translateX(0); }
}
@keyframes glitch-2 {
  0%   { opacity: 1; clip-path: inset(68% 0  8% 0); transform: translateX( 4px); }
  25%  {             clip-path: inset(22% 0 58% 0); transform: translateX(-3px); }
  50%  {             clip-path: inset(82% 0  3% 0); transform: translateX( 2px); }
  75%  {             clip-path: inset(42% 0 38% 0); transform: translateX(-4px); }
  100% { opacity: 0; clip-path: inset(0%  0 100% 0); transform: translateX(0); }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── VIDEO-HERO ──────────────────────────────────────────────── */
.vhero-wrapper {
  height: 300vh;
  position: relative;
}

.vhero-sticky {
  --vhero-p: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--dunkel);
  border-top: 4px solid var(--orange);
}

/* ── Left panel — fährt nach links raus ──────────────────────── */
.vhero-panel-left {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(56px + 2.5rem);
  text-align: center;
  pointer-events: none;
  opacity: calc(1 - var(--vhero-left-exit, 0) * 1.6);
  transform: translateX(calc(var(--vhero-left-exit, 0) * -130%));
  will-change: transform, opacity;
}

/* ── Right panel — Aktionen, Glassmorphism-Card ──────────────── */
.vhero-panel-right {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) translateX(calc((1 - var(--vhero-right-enter, 0)) * 90%));
  opacity: var(--vhero-right-enter, 0);
  z-index: 3;
  pointer-events: none;
  will-change: transform, opacity;

  /* Glassmorphism-Card */
  width: 272px;
  padding: 1.5rem 1.4rem 1.25rem;
  background: rgba(12, 10, 6, 0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--orange);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.50),
    inset 0 0 0 0.5px rgba(240, 168, 44, 0.10);

  color: var(--hell);
  text-align: left;
}
.vhero-panel-right[aria-hidden="false"] { pointer-events: auto; }

/* Eyebrow im Panel — orange statt grau, für Brand-Ankerpunkt */
.vhero-panel-right .vhero-eyebrow {
  color: var(--orange);
  opacity: 0.85;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.35rem;
}

.vhero-panel-right__titel {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--hell);
  margin-bottom: 1.1rem;
}
.vhero-panel-right__titel span { color: var(--orange); }

/* Deal-Zeilen */
.vhero-panel-right__deals {
  display: flex;
  flex-direction: column;
  max-height: 14rem;
  overflow-y: auto;
}

.vhero-aktion-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.vhero-aktion-item:last-child { border-bottom: none; }

/* Badge im Panel etwas kompakter */
.vhero-aktion-item .aktion-card__badge {
  font-size: 0.52rem;
  padding: 0.16rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.07em;
  flex-shrink: 0;
  font-weight: 700;
}

.vhero-aktion-item__titel {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.15s ease;
  cursor: pointer;
}
.vhero-aktion-item__titel:hover { color: var(--orange); }

/* CTA: Pfeil animiert sich nach rechts beim Hover */
.vhero-panel-right__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.15s ease;
  cursor: pointer;
}
.vhero-panel-right__cta:hover {
  gap: 0.55rem;
  opacity: 0.8;
}

.vhero-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  filter: drop-shadow(0 2px 10px rgba(240,168,44,0.4));
  margin-bottom: 1rem;
}

.vhero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
  margin-bottom: 0.75rem;
}

.vhero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--hell);
  position: relative;
}

.vhero-headline span { color: var(--orange); }

.vhero-headline::before,
.vhero-headline::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.vhero-headline::before { color: var(--orange); }
.vhero-headline::after  { color: var(--rot); }
.vhero-headline.is-glitching::before { animation: glitch-1 0.5s steps(3) forwards; }
.vhero-headline.is-glitching::after  { animation: glitch-2 0.5s steps(3) forwards; }

/* ── Video Frame ─────────────────────────────────────────────── */
.vhero-frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow: hidden;
  width: calc(52% + 48% * var(--vhero-p));
  height: calc(52vh + 48vh * var(--vhero-p));
  border-radius: calc(20px * (1 - var(--vhero-p)));
}

.vhero-frame video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.vhero-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.32));
  opacity: calc(1 - var(--vhero-p));
  pointer-events: none;
  z-index: 1;
}

/* ── Scroll-Hinweis ──────────────────────────────────────────── */
.vhero-scroll-hint {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: calc(1 - var(--vhero-p) * 7);
  animation: vhero-bounce 1.8s ease-in-out infinite;
}

@keyframes vhero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Öffnungszeiten-Band (nach Hero) ─────────────────────────── */
.oeffnung-band {
  background: var(--dunkel);
  padding: var(--space-l) var(--space-m) var(--space-xl);
}

.oeffnung-band .hero__oeffnung {
  max-width: var(--max-w);
  margin-inline: auto;
  margin-top: 0;
  padding-top: 0;
}

/* ── Mobile: Original-Stand ──────────────────────────────────── */
@media (max-width: 600px) {
  /* Original frame-Größen */
  .vhero-wrapper { height: 320vh; }
  .vhero-frame {
    width: calc(88% + 12% * var(--vhero-p));
    height: calc(46vh + 54vh * var(--vhero-p));
  }

  /* Left panel verhält sich wie das originale vhero-content:
     blendet mit --vhero-p aus, kein Slide-left */
  .vhero-panel-left {
    opacity: calc(1 - var(--vhero-p) * 3.5);
    transform: translateY(calc(var(--vhero-p) * -28px));
  }

  /* Aktionen-Panel auf Mobile ausgeblendet */
  .vhero-panel-right { display: none; }

  /* Logo und Adresse auf Mobile ausblenden — nur Headline bleibt */
  .vhero-logo    { display: none; }
  .vhero-eyebrow { display: none; }
}

/* ── Aktionen-Block Mobile ──────────────────────────────────── */
.aktionen-mobile { display: none; }

@media (max-width: 600px) {
  .aktionen-mobile {
    display: block;
    margin: 0;
    padding: 1.6rem 1.25rem 1.5rem;
    background: #0e0e0e;
    border-top: 3px solid var(--orange);
    color: var(--hell);
  }
  .aktionen-mobile__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.4rem;
  }
  .aktionen-mobile__titel {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--hell);
    margin-bottom: 1.1rem;
  }
  .aktionen-mobile__titel span {
    color: var(--orange);
    font-style: italic;
  }
  .aktionen-mobile__deals { display: flex; flex-direction: column; gap: 0; }
  .aktionen-mobile .vhero-aktion-item        { padding: 0.75rem 0; }
  .aktionen-mobile .aktion-card__badge       { font-size: 0.62rem; padding: 0.2rem 0.5rem; }
  .aktionen-mobile .vhero-aktion-item__titel { font-size: 0.95rem; }
  .aktionen-mobile .vhero-panel-right__cta   { display: block; text-align: center; margin-top: 1.2rem; }
}

/* ── Sticky Mobile Order Bar ───────────────────────────────── */
.mobile-order-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--dunkel);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-order-bar__btn {
  display: block;
  background: var(--orange);
  color: var(--dunkel);
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s ease-out;
  touch-action: manipulation;
}
.mobile-order-bar__btn:hover  { opacity: 0.9; }
.mobile-order-bar__btn:active { transform: scale(0.97); opacity: 0.8; }

@media (max-width: 600px) {
  .mobile-order-bar { display: block; }

  /* WhatsApp-Button über die Bar schieben */
  .cta-float { bottom: calc(1.25rem + 4rem + env(safe-area-inset-bottom, 0px)); }

  /* Footer bekommt Luft, damit der letzte Inhalt nicht hinter der Bar verschwindet */
  .footer { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); }
}

/* ── Too Good To Go ─────────────────────────────────────────── */
:root { --tgtg-green: #3D8B37; --tgtg-green-light: #EBF5EA; }

#tgtg {
  background: var(--creme);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.tgtg-layout {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: var(--space-xl);
  align-items: center;
}

@keyframes tgtg-float {
  0%, 100% {
    transform: translateY(0px) rotate(-0.4deg);
    filter: drop-shadow(0 20px 26px rgba(0,0,0,0.26))
            drop-shadow(0 4px 10px rgba(61,139,55,0.18));
  }
  50% {
    transform: translateY(-15px) rotate(0.4deg);
    filter: drop-shadow(0 34px 44px rgba(0,0,0,0.11))
            drop-shadow(0 10px 20px rgba(61,139,55,0.08));
  }
}

.tgtg-img-col {
  aspect-ratio: 4 / 5;
  max-height: 680px;
  display: flex;
  align-items: center;
  animation: tgtg-float 5.5s cubic-bezier(0.37, 0, 0.63, 1) 0.9s infinite;
  will-change: transform;
}

.tgtg-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .tgtg-img-col {
    animation: none;
    filter: drop-shadow(0 20px 26px rgba(0,0,0,0.22));
  }
}

.tgtg-badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-s);
}

.tgtg-partner-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--tgtg-green);
  color: #fff;
}

.tgtg-wordmark {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tgtg-green);
}

.tgtg-titel {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  color: var(--dunkel);
  margin-bottom: var(--space-s);
}

.tgtg-titel span { color: var(--tgtg-green); }

.tgtg-text {
  font-size: 1rem;
  color: var(--grau);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: var(--space-s);
}

.tgtg-facts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-m);
}

.tgtg-facts li {
  font-size: 0.875rem;
  color: var(--dunkel);
  padding-left: 1.2em;
  position: relative;
  line-height: 1.5;
}

.tgtg-facts li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--tgtg-green);
  font-weight: 700;
}

.tgtg-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  background: var(--tgtg-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 0.2s ease,
              translate 0.18s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.2s ease;
  margin-bottom: 0.6rem;
}

.tgtg-cta-btn:hover,
.tgtg-cta-btn:focus-visible {
  filter: brightness(1.12);
  translate: 0 -2px;
  box-shadow: 0 6px 20px rgba(61,139,55,0.3);
}

.tgtg-cta-btn:active { scale: 0.97; }

.tgtg-cta-note {
  font-size: 0.72rem;
  color: var(--grau);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tgtg-layout {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }
  .tgtg-img-col {
    max-height: 420px;
  }
}

/* ── Drehlocation ───────────────────────────────────────────── */
#drehlocation {
  background: var(--mittel);
  overflow: hidden;
  position: relative;
}

#drehlocation::before {
  content: 'Film';
  position: absolute;
  right: -0.05em;
  bottom: -0.15em;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22vw, 30vw, 360px);
  line-height: 0.85;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.dreh-inner {
  position: relative;
  z-index: 1;
}

.dreh-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-xl);
  align-items: center;
}

.dreh-img-col {
  aspect-ratio: 4/3;
  overflow: hidden;
  max-height: 540px;
  border-radius: 20px;
}

.dreh-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dreh-img-col:hover .dreh-photo {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .dreh-img-col:hover .dreh-photo { transform: none; }
}

.dreh-label { color: rgba(250,247,240,0.55); }

.dreh-titel {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--hell);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-s);
}

.dreh-titel span { color: var(--orange); }

.dreh-text {
  font-size: 1rem;
  color: rgba(250,247,240,0.68);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--space-s);
}

.dreh-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: var(--space-m);
}

.dreh-details li {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.55);
  padding-left: 1.2em;
  position: relative;
  line-height: 1.5;
}

.dreh-details li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.dreh-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: var(--space-s);
}

.dreh-contact-link {
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.dreh-contact-link:hover,
.dreh-contact-link:focus-visible { opacity: 0.72; }

.dreh-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  background: var(--orange);
  color: var(--dunkel);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 0.2s ease,
              translate 0.18s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.2s ease;
}

.dreh-cta:hover,
.dreh-cta:focus-visible {
  filter: brightness(1.08);
  translate: 0 -2px;
  box-shadow: 0 6px 22px rgba(240,168,44,0.35);
}

.dreh-cta:active { scale: 0.97; }

@media (max-width: 768px) {
  .dreh-layout {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }
  .dreh-img-col {
    order: 1;
    aspect-ratio: 16/9;
    max-height: 280px;
    border-radius: 16px;
  }
  .dreh-copy { order: 0; }
}

/* ============================================================
   COOKIE-CONSENT BAR
   ============================================================ */

@keyframes cookie-modal-in {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

#cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px 16px 0 0;
  font-family: var(--ff-body, 'Murecho', sans-serif);
  animation: cookie-modal-in 0.42s cubic-bezier(0.16,1,0.3,1) forwards;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}

/* Settings panel — hidden by default, shown above bar */
.cookie-settings-panel {
  display: none;
  background: #1c1c1c;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 1.5rem 1rem;
}
#cookie-modal.is-open .cookie-settings-panel { display: block; }

.cookie-settings-panel-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.cookie-settings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-settings-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s;
}
.cookie-settings-link:hover { color: rgba(255,255,255,0.65); }

/* Main bar row */
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.cookie-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cookie-bar-title {
  font-family: var(--ff-display, 'Pliant', sans-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.cookie-bar-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Kategorie-Liste */
.cookie-categories {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.cookie-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.cookie-cat-row:last-child { border-bottom: none; }
.cookie-cat-row:has(.cookie-toggle:not([disabled])):hover {
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.cookie-cat-info {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  flex: 1;
  min-width: 0;
}

.cookie-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  margin-top: 6px;
  transition: background 0.25s;
}
.cookie-cat-dot--on { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.5); }

.cookie-cat-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.cookie-cat-desc {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.45;
  margin-top: 2px;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.22s cubic-bezier(0.16,1,0.3,1);
  padding: 0;
  outline: none;
  touch-action: manipulation;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  inset: -10px -1px;
}
.cookie-toggle:focus-visible {
  box-shadow: 0 0 0 2px #141414, 0 0 0 4px var(--orange, #F97316);
}
.cookie-toggle--on { background: var(--orange, #F97316); }
.cookie-toggle--disabled {
  cursor: default;
  background: #4ade80 !important;
  opacity: 0.75;
}

.cookie-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  display: block;
  pointer-events: none;
}
.cookie-toggle--on .cookie-toggle-thumb { transform: translateX(18px); }

/* Buttons */
.cookie-btn-primary {
  background: var(--orange, #F97316);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--ff-display, 'Pliant', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.18s, transform 0.14s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 20px rgba(240,168,44,0.35);
}
.cookie-btn-primary:hover { opacity: 0.88; box-shadow: 0 6px 28px rgba(240,168,44,0.45); }
.cookie-btn-primary:active { transform: scale(0.97); }
.cookie-btn-primary:focus-visible {
  box-shadow: 0 0 0 2px #141414, 0 0 0 4px var(--orange, #F97316);
  outline: none;
}

.cookie-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--ff-body, 'Murecho', sans-serif);
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.cookie-btn-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.cookie-btn-secondary:active { transform: scale(0.98); }
.cookie-btn-secondary:focus-visible {
  box-shadow: 0 0 0 2px #141414, 0 0 0 4px rgba(255,255,255,0.5);
  outline: none;
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--ff-body, 'Murecho', sans-serif);
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.cookie-btn-settings:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.cookie-btn-settings:focus-visible {
  box-shadow: 0 0 0 2px #141414, 0 0 0 4px rgba(255,255,255,0.5);
  outline: none;
}

/* Footer padding while banner is visible */
body.cookie-bar-visible footer {
  padding-bottom: 5rem;
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .cookie-bar-desc { white-space: normal; }
  .cookie-bar-actions { width: 100%; flex-wrap: wrap; }
  .cookie-btn-primary { flex: 1; text-align: center; }
  .cookie-settings-panel { padding: 1rem 1rem 0.75rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #cookie-modal { animation: none; }
  .cookie-toggle-thumb,
  .cookie-toggle,
  .cookie-btn-primary,
  .cookie-btn-secondary,
  .cookie-btn-settings { transition-duration: 0.01ms !important; }
}

/* Google Maps Placeholder */
.maps-placeholder {
  background: #1a1a1a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 300px;
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-body, 'Murecho', sans-serif);
  text-align: center;
  padding: 32px;
}
.maps-placeholder p { font-size: 0.9rem; line-height: 1.5; max-width: 300px; }
.maps-placeholder small { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.maps-placeholder .maps-load-btn {
  background: var(--orange, #F97316);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-family: var(--ff-display, 'Pliant', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}
.maps-placeholder .maps-load-btn:hover { opacity: 0.85; }

/* Inline Cookie-Settings auf datenschutz.html */
.cookie-settings-inline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.cookie-settings-inline h3 {
  font-family: var(--ff-display, 'Pliant', sans-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.cookie-settings-inline .cookie-categories { margin-bottom: 0; }
.cookie-settings-inline-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cookie-settings-inline-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
}
.cookie-settings-inline-confirm {
  display: none;
  font-size: 0.85rem;
  color: #4ade80;
  margin-top: 0.75rem;
}

