/* ============================================================================
   HUNTER SHOP — Components
   Token-getriebene, wiederverwendbare Bausteine. Portieren 1:1 nach Elementor.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   BUTTONS
   Premium-clean: klare Aktion, keine laute Farbinsel.
--------------------------------------------------------------------------- */
.btn {
  --_bg: var(--brand);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  letter-spacing: 0;
  line-height: 1;
  padding: 1.05em 1.6em;
  min-height: 48px;              /* Touch-Target */
  border-radius: var(--r-pill);
  background: var(--_bg);
  color: var(--_fg);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform var(--dur-1) var(--ease-out),
              background-color var(--dur-1) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); color: var(--_fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--cta {
  --_bg: var(--cta);
  --_fg: var(--cta-ink);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  padding: 1.15em 2em;
  letter-spacing: 0.005em;
}
/* Hover: freundlich-kräftigeres Orange (nicht schmutzig abgedunkelt) + weiße Typo — KEIN Glow/Shadow (global) */
.btn--cta:hover { --_bg: #ff9e0b; --_fg: #fff; }
.btn--cta:active { --_bg: var(--cta-700); }

.btn--lg { font-size: var(--fs-lg); padding: 1.15em 2.2em; min-height: 56px; }
.btn--block { display: flex; width: 100%; }

.btn--ghost {
  --_bg: transparent;
  --_fg: var(--text-strong);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --_bg: var(--mist); border-color: var(--line-strong); }

/* Nur für dunkle Flächen (Footer-Band) — auf hellen Sections nicht verwenden */
.btn--outline-invert {
  --_bg: transparent;
  --_fg: var(--text-invert);
  border-color: var(--line-invert);
}
.btn--outline-invert:hover { --_bg: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.btn--glass {
  --_bg: rgba(255, 255, 255, 0.1);
  --_fg: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}
.btn--glass:hover { --_bg: rgba(255, 255, 255, 0.18); }

.btn--quiet { --_bg: transparent; --_fg: var(--brand); padding-inline: 0.4em; min-height: auto; }
.btn--quiet:hover { --_fg: var(--brand-bright); transform: none; text-decoration: underline; }

/* Pfeil-Micro-Interaction */
.arrow { width: 1.1em; height: 1.1em; flex: none; }
.btn .arrow { transition: transform var(--dur-2) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------------------
   BADGES / PILLS / TAGS
--------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.42em 0.8em;
  border-radius: var(--r-pill);
  background: var(--mist);
  color: var(--text-muted);
  border: 1px solid var(--line);
}
.badge--brand  { background: var(--hunter-100); color: var(--brand); border-color: rgba(0,101,138,0.22); }
.badge--eco    { background: rgba(62,133,87,0.12); color: var(--leaf-600); border-color: rgba(62,133,87,0.26); }
.badge--signal { background: var(--signal-tint); color: var(--signal-700); border-color: rgba(216,131,29,0.2); }
.badge--pop    { background: var(--ink-900); color: #fff; border-color: transparent; box-shadow: none; }
.badge--dot::before { content:""; width:0.5em; height:0.5em; border-radius:50%; background: currentColor; }

/* ---------------------------------------------------------------------------
   TRUST-LEISTE
--------------------------------------------------------------------------- */
.trustbar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--sp-4) var(--sp-6);
  justify-content: center;
}
.trust-item {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
  color: var(--text-muted);
}
.trust-item svg { width: 1.35rem; height: 1.35rem; color: var(--brand); flex: none; }

/* Assurance-Zeile (Trust nahe CTA/Checkout) — global, da PDP + Cart + Checkout */
.assurances { display: grid; gap: var(--sp-3); }
.assurance { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); color: var(--text-muted); }
.assurance svg { width: 1.3rem; height: 1.3rem; color: var(--brand); flex: none; }

/* Rating-Sterne */
.stars { --_pct: 100%; display: inline-block; position: relative; line-height: 1; font-size: 1em; }
.stars::before {
  content: "★★★★★"; letter-spacing: 0.1em; color: var(--slate);
}
.stars::after {
  content: "★★★★★"; letter-spacing: 0.1em; color: var(--signal-500);
  position: absolute; inset: 0; width: var(--_pct); overflow: hidden; white-space: nowrap;
}
.rating { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); }
.rating__count { color: var(--text-muted); }

/* ---------------------------------------------------------------------------
   PRODUCT CARD
--------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.pcard {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--color-line); }
/* Produkt-Bühne 1:1 (CI-Ratio): weißer Hintergrund, Hairline zur Textzone */
.pcard__media {
  position: relative; aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
}
/* multiply blendet den weißen Studio-Foto-Hintergrund nahtlos in die Bühne
   (kein sichtbarer weißer Kasten-Rand mehr) — Produkt integriert sich sauber. */
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: clamp(1.5rem, 4vw, 2.75rem); mix-blend-mode: multiply; transition: transform var(--dur-3) var(--ease-out); }
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__flags { position: absolute; top: var(--sp-3); left: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
/* Info-Zone: Licht-Verlauf (fließt weiß aus der Bild-Bühne in zarten Mist) */
.pcard__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; background: radial-gradient(120% 100% at 50% 0%, #fff 0%, var(--mist) 100%); }
/* Kategorie-Label: eigene, kleinere Größe — bewusst NICHT via --fs-xs,
   damit .pcard__chip (teilt sich --fs-xs) unverändert bleibt. */
.pcard__cat { font-family: var(--font-mono); font-size: 0.65rem; font-weight: var(--fw-semi); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--color-secondary); }
.pcard__title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--text-strong); line-height: var(--lh-snug); }
.pcard__title a::after { content: ""; position: absolute; inset: 0; } /* ganze Karte klickbar */
.pcard__desc { font-size: var(--fs-sm); color: var(--text-muted); }
/* Verständliche Tech-Spec-Chips mit Icon (Icon ersetzt das Fachwort) — linksbündig */
.pcard__chips { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 6px; margin-top: 12px; }
.pcard__chip { display: inline-flex; align-items: center; gap: 0.38em; font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--text-strong); background: var(--color-tint); border: 1px solid var(--color-line); border-radius: var(--r-pill); padding: 0.3em 0.7em; white-space: nowrap; }
.pcard__chip svg { width: 1.05em; height: 1.05em; color: var(--color-secondary); flex: none; }
/* Bewertung (aktuell statisch 4,8 · Fachhändler) — zwischen Chips und Preis */
.pcard__rating { display: flex; align-items: center; gap: 0.42em; margin-top: 12px; font-size: 0.8rem; line-height: 1; }
.pcard__stars { color: #f6a723; letter-spacing: 0.06em; font-size: 0.92em; }
.pcard__rating-txt { color: var(--text-muted); font-weight: var(--fw-medium); }
.pcard__rating-txt strong { color: var(--text-strong); font-weight: var(--fw-semi); }
/* Tech-Spec-Chips (dynamisch aus echten Produkt-Specs) — Kress-Style */
.pcard__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--sp-1); }
.pcard__spec {
  font-size: var(--fs-xs); font-weight: var(--fw-semi); line-height: 1.35;
  color: var(--text-strong); background: var(--color-tint);
  border: 1px solid var(--color-line); border-radius: var(--r-pill);
  padding: 0.32em 0.72em; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pcard__spec-k { color: var(--color-secondary); font-weight: var(--fw-semi); }
.pcard__foot { margin-top: auto; padding-top: 7px; display: flex; flex-direction: column; align-items: stretch; gap: 15px; }
.price { display: flex; align-items: baseline; gap: var(--sp-2); }
.price--stack { flex-direction: column; align-items: flex-start; gap: 1px; }
/* Preis-Zeile in der Karte: Preis links, „inkl. MwSt." rechts — eine Zeile */
.price--split { width: 100%; justify-content: space-between; }
.price__now { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-black); color: var(--text-strong); font-variant-numeric: tabular-nums; letter-spacing: var(--ls-display); }
.price__was { font-size: var(--fs-sm); color: var(--text-soft); text-decoration: line-through; }
.price__note { display: block; font-size: var(--fs-xs); color: var(--text-soft); }
/* Kaufzeile: Amazon-Style Warenkorb-Control (Button ↔ Inline-Stepper) */
.pcard__cart { position: relative; z-index: 2; }
/* Zustand A — full-width CTA-Button */
.pcard__cart-add {
  width: 100%; height: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--cta); color: var(--cta-ink); cursor: pointer;
  font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-sm); letter-spacing: 0.005em; white-space: nowrap;
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.pcard__cart-add svg { width: 1.15em; height: 1.15em; flex: none; }
.pcard__cart-add:hover { background: #ff9e0b; color: #fff; transform: translateY(-1px); }
.pcard__cart-add:active { transform: translateY(0); }
/* Zustand B — Amber-Outline-Stepper (Produkt im Warenkorb) */
.pcard__cart-stepper {
  width: 100%; height: 46px;
  display: grid; grid-template-columns: 48px 1fr 48px; align-items: center;
  border-radius: var(--r-pill); border: 1.5px solid var(--cta);
  background: var(--cta-tint); overflow: hidden;
}
.pcard__cart-count {
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 2px;
  font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-sm);
  color: var(--text-strong); font-variant-numeric: tabular-nums;
}
.pcard__cart-side {
  height: 100%; border: 0; background: none; cursor: pointer;
  display: grid; place-items: center; color: var(--cta-700);
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.pcard__cart-side:hover { background: rgba(252, 173, 22, 0.20); color: var(--text-strong); }
.pcard__cart-side:disabled { opacity: 0.4; cursor: not-allowed; }
.pcard__cart-side:disabled:hover { background: none; color: var(--cta-700); }
.pcard__cart-side svg { width: 1.15em; height: 1.15em; }
.pcard__add {
  flex: 1 1 auto; min-width: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0 0.7rem;
  height: 46px; border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--cta); color: var(--cta-ink); cursor: pointer;
  font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-sm); letter-spacing: 0.005em; white-space: nowrap;
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.pcard__add svg { width: 1.15em; height: 1.15em; flex: none; }
.pcard__add:hover { background: #ff9e0b; color: #fff; transform: translateY(-1px); }
.pcard__add:active { transform: translateY(0); }

/* ---------------------------------------------------------------------------
   HIGHLIGHT-BLOCK (Icon + Headline + Satz) — Baymard: nur 22 % nutzen das
--------------------------------------------------------------------------- */
/* Technisches Hairline-Raster: exakt 4×2, 1px-Linien via Grid-Gap-Trick,
   nummerierte Zellen (01–08) — editoriales Agentur-Pattern statt loser Kacheln. */
.highlights {
  counter-reset: usp;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
}
.highlight {
  counter-increment: usp; position: relative;
  display: flex; flex-direction: column; gap: var(--sp-2);
  background: var(--bg-surface); padding: var(--sp-6);
  transition: background var(--dur-2) var(--ease-out);
}
/* Hover: diagonaler Verlauf — oben links weiß, unten rechts leichtes Cyan-Blau #b9e6f8 */
.highlight:hover { background: linear-gradient(135deg, #fff 0%, #e2f4fb 48%, #b9e6f8 100%); }
.highlight::before {
  content: "0" counter(usp);
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide); color: var(--text-soft); opacity: 0.65;
  font-variant-numeric: tabular-nums;
}
.highlight__icon {
  width: 56px; height: 56px; border-radius: var(--r-lg);
  display: grid; place-items: center; margin-bottom: var(--sp-3);
  background: var(--color-tint); color: var(--color-primary);
  border: 1px solid var(--color-line);
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.highlight:hover .highlight__icon { transform: translateY(-2px); background: #fff; }
.highlight__icon svg { width: 1.8rem; height: 1.8rem; }

/* ---------------------------------------------------------------------------
   3D-RENDER-ICONS (Nano Banana) — freistehende isometrische Icons.
   Kein Alpha-Kanal: der helle Render-Hintergrund wird per mix-blend-mode:
   multiply weggeblendet (funktioniert auf jedem HELLEN Grund, auch Tint-Hover).
   NICHT auf dunklen Flächen verwenden — dort verschwindet das Icon.
--------------------------------------------------------------------------- */
.highlight__icon:has(> .ic3d) {
  width: auto; height: auto; border: 0; background: none; border-radius: 0;
  display: flex; justify-content: flex-start; align-self: flex-start;
  margin-bottom: var(--sp-2); overflow: visible;
}
.ic3d { width: 92px; height: 92px; object-fit: contain; } /* freigestellt (Alpha) — kein multiply mehr nötig */
/* Negatives margin holt das im Render mittig sitzende Motiv an die linke Textkante */
.highlight__icon .ic3d { margin: -16px 0 -12px -16px; }
.highlight:hover .highlight__icon:has(> .ic3d) { transform: translateY(-3px); background: none; }
@media (max-width: 1024px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .highlights { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   DUOTONE-ICONS (CI-Zwischenschritt bis Nano-Banana-2.5D)
   Basis-Linie in Primär, ein Akzent-Element in Sekundär. Strichstärke 1,75.
   Markup: <svg viewBox="0 0 24 24"><path class="i-base" …/><path class="i-acc" …/></svg>
--------------------------------------------------------------------------- */
.i-base { fill: none; stroke: var(--color-primary);   stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.i-acc  { fill: none; stroke: var(--color-secondary); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.i-acc-fill { fill: var(--color-secondary); stroke: none; }
.highlight h4, .highlight h3 { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-bold); }
.highlight p { font-size: var(--fs-sm); color: var(--text-muted); }

/* ---------------------------------------------------------------------------
   ZEBRA-SPEC-TABELLE — gruppiert (Baymard: 50 % machen Spec-Sheets falsch)
--------------------------------------------------------------------------- */
.specs { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.specs__group-title {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--text-soft);
  background: var(--mist); padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--line);
}
.specs__group-title:first-child { border-top: 0; }
.specs__row { display: grid; grid-template-columns: minmax(9rem, 40%) 1fr; gap: var(--sp-4); padding: var(--sp-3) var(--sp-4); font-size: var(--fs-sm); }
.specs__row:nth-child(even) { background: var(--mist); }
.specs__row .specs__k { color: var(--text-muted); }
.specs__row .specs__v { color: var(--text-strong); font-weight: var(--fw-semi); font-family: var(--font-mono); }

/* ---------------------------------------------------------------------------
   VARIANTEN-BUTTONS (sichtbar, nicht Dropdown)
--------------------------------------------------------------------------- */
.variants { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.variant {
  padding: 0.7em 1.05em; border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong); background: var(--bg-surface);
  font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text);
  display: inline-flex; flex-direction: column; gap: 0.15em; align-items: flex-start; line-height: 1.2;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.variant small { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-soft); }
.variant:hover { border-color: var(--brand); transform: translateY(-1px); }
.variant[aria-pressed="true"] { border-color: var(--brand); background: var(--hunter-100); color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset; }
.variant[disabled] { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* ---------------------------------------------------------------------------
   ACCORDION / FAQ
--------------------------------------------------------------------------- */
.accordion { counter-reset: faq; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: flex-start;
  gap: var(--sp-4); padding: var(--sp-5) 0; font-family: var(--font-display);
  font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--text-strong);
}
/* Editoriale Fragen-Nummer (01, 02, …) in Sekundär */
.acc-trigger::before {
  counter-increment: faq; content: "0" counter(faq);
  font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: var(--fw-semi);
  color: var(--color-secondary); font-variant-numeric: tabular-nums; flex: none;
}
.acc-trigger .plus { margin-left: auto; }
.acc-trigger .plus { position: relative; width: 1.25rem; height: 1.25rem; flex: none; }
.acc-trigger .plus::before, .acc-trigger .plus::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--brand);
  transition: transform var(--dur-2) var(--ease-out);
}
.acc-trigger .plus::before { width: 100%; height: 2px; }
.acc-trigger .plus::after  { width: 2px; height: 100%; }
.acc-trigger[aria-expanded="true"] .plus::after { transform: scaleY(0); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-2) var(--ease-out); }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding-bottom: var(--sp-5); color: var(--text-muted); max-width: var(--w-prose); }
.acc-trigger[aria-expanded="true"] + .acc-panel { grid-template-rows: 1fr; }

/* ---------------------------------------------------------------------------
   STEPS / PROGRESS (Checkout & Konfigurator)
--------------------------------------------------------------------------- */
.steps { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.step { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--text-soft); }
.step__num { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-bold); background: var(--mist); color: var(--text-soft); border: 1px solid var(--line); }
.step[aria-current="step"] { color: var(--text-strong); font-weight: var(--fw-bold); }
.step[aria-current="step"] .step__num { background: var(--brand); color: #fff; border-color: var(--brand); }
.step--done .step__num { background: var(--leaf-500); color: #fff; border-color: var(--leaf-500); }
.step__bar { width: 1.5rem; height: 2px; background: var(--line); }

/* Fortschrittsbalken (Gratis-Versand) */
.progress { height: 8px; border-radius: var(--r-pill); background: var(--slate); overflow: hidden; }
.progress__fill { height: 100%; background: linear-gradient(90deg, var(--leaf-500), var(--leaf-400)); border-radius: inherit; transition: width var(--dur-3) var(--ease-out); }

/* ---------------------------------------------------------------------------
   FAKTEN-COUNTER
--------------------------------------------------------------------------- */
.stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.2rem + 3.6vw, 4rem); font-weight: var(--fw-black); line-height: 1; color: var(--text-strong); letter-spacing: var(--ls-display); }
.stat__num .unit { font-size: 0.5em; color: var(--color-secondary); margin-left: 0.1em; }
.stat__label { font-size: var(--fs-sm); color: var(--text-muted); max-width: 20ch; }

/* ---------------------------------------------------------------------------
   MODAL (Blur-Backdrop)
--------------------------------------------------------------------------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(8, 13, 22, 0.55); backdrop-filter: blur(10px) saturate(1.1);
  display: grid; place-items: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity var(--dur-2) var(--ease-out), visibility var(--dur-2);
}
.modal-scrim.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-surface); border-radius: var(--r-2xl); max-width: 34rem; width: 100%;
  padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: var(--sh-xl);
  transform: translateY(16px) scale(0.98); transition: transform var(--dur-2) var(--ease-spring);
}
.modal-scrim.is-open .modal { transform: none; }
.modal__close { position: absolute; top: var(--sp-4); right: var(--sp-4); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--text); }
.modal__close:hover { background: var(--slate); }

/* ---------------------------------------------------------------------------
   BENTO-GRID
--------------------------------------------------------------------------- */
.bento { display: grid; gap: var(--sp-4); grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(180px, auto); }
.bento__cell {
  position: relative; border-radius: var(--r-xl); overflow: hidden; padding: var(--sp-6);
  display: flex; flex-direction: column; justify-content: flex-end; gap: var(--sp-2);
  background: var(--bg-surface); border: 1px solid var(--line);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.bento__cell:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.bento__cell--lg { grid-column: span 4; grid-row: span 2; }
.bento__cell--md { grid-column: span 2; grid-row: span 2; }
.bento__cell--sm { grid-column: span 2; }
.bento__cell--wide { grid-column: span 3; }
.bento__cell--ground { background: var(--hunter-100); border-color: var(--hunter-300); }
@media (max-width: 860px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--lg, .bento__cell--md, .bento__cell--sm, .bento__cell--wide { grid-column: span 2; grid-row: auto; }
}

/* ---------------------------------------------------------------------------
   NOTICE / CALLOUT
--------------------------------------------------------------------------- */
.notice { display: flex; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5); border-radius: var(--r-lg); background: var(--mist); border: 1px solid var(--line); font-size: var(--fs-sm); color: var(--text-muted); }
.notice svg { width: 1.3rem; height: 1.3rem; flex: none; color: var(--brand); margin-top: 0.15em; }
.notice--eco { background: rgba(62,133,87,0.08); border-color: rgba(62,133,87,0.2); }
.notice--eco svg { color: var(--leaf-600); }

/* ---------------------------------------------------------------------------
   FORMS
--------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-strong); }
.field label .req { color: var(--err); }
.field input, .field select, .field textarea {
  padding: 0.85em 1em; border-radius: var(--r-md); border: 1.5px solid var(--line-strong);
  background: var(--bg-surface); font-size: var(--fs-base); color: var(--text-strong);
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
  min-height: 48px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--text-soft); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 101, 138,0.16); }
.field--error input { border-color: var(--err); }
.field__msg { font-size: var(--fs-xs); color: var(--err); display: none; }
.field--error .field__msg { display: block; }
.field__hint { font-size: var(--fs-xs); color: var(--text-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.toggle-link { align-self: flex-start; font-size: var(--fs-sm); color: var(--brand); font-weight: var(--fw-semi); }

/* ---------------------------------------------------------------------------
   HEADER / NAV
--------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.05);
  transition: box-shadow var(--dur-2) var(--ease-out);
}
.site-header.is-scrolled { box-shadow: 0 6px 20px -16px rgba(6,35,50,0.28); }
/* Dunkle Trust-Topbar mit Check-Claims (bewaesserungsbox-Stil) */
.topbar { background: var(--ink-900); color: var(--text-invert-muted); font-size: var(--fs-xs); }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: var(--sp-4) var(--sp-6); padding-block: 0.6rem; flex-wrap: wrap; }
.topbar__claims { display: flex; align-items: center; gap: var(--sp-5) var(--sp-6); flex-wrap: wrap; }
.topbar__claim { display: inline-flex; align-items: center; gap: 0.45em; color: var(--text-invert-muted); font-weight: var(--fw-semi); }
.topbar__claim svg { width: 1rem; height: 1rem; color: var(--planner-300); flex: none; }
.topbar__phone { display: inline-flex; align-items: center; gap: 0.45em; color: #fff; font-weight: var(--fw-semi); white-space: nowrap; }
.topbar__phone svg { width: 1rem; height: 1rem; color: var(--signal-400); }
.topbar__phone b { color: #fff; }
.topbar strong { color: #fff; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--signal-400); }
@media (max-width: 900px) { .topbar__claim:nth-child(n+3) { display: none; } }
@media (max-width: 620px) { .topbar__inner { justify-content: center; } .topbar__claim:nth-child(n+2) { display: none; } }
.nav { display: flex; align-items: center; gap: var(--sp-5); padding-block: var(--sp-3); }
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); flex: none; }
.brand__mark { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-950) 100%); color: transparent; display: grid; place-items: center; font-family: var(--font-display); font-weight: var(--fw-black); font-size: 1.35rem; box-shadow: none; position: relative; overflow: hidden; }
.brand__mark::after { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3c0 0 6 6.7 6 11a6 6 0 0 1-12 0c0-4.3 6-11 6-11z'/%3E%3Cpath d='M9.5 14a2.5 2.5 0 0 0 2.5 2.5' opacity='.65'/%3E%3C/svg%3E") center / 21px 21px no-repeat; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-family: var(--font-display); font-size: 1.15rem; font-weight: var(--fw-bold); color: var(--text-strong); letter-spacing: 0; }
.brand__name small { font-family: var(--font-body); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }
/* Echtes Hunter-Experten-Logo (SVG) — positiv im Header/Mobile, negativ im Footer */
.brand__logo { height: clamp(34px, 3.4vw, 44px); width: auto; display: block; }
.footer-grid .brand__logo { height: clamp(38px, 3.6vw, 46px); }
.nav__links { display: flex; align-items: center; gap: var(--sp-5); margin-inline: auto; }
.nav__links > a, .nav__dropdown-trigger { color: var(--text); font-weight: var(--fw-semi); font-size: var(--fs-sm); padding-block: var(--sp-2); position: relative; display: inline-flex; align-items: center; gap: 0.35em; background: none; border: 0; font-family: var(--font-body); cursor: pointer; }
.nav__links > a::after, .nav__dropdown-trigger::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--text-strong); transition: width var(--dur-2) var(--ease-out); }
.nav__links > a:hover, .nav__dropdown-trigger:hover { color: var(--text-strong); }
.nav__links > a:hover::after, .nav__links > a[aria-current="page"]::after,
.nav__dropdown-trigger:hover::after, .nav__dropdown.is-open .nav__dropdown-trigger::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }

/* --- MEGA-MENU (Shop-Dropdown) --------------------------------------------
   „Shop" bündelt die Kategorien — Best Practice: max. 6–7 Top-Nav-Items,
   Unterkategorien im organisierten Dropdown statt einzeln in der Bar. */
/* static → das Megamenü zentriert sich relativ zur ganzen Bar (.subnav), nicht zum Trigger */
.nav__dropdown { position: static; }
.nav__dropdown-caret { width: 0.7em; height: 0.7em; transition: transform var(--dur-2) var(--ease-out); }
.nav__dropdown.is-open .nav__dropdown-caret,
.nav__dropdown:focus-within .nav__dropdown-caret { transform: rotate(180deg); }
.nav__megamenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  width: 50%; min-width: 620px; max-width: 1000px;
  background: rgba(255,255,255,0.98); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: var(--sp-4) var(--sp-5); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), visibility var(--dur-2);
  z-index: var(--z-header);
}
/* Unsichtbare Hover-Brücke: überspannt die 10px-Lücke zwischen Bar und Panel,
   damit der Cursor beim Wandern zum Panel nie „ins Leere" gerät (nur aktiv, wenn
   das Panel offen ist — pointer-events erbt vom Panel). */
.nav__megamenu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 16px; }
.nav__dropdown.is-open .nav__megamenu,
.nav__dropdown:focus-within .nav__megamenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav__megamenu-cols { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-5); }
.nav__megamenu-list { display: grid; gap: var(--sp-1); list-style: none; padding: 0; }
.nav__megamenu-list a { display: flex; align-items: center; gap: var(--sp-3); padding: 0.48em 0.7em; border-radius: var(--r-md); color: var(--text); font-weight: var(--fw-medium); font-size: var(--fs-sm); transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out); }
.nav__megamenu-list a:hover { background: var(--mist); color: var(--text-strong); }
.nav__megamenu-list a svg { width: 1.2rem; height: 1.2rem; color: var(--brand); flex: none; }
.nav__megamenu-promo { display: flex; flex-direction: column; gap: var(--sp-2); background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-4); position: relative; overflow: hidden; }
.nav__megamenu-promo img { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #fff; border-radius: var(--r-md); padding: var(--sp-2); }
.nav__megamenu-promo b { font-family: var(--font-display); font-size: var(--fs-base); color: var(--text-strong); }
.nav__megamenu-promo small { color: var(--text-muted); font-size: var(--fs-xs); }
.nav__megamenu-foot { border-top: 1px solid var(--line); margin-top: var(--sp-3); padding-top: var(--sp-3); text-align: right; }
.nav__megamenu-foot a { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--brand); display: inline-flex; align-items: center; gap: 0.4em; }
@media (max-width: 640px) { .nav__megamenu-cols { grid-template-columns: 1fr; } }

/* "Bereiche & Zonen"-Dropdown: 6 reduzierte Bento-Kacheln (Look von projekt.html).
   Nutzt die Basis-.nav__megamenu für Breite/Position/Animation — nur der Inhalt ist anders. */
.zonemenu { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
@media (max-width: 760px) { .zonemenu { grid-template-columns: 1fr 1fr; } }
.zonemenu__card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 108px; padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md); overflow: hidden; isolation: isolate;
  color: #fff; text-decoration: none; border: 1px solid var(--line);
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.zonemenu__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-4) var(--ease-out); }
.zonemenu__card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,35,50,0) 15%, rgba(6,35,50,.5) 60%, rgba(6,35,50,.9) 100%); }
.zonemenu__card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.zonemenu__card:hover .zonemenu__img { transform: scale(1.06); }
.zonemenu__eyebrow { font-size: var(--fs-eyebrow); font-weight: var(--fw-semi); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: rgba(238,243,245,.85); }
.zonemenu__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-base); line-height: 1.1; color: #fff; margin-top: 2px; }
@media (prefers-reduced-motion: reduce) { .zonemenu__card, .zonemenu__img { transition: none; } }

/* Mobile-Nav-Accordion (Shop-Untermenü) */
.mnav-acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-bold); color: var(--text-strong);
  padding-block: var(--sp-3); border-bottom: 1px solid var(--line); background: none; border-left: 0; border-right: 0; border-top: 0;
}
.mnav-acc-trigger svg { width: 1.1rem; height: 1.1rem; color: var(--text-soft); transition: transform var(--dur-2) var(--ease-out); }
.mnav-acc-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.mnav-acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-2) var(--ease-out); }
.mnav-acc-panel > div { overflow: hidden; }
.mnav-acc-trigger[aria-expanded="true"] + .mnav-acc-panel { grid-template-rows: 1fr; }
.mnav-acc-panel a { display: block; padding: var(--sp-3) 0 var(--sp-3) var(--sp-4); font-family: var(--font-body); font-size: var(--fs-base); font-weight: var(--fw-medium); color: var(--text); border-bottom: 0; }
.icon-btn { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; color: var(--text); position: relative; }
.icon-btn:hover { background: var(--mist); color: var(--brand); }
.icon-btn svg { width: 1.4rem; height: 1.4rem; }
.icon-btn__count { position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: var(--r-pill); background: var(--ink-900); color: #fff; font-size: 0.66rem; font-weight: var(--fw-bold); font-family: var(--font-mono); display: grid; place-items: center; }
.icon-btn__count[hidden] { display: none; }
.nav__burger { display: none; }
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
}
/* Header-Overflow auf schmalen Screens: Untertitel raus — Suche bleibt (wichtigster
   mobiler Einstieg), Warenkorb + Menü ebenfalls. */
@media (max-width: 480px) {
  .brand__name small { display: none; }
}

/* ---------------------------------------------------------------------------
   STICKY ADD-TO-CART BAR (mobil primär) — +8–15 %, mobil +25 %
--------------------------------------------------------------------------- */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(18px) saturate(1.05);
  border-top: 1px solid var(--line); box-shadow: 0 -1px 0 rgba(17,20,24,0.03);
  transform: translateY(110%); transition: transform var(--dur-3) var(--ease-out);
  padding: var(--sp-3) var(--gutter); padding-bottom: max(var(--sp-3), env(safe-area-inset-bottom));
}
.sticky-atc.is-visible { transform: none; }
.sticky-atc__inner { max-width: var(--w-max); margin-inline: auto; display: flex; align-items: center; gap: var(--sp-4); }
.sticky-atc__thumb { width: 48px; height: 48px; border-radius: var(--r-sm); object-fit: contain; padding: 4px; flex: none; background: #fff; border: 1px solid var(--line); }
.sticky-atc__info { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.sticky-atc__info b { font-family: var(--font-display); font-size: var(--fs-sm); color: var(--text-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc__info span { font-size: var(--fs-sm); color: var(--text-strong); font-weight: var(--fw-bold); }
.sticky-atc .btn { margin-left: auto; flex: none; }

/* ---------------------------------------------------------------------------
   FOOTER
--------------------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: var(--text-invert-muted); }
/* Footer-CTA bleibt hell — nur der ganz untere Rechts-/Legal-Streifen ist dunkel */
.footer-cta { background: radial-gradient(80% 130% at 90% 0%, rgba(28,157,225,0.10), transparent 55%), var(--hunter-100); border-top: 1px solid var(--hunter-300); }

/* --- FOOTER CTA — cinematisches Finale (geteilt: index + Content-Seiten) */
.footer-cta__inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: var(--sp-6); align-items: center; padding-block: var(--sp-9); }
.footer-cta__actions { display: flex; flex-direction: column; gap: var(--sp-3); }
@media (max-width: 760px) { .footer-cta__inner { grid-template-columns: 1fr; } }

.footer-cta--cine { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: var(--blue-950); border-top: 0; }
.footer-cta--cine .footer-cta__media { position: absolute; inset: 0; }
.footer-cta--cine .footer-cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.footer-cta--cine .footer-cta__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,35,50,0.92) 0%, rgba(6,35,50,0.72) 55%, rgba(6,35,50,0.55) 100%),
    rgba(15, 84, 120, 0.3);
}
.footer-cta--cine .container { position: relative; z-index: 3; }
.footer-cta--cine .footer-cta__inner { padding-block: clamp(4rem, 8vw, 6.5rem); }
.footer-cta--cine h2 { color: #fff; }
.footer-cta__copy h2 { text-wrap: balance; }

/* Berater ragt oben aus der Sektion (in den weißen Bereich darüber) */
.footer-cta--person { overflow: visible; }
.footer-cta--person .footer-cta__media { overflow: hidden; } /* HG-Bild bleibt in der Sektion */
.footer-cta--person .footer-cta__inner { display: block; }
.footer-cta__person {
  position: absolute; right: clamp(1rem, 6vw, 7.5rem); bottom: 0; z-index: 4;
  width: min(46%, 660px); height: auto; pointer-events: none;
  filter: drop-shadow(0 24px 44px rgba(6, 35, 50, 0.4));
}
@media (max-width: 960px) {
  .footer-cta__person { width: 42%; right: 0; opacity: 0.5; }
  .footer-cta__copy { max-width: 30rem; }
}
@media (max-width: 720px) { .footer-cta__person { display: none; } }
/* Kopf-Schulter-Bueten (Motiv zugeschnitten): so gross wie Joshua, Kopf ragt oben leicht ueber die Sektion */
.footer-cta__person--bust { width: min(46%, 600px); }
@media (max-width: 960px) { .footer-cta__person--bust { width: 44%; } }
.footer-cta--cine .lede { color: rgba(255,255,255,0.85); }
.footer-cta--cine .eyebrow { color: var(--sec-300); }
.footer-cta--cine .eyebrow::before { background: var(--color-secondary); }
/* Footer-CTA (global, alle Seiten): Copy-Spalte schmaler, damit Text und Bild enger
   zusammen sitzen (Container-Breite bewusst NICHT gekappt: die Berater-Büste ist
   prozentual zur Container-Breite positioniert/skaliert, ein engerer Container würde
   sie verkleinern und den "ragt aus der Sektion"-Effekt kaputt machen).
   Headline immer einzeilig (ab Tablet), Copy bewusst kurz → immer 2 Zeilig. */
.footer-cta__copy { max-width: 33rem; }
.footer-cta__copy .lede { max-width: 33rem; }
/* Headline auf eine Zeile, Schriftgröße bleibt unverändert (Original-h2-Größe).
   Höhere Spezifität nötig, da die globale ".footer-cta__copy h2 { text-wrap: balance }"
   (home.css, lädt nach dieser Datei) sonst den nowrap wieder aufhebt. */
@media (min-width: 700px) {
  .footer-cta--person .footer-cta__copy h2 { white-space: nowrap; text-wrap: nowrap; }
}
/* Siegel-Reihe zwischen Copy und CTA-Buttons (dieselben 3 Siegel wie im Hero) */
.footer-cta__seals { display: flex; align-items: flex-end; gap: 0.6rem; margin: var(--sp-5) 0 0; }
.footer-cta__seal { height: 56px; width: auto; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); }
/* CTA-Buttons nebeneinander (erst orange, dann weiß), statt gestapelt */
.footer-cta--person .footer-cta__actions { margin-top: var(--sp-5); max-width: none; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem; }
.footer-cta--person .footer-cta__actions .btn { width: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--sp-6); padding-block: var(--sp-9); }
.footer-grid h5, .footer-grid h3 { font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-invert-soft); margin-bottom: var(--sp-4); }
.footer-grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-grid a { color: var(--text-invert-muted); font-size: var(--fs-sm); }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-invert); padding-block: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: space-between; font-size: var(--fs-xs); color: var(--text-invert-soft); }
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.footer-badge { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 0.5em 0.85em; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); border: 1px solid var(--line-invert); font-size: var(--fs-xs); color: var(--text-invert-muted); font-weight: var(--fw-semi); }
.footer-badge svg { width: 1.1rem; height: 1.1rem; color: var(--signal-400); }

/* Echte Payment-Logos (statt Text-Badges) — weißer „Wallet"-Streifen, überall lesbar */
.paystrip { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 7px; background: #fff; padding: 7px 11px; border-radius: 9px; box-shadow: var(--sh-xs); }
.paystrip img { height: 22px; width: auto; display: block; }

/* Payment-Pills im Footer — identische Zahlarten wie auf der Produktseite:
   PayPal, Klarna, Visa, Mastercard, Amex, Kauf auf Rechnung. Weiße Pills, auf dem dunklen Footer gut lesbar. */
.footer-pay { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.footer-pay .paypill { display: inline-flex; align-items: center; justify-content: center; height: 32px; min-width: 44px; padding: 0 9px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-xs); color: var(--text-strong); line-height: 1; overflow: hidden; }
.footer-pay .paypill--logo img { height: 17px; width: auto; display: block; }
.footer-pay .paypill--fill { padding: 3px 6px; }
.footer-pay .paypill--fill img { height: 24px; }
.footer-pay .paypill--amex { padding: 0; border: 0; background: transparent; }
.footer-pay .paypill--amex img { height: 32px; width: auto; border-radius: var(--r-sm); }
.footer-pay .paypill--klarna { background: #ffb3c7; border-color: #ffb3c7; color: #0a0a0a; }
.footer-pay .paypill--invoice { gap: 6px; padding-inline: 10px; color: var(--text-strong); font-family: var(--font-body); font-weight: var(--fw-semi); }
.footer-pay .paypill--invoice svg { width: 15px; height: 15px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------------------------
   TOAST
--------------------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: calc(var(--sp-6) + env(safe-area-inset-bottom));
  transform: translate(-50%, 140%);
  z-index: var(--z-toast);
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--ink-800); color: #fff;
  padding: var(--sp-4) var(--sp-5); border-radius: var(--r-pill);
  box-shadow: var(--sh-lg); font-weight: var(--fw-semi); font-size: var(--fs-sm);
  transition: transform var(--dur-3) var(--ease-spring); max-width: calc(100vw - 2rem);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { color: var(--leaf-400); flex: none; }

/* ---------------------------------------------------------------------------
   MOBILE NAV DRAWER
--------------------------------------------------------------------------- */
.nav__burger { width: 44px; height: 44px; border-radius: var(--r-md); place-items: center; color: var(--text); }
.nav__burger:hover { background: var(--mist); }
.nav__burger svg { width: 1.6rem; height: 1.6rem; }
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: var(--paper);
  transform: translateX(100%); transition: transform var(--dur-3) var(--ease-out);
  display: flex; flex-direction: column; padding: var(--gutter);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-6); }
.mobile-nav a { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-bold); color: var(--text-strong); padding-block: var(--sp-3); border-bottom: 1px solid var(--line); display: block; }
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav__foot { margin-top: auto; padding-top: var(--sp-6); }

/* ---------------------------------------------------------------------------
   MINI-WARENKORB (Off-Canvas-Drawer) — 1:1 Struktur/Werte von kress-experten.de
   (live per DevTools-Protokoll ausgelesen: exakte px/Farb-Werte übernommen,
   nur die Markenfarbe im Banner/Häkchen ist neutral-grün wie im Original)
--------------------------------------------------------------------------- */
.cart-scrim {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.cart-scrim.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: #fff; box-shadow: -6px 0 28px rgba(0,0,0,0.13);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.cart-scrim.is-open .cart-drawer { transform: none; }

.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid #ededed; }
.cart-drawer__head h2 { font-size: 16px; font-weight: 600; color: #111; margin: 0; }
.cart-drawer__head .modal__close { position: static; width: auto; height: auto; border-radius: 0; background: none; padding: 4px; line-height: 0; }
.cart-drawer__head .modal__close svg { width: 20px; height: 20px; }
.cart-drawer__head .modal__close:hover { background: none; opacity: 0.6; }

.cart-drawer__body { flex: 1; overflow-y: auto; }

.cart-drawer__banner { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; min-height: 78px; padding: 14px 18px; margin: 0 0 14px; background: var(--hunter-100); }
.cart-drawer__banner b { font-size: 18px; font-weight: 700; letter-spacing: 0; line-height: 1.15; color: #1c1c1c; display: block; }
.cart-drawer__banner span { font-size: 11.5px; color: #333; line-height: 1.25; }
.cart-drawer__banner img { display: none; }

.cart-drawer__items { padding: 4px 20px; }
.cart-drawer__item { display: flex; gap: 13px; padding: 16px 0; border-bottom: 1px solid #f1f1f1; }
.cart-drawer__item img { width: 64px; height: 64px; object-fit: contain; border-radius: 6px; background: #f7f7f7; flex: none; }
.cart-drawer__item-info { flex: 1; min-width: 0; }
.cart-drawer__item-cat { display: inline-block; font-size: 8.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 6px; border-radius: 4px; margin: 0 0 3px; line-height: 1.25; background: #1c1c1c; color: #fff; }
.cart-drawer__item-name { font-size: 13.5px; font-weight: 600; color: #111; line-height: 1.3; }
.cart-drawer__item-price { font-size: 13px; color: #111; margin-top: 3px; font-weight: 600; }
.cart-drawer__item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }

.cart-drawer__qty { display: inline-flex; align-items: center; border: 1px solid #d9d9d9; border-radius: 6px; overflow: hidden; }
.cart-drawer__qty button { width: 30px; height: 30px; border: none; background: #fff; cursor: pointer; font-size: 16px; color: #333; line-height: 1; }
.cart-drawer__qty button:hover { background: #f5f5f5; }
.cart-drawer__qty input, .cart-drawer__qty span { min-width: 32px; text-align: center; font-size: 13px; border: none; background: transparent; }

.cart-drawer__remove { background: none; border: none; color: #999; font-size: 12px; cursor: pointer; text-decoration: underline; }
.cart-drawer__remove:hover { color: var(--err); }

.cart-drawer__empty { padding: 60px 24px; text-align: center; color: #888; font-size: 14px; }
.cart-drawer__empty svg { width: 48px; height: 48px; color: var(--slate); margin: 0 auto var(--sp-4); }

.cart-drawer__foot { border-top: 1px solid #ededed; padding: 16px 20px; background: #fff; display: block; }
.cart-drawer__ship { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: #15692e; font-weight: 600; margin-bottom: 10px; }
.cart-drawer__ship svg { width: 16px; height: 16px; flex: none; }
.cart-drawer__deliv { font-size: 12px; color: #475569; display: flex; align-items: center; gap: 7px; margin-bottom: 11px; }
.cart-drawer__deliv strong { color: #0f172a; font-weight: 600; }
.cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; font-size: 16px; font-weight: 700; color: #111; }
.cart-drawer__vat { font-size: 11.5px; color: #999; margin: 2px 0 12px; }
.cart-drawer__finance { display: flex; align-items: flex-start; gap: 8px; background: #f5f7fa; border: 1px solid #e6ebf1; border-radius: 8px; padding: 9px 11px; font-size: 12px; color: #475569; line-height: 1.4; margin-bottom: 13px; }
.cart-drawer__finance strong { color: #0f172a; font-weight: 700; }
.cart-drawer__finance svg { flex: none; margin-top: 1px; }

.cart-drawer__foot .btn--cta { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; height: 54px; background: #111; color: #fff; border-radius: 8px; font-size: 15px; font-weight: 600; box-shadow: none; padding: 0; }
.cart-drawer__foot .btn--cta:hover { background: #000; }

.cart-drawer__trust { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11.5px; color: #64748b; margin-top: 11px; text-align: center; line-height: 1.4; }

/* Service-Abdeckung-Upsell je Artikel (kc-care-Muster) */
.cart-care { display: flex; align-items: center; gap: 6px; margin: 5px 0 1px; padding: 0; background: none; border: 0; cursor: pointer; font-size: 11px; line-height: 1.35; position: relative; }
.cart-care__cb { width: 15px; height: 15px; flex: none; border: 1.4px solid #cacaca; border-radius: 4px; background: #fff; display: flex; align-items: center; justify-content: center; }
.cart-care__cb svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 3.2; fill: none; opacity: 0; }
.cart-care.is-on .cart-care__cb { background: #1c1c1c; border-color: #1c1c1c; }
.cart-care.is-on .cart-care__cb svg { opacity: 1; }
.cart-care__t { color: #8a8a8a; font-weight: 500; white-space: nowrap; }
.cart-care.is-on .cart-care__t { color: #444; }
.cart-care__p { color: #8a8a8a; font-weight: 600; white-space: nowrap; }
.cart-care.is-on .cart-care__p { color: #1c1c1c; }

/* ---------------------------------------------------------------------------
   SPLIT-LAYOUT (PDP, Checkout, Beratung)
--------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.split--pdp { grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); }
.split--checkout { grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr); }
.split__aside--sticky { position: sticky; top: calc(72px + var(--sp-4)); }
@media (max-width: 940px) { .split--pdp, .split--checkout { grid-template-columns: 1fr; } .split__aside--sticky { position: static; } }

/* ---------------------------------------------------------------------------
   GARTENPLANER / PARTNER-CTA (Startseite + Beratung)
   Verweist auf das Profi-Planungstool gartenplaner.bewaesserungsbox.de.
   Hell & blau getönt (Conversion-Vorgabe: keine dunklen Flächen).
--------------------------------------------------------------------------- */
.planner {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl); border: 1px solid var(--hunter-300);
  background: linear-gradient(135deg, var(--hunter-100) 0%, #fff 68%);
  padding: clamp(1.75rem, 3.5vw, 3.75rem);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.planner__eyebrow { color: var(--brand); }
.planner h2 { margin-block: var(--sp-3) var(--sp-4); }
.planner__lede { color: var(--text-muted); font-size: var(--fs-lg); line-height: var(--lh-relaxed); margin-bottom: var(--sp-5); max-width: 46ch; }
.planner__list { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-6); padding: 0; }
.planner__list li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-base); list-style: none; color: var(--text); }
.planner__list li b { color: var(--text-strong); }
.planner__list svg { width: 1.3rem; height: 1.3rem; flex: none; color: var(--planner-500); margin-top: 0.12em; }
.planner__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.planner__partner { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.45; }
.planner__partner svg { width: 1.1rem; height: 1.1rem; color: var(--brand); flex: none; }

/* Tool-Vorschau: echter Gartenplaner-Screenshot in „Fenster"-Rahmen */
.planner__visual {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-xl);
  aspect-ratio: 3 / 2; background: var(--mist);
}
.planner__visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.planner__badge {
  position: absolute; display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  color: var(--text-strong); font-size: var(--fs-sm); font-weight: var(--fw-bold);
  padding: 0.55em 0.95em; border-radius: var(--r-pill); box-shadow: var(--sh-lg);
}
.planner__badge svg { width: 1.05rem; height: 1.05rem; color: var(--planner-500); }
.planner__badge--br { bottom: var(--sp-5); left: var(--sp-5); }
@media (max-width: 860px) { .planner { grid-template-columns: 1fr; } .planner__visual { order: -1; } }

/* Grüne Variante (wie „Kostenlose Profi-Planung" auf bewaesserungsbox.de) */
.planner--green {
  background: linear-gradient(150deg, var(--planner-700) 0%, var(--planner-900) 100%);
  border-color: transparent; color: #fff;
}
.planner--green .planner__eyebrow { color: var(--planner-300); }
.planner--green h2 { color: #fff; }
.planner--green h2 .accent { color: var(--planner-300); }
.planner--green .planner__lede { color: rgba(255,255,255,0.85); }
.planner--green .planner__list li { color: rgba(255,255,255,0.92); }
.planner--green .planner__list li b { color: #fff; }
.planner--green .planner__list svg { color: var(--planner-300); }
.planner--green .btn--cta { --_bg: #fff; --_fg: var(--planner-800); }
.planner--green .btn--cta:hover { --_bg: #f0f3f1; }
.planner--green .planner__partner { color: rgba(255,255,255,0.78); }
.planner--green .planner__partner b { color: #fff; }
.planner--green .planner__partner svg { color: var(--planner-300); }
.planner--green .planner__visual { border-color: rgba(255,255,255,0.16); }

/* ---------------------------------------------------------------------------
   TRUST-SIEGEL-REIHE (5 Jahre Garantie · Made in Germany · Nr. 1 …)
--------------------------------------------------------------------------- */
.seals { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--sp-5) var(--sp-8); }
.seal { display: inline-flex; align-items: center; gap: var(--sp-3); color: var(--text-muted); }
.seal__badge { flex: none; width: 54px; height: 54px; border-radius: var(--r-lg); display: grid; place-items: center; background: var(--color-tint); color: var(--color-primary); border: 1px solid var(--color-line); font-family: var(--font-display); line-height: 0.95; text-align: center; }
.seal__badge b { font-size: 1.2rem; font-weight: var(--fw-black); color: var(--color-primary); }
.seal__badge small { display: block; font-size: 0.5rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-secondary); }
.seal__badge svg { width: 1.55rem; height: 1.55rem; color: var(--color-primary); }
/* 3D-Render-Icons in den Siegeln — freistehend (kein Chip), freigestellt */
.seal__badge--3d { background: none; border: 0; width: auto; height: auto; }
.seal__ic { width: 58px; height: 58px; object-fit: contain; }
.seal__badge--eco { background: var(--green-tint); border-color: rgba(47,143,91,0.2); }
.seal__badge--eco b { color: var(--green-600); }
.seal__badge--eco small { color: var(--green-500); }
.seal__txt b { display: block; font-family: var(--font-display); font-size: var(--fs-sm); line-height: 1.2; color: var(--text-strong); }
.seal__txt small { font-size: var(--fs-xs); color: var(--text-soft); }

/* ---------------------------------------------------------------------------
   TESTIMONIAL-KARTEN mit echtem Foto (bewaesserungsbox-Muster)
--------------------------------------------------------------------------- */
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-5); }
.tcard { display: flex; flex-direction: column; background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm); transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out); }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.tcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--mist); }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-3) var(--ease-out); }
.tcard:hover .tcard__media img { transform: scale(1.045); }
.tcard__loc { position: absolute; bottom: var(--sp-3); left: var(--sp-3); display: inline-flex; align-items: center; gap: 0.35em; background: rgba(255,255,255,0.94); color: var(--text-strong); font-size: var(--fs-xs); font-weight: var(--fw-semi); padding: 0.35em 0.7em; border-radius: var(--r-pill); box-shadow: var(--sh-sm); }
.tcard__loc svg { width: 0.95rem; height: 0.95rem; color: var(--brand); }
.tcard__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); }
.tcard__head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.tcard__name { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-strong); }
.tcard__stars { color: var(--cta-500); font-size: 0.9rem; letter-spacing: 0.1em; }
.tcard__quote { color: var(--text); font-size: var(--fs-lg); line-height: var(--lh-normal); text-wrap: pretty; }
.tcard__quote .hl { color: var(--color-primary); font-weight: var(--fw-bold); }

/* ---------------------------------------------------------------------------
   DIVIDER / MISC
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
   DIVIDER / MISC
--------------------------------------------------------------------------- */
.rule { height: 1px; background: var(--line); border: 0; }
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===========================================================================
   PRODUKTSUCHE — Command-Palette-Overlay (search.js)
   Ruhig & premium: kalme Selektion (Blau-Tints statt Orange — Orange bleibt CTA),
   Hairlines, dezente Physik-Motion. Mobile = Vollbild.
   =========================================================================== */
.hsearch-scrim {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(8, 13, 22, 0.5); backdrop-filter: blur(10px) saturate(1.1);
  display: flex; justify-content: center; align-items: flex-start;
  padding: clamp(1rem, 9vh, 8rem) var(--sp-4) var(--sp-4);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-2) var(--ease-out), visibility var(--dur-2);
}
.hsearch-scrim.is-open { opacity: 1; visibility: visible; }
.hsearch {
  width: 100%; max-width: 860px; max-height: 80vh;
  display: flex; flex-direction: column;
  background: var(--bg-surface); border: 1px solid var(--line);
  border-radius: var(--r-2xl); box-shadow: var(--sh-xl); overflow: hidden;
  transform: translateY(-10px) scale(0.985);
  transition: transform var(--dur-2) var(--ease-spring);
}
.hsearch-scrim.is-open .hsearch { transform: none; }

/* --- Suchleiste --- */
.hsearch__bar { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--line); }
.hsearch__icon { width: 1.35rem; height: 1.35rem; color: var(--brand); flex: none; }
.hsearch__input {
  flex: 1; min-width: 0; border: 0; background: none; padding: 0; margin: 0;
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: var(--fw-medium);
  color: var(--text-strong); line-height: 1.35;
}
.hsearch__input::placeholder { color: var(--text-soft); font-weight: var(--fw-regular); }
.hsearch__input:focus { outline: none; }
.hsearch__input::-webkit-search-cancel-button { display: none; }
.hsearch__clear { flex: none; width: 30px; height: 30px; border-radius: var(--r-pill); display: grid; place-items: center; color: var(--text-soft); }
.hsearch__clear:hover { background: var(--mist); color: var(--text); }
.hsearch__clear svg { width: 1rem; height: 1rem; }
.hsearch__esc { flex: none; }

/* --- Ergebnis-Body --- */
.hsearch__body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: var(--sp-3) var(--sp-3) var(--sp-4); -webkit-overflow-scrolling: touch; }
.hsearch-sec { font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-soft); padding: var(--sp-4) var(--sp-3) var(--sp-2); }
.hsearch-sec--row { display: flex; align-items: baseline; justify-content: space-between; }
.hsearch-textbtn { font-size: var(--fs-xs); font-weight: var(--fw-medium); letter-spacing: 0; text-transform: none; color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.hsearch-textbtn:hover { color: var(--brand); }

/* --- Produkt-Zeile --- */
.hsearch-list { display: flex; flex-direction: column; gap: 2px; }
.hsearch-row {
  display: grid; grid-template-columns: 46px 1fr auto 18px; align-items: center; gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-md);
  color: var(--text); cursor: pointer; scroll-margin: 12px;
  transition: background var(--dur-1) var(--ease-out);
}
.hsearch-row[aria-selected="true"], .hsearch-row:hover { background: var(--mist); }
.hsearch-row__media { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--bg-sunk); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.hsearch-row__media img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.hsearch-row__info { min-width: 0; }
.hsearch-row__name { display: block; font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-strong); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hsearch-row__meta { display: block; font-size: var(--fs-xs); color: var(--text-soft); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 1px; }
.hsearch-row__price { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--text-strong); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hsearch-row__go { width: 18px; height: 18px; color: var(--text-soft); opacity: 0; transform: translateX(-4px); transition: opacity var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out); }
.hsearch-row[aria-selected="true"] .hsearch-row__go, .hsearch-row:hover .hsearch-row__go { opacity: 1; transform: none; color: var(--brand); }
.hsearch-row mark, .hsearch-didyoumean mark { background: var(--sec-tint); color: var(--color-primary-strong); font-weight: var(--fw-semi); border-radius: 3px; padding: 0 0.12em; }

/* --- Kategorie-Zeile --- */
/* Projekt-Kacheln ("Dein Projekt" — Gartenbereiche) */
.hsearch-projectgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); padding: 0 var(--sp-3) var(--sp-2); }
.hsearch-project { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3); border: 1px solid var(--line); border-radius: var(--r-md); color: var(--text); cursor: pointer; scroll-margin: 12px; transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out); }
.hsearch-project[aria-selected="true"], .hsearch-project:hover { border-color: var(--brand); background: var(--mist); }
.hsearch-project__icon { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: var(--r-sm); background: var(--bg-tint); color: var(--brand); }
.hsearch-project__icon svg { width: 1.2rem; height: 1.2rem; }
.hsearch-project__txt { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.hsearch-project__txt b { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-strong); line-height: 1.25; }
.hsearch-project__txt small { font-size: var(--fs-xs); color: var(--text-soft); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.hsearch-catlist { display: flex; flex-direction: column; gap: 2px; }
.hsearch-cat { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3); border-radius: var(--r-md); color: var(--text); cursor: pointer; scroll-margin: 12px; transition: background var(--dur-1) var(--ease-out); }
.hsearch-cat[aria-selected="true"], .hsearch-cat:hover { background: var(--mist); }
.hsearch-cat svg { width: 1.15rem; height: 1.15rem; color: var(--brand); flex: none; }
.hsearch-cat span:first-of-type { flex: 1; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-strong); }
.hsearch-cat__n { font-size: var(--fs-xs); color: var(--text-soft); font-variant-numeric: tabular-nums; }

/* --- Query-Autocomplete (Suchbegriff-Vorschläge) --- */
.hsearch-suggest { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: var(--sp-3) var(--sp-3) var(--sp-2); }
.hsearch-suggest__item {
  display: inline-flex; align-items: center; gap: 0.4em; padding: 0.35em 0.75em;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--bg-surface);
  font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--text-muted); cursor: pointer;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.hsearch-suggest__item svg { width: 0.85rem; height: 0.85rem; color: var(--text-soft); flex: none; }
.hsearch-suggest__thumb { width: 20px; height: 20px; border-radius: var(--r-xs); object-fit: contain; background: var(--bg-sunk); flex: none; }
/* Auto-Broadening-Hinweis (Filter gelockert) */
.hsearch-broaden { display: flex; align-items: center; gap: var(--sp-2); margin: var(--sp-3) var(--sp-3) 0; padding: var(--sp-2) var(--sp-3); border-radius: var(--r-md); background: var(--bg-sunk); color: var(--text-muted); font-size: var(--fs-xs); line-height: 1.35; }
.hsearch-broaden svg { width: 1rem; height: 1rem; color: var(--brand); flex: none; }
.hsearch-broaden b { color: var(--text-strong); font-weight: var(--fw-semi); }
.hsearch-suggest__item:hover, .hsearch-suggest__item[aria-selected="true"] { border-color: var(--brand); background: var(--mist); color: var(--text-strong); }
.hsearch-suggest__item[aria-selected="true"] svg { color: var(--brand); }

/* --- Chips (Recent / Popular) --- */
.hsearch-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0 var(--sp-3) var(--sp-2); }
.hsearch-chip {
  display: inline-flex; align-items: center; gap: 0.4em; padding: 0.42em 0.85em;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--bg-surface);
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text);
  cursor: pointer; transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.hsearch-chip::before { content: ""; width: 13px; height: 13px; flex: none; background: currentColor; opacity: 0.4; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center/contain no-repeat; }
.hsearch-chip:hover, .hsearch-chip[aria-selected="true"] { border-color: var(--line-strong); background: var(--mist); }

/* --- Smart Answer (Ratgeber-Karte über den Treffern) --- */
.hsearch-answer { display: flex; gap: var(--sp-3); align-items: flex-start; margin: var(--sp-3) var(--sp-3) var(--sp-1); padding: var(--sp-4); border: 1px solid var(--sec-tint); border-radius: var(--r-lg); background: var(--bg-tint); }
.hsearch-answer__icon { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: var(--r-sm); background: var(--bg-surface); color: var(--brand); border: 1px solid var(--line); }
.hsearch-answer__icon svg { width: 1.15rem; height: 1.15rem; }
.hsearch-answer__body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hsearch-answer b { font-family: var(--font-display); font-size: var(--fs-base); color: var(--text-strong); line-height: 1.2; }
.hsearch-answer__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.4; }
.hsearch-answer__actions { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-2); flex-wrap: wrap; }
.hsearch-answer__cta { display: inline-flex; align-items: center; gap: 0.35em; font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--brand); border-radius: var(--r-xs); }
.hsearch-answer__cta svg { width: 15px; height: 15px; }
.hsearch-answer__cta:hover, .hsearch-answer__cta[aria-selected="true"] { text-decoration: underline; text-underline-offset: 2px; }
.hsearch-answer__sec { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.hsearch-answer__sec:hover { color: var(--brand); }

/* --- Meinten Sie / Zero-State / Beratungs-CTA --- */
.hsearch-didyoumean { padding: var(--sp-3) var(--sp-3) 0; font-size: var(--fs-sm); color: var(--text-muted); }
.hsearch-didyoumean a { color: var(--brand); font-weight: var(--fw-semi); text-decoration: underline; text-underline-offset: 2px; }
.hsearch-zero { text-align: center; padding: var(--sp-7) var(--sp-5) var(--sp-4); }
.hsearch-zero svg { width: 2.1rem; height: 2.1rem; color: var(--text-soft); opacity: 0.6; }
.hsearch-zero__title { font-size: var(--fs-lg); font-weight: var(--fw-semi); color: var(--text-strong); margin: var(--sp-3) 0 var(--sp-1); }
.hsearch-zero__sub { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.hsearch-zero__sub a { color: var(--brand); font-weight: var(--fw-semi); text-decoration: underline; text-underline-offset: 2px; }
.hsearch-help {
  display: flex; align-items: center; gap: var(--sp-4); margin: var(--sp-4) var(--sp-3) 0;
  padding: var(--sp-4) var(--sp-5); border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-sunk); color: var(--text); transition: box-shadow var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.hsearch-help:hover { box-shadow: var(--sh-md); transform: translateY(-1px); }
.hsearch-help span { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hsearch-help b { font-family: var(--font-display); font-size: var(--fs-base); color: var(--text-strong); }
.hsearch-help small { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.4; }
.hsearch-help svg { width: 1.2rem; height: 1.2rem; color: var(--brand); flex: none; }

/* --- Footer / Tastatur-Hinweise --- */
.hsearch__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: var(--sp-3) var(--sp-5); border-top: 1px solid var(--line); background: var(--bg-sunk); }
.hsearch__hint { display: flex; align-items: center; gap: 0.4em; font-size: var(--fs-xs); color: var(--text-soft); flex-wrap: wrap; }
.hsearch__foot-action a { font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--brand); text-align: right; }
.hsearch__foot-action a:hover { text-decoration: underline; text-underline-offset: 2px; }
kbd, .hsearch__esc {
  display: inline-flex; align-items: center; justify-content: center; min-width: 1.5em; padding: 0.15em 0.4em;
  border: 1px solid var(--line-strong); border-bottom-width: 2px; border-radius: var(--r-xs);
  background: var(--bg-surface); color: var(--text-muted);
  font-family: var(--font-body); font-size: 0.72em; font-weight: var(--fw-semi); font-variant-numeric: tabular-nums; line-height: 1.4;
}

@media (max-width: 600px) {
  .hsearch-scrim { padding: 0; }
  .hsearch { max-width: none; height: 100%; max-height: none; border-radius: 0; border: 0; }
  .hsearch__bar { padding: var(--sp-4); }
  .hsearch__input { font-size: 16px; }  /* verhindert iOS-Auto-Zoom */
  .hsearch__hint { display: none; }
  .hsearch__foot { justify-content: flex-end; }
  .hsearch-projectgrid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hsearch-scrim, .hsearch, .hsearch-row__go, .hsearch-help { transition: none; }
  .hsearch-scrim.is-open .hsearch { transform: none; }
}

/* Suchergebnis-Seite (kategorie.html?q=) — Zero-State */
.search-empty { grid-column: 1 / -1; text-align: center; padding: var(--sp-8) var(--sp-4); max-width: 46ch; margin-inline: auto; }
.search-empty__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h3); color: var(--text-strong); margin: 0 0 var(--sp-3); }
.search-empty__sub { color: var(--text-muted); margin: 0 0 var(--sp-5); line-height: var(--lh-relaxed); }
.search-empty__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* Sichtbares Suchfeld im Header (Desktop) — sieht aus wie ein Feld, öffnet das
   Amazon-Style: breit zwischen Logo und Aktionen, füllt den freien Raum. */
.nav__search {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  flex: 1 1 auto; min-width: 0; margin-inline: var(--sp-6);
  padding: 0.5em 1.1em;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-pill);
  background: var(--bg-surface); color: var(--text-soft); cursor: text;
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.nav__search:hover { border-color: var(--brand); }
.nav__search:focus-visible { outline: none; box-shadow: var(--focus-ring); border-color: var(--brand); }
.nav__search svg { width: 1.2rem; height: 1.2rem; color: var(--brand); flex: none; }
.nav__search-ph { flex: 1; text-align: left; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Inline-Suche: Dropdown direkt in der Suchzeile (Amazon-Stil) ---------
   Der Inhalt des Dropdowns ist 1:1 identisch mit dem Popup — es werden dieselben
   Render-Funktionen und .hsearch-* Inhaltsklassen verwendet. Umschaltbar in
   search.js (var MODE). */
.nav__search--live { position: relative; cursor: text; padding: 0.4em 1.1em; }
.nav__search--live.is-open { border-color: var(--brand); box-shadow: var(--focus-ring); }
.nav__search__icon { width: 1.2rem; height: 1.2rem; color: var(--brand); flex: none; }
.nav__search__input {
  flex: 1 1 auto; min-width: 0; border: 0; background: none; padding: 0; margin: 0;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: var(--fw-medium);
  color: var(--text-strong); line-height: 1.4;
}
.nav__search__input::placeholder { color: var(--text-soft); font-weight: var(--fw-medium); }
.nav__search__input:focus, .nav__search__input:focus-visible { outline: none; box-shadow: none; }
.nav__search__input::-webkit-search-cancel-button { display: none; }
.nav__search__clear { flex: none; width: 26px; height: 26px; border-radius: var(--r-pill); display: grid; place-items: center; color: var(--text-soft); }
.nav__search__clear:hover { background: var(--mist); color: var(--text); }
.nav__search__clear svg { width: 0.9rem; height: 0.9rem; }

.hsearch-inline {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: var(--z-modal);
  display: flex; flex-direction: column;
  background: var(--bg-surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl); overflow: hidden;
  max-height: min(72vh, 620px);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.hsearch-inline.is-open { opacity: 1; transform: none; pointer-events: auto; }

/* Abgedunkelter Hintergrund, wenn die Inline-Suche offen ist (Amazon-Stil):
   Scrim liegt über der Seite (--z-overlay), Header wird darüber gehoben
   (--z-modal) und opak gesetzt — Suchzeile + Dropdown bleiben hell im Fokus. */
.hsearch-scrim-bg {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(8, 13, 22, 0.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-2) var(--ease-out), visibility var(--dur-2);
}
.hsearch-scrim-bg.is-open { opacity: 1; visibility: visible; }
.hs-inline-open .site-header { z-index: var(--z-modal); background: var(--bg-surface); }

@media (prefers-reduced-motion: reduce) { .hsearch-inline, .hsearch-scrim-bg { transition: none; } }

/* Mobile/Tablet-schmal: Suche bekommt eine eigene volle Zeile — sonst quetschen
   Logo + Warenkorb/Burger das Feld auf wenige Pixel (Inline-Input unbrauchbar).
   Logo bleibt links, Icons rechts, Suche darunter über die volle Breite. */
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; justify-content: space-between; column-gap: var(--sp-3); row-gap: var(--sp-3); }
  .nav__actions { order: 2; }
  .nav__search, .nav__search--live { order: 3; flex: 1 0 100%; width: 100%; margin-inline: 0; }
}

/* Abgesetzte zweite Navigationsleiste (Amazon-Style) — hellere Markenfläche.
   Immer sichtbar (kein Scroll-Einklappen mehr). */
.subnav { position: relative; background: var(--blue-500); }
.subnav .nav__links { display: flex; align-items: center; justify-content: center; gap: 2rem; margin: 0; width: 100%; padding-block: 0.4rem; }
.subnav .nav__links > a, .subnav .nav__dropdown-trigger { color: var(--text-invert); font-weight: var(--fw-semi); font-size: var(--fs-sm); padding-block: var(--sp-1); }
.subnav .nav__links > a:hover, .subnav .nav__dropdown-trigger:hover { color: #fff; }
/* keine Zierlinie unter den Menüpunkten in der blauen Bar */
.subnav .nav__links > a::after, .subnav .nav__dropdown-trigger::after { display: none; }
.subnav .nav__links > a[aria-current="page"] { color: #fff; }
.subnav .nav__dropdown-caret { opacity: 0.85; }
@media (max-width: 1020px) { .subnav { display: none; } }
@media (max-width: 560px) { .nav__search { margin-inline: var(--sp-3); padding: 0.44em 0.9em; } .nav__search-ph { font-size: 16px; } }

/* ==========================================================================
   PARTNER-BANNER — Slim, wiederverwendbare Gegenüberstellung (Selbst planen / Profi)
   Auf jeder Unterseite nutzbar: <div class="container"><div class="partner-banner">…
   ========================================================================== */
/* Full-width Band: Hintergrund randlos, Inhalt im Container */
.partner-banner {
  position: relative; overflow: hidden;
  padding-block: clamp(1.1rem, 1.8vw, 1.6rem);
  background: linear-gradient(155deg, var(--blue-950) 0%, var(--color-primary) 125%);
  color: #fff;
}
.partner-banner__row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}
.partner-banner__brand { display: flex; flex-direction: column; gap: 0.55rem; }
.partner-banner__eyebrow { display: inline-flex; align-items: center; gap: 0.45em; font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--sec-300); }
.partner-banner__eyebrow svg { width: 1.15em; height: 1.15em; }
.partner-banner__lockup { display: inline-flex; align-items: center; gap: 0.7rem; }
.partner-banner__logo { height: 24px; width: auto; display: block; }
.partner-banner__x { color: rgba(255,255,255,0.4); font-size: 1.05rem; line-height: 1; }
.partner-banner__opts { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); flex-wrap: wrap; }
.partner-banner__sep { align-self: stretch; width: 1px; background: rgba(255,255,255,0.16); }
.pbopt { display: flex; align-items: center; gap: 0.8rem; }
.pbopt__tag { flex: none; font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-wide); text-transform: uppercase; border-radius: var(--r-pill); padding: 0.32em 0.7em; background: rgba(255,255,255,0.12); color: var(--sec-300); }
.pbopt__tag--pro { background: var(--cta); color: var(--cta-ink); }
.pbopt__label { display: flex; flex-direction: column; line-height: 1.15; }
.pbopt__label b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-base); color: #fff; }
.pbopt__label small { font-size: var(--fs-xs); color: rgba(255,255,255,0.7); }
.pbopt__btn { flex: none; min-height: 42px; padding: 0.7em 1.25em; font-size: var(--fs-sm); }
@media (max-width: 900px) {
  .partner-banner__row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .partner-banner__opts { flex-direction: column; align-items: stretch; width: 100%; }
  .partner-banner__sep { width: 100%; height: 1px; }
  .pbopt { justify-content: flex-start; }
  .pbopt__btn { margin-left: auto; }
}

/* ==========================================================================
   FLOATING BERATER-ANGEBOT — schwebt unten rechts, erscheint nach 7s
   Shared, damit das Widget auf jeder Seite gleich aussieht (Markup: expert-float.js)
   ========================================================================== */
.expert-float {
  position: fixed; right: clamp(1rem, 2vw, 2rem); bottom: clamp(1rem, 2vw, 2rem);
  z-index: 90; width: min(352px, calc(100vw - 2rem));
  background: linear-gradient(135deg, #fff 0%, var(--hunter-100) 100%);
  border: 1px solid var(--color-primary); border-radius: var(--r-2xl);
  box-shadow: 0 26px 60px -24px rgba(6, 35, 50, 0.48);
  padding: clamp(1.1rem, 2vw, 1.35rem) clamp(1.2rem, 2.5vw, 1.5rem);
  opacity: 0; visibility: hidden; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.expert-float.is-visible { opacity: 1; visibility: visible; transform: translateY(0); animation: expertBob 5s ease-in-out 0.6s infinite; }
.expert-float.is-dismissed { display: none; }
@keyframes expertBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .expert-float.is-visible { animation: none; } }

.expert-float__body { position: relative; z-index: 2; max-width: 70%; }
.expert-float__hl { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--text-strong); line-height: 1.12; white-space: nowrap; }
.expert-float__copy { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.4; margin: 0.35rem 0 0.8rem; }
.expert-float__cta { font-size: var(--fs-sm); padding: 0.68em 1.05em; min-height: 42px; white-space: nowrap; }
.expert-float__cta .arrow { width: 1em; height: 1em; }
/* Bild ragt 1.5rem rechts über die Box (5% kleiner als zuvor, damit es den Text nicht verdeckt) */
.expert-float__img { position: absolute; right: -1rem; bottom: 0; width: 48%; max-width: 170px; z-index: 1; pointer-events: none; filter: drop-shadow(0 14px 22px rgba(6, 35, 50, 0.3)); }
.expert-float__close { position: absolute; top: 0.4rem; right: 0.4rem; z-index: 3; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.8); color: var(--text-soft); box-shadow: 0 2px 8px -4px rgba(6,35,50,0.3); }
.expert-float__close svg { width: 9px; height: 9px; }
.expert-float__close:hover { background: #fff; color: var(--text-strong); }
@media (max-width: 520px) { .expert-float { width: calc(100vw - 1.5rem); right: 0.75rem; left: auto; bottom: 0.75rem; } .expert-float__img { max-width: 120px; right: -0.5rem; } .expert-float__img--bust { max-width: 132px; right: -0.4rem; } }
/* Kopf-Schulter-Bueste (Motiv auf Rahmen zugeschnitten): so gross wie Joshua, Kopf ragt oben leicht raus.
   Etwas weiter nach rechts gerückt (clip-sicher am Viewport-Rand), damit die Büste den Text nicht überdeckt. */
.expert-float__img--bust { width: 56%; max-width: 192px; right: -1rem; }

/* --- Niggelhöver — globales, wiederverwendbares Logo-Band (Marquee) -----------
   Einsetzen: <div class="niggelhoever" data-niggelhoever></div> (Markup füllt
   assets/js/niggelhoever.js). Nimmt die volle Breite des Containers, transparent,
   mit weichem Rand-Fade. Styling + Logos werden zentral gepflegt (global). */
.niggelhoever { width: 100%; display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.25rem); }
.niggelhoever__label {
  flex: none; font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-soft); opacity: 0.75; white-space: nowrap;
}
.niggelhoever__viewport {
  flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.niggelhoever__track { display: flex; align-items: center; width: max-content; animation: niggelhoeverMarquee 32s linear infinite; }
/* Graustufen-Logo-Band: monochrom, entsättigt, dezent. */
.niggelhoever__logo {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-right: clamp(1.5rem, 3.5vw, 3rem);
  color: var(--text-soft); font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.03em; white-space: nowrap;
  opacity: 0.55;
}
/* Platzhalter-Kachel: Referenz-Slot für ein späteres lizenziertes Graustufen-Logo. */
.niggelhoever__logo--tile {
  height: 2.4rem; padding: 0 1.1rem; margin-right: clamp(0.75rem, 2vw, 1.5rem);
  border: 1px dashed var(--line); border-radius: 8px; opacity: 0.5;
}
.niggelhoever__logo--accent { opacity: 0.75; }
/* Feste Bounding-Box je Logo (object-fit: contain) — macht schmale Wortmarken
   (z. B. testbericht.de, sehr breites Seitenverhältnis) und quadratische Siegel
   (z. B. Good Design Award) gleich groß, statt sie nur per Höhe zu skalieren. */
.niggelhoever__imgbox {
  height: 1.8rem; width: 3.5rem; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.niggelhoever__img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
  filter: grayscale(1); opacity: 0.8;
}
/* Negatives/weißes Logo für das helle Band einfärben (dunkel). */
.niggelhoever__img--invert { filter: invert(1) grayscale(1) brightness(0.35); opacity: 0.8; }
/* Generisches Platzhalter-Emblem (Monogramm) — Graustufen-Logo-Optik. */
.niggelhoever__mark { flex: none; display: inline-flex; }
.niggelhoever__mark svg { width: 1.8rem; height: 1.8rem; display: block; }
.niggelhoever__mark rect { fill: none; stroke: currentColor; stroke-width: 2; }
.niggelhoever__mark text {
  fill: currentColor; font-family: var(--font-display); font-weight: 800;
  font-size: 15px; letter-spacing: 0.03em;
}
.niggelhoever__txt { line-height: 1; }
.niggelhoever__logo svg { width: 1.25rem; height: 1.25rem; flex: none; }
@keyframes niggelhoeverMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .niggelhoever__track { animation: none; } }
