/* ════════════════════════════════════════════════════════════════════
   DOKTOR SLAB — doktorslab.de
   Site layer on top of ds/styles.css (tokens are canonical, never redefined here).
   ════════════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }
body { background: var(--surface-page); }
/* Anker duerfen nicht unter dem 73px-Sticky-Header landen */
[id] { scroll-margin-top: 88px; }
/* PDP: Platz fuer die eingeblendete Buybar, sonst verdeckt sie die Footer-Rail */
body.has-buybar { padding-bottom: 76px; }
/* Reduzierte Bewegung: Transformationen aus, Farb-/Opacity-Uebergaenge bleiben (DS-Regel) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-property: color, background-color, border-color, box-shadow, opacity !important; }
  .card--hover:hover, .stepcard:hover, .pillar:hover { transform: none; }
}
/* Fokus: Outline statt box-shadow — sonst loescht der Ring Komponentenschatten und Radien */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  box-shadow: none; border-radius: inherit;
  outline: 3px solid rgba(42,107,255,.55); outline-offset: 2px;
}
.btn--primary:focus-visible, [data-a="drop"]:focus-visible { outline-color: rgba(226,28,28,.55); }

/* ── Layout ─────────────────────────────────────────────────────── */
.wrap { max-width: var(--container-max); margin: 0 auto; padding-inline: var(--gutter-page); }
.wrap--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--white { background: var(--white); border-block: 1px solid var(--border-subtle); }
.section--tint { background: var(--surface-tint); border-block: 1px solid var(--blue-200); }
.section--navy { background: var(--surface-dark); }
.section--darkest { background: var(--surface-darker); position: relative; overflow: hidden; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.section__head-copy { display: flex; flex-direction: column; gap: 10px; max-width: 62ch; }
.section__title { font-size: clamp(26px, 3vw, 38px); }
.page-title { font-size: clamp(32px, 4vw, 56px); }
.section__lead { font-size: var(--fs-body-md); line-height: var(--lh-body-md); color: var(--text-muted); max-width: 52ch; }
.section--navy .section__lead, .section--darkest .section__lead { color: var(--text-inverse-muted); }
.tech-bg { position: absolute; inset: 0; background-image: var(--tech-lines); background-size: var(--tech-lines-size); opacity: .45; pointer-events: none; }
.grid-lab-bg { background-image: var(--grid-lab); background-size: var(--grid-lab-size); }

/* ── Type helpers ───────────────────────────────────────────────── */
/* Headlines umbrechen ausgewogen statt mit Hurenkind auf der letzten Zeile */
.ds-display, .ds-headline, .section__title, .hero__title { text-wrap: balance; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow__num { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 11px; letter-spacing: var(--tracking-label); color: var(--red-500); font-variant-numeric: tabular-nums; }
.eyebrow__text { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); }
.eyebrow--inverse .eyebrow__text { color: var(--text-inverse-muted); }
.cross { color: var(--red-500); font-weight: var(--fw-black); font-size: var(--fs-label-md); line-height: 1; }
.announce__item .cross, .footer__rail .cross { font-size: inherit; }
.footer__grid .cross, .footer .cross { font-size: 15px; }
.link-more { background: none; border: none; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-link); transition: color var(--dur-fast) var(--ease-out); }
.link-more { position: relative; }
.link-more::after { content: ""; position: absolute; inset: -14px -10px; }
.link-more:hover { color: var(--text-link-hover); }
.inline-link { background: none; border: none; padding: 0; cursor: pointer; font-size: inherit; font-family: inherit; color: var(--text-link); font-weight: var(--fw-semibold); }
.inline-link { transition: color var(--dur-fast) var(--ease-out); position: relative; }
.inline-link::after { content: ""; position: absolute; inset: -12px -6px; }
.inline-link:hover { color: var(--text-link-hover); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: var(--control-h-md); padding: 0 22px; border: none; border-radius: var(--radius-sm); cursor: pointer; font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; white-space: nowrap; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.btn:active { transform: scale(.97); }
.btn--sm { height: var(--control-h-sm); padding: 0 16px; font-size: 10px; }
.btn--lg { height: var(--control-h-lg); padding: 0 28px; font-size: 12px; }
.btn--full { width: 100%; }
.btn--primary { background: var(--action-primary); color: var(--text-on-red); }
.btn--primary:hover { background: var(--action-primary-hover); }
.btn--primary:active { background: var(--action-primary-active); }
.btn--secondary { background: var(--action-secondary); color: var(--white); }
.btn--secondary:hover { background: var(--action-secondary-hover); }
.btn--secondary:active { background: var(--action-secondary-active); }
.btn--outline { background: transparent; color: var(--navy-700); box-shadow: inset 0 0 0 2px var(--navy-700); }
.btn--outline:hover { background: var(--grey-100); }
.btn--inverse { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,.85); }
.btn--inverse:hover { background: rgba(255,255,255,.12); }
.btn--ghost { background: transparent; color: var(--navy-700); }
.btn--ghost:hover { background: var(--action-ghost-hover); }
.btn[disabled] { background: var(--surface-disabled); color: var(--grey-400); cursor: not-allowed; box-shadow: none; transform: none; }

/* ── Chips, badges ──────────────────────────────────────────────── */
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle); background: var(--white); cursor: pointer; font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); transition: all var(--dur-fast) var(--ease-out); }
.chip:hover { border-color: var(--navy-700); color: var(--navy-700); }
.chip.is-on { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }
.chip--quiet { cursor: default; color: var(--text-strong); font-size: 9px; }
.chip--quiet:hover { border-color: var(--border-subtle); color: var(--text-strong); }
.badge { display: inline-flex; align-items: center; height: 22px; padding: 0 9px; border-radius: var(--radius-xs); font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 9px; letter-spacing: var(--tracking-label); text-transform: uppercase; }
.badge--red { background: var(--red-500); color: var(--white); }
.badge--navy { background: var(--navy-700); color: var(--white); }
.badge--blue { background: var(--blue-500); color: var(--white); }
.badge--yellow { background: var(--yellow-400); color: var(--text-on-yellow); }
.badge--holo { background: var(--holo); color: var(--navy-700); }
.badge--grey { background: var(--grey-100); color: var(--text-muted); }

/* ── Cards ──────────────────────────────────────────────────────── */
.card { background: var(--surface-card); border: var(--card-border); border-radius: var(--card-radius); box-shadow: var(--card-shadow); }
.card--hover { transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.card--hover:hover { transform: translateY(var(--hover-lift)); box-shadow: var(--shadow-md); }
.card--emphasis { border: var(--border-strong) solid var(--border-emphasis); }

/* Product card */
.pcard { display: flex; flex-direction: column; }
.pcard__media { position: relative; aspect-ratio: 4/3; background: var(--grey-50); border-bottom: 1px solid var(--border-subtle); cursor: pointer; overflow: hidden; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform var(--dur-fast) var(--ease-out); }
.pcard__media img.cover { object-fit: cover; padding: 0; }
.pcard:hover .pcard__media img { transform: translateY(-2px); }
.pcard__badge { position: absolute; top: 10px; left: 10px; pointer-events: none; }
.pcard__holo { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--holo); pointer-events: none; }
.pcard__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__tier { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 9px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); }
.pcard__name { font-family: var(--font-headline); text-transform: uppercase; letter-spacing: var(--tracking-headline); line-height: var(--lh-headline); font-size: 21px; color: var(--text-strong); cursor: pointer; margin: 0; }
.pcard__rating { display: flex; align-items: center; gap: 8px; }
.pcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 4px; }
.price { font-family: var(--font-headline); text-transform: uppercase; line-height: 1; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.ratingbar { height: 4px; width: 56px; background: var(--grey-200); border-radius: 2px; overflow: hidden; display: block; }
.ratingbar > span { display: block; height: 100%; background: var(--navy-700); }

/* Service tile (Lab) */
.stile { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); cursor: pointer; text-align: left; width: 100%; transition: border-color var(--dur-fast) var(--ease-out); }
.stile:hover { border-color: var(--navy-700); }
.stile__label { display: flex; align-items: center; gap: 12px; min-width: 0; }
.stile__name { font-family: var(--font-headline); text-transform: uppercase; font-size: 20px; line-height: 1; color: var(--text-strong); }
.stile__price { font-family: var(--font-headline); text-transform: uppercase; font-size: 18px; line-height: 1; color: var(--text-strong); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── Icons (brand family, 581×399 box) ──────────────────────────── */
.fam { display: inline-block; object-fit: contain; flex: none; }

/* ── Slab (graded card holder) ──────────────────────────────────── */
.slab { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-slab); box-shadow: var(--shadow-slab); padding: 8px; width: 100%; max-width: 220px; margin-inline: auto; position: relative; }
.slab__plate { display: flex; align-items: stretch; justify-content: space-between; gap: 8px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: 4px; padding: 7px 9px; }
.slab__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; justify-content: center; }
.slab__brand { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 6.5px; letter-spacing: .22em; color: var(--red-500); text-transform: uppercase; }
.slab__title { font-family: var(--font-headline); text-transform: uppercase; font-size: 13px; line-height: 1.05; color: var(--text-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slab__set { font-size: 8px; color: var(--text-muted); font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slab__grade { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: none; padding-left: 8px; border-left: 1px solid var(--border-subtle); }
.slab__grade b { font-family: var(--font-headline); font-size: 20px; line-height: .9; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.slab__grade span { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 6.5px; letter-spacing: .12em; color: var(--text-muted); text-transform: uppercase; }
.slab__window { margin-top: 8px; border-radius: 4px; overflow: hidden; background: var(--blue-100); position: relative; }
.slab__window img { width: 100%; display: block; }
.slab--holo .slab__plate { border-bottom: 2px solid transparent; border-image: var(--holo-edge) 1; border-image-slice: 0 0 2 0; }
.slab__serial { position: absolute; bottom: 4px; right: 8px; font-size: 7px; letter-spacing: .08em; color: rgba(13,27,51,.55); font-variant-numeric: tabular-nums; background: rgba(255,255,255,.7); padding: 1px 5px; border-radius: 3px; }

/* ── Condition report ───────────────────────────────────────────── */
.report { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.report__head { background: var(--panel-header-bg); color: var(--panel-header-fg); display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 18px; }
.report__head .ds-label { color: rgba(255,255,255,.85); font-size: 10px; }
.report__score { display: flex; align-items: center; gap: 18px; padding: 18px; border-bottom: 1px solid var(--border-subtle); flex-wrap: wrap; }
.report__scorenum { font-family: var(--font-headline); font-size: 56px; line-height: .9; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.report__scale { display: flex; flex-direction: column; gap: 3px; }
.report__rows { padding: 8px 18px; display: flex; flex-direction: column; }
.report__row { display: grid; grid-template-columns: 86px 1fr 40px minmax(0,1fr); align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--grey-100); }
.report__row:last-child { border-bottom: none; }
.report__bar { height: 5px; background: var(--grey-200); border-radius: 3px; overflow: hidden; }
.report__bar > span { display: block; height: 100%; border-radius: 3px; }
.report__bar.good > span { background: var(--signal-good); }
.report__bar.watch > span { background: var(--signal-watch); }
.report__note { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.report__plan { margin: 10px 18px 18px; background: var(--grey-50); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; }
.report__foot { display: flex; align-items: center; gap: 10px; padding: 0 18px 18px; }

/* ── Care checklist ─────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; }
.checklist__row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--grey-100); }
.checklist__row:last-child { border-bottom: none; }
.checklist__num { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; color: var(--red-500); width: 20px; font-variant-numeric: tabular-nums; }
.checklist__name { font-family: var(--font-headline); text-transform: uppercase; font-size: 18px; line-height: 1; color: var(--text-strong); flex: 1; }
.checklist__state { width: 22px; height: 22px; border-radius: var(--radius-pill); display: grid; place-items: center; flex: none; }
.checklist__state.done { background: var(--navy-700); color: var(--white); }
.checklist__state.todo { border: 2px solid var(--grey-300); }

/* ── Stat tile ──────────────────────────────────────────────────── */
.stat { display: flex; flex-direction: column; gap: 8px; padding: 20px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.stat__value { font-family: var(--font-headline); font-size: 42px; line-height: .9; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.stat__value small { font-size: 22px; color: var(--text-muted); }
.stat--navy { background: var(--navy-700); border-color: var(--navy-700); }
.stat--navy .stat__value { color: var(--white); }
.stat--navy .ds-label { color: rgba(255,255,255,.6); }

/* ── Stickers & seals ───────────────────────────────────────────── */
.sticker { filter: var(--sticker-keyline); }
.sticker--pop { animation: dsPop var(--dur-slow) var(--ease-pop) both; }
.seal-note { display: flex; align-items: center; gap: 12px; }
.watermark { position: absolute; opacity: .13; pointer-events: none; }

/* ── Header ─────────────────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--navy-700); color: var(--white); padding: 10px 18px; border-radius: 0 0 var(--radius-sm) 0; font-size: 13px; }
.skip-link:focus-visible { left: 0; color: var(--white); }
.announce { background: var(--rail-bg); }
.announce__inner { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; padding: 10px 16px; }
.announce__item { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--rail-fg); display: flex; align-items: center; gap: 14px; }
.header { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: 1px solid var(--border-subtle); }
.header__bar { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 40px); height: 72px; }
.header__logo { display: flex; align-items: center; flex: none; cursor: pointer; background: none; border: none; padding: 0; }
.header__logo img { height: 27px; width: auto; display: block; }
.header__nav { display: flex; align-items: center; gap: 24px; }
.navlink { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; padding: 4px 0 2px; cursor: pointer; font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-strong); border-bottom: 2px solid transparent; transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out); }
.navlink:hover { color: var(--red-500); }
.navlink.is-active { border-bottom-color: var(--red-500); }
.navlink__dot { width: 7px; height: 7px; border-radius: var(--radius-pill); background: var(--red-500); box-shadow: 0 0 0 3px rgba(226,28,28,.18); display: block; }
.header__actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.iconbtn { display: grid; place-items: center; width: 40px; height: 40px; background: none; border: none; border-radius: var(--radius-sm); cursor: pointer; color: var(--navy-700); transition: background var(--dur-fast) var(--ease-out); }
.iconbtn:hover { background: var(--grey-100); }
.iconbtn--sm { width: 32px; height: 32px; }
.iconbtn[data-a="drop"], .iconbtn[data-a="labOff"] { color: var(--text-muted) !important; }
.iconbtn[data-a="drop"]:hover, .iconbtn[data-a="labOff"]:hover { color: var(--red-500) !important; background: var(--red-50); }
.cartbtn { display: flex; align-items: center; gap: 9px; height: 40px; padding: 0 12px; background: none; border: none; border-radius: var(--radius-sm); cursor: pointer; color: var(--navy-700); transition: background var(--dur-fast) var(--ease-out); }
.cartbtn:hover { background: var(--grey-100); }
.cartbtn__count { min-width: 20px; height: 20px; padding: 0 6px; display: grid; place-items: center; background: var(--red-500); color: var(--white); border-radius: var(--radius-pill); font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; font-variant-numeric: tabular-nums; }
.cartbtn__count.bump { animation: dsBump var(--dur-slow) var(--ease-out); }
@keyframes dsBump { 0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); } }
.burger { display: none; }

/* Mega menu */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--border-subtle); box-shadow: var(--shadow-lg); animation: dsRise var(--dur-fast) var(--ease-out); }
.mega__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 32px; padding-block: 32px 36px; }
.mega__col { display: flex; flex-direction: column; gap: 14px; }
.mega__items { display: flex; flex-direction: column; gap: 9px; }
.mega__item { text-align: left; background: none; border: none; padding: 0; cursor: pointer; display: flex; flex-direction: column; gap: 2px; color: var(--text-strong); }
.mega__item:hover .mega__item-label { color: var(--red-500); }
.mega__item-label { font-family: var(--font-headline); text-transform: uppercase; font-size: 19px; line-height: 1; color: inherit; transition: color var(--dur-fast) var(--ease-out); }
.mega__item-note { font-size: 13px; color: var(--text-muted); }
.mega__promo { background: var(--navy-700); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 14px; justify-content: space-between; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { background: var(--radiance); border-bottom: 1px solid var(--border-subtle); position: relative; overflow: hidden; }
.hero__sunburst { position: absolute; inset: -20%; background: var(--sunburst); opacity: .5; pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(26px, 4vw, 56px); align-items: center; padding-block: clamp(40px, 6vw, 84px); }
/* Textspalte bekommt mehr Raum, damit die Display-Headline in 3 Zeilen bleibt */
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr .85fr; } }
.hero__copy { display: flex; flex-direction: column; gap: 20px; }
.hero__title { font-size: clamp(34px, 4.8vw, 66px); margin: 0; }
.hero__lead { font-size: clamp(16px, 1.3vw, 18px); line-height: var(--lh-body-lg); max-width: 42ch; color: var(--text-body); }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 4px; }
.hero__media { position: relative; }
/* Founder Card als Hero-Objekt: schärfstes Asset, echtes Karten-Format */
.hero__media--card { display: flex; justify-content: center; padding: 12px 0 20px; }
.hero__card-img { width: min(400px, 82%); height: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-slab); transform: rotate(3deg); }

/* ── Step cards ─────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1080px) {
  .steps { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter-page) * -1); padding-inline: var(--gutter-page); }
  .steps::-webkit-scrollbar { display: none; }
  .stepcard { flex: 0 0 min(72vw, 240px); scroll-snap-align: start; }
}
@media (max-width: 720px) { .steps { margin-inline: calc(var(--gutter-page-sm) * -1); padding-inline: var(--gutter-page-sm); } }
.stepcard { text-align: left; display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); cursor: pointer; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.stepcard:hover { transform: translateY(var(--hover-lift)); box-shadow: var(--shadow-md); }
.stepcard__top { display: flex; align-items: center; justify-content: space-between; }
.stepcard__en { font-family: var(--font-headline); text-transform: uppercase; font-size: 22px; line-height: 1; color: var(--text-strong); }
.stepcard__line { font-size: 13px; color: var(--text-muted); }

/* ── Grids ──────────────────────────────────────────────────────── */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 228px), 1fr)); gap: 24px; }
/* Feste Vierer-Reihen (Meistgepflegt, Sealed, Related): 4 / 2 / 1 statt 3+1 */
.pgrid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .pgrid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pgrid--4 { grid-template-columns: 1fr; } }
.pgrid--wide { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .pgrid--wide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pgrid--wide { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: clamp(28px, 4vw, 52px); align-items: center; }
.split--start { align-items: start; }

/* ── Rescue ─────────────────────────────────────────────────────── */
.rescue { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.rescue__media { position: relative; aspect-ratio: 16/10; background: var(--grey-50); overflow: hidden; border-bottom: 1px solid var(--border-subtle); }
.rescue__media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.rescue__log { display: flex; flex-direction: column; gap: 4px; padding: 14px 20px; background: var(--surface-tint); border-bottom: 1px solid var(--blue-200); }
.rescue__tag { position: absolute; left: 10px; top: 10px; font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 9px; letter-spacing: var(--tracking-label); text-transform: uppercase; padding: 4px 8px; border-radius: var(--radius-xs); pointer-events: none; color: var(--white); }
.rescue__tag.before { background: var(--glass-dark); }
.rescue__tag.after { background: var(--red-500); }
.rescue__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.rescue__serials { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-block: 1px solid var(--border-subtle); }

/* ── Announcement of numbers ────────────────────────────────────── */
.stats-panel { position: relative; padding: clamp(26px, 3vw, 44px); background: var(--white); border: var(--border-strong) solid var(--border-emphasis); border-radius: var(--radius-md); overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Pillars ────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
@media (max-width: 1180px) {
  .pillars { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter-page) * -1); padding-inline: var(--gutter-page); }
  .pillars::-webkit-scrollbar { display: none; }
  .pillar { flex: 0 0 min(62vw, 200px); scroll-snap-align: start; }
}
@media (max-width: 720px) { .pillars { margin-inline: calc(var(--gutter-page-sm) * -1); padding-inline: var(--gutter-page-sm); } }
.pillar { display: flex; flex-direction: column; gap: 8px; padding: 20px 16px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); cursor: pointer; text-align: left; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.pillar:hover { transform: translateY(var(--hover-lift)); box-shadow: var(--shadow-md); }
.pillar__name { font-family: var(--font-headline); text-transform: uppercase; font-size: 24px; line-height: 1; color: var(--text-strong); }
.pillar__promise { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 9px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-strong); line-height: 1.5; }
.pillar__desc { font-size: 12px; line-height: 1.5; color: var(--text-muted); }

/* ── Shop / collection ──────────────────────────────────────────── */
.crumbs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs button { background: none; border: none; padding: 0; cursor: pointer; position: relative; }
.crumbs button::after { content: ""; position: absolute; inset: -14px -6px; }
.tabs { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--border-subtle); }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: none; background: none; border: none; padding: 12px 14px; cursor: pointer; font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color var(--dur-fast) var(--ease-out); }
.tab:hover { color: var(--navy-700); }
.tab.is-on { color: var(--navy-700); border-bottom-color: var(--red-500); }
.tab__count { color: var(--text-muted); margin-left: 5px; font-variant-numeric: tabular-nums; }
.toolbar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.toolbar__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.toolbar__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ── Forms ──────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-strong); }
.field input, .field select { height: var(--control-h-lg); padding: 0 14px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); background: var(--white); font-family: var(--font-body); font-size: 15px; color: var(--text-strong); transition: border-color var(--dur-fast) var(--ease-out); }
.field input::placeholder { color: var(--text-muted); }
.field--invalid input, .field--invalid select { border-color: var(--red-500); background: var(--red-50); }
.field--invalid .field__label { color: var(--red-600); }
.field input:hover, .field select:hover { border-color: var(--grey-400); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none' stroke='%230D1B33' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
select.select--sm { height: var(--control-h-sm); font-size: 13px; }
.sortselect { height: 36px; padding: 0 38px 0 12px; border: 1px solid var(--border-default); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13px; color: var(--text-strong); appearance: none; cursor: pointer;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none' stroke='%230D1B33' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
  transition: border-color var(--dur-fast) var(--ease-out); }
.sortselect:hover { border-color: var(--grey-400); }
.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy-700); cursor: pointer; }
.check span { font-size: 14px; color: var(--text-body); }
.check small { display: block; font-size: 12px; color: var(--text-muted); }
.switch { position: relative; width: 44px; height: 24px; flex: none; cursor: pointer; }
.switch input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.switch i { position: absolute; inset: 0; background: var(--grey-300); border-radius: var(--radius-pill); transition: background var(--dur-fast) var(--ease-out); }
.switch i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-xs); transition: transform var(--dur-fast) var(--ease-out); }
.switch input:checked + i { background: var(--navy-700); }
.switch input:checked + i::after { transform: translateX(20px); }
.switch input:focus-visible + i { box-shadow: var(--focus-ring); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-default); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); }
.qty button { width: 40px; height: 46px; display: grid; place-items: center; background: var(--white); border: none; cursor: pointer; color: var(--navy-700); }
.qty button:hover { background: var(--grey-100); }
.qty span { font-family: var(--font-headline); font-size: 21px; width: 40px; text-align: center; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.qty--sm button { width: 40px; height: 42px; }
.qty--sm span { font-size: 17px; width: 36px; }

/* ── Progress bar ───────────────────────────────────────────────── */
.progress { display: flex; flex-direction: column; gap: 6px; }
.progress__track { height: 6px; background: var(--grey-200); border-radius: 3px; overflow: hidden; }
.progress__fill { display: block; height: 100%; background: var(--blue-500); border-radius: 3px; transition: width var(--dur-slow) var(--ease-out); }
.progress__label { font-size: 12px; color: var(--text-muted); }

/* ── PDP ────────────────────────────────────────────────────────── */
.pdp__stage { position: relative; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); background: var(--white); box-shadow: var(--shadow-sm); }
.pdp__stage img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp__thumb { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid var(--border-subtle); background: var(--grey-50); padding: 0; transition: border-color var(--dur-fast) var(--ease-out); }
.pdp__thumb:hover { border-color: var(--grey-400); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.pdp__thumb.is-on { border-color: var(--navy-700); }
.pdp__labnote { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--surface-tint); border-radius: var(--radius-sm); }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border-subtle); }
.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--white); border-top: 1px solid var(--border-subtle); box-shadow: 0 -8px 24px rgba(13,27,51,.08); transform: translateY(100%); visibility: hidden; transition: transform var(--dur-base) var(--ease-out), visibility 0s var(--dur-base); }
.buybar.is-visible { transform: none; visibility: visible; transition: transform var(--dur-base) var(--ease-out); }
.buybar__inner { display: flex; align-items: center; gap: 14px; padding-block: 12px; }
.usercard { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }

/* ── Kit builder ────────────────────────────────────────────────── */
.kitlayout { display: flex; gap: clamp(20px, 2.5vw, 36px); flex-wrap: wrap; align-items: flex-start; }
.kitmain { flex: 2; min-width: min(100%, 340px); display: flex; flex-direction: column; gap: 18px; }
.kitaside { flex: 1; min-width: min(100%, 300px); position: sticky; top: 96px; }
.kitopt { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: var(--radius-md); cursor: pointer; text-align: left; background: var(--white); border: 1px solid var(--border-subtle); width: 100%; transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); }
.kitopt:hover { border-color: var(--navy-700); }
.kitopt.is-on { background: var(--surface-tint); border: 2px solid var(--navy-700); padding: 11px; }
.kitopt__thumb { width: 52px; height: 52px; flex: none; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-subtle); background: var(--grey-50); display: grid; place-items: center; }
.kitopt__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.kitopt__check { margin-left: auto; width: 22px; height: 22px; flex: none; border-radius: var(--radius-pill); background: var(--navy-700); display: grid; place-items: center; color: var(--white); }

/* ── Cart, checkout ─────────────────────────────────────────────── */
.cartline { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); flex-wrap: wrap; }
.cartline__thumb { width: 64px; height: 64px; flex: none; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-subtle); background: var(--grey-50); cursor: pointer; display: grid; place-items: center; padding: 0; }
.cartline__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; }
.paycard { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--radius-md); cursor: pointer; width: 100%; background: var(--white); border: 1px solid var(--border-subtle); text-align: left; transition: border-color var(--dur-fast) var(--ease-out); }
.paycard:hover { border-color: var(--navy-700); }
.paycard.is-on { background: var(--surface-tint); border: 2px solid var(--navy-700); padding: 15px; }
.radio { width: 20px; height: 20px; flex: none; border-radius: var(--radius-pill); border: 2px solid var(--navy-700); display: grid; place-items: center; }
.radio.is-on::after { content: ""; width: 10px; height: 10px; border-radius: var(--radius-pill); background: var(--red-500); }
.paychip { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; padding: 5px 8px; border: 1px solid var(--border-subtle); border-radius: var(--radius-xs); color: var(--text-muted); white-space: nowrap; }

/* ── Live ───────────────────────────────────────────────────────── */
.live-stage { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; background: var(--navy-800); box-shadow: var(--shadow-xl); }
.live-stage img { width: 100%; height: 100%; object-fit: cover; }
.live-stage__scrim { position: absolute; inset: 0; background: var(--scrim-bottom); pointer-events: none; }
.livebadge { display: inline-flex; align-items: center; gap: 8px; height: 26px; padding: 0 11px; border-radius: var(--radius-xs); background: var(--red-500); color: var(--white); font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label); }
.livebadge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.livebadge__viewers { font-variant-numeric: tabular-nums; letter-spacing: .06em; opacity: .85; }
.glassbar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--glass-dark); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.lotcard { display: flex; flex-direction: column; gap: 14px; padding: 20px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lotcard__head { display: flex; gap: 14px; align-items: flex-start; }
.lotcard__slab { flex: none; width: 132px; }
.lotcard__slab .slab { margin-inline: 0; }
/* Unter 620px stapeln — bei 132px Breite wird die Slab-Typo sonst abgeschnitten */
@media (max-width: 620px) {
  .lotcard__head { flex-direction: column; align-items: stretch; }
  .lotcard__slab { width: 100%; }
  .lotcard__slab .slab { max-width: 240px; }
}
.darkpanel { display: flex; flex-direction: column; gap: 8px; padding: 16px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); }
.bidrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 12px; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); }
.bidrow.is-you { background: rgba(226,28,28,.14); }
.upcard { display: flex; flex-direction: column; gap: 6px; padding: 12px; border-radius: var(--radius-md); cursor: pointer; text-align: left; min-width: 160px; background: transparent; border: 1px solid var(--border-on-dark); transition: background var(--dur-fast) var(--ease-out); }
.upcard:hover { background: rgba(255,255,255,.07); }
.upcard.is-on { background: rgba(255,255,255,.10); border-color: var(--red-500); }
.chatinput { flex: 1; min-width: 0; height: 40px; padding: 0 12px; background: rgba(255,255,255,.06); border: 1px solid var(--border-on-dark); border-radius: var(--radius-sm); color: var(--white); font-family: var(--font-body); font-size: 13px; }
.chatinput::placeholder { color: rgba(255,255,255,.45); }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer { background: var(--surface-dark); color: var(--white); }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 36px; padding-block: clamp(36px, 4vw, 64px) 36px; }
.footer a, .footer .footlink { font-size: 14px; color: rgba(255,255,255,.72); background: none; border: none; padding: 0; text-align: left; cursor: pointer; transition: color var(--dur-fast) var(--ease-out); }
.footer a:hover, .footer .footlink:hover { color: var(--white); }
.footer__rail { background: var(--rail-bg); padding: 14px 20px; display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer__rail-label { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: var(--tracking-label-wide); text-transform: uppercase; color: var(--rail-fg); }
.newsinput { flex: 1; min-width: 150px; height: 44px; padding: 0 14px; background: rgba(255,255,255,.06); border: 1px solid var(--border-on-dark); border-radius: var(--radius-sm); color: var(--white); font-family: var(--font-body); font-size: 14px; }
.newsinput::placeholder { color: rgba(255,255,255,.45); }
.paytag { font-family: var(--font-label); font-weight: var(--fw-bold); font-size: var(--fs-label-sm); letter-spacing: var(--tracking-label); padding: 6px 9px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-xs); color: rgba(255,255,255,.72); }
.paytag--light { border-color: var(--border-subtle); color: var(--text-muted); font-size: var(--fs-label-sm); letter-spacing: .12em; padding: 5px 8px; }

/* ── Overlays ───────────────────────────────────────────────────── */
.overlay { position: fixed; inset: 0; z-index: 90; display: flex; background: rgba(11,21,38,.55); }
.drawer { margin-left: auto; width: min(430px, 100%); height: 100%; background: var(--white); display: flex; flex-direction: column; box-shadow: var(--shadow-xl); animation: dsSlide var(--dur-base) var(--ease-out); }
.drawer__head { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--border-subtle); }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; }
.drawer__foot { padding: 16px 22px; border-top: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 12px; background: var(--white); }
.drawer__added { display: flex; align-items: center; gap: 12px; padding: 12px 22px; background: var(--signal-good-soft); border-bottom: 1px solid var(--border-subtle); }
.drawline { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border-subtle); }
.searchpanel { margin: 72px auto auto; width: min(680px, 92%); max-height: 72vh; background: var(--white); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-xl); animation: dsRise var(--dur-base) var(--ease-out); }
.searchpanel__bar { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border-subtle); }
.searchpanel__input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 17px; color: var(--text-strong); background: none; }
.searchhit { display: flex; align-items: center; gap: 12px; padding: 10px; background: none; border: none; border-radius: var(--radius-sm); cursor: pointer; text-align: left; width: 100%; transition: background var(--dur-fast) var(--ease-out); }
.searchhit:hover { background: var(--grey-100); }
.symptom { padding: 8px 13px; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle); background: var(--white); cursor: pointer; font-size: 13px; color: var(--text-body); font-family: var(--font-body); transition: all var(--dur-fast) var(--ease-out); }
.symptom:hover { border-color: var(--navy-700); color: var(--navy-700); }
.mnav { margin-left: auto; width: 100%; height: 100%; background: var(--white); display: flex; flex-direction: column; animation: dsSlide var(--dur-base) var(--ease-out); }
.mnav__item { display: flex; align-items: center; justify-content: space-between; background: none; border: none; padding: 12px 0; cursor: pointer; border-bottom: 1px solid var(--border-subtle); width: 100%; color: var(--navy-700); }

/* Labels auf Radiance/Tint brauchen eine dunklere Stufe (AA unter 14px) */
.hero .ds-label, .section--tint .ds-label { color: var(--grey-700); }
.hero .eyebrow__num, .section--tint .eyebrow__num { color: var(--red-600); }

/* ── Branded placeholder tile ───────────────────────────────────── */
.mono-tile { width: 100%; height: 100%; display: grid; place-items: center; background: var(--grey-50); }
.mono-tile > img:not(.fam) { width: 34%; height: auto; opacity: .3; padding: 0 !important; }
.mono-tile--lab { background: var(--surface-tint); }

/* ── Empty state ────────────────────────────────────────────────── */
.empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: clamp(40px, 6vw, 80px) 20px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); text-align: center; }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes dsRise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes dsSlide { from { transform: translateX(24px); opacity: .4; } to { transform: none; opacity: 1; } }
@keyframes dsPop { 0% { transform: scale(.6) rotate(-6deg); opacity: 0; } 70% { transform: scale(1.08) rotate(-4deg); opacity: 1; } 100% { transform: scale(1) rotate(-4deg); opacity: 1; } }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .header__nav { display: none; }
  .burger { display: grid; }
}
/* Condition Report: unter 900px ohne Notizspalte, sonst schrumpft der Balken auf 77px */
@media (max-width: 900px) {
  .report__row { grid-template-columns: 78px 1fr 40px; }
  .report__note { display: none; }
}
@media (max-width: 720px) {
  .wrap { padding-inline: var(--gutter-page-sm); }
  .announce__inner { gap: 8px 14px; padding: 9px 16px; }
  .announce__item { font-size: 9px; letter-spacing: .16em; gap: 10px; }
  .buybar__inner { flex-wrap: nowrap; gap: 12px; }
  .buybar__inner .btn { padding-inline: 18px; }
  /* Kit-Zusammenfassung gehoert beim Konfigurieren nach oben, nicht hinter fuenf Karten */
  .kitlayout { flex-direction: column; }
  .kitaside { position: static; order: -1; width: 100%; }
  .kitmain { width: 100%; }
  /* Kleinbuttons und Chips auf Fingergroesse */
  .btn--sm { height: 40px; padding: 0 18px; }
  .chip { padding: 12px 16px; }
  .qty--sm button { width: 44px; height: 44px; }
  .qty--sm span { width: 40px; }
  .iconbtn--sm { width: 44px; height: 44px; }
  select.select--sm, .sortselect { height: 44px; }
  .switch { width: 52px; height: 30px; }
  .switch i::after { width: 24px; height: 24px; }
  .switch input:checked + i::after { transform: translateX(22px); }
}
