/* ============================================================
   GABY'S ZAUBERLAND — Designsystem (Port des abgenommenen Prototyps)
   Zwei Welten: Nacht (Zauberbühne) & Tag (Wunder-Labor)
   Typo: Fraunces (Display) · Atkinson Hyperlegible (Text) · IBM Plex Mono (Etiketten)
   ============================================================ */

:root {
  /* Nacht — die Bühne (Standard) */
  --bg: #0B1026;
  --bg-tief: #070B1C;
  --flaeche: #161238;
  --flaeche-2: #1D1846;
  --linie: rgba(233, 185, 73, .18);
  --ink: #F2EDDF;
  --ink-soft: #C9C3E0;
  --muted: #9C96BE;
  --gold: #E9B949;
  --gold-tief: #C99A2E;
  --rot: #E05563;
  --blau: #8FA8E8;
  --vorhang: #8E2438;
  --hut: #2A2260;
  --hut-tief: #191345;
  --schatten: 0 18px 50px rgba(0, 0, 0, .55);
  --spot: rgba(233, 185, 73, .10);
  --header-bg: rgba(11, 16, 38, .82);

  --f-display: "Fraunces", Georgia, serif;
  --f-text: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;

  --r: 14px;
  --r-gross: 22px;
  --w: 1180px;
  --wonk: "opsz" 72, "SOFT" 40, "WONK" 1;
  font-size: 100%;
}

html[data-thema="tag"] {
  /* Tag — das Wunder-Labor */
  --bg: #F4F7FB;
  --bg-tief: #E9EEF7;
  --flaeche: #FFFFFF;
  --flaeche-2: #FBF8F0;
  --linie: rgba(28, 35, 64, .14);
  --ink: #1C2340;
  --ink-soft: #39406B;
  --muted: #5A6284;
  --gold: #B9880F;
  --gold-tief: #99700C;
  --rot: #C9333F;
  --blau: #2456C4;
  --vorhang: #C9333F;
  --hut: #2A3160;
  --hut-tief: #1C2340;
  --schatten: 0 14px 40px rgba(28, 35, 64, .14);
  --spot: rgba(185, 136, 15, .07);
  --header-bg: rgba(244, 247, 251, .85);
}

/* Textgrößen-Stufen (A11y) */
html.fs-2 { font-size: 112.5%; }
html.fs-3 { font-size: 127%; }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.no-motion { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  transition: background-color .45s ease, color .45s ease;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-variation-settings: var(--wonk);
  font-weight: 640;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.7rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; line-height: 1.25; }
p { margin: 0 0 1em; }

a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--w); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

/* Etikett (Eyebrow) */
.etikett {
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1.1em;
}
.etikett::before { content: "✶"; font-size: .9em; }

.unterzeile { color: var(--muted); max-width: 58ch; }

/* ============================================================
   HEADER
   ============================================================ */
.kopf {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.kopf.scrolled { border-color: var(--linie); }
.kopf__zeile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: .55rem;
}
.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.logo svg { height: 100px; width: auto; overflow: visible; }
/* Beim Hover über das Logo hüpft der Hase ein Stück höher */
.logo__hase { transition: transform .45s cubic-bezier(.4, 1.7, .5, 1); }
.logo:hover .logo__hase, .logo:focus-visible .logo__hase { transform: translateY(-5px); }
.logo__wort { font-family: var(--f-display); font-variation-settings: var(--wonk); font-size: 2.3rem; font-weight: 640; line-height: 1; }
.logo__wort i { font-style: italic; color: var(--rot); }
.logo__wort b { font-weight: 640; color: var(--blau); display: block; font-size: 1.06em; }

.nav { margin-left: auto; display: flex; gap: clamp(.6rem, 2vw, 1.6rem); }
.nav a {
  text-decoration: none;
  font-size: .95rem;
  color: var(--ink-soft);
  padding: .35em .2em;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); border-color: var(--gold); }

.kopf__tools { display: flex; align-items: center; gap: .55rem; margin-left: .4rem; }

/* Tag/Nacht-Schalter */
.thema {
  --b: 30px;
  position: relative;
  width: 64px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--linie);
  background: var(--flaeche);
  cursor: pointer;
  padding: 0;
}
.thema__knopf {
  position: absolute;
  top: 1px; left: 1px;
  width: var(--b); height: var(--b);
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: grid; place-items: center;
  transition: transform .35s cubic-bezier(.5, 1.6, .4, 1);
}
html[data-thema="tag"] .thema__knopf { transform: translateX(30px); }
.thema svg { width: 18px; height: 18px; }
.thema .mond { display: block; }
.thema .sonne { display: none; }
html[data-thema="tag"] .thema .mond { display: none; }
html[data-thema="tag"] .thema .sonne { display: block; }

/* Runde Werkzeug-Knöpfe (Suche, Merkzettel) */
.werk-knopf {
  position: relative;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--linie);
  background: var(--flaeche);
  color: var(--ink);
  cursor: pointer;
}
.merk-knopf__zahl {
  position: absolute; top: -5px; right: -5px;
  min-width: 20px; height: 20px;
  padding-inline: 5px;
  border-radius: 999px;
  background: var(--rot);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .72rem;
  display: grid; place-items: center;
}
.merk-knopf__zahl:empty { display: none; }

.burger { display: none; }

/* ============================================================
   SUCHE (Overlay)
   ============================================================ */
.such {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding-top: min(22vh, 240px);
  background: rgba(5, 7, 20, .72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.such.offen { opacity: 1; pointer-events: auto; }
.such__box {
  width: min(640px, calc(100vw - 2.4rem));
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  box-shadow: var(--schatten);
  padding: 1.4rem 1.5rem 1.5rem;
}
.such__box h2 { font-size: 1.3rem; margin-bottom: .8rem; }
.such__zeile { display: flex; gap: .6rem; }
.such__feld {
  flex: 1;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--linie);
  border-radius: 12px;
  padding: .7em 1em;
}
.such__hinweis { font-size: .8rem; color: var(--muted); margin: .8rem 0 0; }

/* ============================================================
   HERO — die Bühne
   ============================================================ */
.buehne {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, var(--spot), transparent 60%),
    radial-gradient(ellipse 130% 90% at 50% -30%, var(--bg-tief), transparent 70%),
    var(--bg);
}
#staub {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.buehne__inhalt {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8.5rem 1.2rem 5.5rem;
  max-width: 900px;
}
.buehne h1 { margin-bottom: .35em; }
.buehne h1 em {
  font-style: italic;
  color: var(--gold);
}
.buehne__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-inline: auto;
}

/* Der Hut */
.hut {
  width: clamp(150px, 22vw, 230px);
  margin: 1.8rem auto .8rem;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.hut svg { width: 100%; height: auto; overflow: visible; }
/* Der Hase sitzt im Hut: in Ruhe schauen nur die Ohrenspitzen heraus,
   beim Klick lugt er weiter hervor */
.hut__hase {
  transform: translateY(34px);
  transition: transform .5s cubic-bezier(.4, 1.7, .5, 1);
}
.hut:hover .hut__hase { transform: translateY(27px); }
.hut.zeigt-hase .hut__hase { transform: translateY(1px); }
.buehne__hint {
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.knopfzeile { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.knopf {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--f-text);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: .82em 1.7em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s;
}
.knopf:hover { transform: translateY(-2px); }
.knopf--gold {
  background: linear-gradient(160deg, var(--gold), var(--gold-tief));
  color: #14102A;
  box-shadow: 0 8px 26px rgba(233, 185, 73, .25);
}
html[data-thema="tag"] .knopf--gold { color: #fff; box-shadow: 0 8px 22px rgba(153, 112, 12, .3); }
.knopf--zart {
  border-color: var(--linie);
  color: var(--ink);
  background: transparent;
}
.knopf--zart:hover { background: var(--flaeche); }

.runter {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  animation: schweben 2.6s ease-in-out infinite;
}
@keyframes schweben {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 9px); }
}

/* ============================================================
   SEKTIONEN
   ============================================================ */
.abschnitt { padding-block: clamp(4.5rem, 9vw, 7.5rem); position: relative; }
.abschnitt--flaeche { background: var(--bg-tief); }
.abschnitt__kopf { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }

/* --- Die vier Welten --- */
.welten {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 2vw, 1.4rem);
}
.welt {
  position: relative;
  border-radius: var(--r-gross);
  border: 1px solid var(--linie);
  background: linear-gradient(175deg, var(--flaeche-2), var(--flaeche));
  padding: 1.7rem 1.4rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.welt:hover {
  transform: translateY(-6px) rotate(-.6deg);
  box-shadow: var(--schatten);
  border-color: var(--gold);
}
.welt:nth-child(even):hover { transform: translateY(-6px) rotate(.6deg); }
.welt__icon { width: 46px; height: 46px; color: var(--gold); }
.welt__icon svg { width: 100%; height: 100%; }
.welt h3 { margin: .4rem 0 .1rem; }
.welt p { font-size: .92rem; color: var(--muted); margin: 0; flex: 1; }
.welt__subs {
  font-family: var(--f-mono);
  font-size: .68rem !important;
  line-height: 1.75;
  letter-spacing: .02em;
  color: var(--ink-soft) !important;
  flex: 0 !important;
  border-top: 1px dashed var(--linie);
  padding-top: .75rem;
  margin-top: .8rem !important;
}
.welt__zahl {
  font-family: var(--f-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin-top: .8rem;
}
.welt__pfeil {
  position: absolute; top: 1.3rem; right: 1.3rem;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  color: var(--gold);
}
.welt:hover .welt__pfeil { opacity: 1; transform: none; }

/* --- Schaufenster --- */
.schaufenster {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 310px);
  gap: 1.2rem;
  overflow-x: auto;
  padding: .6rem .4rem 1.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.schaufenster::-webkit-scrollbar { height: 8px; }
.schaufenster::-webkit-scrollbar-thumb { background: var(--gold-tief); border-radius: 99px; }

.karte {
  scroll-snap-align: start;
  border-radius: var(--r-gross);
  border: 1px solid var(--linie);
  background: var(--flaeche);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.karte:hover { transform: translateY(-5px); box-shadow: var(--schatten); }
.karte__bild {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  position: relative;
  display: block;
}
.karte__bild img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform .4s ease;
}
.karte:hover .karte__bild img { transform: scale(1.05) rotate(.8deg); }
.karte__welt {
  position: absolute; top: .7rem; left: .7rem;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  background: var(--bg);
  color: var(--gold);
  border: 1px solid var(--linie);
  padding: .3em .7em;
  border-radius: 99px;
  z-index: 2;
}
.karte__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.karte__body h3 { font-size: 1.08rem; margin: 0; }
.karte__body h3 a { text-decoration: none; }
.karte__body h3 a:hover { color: var(--gold); }
.karte__body p { font-size: .88rem; color: var(--muted); margin: 0; flex: 1; }
.karte__aktionen { display: flex; gap: .5rem; margin-top: .6rem; }
.mini-knopf {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-size: .85rem; font-weight: 700;
  padding: .55em .8em;
  border-radius: 9px;
  border: 1px solid var(--linie);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--f-text);
  transition: background-color .18s, border-color .18s, color .18s;
}
.mini-knopf:hover { border-color: var(--gold); color: var(--gold); }
.mini-knopf--voll {
  background: var(--gold);
  border-color: var(--gold);
  color: #14102A;
}
html[data-thema="tag"] .mini-knopf--voll { color: #fff; }
.mini-knopf--voll:hover { background: var(--gold-tief); color: #14102A; }
html[data-thema="tag"] .mini-knopf--voll:hover { color: #fff; }
.mini-knopf.gemerkt { border-color: var(--rot); color: var(--rot); }

/* --- Über uns --- */
.zweispalt {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.laden-foto {
  border-radius: var(--r-gross);
  overflow: hidden;
  box-shadow: var(--schatten);
  transform: rotate(1.4deg);
  border: 6px solid var(--flaeche);
  margin: 0;
}
.zitat {
  border-left: 3px solid var(--gold);
  padding: .4rem 0 .4rem 1.2rem;
  font-family: var(--f-display);
  font-variation-settings: var(--wonk);
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--ink-soft);
  font-style: italic;
  margin: 1.4rem 0;
}
.zitat cite { display: block; font-family: var(--f-mono); font-style: normal; font-size: .74rem; letter-spacing: .1em; color: var(--muted); margin-top: .7rem; }
.fakten { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.fakt {
  border: 1px solid var(--linie);
  background: var(--flaeche);
  border-radius: var(--r);
  padding: .8rem 1.2rem;
}
.fakt b { font-family: var(--f-display); font-size: 1.5rem; color: var(--gold); display: block; line-height: 1.1; }
.fakt span { font-size: .8rem; color: var(--muted); }

/* --- Besuch / Anfahrt --- */
.besuch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.info-karte {
  border-radius: var(--r-gross);
  border: 1px solid var(--linie);
  background: var(--flaeche);
  padding: 1.6rem 1.5rem;
}
.info-karte h3 { display: flex; align-items: center; gap: .5em; }
.info-karte h3 svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.info-karte p, .info-karte li { font-size: .95rem; color: var(--ink-soft); }
.info-karte ul { margin: 0; padding-left: 1.1em; }
.zeiten { width: 100%; border-collapse: collapse; font-size: .95rem; }
.zeiten td { padding: .34em 0; border-bottom: 1px dashed var(--linie); color: var(--ink-soft); }
.zeiten td:last-child { text-align: right; font-family: var(--f-mono); font-size: .85rem; }

/* --- Kontakt-Band --- */
.kontakt-band {
  border-radius: var(--r-gross);
  border: 1px solid var(--linie);
  background:
    radial-gradient(ellipse 60% 120% at 85% 50%, var(--spot), transparent 70%),
    linear-gradient(150deg, var(--flaeche-2), var(--flaeche));
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.tel-gross {
  font-family: var(--f-display);
  font-variation-settings: var(--wonk);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 640;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
}
.tel-gross:hover { text-decoration: underline; }

/* ============================================================
   FUSS
   ============================================================ */
.fuss {
  border-top: 1px solid var(--linie);
  padding: 2.6rem 0 2.2rem;
  background: var(--bg-tief);
}
.fuss__zeile { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.fuss p { margin: 0; font-size: .85rem; color: var(--muted); }
.fuss nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.fuss a { font-size: .85rem; color: var(--muted); }
.fuss a:hover { color: var(--ink); }

/* ============================================================
   MERKZETTEL (Lade rechts)
   ============================================================ */
.merk-lade {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  z-index: 80;
  background: var(--flaeche);
  border-left: 1px solid var(--linie);
  box-shadow: -18px 0 50px rgba(0, 0, 0, .35);
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.4, 1, .3, 1);
  display: flex;
  flex-direction: column;
}
.merk-lade.offen { transform: none; }
.merk-lade__kopf {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--linie);
}
.merk-lade__kopf h2 { font-size: 1.3rem; margin: 0; }
.merk-lade__liste { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; display: flex; flex-direction: column; gap: .9rem; }
.merk-el {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: .8rem;
  align-items: center;
  border: 1px solid var(--linie);
  border-radius: var(--r);
  padding: .55rem;
}
.merk-el img { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 8px; }
.merk-el b { font-size: .9rem; line-height: 1.3; display: block; }
.merk-el b a { text-decoration: none; }
.merk-el small { color: var(--muted); font-family: var(--f-mono); font-size: .68rem; }
.merk-el button {
  border: 0; background: none; color: var(--muted); cursor: pointer;
  padding: .4rem; border-radius: 6px;
}
.merk-el button:hover { color: var(--rot); }
.merk-lade__leer { color: var(--muted); text-align: center; margin-top: 2.5rem; padding-inline: 1.5rem; }
.merk-lade__fuss { padding: 1.1rem 1.3rem 1.3rem; border-top: 1px solid var(--linie); }
.merk-lade__fuss .knopf { width: 100%; justify-content: center; }
.merk-lade__hinweis { font-size: .78rem; color: var(--muted); margin: .7rem 0 0; text-align: center; }
.schleier {
  position: fixed; inset: 0; z-index: 75;
  background: rgba(5, 7, 20, .5);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.schleier.aktiv { opacity: 1; pointer-events: auto; }

/* ============================================================
   KATEGORIE- & PRODUKTSEITE (WooCommerce)
   ============================================================ */
.seitenkopf { padding: 10.5rem 0 3rem; }
.brotkrumen {
  font-family: var(--f-mono);
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--muted);
  display: flex; gap: .6em; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.brotkrumen a { color: var(--muted); text-decoration: none; }
.brotkrumen a:hover { color: var(--gold); }

.filter { display: flex; gap: .55rem; flex-wrap: wrap; margin: 1.8rem 0 0; }
.chip {
  font-size: .86rem; font-weight: 700;
  border: 1px solid var(--linie);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: .45em 1.1em;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--f-text);
  display: inline-block;
}
.chip[aria-pressed="true"], .chip.aktiv { background: var(--gold); border-color: var(--gold); color: #14102A; }
html[data-thema="tag"] .chip[aria-pressed="true"], html[data-thema="tag"] .chip.aktiv { color: #fff; }

.produkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
  padding-bottom: 4.5rem;
  list-style: none;
  margin: 0;
}

/* Seitennummerierung */
.blaettern { display: flex; gap: .5rem; justify-content: center; padding-bottom: 4rem; }
.blaettern a, .blaettern span {
  display: grid; place-items: center;
  min-width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--linie);
  text-decoration: none;
  font-family: var(--f-mono);
  color: var(--ink-soft);
}
.blaettern span.current { background: var(--gold); border-color: var(--gold); color: #14102A; }
.blaettern a:hover { border-color: var(--gold); color: var(--gold); }

/* Produktdetail */
.produkt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: 4rem;
}
.produkt__bild {
  border-radius: var(--r-gross);
  border: 1px solid var(--linie);
  background: #fff;
  padding: clamp(1rem, 3vw, 2.5rem);
  position: sticky;
  top: 135px;
}
.produkt__bild img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.produkt__info h1 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
.produkt__text { color: var(--muted); max-width: 65ch; }
.produkt__text p { color: var(--muted); }
.beratung {
  display: flex; gap: 1rem; align-items: center;
  border: 1px dashed var(--gold-tief);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  margin-top: 1.6rem;
  background: var(--flaeche);
}
.beratung svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.beratung p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.beratung a { font-weight: 700; color: var(--gold); text-decoration: none; }
.produkt__aktionen { display: flex; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.hinweis-katalog {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* WooCommerce-Kaufelemente ausblenden (Katalog-Modus mit Preisanzeige) */
.add_to_cart_button, .single_add_to_cart_button, .cart,
.woocommerce-result-count, .woocommerce-ordering, .onsale,
.woocommerce-breadcrumb, .woocommerce-notices-wrapper:empty { display: none !important; }

/* Preisanzeige */
.preis {
  font-family: var(--f-display);
  font-variation-settings: var(--wonk);
  font-weight: 640;
  color: var(--gold);
  white-space: nowrap;
}
.preis--anfrage {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: .78em;
  letter-spacing: .04em;
  color: var(--muted);
}
.karte__preiszeile {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
  margin-top: .5rem;
}
.karte__preiszeile .preis { font-size: 1.25rem; }
.karte__mwst { font-size: .68rem; color: var(--muted); }
.produkt__preis { margin: .2rem 0 1rem; }
.produkt__preis .preis { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.produkt__preis small { display: block; font-size: .78rem; color: var(--muted); margin-top: .15rem; }

/* ============================================================
   ANFRAGE-FORMULAR
   ============================================================ */
.anfrage-form {
  max-width: 680px;
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  background: var(--flaeche);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.anfrage-form__zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
@media (max-width: 640px) { .anfrage-form__zeile { grid-template-columns: 1fr; } }
.anfrage-feld { margin: 0 0 1.1rem; }
.anfrage-feld label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .35rem;
}
.anfrage-feld label span { font-weight: 400; color: var(--muted); font-size: .8rem; }
.anfrage-feld input, .anfrage-feld textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--linie);
  border-radius: 10px;
  padding: .65em .9em;
  resize: vertical;
}
.anfrage-feld input:focus-visible, .anfrage-feld textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 1px;
}
.anfrage-form__fuss { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin: .4rem 0 0; }
.hp-feld { position: absolute !important; left: -9999px !important; }
.anfrage-erfolg {
  max-width: 640px;
  text-align: center;
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  background: var(--flaeche);
  padding: clamp(2rem, 6vw, 3.5rem);
}
.anfrage-erfolg svg { margin: 0 auto 1rem; display: block; }
.anfrage-fehler {
  max-width: 680px;
  border: 1px solid var(--rot);
  border-radius: var(--r);
  color: var(--rot);
  background: var(--flaeche);
  padding: .9rem 1.2rem;
  margin-bottom: 1.2rem;
}

/* ============================================================
   A11Y-TOOLBAR
   ============================================================ */
.a11y { position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 90; }
.a11y__toggle {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--flaeche);
  color: var(--gold);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--schatten);
}
.a11y__panel {
  position: absolute;
  left: 0; bottom: 64px;
  width: min(320px, calc(100vw - 2.5rem));
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  box-shadow: var(--schatten);
  padding: 1.2rem 1.2rem 1.3rem;
}
.a11y__heading { font-family: var(--f-display); font-size: 1.15rem; font-weight: 640; margin: 0 0 .9rem; }
.a11y__group { margin-bottom: .95rem; }
.a11y__label { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 .45rem; }
.a11y__row { display: flex; gap: .5rem; }
.a11y__opt {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  border: 1px solid var(--linie);
  background: transparent;
  color: var(--ink);
  border-radius: 10px;
  padding: .5rem .3rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--f-text);
}
.a11y__opt small { font-weight: 400; font-size: .68rem; color: var(--muted); }
.a11y__opt[aria-pressed="true"] { border-color: var(--gold); background: var(--flaeche-2); color: var(--gold); }
.a11y__opt:disabled { opacity: .45; cursor: default; }
.a11y__tip { font-size: .74rem; color: var(--muted); margin: .5rem 0 0; }

.tts-highlight { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Lupe */
.lens {
  position: fixed; z-index: 95;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  pointer-events: none;
  background: var(--bg);
}
.lens__inhalt { transform-origin: 0 0; }
body.lens-active { cursor: crosshair; }

/* ============================================================
   ZAUBER-INTRO — Vorhang auf! (nur Startseite, einmal pro Sitzung)
   ============================================================ */
.intro { display: none; }
html.intro-an .intro {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 200;
  cursor: pointer;
  overflow: hidden;
}
.intro__vorhang {
  position: absolute;
  top: 0; bottom: 0;
  width: 50.5%;
  background:
    repeating-linear-gradient(90deg,
      rgba(0, 0, 0, .30) 0 16px,
      rgba(255, 255, 255, .05) 16px 38px,
      rgba(0, 0, 0, .16) 38px 60px),
    linear-gradient(180deg, #7C2032, #571426 78%, #400E1B);
}
.intro__vorhang--l { left: 0; border-right: 4px solid rgba(233, 185, 73, .55); }
.intro__vorhang--r { right: 0; border-left: 4px solid rgba(233, 185, 73, .55); }
html.intro-an .intro__vorhang--l { animation: introVorhangL .95s cubic-bezier(.6, 0, .3, 1) 1.55s forwards; }
html.intro-an .intro__vorhang--r { animation: introVorhangR .95s cubic-bezier(.6, 0, .3, 1) 1.55s forwards; }
@keyframes introVorhangL { to { transform: translateX(-103%); } }
@keyframes introVorhangR { to { transform: translateX(103%); } }

.intro__mitte {
  position: relative;
  text-align: center;
  color: #F2EDE2;
  animation: introMitteAuf .7s cubic-bezier(.3, 1.4, .5, 1) both,
             introMitteZu .45s ease-in 1.45s forwards;
}
@keyframes introMitteAuf { from { opacity: 0; transform: scale(.82) translateY(14px); } }
@keyframes introMitteZu { to { opacity: 0; transform: scale(.92); } }

.intro__stab {
  width: 76px; height: 76px;
  margin-inline: auto;
  animation: introStab .8s cubic-bezier(.3, 1.6, .5, 1) .15s both;
}
@keyframes introStab {
  from { opacity: 0; transform: rotate(-50deg) scale(.6); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}
.intro__wort {
  font-family: var(--f-display);
  font-variation-settings: var(--wonk);
  font-weight: 640;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.05;
  margin: .4rem 0 0;
}
.intro__wort i { font-style: italic; color: #E05563; }
.intro__wort b { display: block; color: #8FA8E8; }
.intro__zauberwort {
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.1rem 0 0;
  animation: introWort .5s ease-out .75s both;
}
@keyframes introWort { from { opacity: 0; letter-spacing: .6em; } }

.intro__funke {
  position: absolute;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  animation: introFunke .8s ease-out both;
}
@keyframes introFunke {
  0% { opacity: 0; transform: scale(.2) rotate(0); }
  45% { opacity: 1; transform: scale(1.25) rotate(40deg); }
  100% { opacity: 0; transform: scale(.4) rotate(80deg); }
}
.intro__funke.f1 { top: -8%; left: 12%; animation-delay: .55s; }
.intro__funke.f2 { top: 6%; right: 6%; animation-delay: .7s; font-size: 1.5rem; }
.intro__funke.f3 { bottom: 30%; left: -6%; animation-delay: .85s; font-size: .85rem; }
.intro__funke.f4 { top: -14%; right: 30%; animation-delay: .95s; }
.intro__funke.f5 { bottom: 8%; right: -4%; animation-delay: 1.05s; font-size: .8rem; }
.intro__funke.f6 { bottom: -6%; left: 30%; animation-delay: 1.15s; font-size: 1.3rem; }

/* ============================================================
   ANIMATION / MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
html.no-motion .reveal, html.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .runter { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
html.no-motion .runter { animation: none; }
html.no-motion *, html.no-motion *::before, html.no-motion *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }

/* View-Transition: Zauber-Wisch beim Themenwechsel */
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .7s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .welten { grid-template-columns: repeat(2, 1fr); }
  .besuch { grid-template-columns: 1fr; }
  .zweispalt { grid-template-columns: 1fr; }
  .laden-foto { transform: none; max-width: 560px; }
  .kontakt-band { grid-template-columns: 1fr; }
  .produkt { grid-template-columns: 1fr; }
  .produkt__bild { position: static; }
}
@media (max-width: 760px) {
  .nav {
    /* Achtung: durch den backdrop-filter des Kopfs ist der Kopf der
       Containing Block — Höhe darum explizit auf Viewport setzen */
    position: fixed;
    inset: 0;
    height: 100svh;
    width: 100vw;
    z-index: 70;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background: var(--bg);
    transform: translateY(-102%);
    transition: transform .35s ease;
    visibility: hidden;
  }
  .nav.offen { visibility: visible; transform: none; }
  .nav a { font-size: 1.35rem; font-family: var(--f-display); }
  .burger {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--linie);
    background: var(--flaeche);
    color: var(--ink);
    cursor: pointer;
    z-index: 71;
  }
  .welten { grid-template-columns: 1fr; }
  .logo svg { height: 62px; }
  .logo__wort { font-size: 1.5rem; }
  .logo { gap: .6rem; }
  .schaufenster { grid-auto-columns: 78vw; }
  .a11y { left: .8rem; bottom: .8rem; }
  .lens { width: 220px; height: 220px; }
}
