/* ============================================================================
   HUNTER SHOP — Product Detail Page
   ========================================================================== */

.breadcrumb { display: flex; flex-wrap: wrap; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--text-soft); padding-block: var(--sp-5); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: 0.5; }

[id^="pdp-"],
#faq,
.section--technical,
[data-pdp-crosssell-section] {
  scroll-margin-top: 146px;
}

.section--compact { padding-block: clamp(2rem, 4vw, 3.5rem); }

.pdp-jumpbar {
  position: sticky;
  top: 86px;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  overflow-x: auto;
  padding: var(--sp-3);
  margin-top: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(1.04);
  box-shadow: none;
  scrollbar-width: none;
}
.pdp-jumpbar::-webkit-scrollbar { display: none; }
.pdp-jumpbar a {
  flex: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  border: 1px solid transparent;
}
.pdp-jumpbar a:hover { color: var(--text-strong); background: var(--mist); border-color: var(--line); }
@media (max-width: 760px) {
  .pdp-jumpbar { top: 70px; border-radius: var(--r-lg); margin-inline: calc(var(--gutter) * -1); }
}
@media (max-width: 560px) {
  .site-header .topbar { display: none; }
}

/* --- GALLERY -------------------------------------------------------------- */
.gallery { display: flex; flex-direction: column; gap: var(--sp-3); }
.gallery__main { position: relative; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: #fff; aspect-ratio: 1; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.gallery__thumbs { display: flex; flex-flow: row wrap; gap: var(--sp-2); }
.gallery__thumbs:empty { display: none; }
.gallery__thumb { width: 64px; flex: none; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1; background: #fff; padding: 0; transition: border-color var(--dur-1) var(--ease-out), opacity var(--dur-1) var(--ease-out); cursor: pointer; }
.gallery__thumb[aria-current="true"] { border-color: var(--text-strong); border-width: 2px; }
.gallery__thumb:hover { border-color: var(--line-strong); opacity: .86; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.gallery__flags { position: absolute; top: var(--sp-4); left: var(--sp-4); display: flex; gap: var(--sp-2); }
.gallery__zoom-note { position: absolute; bottom: var(--sp-3); right: var(--sp-3); font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-soft); background: rgba(255,255,255,0.8); padding: 0.3em 0.6em; border-radius: var(--r-sm); }

/* Amazon/Apple-Aufbau: Vorschaubilder vertikal LINKS neben dem Hauptbild */
.gallery--side { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--sp-3); align-items: start; }
.gallery--side .gallery__thumbs { flex-direction: column; flex-wrap: nowrap; }
.gallery--side .gallery__thumb { width: 52px; }
@media (max-width: 640px) {
  /* schmaler Viewport: Hauptbild oben, Thumbs horizontal darunter */
  .gallery--side { grid-template-columns: 1fr; }
  .gallery--side .gallery__main { order: 1; }
  .gallery--side .gallery__thumbs { order: 2; flex-direction: row; flex-wrap: wrap; }
  .gallery--side .gallery__thumb { width: 56px; }
}
@media (max-width: 860px) {
  .split--pdp > div:first-child { order: 2; }
  .split--pdp .split__aside--sticky { order: 1; position: static; }
}

/* --- PRODUCT INFO --------------------------------------------------------- */
.pinfo__cat { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--brand); }
.pinfo__title { font-family: var(--font-display); font-size: 2rem; line-height: 1.18; margin-block: var(--sp-2) var(--sp-2); }
/* Artikelnummer unter dem Titel — dezente B2B-Referenzzeile (Platzierung wie Reber/Fachhandel) */
.pinfo__artnr { display: inline-flex; align-items: center; gap: var(--sp-1); font-size: var(--fs-sm); color: var(--text-muted); margin: calc(-1 * var(--sp-1)) 0 var(--sp-2); }
.pinfo__artnr[hidden] { display: none; }
.pinfo__artnr-label { color: var(--text-soft); }
.pinfo__artnr-val { font-family: var(--font-mono); font-weight: var(--fw-semi); color: var(--text-strong); letter-spacing: .02em; }
.pinfo__artnr-copy { position: relative; display: inline-grid; place-items: center; width: 1.6rem; height: 1.6rem; padding: 0; border: 0; background: transparent; color: var(--text-soft); cursor: pointer; border-radius: 6px; transition: color .15s ease, background .15s ease; }
.pinfo__artnr-copy svg { width: .95rem; height: .95rem; }
.pinfo__artnr-copy:hover { color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); }
.pinfo__artnr-copy.is-copied { color: var(--brand); }
.pinfo__artnr-copy.is-copied::after { content: "Kopiert"; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 2px; font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--brand); white-space: nowrap; }
.pinfo__fullname { font-size: var(--fs-sm); color: var(--text-soft); margin-bottom: var(--sp-3); }
.pinfo__fullname:empty { display: none; }
.pinfo__pitch { font-size: var(--fs-lg); color: var(--text-muted); margin-bottom: var(--sp-4); }
/* Bewertungs-Zeile (Sterne = PLATZHALTER, siehe JS) — unter dem Titel */
.pinfo__rating { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-3); font-size: var(--fs-sm); }
.pinfo__rating .stars { --pct: 100%; display: inline-block; font-size: 1.02rem; line-height: 1; letter-spacing: 2px; }
.pinfo__rating .stars::before { content: "★★★★★"; background: linear-gradient(90deg, var(--color-cta) var(--pct), var(--line-strong) var(--pct)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.pinfo__rating .rating__val { font-weight: var(--fw-bold); color: var(--text-strong); }
.pinfo__rating .rating__note { color: var(--text-soft); }

/* --- USP-Box (produktspezifische Kern-Nutzen mit grünen Häkchen) ---------- */
.pinfo__usp { list-style: none; display: grid; gap: var(--sp-4); margin: var(--sp-5) 0 0; padding: var(--sp-5); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-sunk); }
.pinfo__usp:empty { display: none; }
.pinfo__usp li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); line-height: var(--lh-snug); }
.pinfo__usp .usp__check { width: 1.2rem; height: 1.2rem; flex: none; color: var(--leaf-600); margin-top: 0.1em; }
.pinfo__usp .usp__txt { display: block; }
.pinfo__usp .usp__head { color: var(--text-strong); font-weight: var(--fw-semi); }
.pinfo__usp .usp__sub { display: block; margin-top: 2px; color: var(--text-muted); font-size: var(--fs-xs); line-height: var(--lh-snug); }

.price-block { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-2); }
.price-block .price__now { font-size: clamp(2rem, 1.5rem + 1.8vw, 2.6rem); }
.price-block .badge--signal { align-self: center; }
.price-finance { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--sp-2); white-space: nowrap; }
.price-finance[hidden] { display: none; }
.price-finance svg { width: 1rem; height: 1rem; flex: none; color: var(--brand); }
/* PayPal-Ratenzahlungs-Hinweis (nur ab 99 €) */
.price-paypal { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.3em; font-size: var(--fs-sm); color: var(--text-muted); margin: 0 0 var(--sp-4); }
.price-paypal[hidden] { display: none; }
.price-paypal .pp-mark { font-family: var(--font-display); font-weight: var(--fw-black); color: #003087; letter-spacing: -0.01em; }
.price-paypal b { color: var(--text-strong); font-weight: var(--fw-bold); }
.price-meta { font-size: var(--fs-sm); color: var(--text-soft); margin-bottom: var(--sp-5); }
.price-meta .lowprice { display: block; font-size: var(--fs-xs); margin-top: var(--sp-1); }

.buy-row { display: flex; gap: var(--sp-3); align-items: stretch; margin-block: var(--sp-5); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--r-md); overflow: hidden; }
.qty button { width: 48px; height: 100%; display: grid; place-items: center; color: var(--text); font-size: 1.3rem; }
.qty button:hover { background: var(--mist); color: var(--brand); }
.qty input { width: 48px; text-align: center; border: 0; min-height: 48px; font-weight: var(--fw-bold); background: transparent; }

.delivery { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--text); font-weight: var(--fw-semi); margin-bottom: var(--sp-4); }
.delivery .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-500); box-shadow: none; flex: none; }
.delivery b { color: var(--leaf-600); }
.delivery--muted { color: var(--text-muted); font-weight: var(--fw-normal); }
.delivery--muted .dot { background: var(--line-strong); }

.assurances { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--line); }
.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; }

.pay-logos { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-5); }
.pay-logos__label { font-size: var(--fs-xs); color: var(--text-soft); }
/* Zahlarten als eigenständige Pills (weiße Logo-Kacheln + markenfarbige Badges) */
.paypills { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.paypill { display: inline-flex; align-items: center; justify-content: center; height: 40px; min-width: 54px; padding: 0 var(--sp-3); border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--text-strong); line-height: 1; overflow: hidden; }
.paypill--logo { padding-inline: var(--sp-3); }
.paypill--logo img { height: 22px; width: auto; display: block; }
/* Visa + Mastercard: Logo füllt die Kachel */
.paypill--fill { padding: 4px 6px; }
.paypill--fill img { height: 30px; }
/* American Express: das echte Logo (blaue Kachel) füllt die Pill randlos */
.paypill--amex { padding: 0; border: 0; background: transparent; }
.paypill--amex img { height: 40px; width: auto; border-radius: var(--r-md); }
.paypill--klarna { background: #ffb3c7; border-color: #ffb3c7; color: #0a0a0a; }
.paypill--text { font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-sm); color: var(--text-muted); }
/* Zahlarten einzeilig direkt unter dem CTA */
.pay-logos--inline .paypills { flex-wrap: nowrap; overflow-x: auto; gap: 5px; scrollbar-width: none; }
.pay-logos--inline .paypills::-webkit-scrollbar { display: none; }
.pay-logos--inline .paypill { flex: none; height: 30px; min-width: 34px; padding-inline: 6px; }
.pay-logos--inline .paypill--logo img { height: 15px; }
.pay-logos--inline .paypill--fill img { height: 21px; }
.pay-logos--inline .paypill--amex img { height: 30px; }
/* „Kauf auf Rechnung" als eigene, zentrierte Zeile unter den 5 Karten-Logos — bleibt einzeilig, wird nicht abgeschnitten */
.pay-logos--inline .paypills--invoice { justify-content: flex-start; margin-top: 6px; overflow: visible; }
.pay-logos--inline .paypill--invoice { gap: 6px; padding-inline: 12px; min-width: 0; color: var(--text-muted); font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-xs); }
.pay-logos--inline .paypill--invoice svg { width: 15px; height: 15px; flex: none; }

/* Bewertungs-Slot (nur mit echten Daten sichtbar) — [hidden] muss display:flex überstimmen */
.pinfo__rating[hidden] { display: none; }

/* Optionaler Service-/Add-on-Slot in der Buy-Box */
.pdp-addon { margin: var(--sp-4) 0; padding: var(--sp-4); border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-sunk); }
.pdp-addon[hidden] { display: none; }

/* --- CONVERSION DECISION MODULE ------------------------------------------ */
.pdp-decision {
  display: grid;
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.pdp-decision__intro {
  position: sticky;
  top: 154px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  border: 0;
  box-shadow: none;
}
.pdp-decision__intro h2 { color: var(--text-strong); margin-block: var(--sp-2) var(--sp-3); }
.pdp-decision__intro p:not(.eyebrow) { color: var(--text-muted); line-height: var(--lh-relaxed); }
.pdp-decision__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pdp-checklist,
.pdp-proof,
.pdp-advice {
  min-height: 100%;
  padding: var(--sp-6);
  border: 0;
  border-radius: 0;
  background: var(--bg-surface);
}
.pdp-checklist h3,
.pdp-proof h3,
.pdp-advice h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.pdp-checklist ul { display: grid; gap: var(--sp-3); }
.pdp-checklist li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text-muted);
  line-height: var(--lh-normal);
}
.pdp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--leaf-500);
  box-shadow: none;
}
.pdp-checklist--no li::before { background: var(--text-soft); box-shadow: none; }
.pdp-proof { background: #fff; }
.pdp-proof div {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--line);
}
.pdp-proof div:last-child { border-bottom: 0; }
.pdp-proof span { color: var(--text-muted); font-size: var(--fs-sm); }
.pdp-proof b { font-family: var(--font-mono); text-align: right; color: var(--text-strong); }
.pdp-advice p { color: var(--text-muted); margin-bottom: var(--sp-4); }
@media (max-width: 980px) {
  .pdp-decision { grid-template-columns: 1fr; }
  .pdp-decision__intro { position: static; }
}
@media (max-width: 680px) {
  .pdp-decision__grid { grid-template-columns: 1fr; }
}

/* --- SECTIONS BELOW ------------------------------------------------------- */
.howto { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.howto__visual { border-radius: var(--r-2xl); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
@media (max-width: 800px) { .howto { grid-template-columns: 1fr; } }

.video-embed { position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 16/9; background: var(--ink-800); display: grid; place-items: center; border: 1px solid var(--line-invert); }
.video-embed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.video-embed__play { position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%; background: var(--cta); color: var(--cta-ink); display: grid; place-items: center; box-shadow: none; transition: transform var(--dur-2) var(--ease-spring); }
.video-embed__play:hover { transform: scale(1.03); }
.video-embed__play svg { width: 2rem; height: 2rem; margin-left: 4px; }
.video-embed__label { position: absolute; bottom: var(--sp-5); left: var(--sp-5); z-index: 2; color: #fff; font-weight: var(--fw-semi); }

/* --- REDAKTIONELLE LANGABSCHNITTE ----------------------------------------- */
.pdp-feature { display: grid; grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.pdp-feature--flip .pdp-feature__media { order: 2; }
.pdp-feature__media { position: sticky; top: 154px; border-radius: var(--r-2xl); overflow: hidden; border: 1px solid var(--line); background: var(--mist); aspect-ratio: 4/3; box-shadow: var(--sh-md); }
.pdp-feature__media img { width: 100%; height: 100%; object-fit: contain; padding: var(--sp-5); mix-blend-mode: multiply; }
.pdp-feature__text h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); margin-bottom: var(--sp-4); }
.pdp-feature__text p { color: var(--text-muted); font-size: var(--fs-lg); line-height: 1.72; margin-bottom: var(--sp-4); }
.pdp-feature__text p:last-child { margin-bottom: 0; }
@media (max-width: 800px) { .pdp-feature { grid-template-columns: 1fr; } .pdp-feature__media { position: static; } .pdp-feature--flip .pdp-feature__media { order: 0; } }

.pdp-prose { max-width: 74ch; margin-inline: auto; }
.pdp-prose h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); margin-bottom: var(--sp-4); }
.pdp-prose p { color: var(--text-muted); font-size: var(--fs-lg); line-height: 1.72; margin-bottom: var(--sp-4); }
.pdp-prose p:last-child { margin-bottom: 0; }
.pdp-prose .eyebrow { margin-bottom: var(--sp-2); }

.pdp-pull { border-left: 1px solid var(--line-strong); padding: var(--sp-1) 0 var(--sp-1) var(--sp-5); margin: var(--sp-5) 0; font-family: var(--font-display); font-size: var(--fs-lg); font-weight: var(--fw-semi); color: var(--text-strong); line-height: var(--lh-snug); }

/* --- WARUM-BEI-UNS-BAND (universell) -------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why { background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); }
.why__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-md); background: var(--hunter-100); color: var(--brand); border: 1px solid rgba(0,101,138,0.16); margin-bottom: var(--sp-3); }
.why__ic svg { width: 1.5rem; height: 1.5rem; }
.why h3 { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-bold); margin-bottom: var(--sp-2); }
.why p { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-normal); }

/* Highlight-Karten etwas präsenter (Kennzahl groß) */
.highlights .highlight h3 { font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); }

/* Review-Zusammenfassung */
.review-summary { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; padding: var(--sp-6); background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-xl); margin-bottom: var(--sp-6); }
.review-summary__score { text-align: center; }
.review-summary__score b { font-family: var(--font-display); font-size: 3.5rem; font-weight: var(--fw-black); line-height: 1; color: var(--text-strong); }
.review-bars { display: grid; gap: var(--sp-2); min-width: 200px; }
.review-bar { display: grid; grid-template-columns: 2.5rem 1fr 2.5rem; align-items: center; gap: var(--sp-3); font-size: var(--fs-xs); color: var(--text-muted); }
.review-bar .track { height: 7px; border-radius: var(--r-pill); background: var(--slate); overflow: hidden; }
.review-bar .track span { display: block; height: 100%; background: var(--signal-500); }
@media (max-width: 560px) { .review-summary { grid-template-columns: 1fr; text-align: center; } }

/* --- PDP LONGFORM 2.0: echte Abschnittsdramaturgie ------------------------ */
.pdp-briefing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(1.5rem, 4.5vw, 4rem);
  align-items: start;
}
.pdp-briefing__copy,
.pdp-principle__copy,
.pdp-flow__copy,
.pdp-guard__copy,
.pdp-feature-row__copy {
  max-width: 78ch;
}
.pdp-briefing__copy h2,
.pdp-principle__head h2,
.pdp-flow__head h2,
.pdp-guard__copy h2,
.pdp-lab__copy h2,
.pdp-feature-row__copy h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
}
.pdp-briefing__copy p,
.pdp-principle__copy p,
.pdp-flow__copy p,
.pdp-guard__copy p,
.pdp-lab__copy p,
.pdp-feature-row__copy p {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  line-height: 1.74;
  margin-bottom: var(--sp-4);
}
.pdp-briefing__side {
  position: sticky;
  top: 154px;
  display: grid;
  gap: var(--sp-4);
}
.pdp-briefing__side img,
.pdp-feature-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: none;
  mix-blend-mode: multiply;
}
.pdp-side-note,
.pdp-principle__facts,
.pdp-guard__card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  box-shadow: none;
  padding: var(--sp-5);
}
.pdp-side-note b,
.pdp-principle__facts b,
.pdp-lab__specs b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--text-strong);
  margin-bottom: var(--sp-4);
}
.pdp-side-note ul,
.pdp-principle__facts ul,
.pdp-guard__card ul {
  display: grid;
  gap: var(--sp-3);
}
.pdp-side-note li,
.pdp-principle__facts li,
.pdp-guard__card li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--sp-3);
  align-items: start;
  color: var(--text-muted);
  line-height: var(--lh-normal);
}
.pdp-side-note li span,
.pdp-principle__facts li span,
.pdp-guard__card li span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--r-pill);
  background: var(--mist);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
}

.pdp-principle__head {
  max-width: 880px;
  margin-bottom: var(--sp-6);
}
.pdp-principle__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.pdp-principle__facts {
  border-left: 1px solid var(--line);
}

.pdp-flow__head {
  max-width: 900px;
  margin-bottom: var(--sp-7);
}
.pdp-flow__body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.pdp-flow__steps {
  counter-reset: flow;
  display: grid;
  gap: var(--sp-4);
  position: sticky;
  top: 154px;
}
.pdp-flow__steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  box-shadow: none;
}
.pdp-flow__steps span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  background: var(--mist);
  color: var(--text-strong);
  font-family: var(--font-mono);
}
.pdp-flow__steps p {
  margin: 0;
  color: var(--text-muted);
  line-height: var(--lh-normal);
}

.pdp-lab {
  background: var(--bg);
  color: var(--text);
  border-block: 1px solid var(--line);
}
.pdp-lab .eyebrow { color: var(--text-soft); }
.pdp-lab__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr) minmax(250px, 0.44fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: start;
}
.pdp-lab__visual {
  border-radius: var(--r-xl);
  background: var(--mist);
  border: 1px solid var(--line);
  min-height: 280px;
  display: grid;
  place-items: center;
}
.pdp-lab__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: var(--sp-6);
}
.pdp-lab__copy h2 { color: var(--text-strong); }
.pdp-lab__copy p { color: var(--text-muted); }
.pdp-lab__specs {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
}
.pdp-lab__specs b { color: var(--text-strong); }
.pdp-lab__specs div,
.pdp-feature-row__media div div {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
  padding-block: var(--sp-2);
  border-top: 1px solid var(--line);
}
.pdp-lab__specs span { color: var(--text-soft); font-size: var(--fs-xs); }
.pdp-lab__specs div b,
.pdp-feature-row__media div b {
  font-family: var(--font-mono);
  color: var(--text-strong);
}

.pdp-guard__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.pdp-guard__card {
  position: sticky;
  top: 154px;
  border-color: var(--line);
  background: #fff;
}
.pdp-guard__card > span {
  display: inline-flex;
  margin-bottom: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
}
.pdp-guard__card > b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-5);
  color: var(--text-strong);
}

.pdp-feature-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.pdp-feature-row__media {
  display: grid;
  gap: var(--sp-4);
}
.pdp-feature-row__media > div {
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--mist);
}
.pdp-feature-row__media div div {
  border-top-color: var(--line);
}
.pdp-feature-row__media div span {
  color: var(--text-muted);
  font-size: var(--fs-xs);
}
.pdp-feature-row__media div b {
  color: var(--text-strong);
}

.section--technical {
  background: var(--bg-sunk);
  border-block: 1px solid var(--line);
}
.section--technical .specs {
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.specs-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.specs-lab__hero {
  position: sticky;
  top: 154px;
  grid-row: 1 / span 2;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  box-shadow: none;
}
.specs-lab__hero h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  margin-block: var(--sp-2) var(--sp-3);
}
.specs-lab__hero p {
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}
.specs-lab__top {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.specs-lab__top article {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-surface);
  box-shadow: none;
}
.specs-lab__top span {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.specs-lab__top b {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + .75vw, 1.75rem);
  line-height: var(--lh-snug);
  color: var(--text-strong);
}
.specs-lab__table {
  grid-column: 2;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-surface);
}

/* --- Händler-Vertrauen als Prozess statt Kartenwand ----------------------- */
.dealer-head {
  max-width: 860px;
}
.dealer-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}
.dealer-proof__hero {
  padding: var(--sp-7);
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.dealer-proof__hero .why__ic {
  background: var(--mist);
  color: var(--text-strong);
  border-color: var(--line);
}
.dealer-proof__hero h3 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
}
.dealer-proof__hero p {
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}
.dealer-proof__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}
.dealer-step {
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
}
.dealer-step span {
  display: inline-flex;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-soft);
}
.dealer-step h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  margin-bottom: var(--sp-2);
}
.dealer-step p {
  color: var(--text-muted);
  line-height: var(--lh-normal);
}

/* --- Cross-Sell als System-Builder ---------------------------------------- */
.pdp-system-builder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.pdp-system-builder__intro {
  position: sticky;
  top: 154px;
  padding: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
}
.pdp-system-builder__intro h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  margin-block: var(--sp-2) var(--sp-3);
}
.pdp-system-builder__intro p {
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}
.pdp-system-builder__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
}

/* FAQ unten stärker fokussieren */
[data-pdp-faq-section] .accordion {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: none;
}
[data-pdp-faq-section] .acc-item {
  padding-inline: var(--sp-5);
}

@media (max-width: 1080px) {
  .pdp-lab__grid,
  .specs-lab,
  .dealer-proof,
  .pdp-system-builder {
    grid-template-columns: 1fr;
  }
  .pdp-lab__specs,
  .specs-lab__hero,
  .dealer-proof__hero,
  .pdp-system-builder__intro {
    position: static;
  }
  .specs-lab__hero,
  .specs-lab__top,
  .specs-lab__table {
    grid-column: auto;
    grid-row: auto;
  }
  .pdp-system-builder__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .pdp-briefing__grid,
  .pdp-principle__grid,
  .pdp-flow__body,
  .pdp-guard__grid,
  .pdp-feature-row__inner {
    grid-template-columns: 1fr;
  }
  .pdp-briefing__side,
  .pdp-flow__steps,
  .pdp-guard__card {
    position: static;
  }
  .pdp-flow__steps { order: -1; }
}
@media (max-width: 640px) {
  .pdp-briefing__side img,
  .pdp-feature-row__media img,
  .pdp-lab__visual img {
    padding: var(--sp-4);
  }
  .specs-lab__top,
  .dealer-proof__timeline,
  .pdp-system-builder__cards {
    grid-template-columns: 1fr;
  }
  .pdp-side-note li,
  .pdp-principle__facts li,
  .pdp-guard__card li,
  .pdp-flow__steps li {
    grid-template-columns: 2.5rem 1fr;
  }
}

/* ==========================================================================
   PDP BEST-PRACTICE LAYER
   Ziel: High-converting Ecom-Struktur statt Weißwüste oder SaaS-Spielerei.
   ========================================================================== */

main[data-pdp-root] {
  background: var(--bg);
}

main[data-pdp-root] > .container.container--wide:first-child {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* --- DREISPALTIGER ABOVE-THE-FOLD (Kress-Aufbau): Galerie | Info | Buy-Box --- */
.pdp-layout {
  position: relative;
  display: grid;
  align-items: start;
  gap: var(--sp-6) clamp(1.5rem, 3vw, 3rem);
  /* Spaltenbreiten 30 / 37,5 / 32,5 */
  grid-template-columns: minmax(0, 30fr) minmax(0, 37.5fr) minmax(0, 32.5fr);
  grid-template-areas: "gallery info buy";
  padding-bottom: clamp(2rem, 3vw, 3rem);
}
.pdp-layout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}
.pdp-gallery-col { grid-area: gallery; position: sticky; top: calc(72px + var(--sp-4)); align-self: start; }
.pdp-info-col { grid-area: info; display: flex; flex-direction: column; gap: 1.25rem; }
/* einheitlicher 1.25rem-Rhythmus zwischen den Info-Widgets (margins raus, gap regelt) */
.pdp-info-col > * { margin-top: 0; margin-bottom: 0; }
.pdp-buybox { grid-area: buy; }

/* Buy-Box: abgesetzte, sticky Kauf-Karte (rechte Spalte) */
.pdp-buybox {
  position: sticky;
  top: calc(72px + var(--sp-4));
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: 0 22px 70px -58px rgba(17, 20, 24, 0.36);
}

/* Tablet: 2 Spalten — Galerie links, Info + Buy-Box rechts gestapelt */
@media (max-width: 1080px) {
  .pdp-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    grid-template-areas: "gallery info" "gallery buy";
  }
  .pdp-buybox { position: static; }
  .pdp-gallery-col { position: static; }
}

/* Mobil: 1 Spalte — Galerie, Info, Buy-Box gestapelt */
@media (max-width: 760px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "info" "buy";
  }
}

.gallery__main {
  background:
    radial-gradient(circle at 50% 44%, #fff 0 46%, #f7f8f9 100%);
  box-shadow: 0 22px 70px -58px rgba(17, 20, 24, 0.36);
}

.gallery__thumb[aria-current="true"] {
  box-shadow: inset 0 0 0 1px var(--text-strong);
}

.pinfo__cat {
  color: var(--color-primary);
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
}

.pinfo__title {
  max-width: none;
  letter-spacing: -0.02em;
}

.pinfo__pitch {
  max-width: none;
  font-size: var(--fs-base);
  /* Trennlinie nach dem Beratungs-Kasten */
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

/* Buy-Row lebt jetzt IN der Buy-Box-Karte — kein eigener Rahmen mehr */
.buy-row {
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
.buy-row .qty { flex: none; }
.buy-row .btn--cta { min-height: 56px; flex: 1; }
/* Buy-Box (schmale Spalte): Menge + CTA gestapelt → nie Überlauf über den Kasten */
.pdp-buybox .buy-row { flex-direction: column; align-items: stretch; gap: var(--sp-3); margin: var(--sp-5) 0; }
.pdp-buybox .buy-row .qty { align-self: flex-start; }
.pdp-buybox .buy-row .btn--cta { width: 100%; flex: none; }

/* Assurances in der Buy-Box: nur Trennlinie, keine zweite Box */
.assurances {
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
/* Kompaktes 2×2-Trust-Grid (Kress-Aufbau) */
.assurances--grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-3); }
.assurances--grid .assurance { align-items: flex-start; font-size: var(--fs-xs); gap: var(--sp-2); line-height: var(--lh-snug); }
.assurances--grid .assurance svg { width: 1.15rem; height: 1.15rem; margin-top: 1px; }

.pdp-jumpbar {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--r-xl);
  box-shadow: 0 14px 44px -36px rgba(17,20,24,.28);
}

.section {
  position: relative;
}

[data-pdp-highlights-section],
.section--compact,
.pdp-briefing,
.pdp-principle,
.pdp-flow,
.pdp-lab,
.pdp-guard,
.pdp-feature-row,
.section--technical,
.section--ground,
[data-pdp-crosssell-section],
[data-pdp-faq-section] {
  border-top: 1px solid var(--line);
}

.section--compact {
  background: #f7f9fb;
}

.pdp-decision {
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: #fff;
  box-shadow: 0 22px 80px -66px rgba(17,20,24,.34);
}

.pdp-decision__intro {
  padding: var(--sp-5);
  border-right: 1px solid var(--line);
}

.pdp-decision__intro h2 {
  max-width: 10ch;
}

.pdp-decision__grid {
  border-radius: var(--r-xl);
}

.pdp-checklist,
.pdp-proof,
.pdp-advice {
  background: #fff;
}

.pdp-checklist--yes {
  background: #fbfdfc;
}

.pdp-checklist--no {
  background: #fbfbfa;
}

.pdp-proof {
  background: #f8fafb;
}

[data-pdp-highlights-section] {
  background: #fff;
}

.highlights {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: #fff;
}

.highlight {
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  background: #f8f9fa;
  border: 1px solid transparent;
}

.highlight__icon {
  background: #fff;
  color: var(--brand);
  border-color: var(--line);
}

.pdp-briefing,
.pdp-flow,
.pdp-feature-row {
  background: #fff;
}

.pdp-principle,
.pdp-guard,
.section--ground,
[data-pdp-faq-section] {
  background: #f7f9fb;
}

.pdp-lab,
.section--technical {
  background: #f3f6f8;
}

.pdp-briefing__grid,
.pdp-principle__grid,
.pdp-flow__body,
.pdp-lab__grid,
.pdp-guard__grid,
.pdp-feature-row__inner,
.specs-lab,
.dealer-proof,
.pdp-system-builder {
  position: relative;
}

.pdp-briefing__copy,
.pdp-principle__head,
.pdp-flow__head,
.pdp-guard__copy,
.pdp-lab__copy,
.pdp-feature-row__copy {
  padding-top: var(--sp-2);
}

/* Verlaufsstrich entfernt — die Eyebrow (mit Standard-Strich) übernimmt die Rolle konsistent zur restlichen Seite */
.pdp-briefing__copy::before,
.pdp-principle__head::before,
.pdp-flow__head::before,
.pdp-guard__copy::before,
.pdp-lab__copy::before,
.pdp-feature-row__copy::before {
  display: none;
}

.pdp-briefing__side img,
.pdp-feature-row__media img,
.pdp-lab__visual,
.pdp-side-note,
.pdp-principle__facts,
.pdp-flow__steps li,
.pdp-guard__card,
.pdp-feature-row__media > div,
.pdp-lab__specs,
.specs-lab__hero,
.specs-lab__top article,
.specs-lab__table,
.dealer-proof__hero,
.dealer-step,
.pdp-system-builder__intro,
[data-pdp-faq-section] .accordion {
  box-shadow: 0 18px 60px -52px rgba(17,20,24,.34);
}

.pdp-side-note,
.pdp-principle__facts,
.pdp-guard__card,
.pdp-lab__specs,
.specs-lab__hero,
.dealer-proof__hero,
.pdp-system-builder__intro {
  background: #fff;
}

.pdp-flow__steps li {
  background: #fff;
  border-color: var(--line);
}

.pdp-flow__steps span {
  background: var(--brand);
  color: #fff;
}

.pdp-lab__visual {
  background: #fff;
}

.pdp-lab__specs div b,
.pdp-feature-row__media div b,
.specs-lab__top b {
  color: var(--brand-deep);
}

.section--technical {
  background:
    linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%);
}

.specs-lab__hero,
.specs-lab__top article,
.specs-lab__table {
  border-color: #dce5ea;
}

.dealer-proof {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: #fff;
}

.dealer-proof__hero {
  background: #111418;
  border-color: #111418;
}

.dealer-proof__hero h3,
.dealer-proof__hero .why__ic {
  color: #fff;
}

.dealer-proof__hero p {
  color: rgba(255,255,255,.72);
}

.dealer-proof__hero .why__ic {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
}

.dealer-step {
  background: #f8f9fa;
}

[data-pdp-crosssell-section] {
  background: #fff;
}

.pdp-system-builder__intro {
  background: #f7f9fb;
}

.pdp-system-builder__cards .pcard {
  border-radius: var(--r-xl);
}

[data-pdp-faq-section] .accordion {
  background: #fff;
}

.sticky-atc {
  box-shadow: 0 -18px 54px -42px rgba(17,20,24,.28);
}

.sticky-atc .btn--cta {
  border-radius: var(--r-xl);
}

@media (max-width: 980px) {
  .pdp-decision__intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pdp-decision__intro h2,
  .pinfo__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .buy-row {
    padding: var(--sp-2);
    gap: var(--sp-2);
  }
  .pdp-decision,
  .dealer-proof,
  .highlights {
    border-radius: var(--r-xl);
    padding: var(--sp-3);
  }
  .pdp-decision__intro,
  .pdp-checklist,
  .pdp-proof,
  .pdp-advice {
    padding: var(--sp-4);
  }
}

/* ============================================================================
   STARTSEITEN-VOKABULAR AUF DER PDP — Split-Head, dunkles Stat-Band, Conversion-CTA
   ========================================================================== */

/* Split-Section-Head: Eyebrow/Headline links, Lede rechts (wie Startseite) */
/* Split-Head nutzt die Basis-Definition der Startseite (base.css); hier nur der Wrapper */
.section-head--split > div { display: flex; flex-direction: column; gap: var(--sp-2); }

/* --- TYPOGRAFIE-KONSISTENZ: alle Sektions-Headlines auf Startseiten-Größe ------ */
main[data-pdp-root] .section-head h2,
.pdp-briefing__copy h2, .pdp-principle__head h2, .pdp-flow__head h2,
.pdp-guard__copy h2, .pdp-lab__copy h2, .pdp-feature-row__copy h2,
.pdp-decision__intro h2 {
  font-size: clamp(1.9rem, 1.25rem + 2.3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
}

/* --- STAT-BAND: Lede weiß, Keyzahlen kleiner als Headline, leichter Verlauf-HG -- */
.pdp-statband-section {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(28,157,225,0.16), transparent 55%),
    radial-gradient(70% 110% at 0% 100%, rgba(15,84,120,0.40), transparent 60%),
    var(--color-ground);
}
.pdp-statband-section .lede { color: rgba(255,255,255,0.92); }
.pdp-stat__val { font-size: clamp(1.4rem, 1rem + 1.5vw, 2.1rem); }

/* --- KAUFENTSCHEIDUNG: 3 Spalten, kein Kasten, Vergleichstabelle ------------- */
.section--compact { background: transparent; }
/* Container-Grid der alten Struktur auflösen — sonst wird das neue 3-Spalten-Grid gequetscht */
.pdp-decision { display: block; max-width: none; padding: 0; border: 0; background: transparent; box-shadow: none; }
.pdp-decision__cols { display: grid; grid-template-columns: minmax(0,0.92fr) minmax(0,1.25fr) minmax(0,0.92fr); gap: clamp(1.5rem, 3vw, 2.75rem); align-items: start; }
.pdp-decision__intro { max-width: none; position: static; }
.pdp-decision__intro h2 { margin: var(--sp-2) 0 var(--sp-3); }
.pdp-decision__intro p:not(.eyebrow) { color: var(--text-muted); line-height: var(--lh-relaxed); }
.pdp-compare { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.pdp-compare__col { padding: var(--sp-5); }
.pdp-compare__col--no { border-left: 1px solid var(--line); }
.pdp-compare__col h3 { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-base); margin-bottom: var(--sp-4); }
.pdp-compare__col h3 svg { width: 1.1em; height: 1.1em; flex: none; }
.pdp-compare__col--yes h3 svg { color: var(--leaf-600); }
.pdp-compare__col--no h3 svg { color: var(--err, #d0454c); }
.pdp-compare__col ul { list-style: none; display: grid; gap: var(--sp-3); margin: 0; padding-left: 20px; }
.pdp-compare__col li { position: relative; padding-left: var(--sp-4); font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-snug); }
.pdp-compare__col li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }
.pdp-compare__col--yes li::before { background: var(--leaf-500); }
.pdp-decision__side { display: flex; flex-direction: column; gap: var(--sp-4); }
@media (max-width: 980px) { .pdp-decision__cols { grid-template-columns: 1fr; } .pdp-compare { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pdp-compare { grid-template-columns: 1fr; } .pdp-compare__col--no { border-left: 0; border-top: 1px solid var(--line); } }

/* --- CROSS-SELL: klassisches 4er-Produktgrid ------------------------------- */
.pdp-crosssell-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
@media (max-width: 1080px) { .pdp-crosssell-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-crosssell-grid { grid-template-columns: 1fr; } }

/* --- Vergleich ähnlicher Produkte (Tabelle) ------------------------------ */
.pdp-simcompare { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; }
.pdp-simcompare__table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 680px; table-layout: fixed; }
.pdp-simcompare__table th, .pdp-simcompare__table td { padding: var(--sp-4); text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); word-break: break-word; }
.pdp-simcompare__table tbody tr:last-child th, .pdp-simcompare__table tbody tr:last-child td { border-bottom: 0; }
.pdp-simcompare__corner { width: 19%; }
.pdp-simcompare__table thead th { vertical-align: bottom; }
.pdp-simcompare__table tbody th[scope="row"] { font-weight: var(--fw-semi); color: var(--text-muted); font-size: var(--fs-sm); white-space: nowrap; }
.pdp-simcompare__table td { font-size: var(--fs-sm); color: var(--text-strong); }
.pdp-simcompare__prod { display: flex; flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
.pdp-simcompare__thumb { width: 84px; height: 84px; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; display: grid; place-items: center; overflow: hidden; }
.pdp-simcompare__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.pdp-simcompare__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--text-strong); line-height: var(--lh-snug); }
.pdp-simcompare__badge { display: inline-block; margin-bottom: var(--sp-2); padding: 3px var(--sp-2); border-radius: 999px; background: var(--color-secondary); color: #fff; font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.01em; }
.pdp-simcompare__table .is-current { background: color-mix(in srgb, var(--color-secondary) 8%, transparent); }
.pdp-simcompare__table thead .is-current { border-top: 2px solid var(--color-secondary); }
.pdp-simcompare__pricerow td { font-family: var(--font-display); font-weight: var(--fw-black); font-size: var(--fs-base); color: var(--text-strong); }
.pdp-simcompare__na { color: var(--text-soft); }
.pdp-simcompare__ctarow td { padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
.pdp-simcompare__ctarow .btn { width: 100%; }
.pdp-simcompare__here { display: inline-block; font-size: var(--fs-xs); color: var(--text-soft); font-weight: var(--fw-semi); }

/* --- Wird oft zusammengekauft (Amazon-Muster, interaktiv) ---------------- */
.pdp-fbt { display: flex; flex-wrap: wrap; align-items: stretch; gap: clamp(1.5rem, 3vw, 2.75rem); border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--bg-sunk); padding: clamp(1.5rem, 3vw, 2.5rem); }
.pdp-fbt__row { display: flex; align-items: stretch; gap: var(--sp-2); flex: 1 1 560px; flex-wrap: wrap; }
.pdp-fbt__item { flex: 1 1 0; min-width: 126px; }
.pdp-fbt__card { display: flex; flex-direction: column; height: 100%; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; transition: border-color var(--dur-1) var(--ease-out), opacity var(--dur-1) var(--ease-out); }
.pdp-fbt__item:not(.is-off) .pdp-fbt__card:hover { border-color: color-mix(in srgb, var(--color-secondary) 45%, var(--line)); }
.pdp-fbt__item.is-off .pdp-fbt__card { opacity: 0.45; }
/* Produktbild füllt die volle Kartenbreite, sitzt bündig oben (kein Innenabstand) */
.pdp-fbt__thumb { width: 100%; aspect-ratio: 1; background: #fff; border-bottom: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.pdp-fbt__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.pdp-fbt__body { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; flex: 1 1 auto; width: 100%; padding: var(--sp-3) var(--sp-4) 1.1rem; }
.pdp-fbt__name { font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--text-strong); line-height: var(--lh-snug); min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.pdp-fbt__price { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-strong); margin-top: auto; padding-top: var(--sp-3); }
.pdp-fbt__qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; margin-top: var(--sp-3); overflow: hidden; }
.pdp-fbt__qbtn { width: 28px; height: 28px; display: grid; place-items: center; background: none; border: 0; color: var(--text); font-size: 1.1rem; line-height: 1; cursor: pointer; transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out); }
.pdp-fbt__qbtn:hover { background: var(--mist); color: var(--color-primary); }
.pdp-fbt__qval { min-width: 26px; text-align: center; font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; font-size: var(--fs-sm); }
.pdp-fbt__plus { flex: none; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--text-soft); font-weight: var(--fw-bold); }
.pdp-fbt__summary { flex: 0 1 288px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: var(--sp-2); min-width: 205px; padding: var(--sp-5); border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; align-self: center; }
.pdp-fbt__count { font-size: var(--fs-sm); color: var(--text-muted); }
.pdp-fbt__count b { color: var(--text-strong); font-family: var(--font-display); }
.pdp-fbt__total { display: flex; flex-direction: column; align-items: center; margin-top: var(--sp-2); }
.pdp-fbt__total span { font-size: var(--fs-sm); color: var(--text-muted); }
.pdp-fbt__total b { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.1rem); color: var(--text-strong); line-height: 1; }
.pdp-fbt__paypal { font-size: var(--fs-sm); color: var(--text-muted); }
.pdp-fbt__paypal b { color: var(--text-strong); }
.pdp-fbt__paypal[hidden] { display: none; }
.pdp-fbt__add { width: 100%; margin-top: var(--sp-3); }
.pdp-fbt__reassure { display: block; font-size: var(--fs-xs); color: var(--text-soft); text-align: center; margin-top: var(--sp-1); }
@media (max-width: 760px) {
  .pdp-fbt__summary { flex-basis: 100%; }
  .pdp-fbt__plus { display: none; }
}

/* --- Lieferung & Service (Info-Spalte, allgemeingültig) ------------------- */
.pinfo__service { padding-block: 1.25rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pinfo__service-head { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-base); color: var(--text-strong); margin-bottom: var(--sp-4); }
.pinfo__service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.pinfo__service-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--text-muted); line-height: var(--lh-snug); }
.pinfo__service-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--bg-sunk); flex: none; }
.pinfo__service-ic svg { width: 1.5rem; height: 1.5rem; }

/* --- Zebra-Hintergrund der redaktionellen Content-Sektionen (weiß/grau strikt) -
   überschreibt die variant-eigenen Hintergründe von pdp-lab/guard/feature-row --- */
main[data-pdp-root] [data-pdp-sections] > section { background: var(--bg); }
/* „grau" der Zebra = ganz helles CI-Blau (wie der Verlauf der „Passt dazu"-Sektion) */
main[data-pdp-root] [data-pdp-sections] > section.section--sunk { background: color-mix(in srgb, var(--color-secondary) 7%, #fff); }

/* --- Redaktionelles Editorial-System (ruhig, konsistent, alternierend) ---- */
.pdp-ed__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pdp-ed--flip .pdp-ed__copy { order: 2; }
.pdp-ed--flip .pdp-ed__aside { order: 1; }
.pdp-ed__narrow { max-width: 78ch; margin-inline: auto; }
.pdp-editorial .pdp-lead { font-size: var(--fs-lg); color: var(--text-strong); line-height: var(--lh-snug); }
/* Lifestyle-Bild 16:9, formatfüllend */
.pdp-ed__media { margin: 0; border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--bg-sunk); aspect-ratio: 16 / 9; overflow: hidden; }
.pdp-ed__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-ed__card { border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; padding: clamp(1.5rem, 3vw, 2rem); }
.pdp-ed__card-head { display: block; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-base); margin-bottom: var(--sp-4); color: var(--text-strong); }
.pdp-ed__specs > div { display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-4); padding: var(--sp-3) 0; border-top: 1px solid var(--line); font-size: var(--fs-sm); }
.pdp-ed__specs > div:first-child { border-top: 0; padding-top: 0; }
.pdp-ed__specs span { color: var(--text-muted); }
.pdp-ed__specs b { color: var(--text-strong); font-family: var(--font-display); font-variant-numeric: tabular-nums; text-align: right; }
@media (max-width: 820px) {
  .pdp-ed__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .pdp-ed--flip .pdp-ed__copy, .pdp-ed--flip .pdp-ed__aside { order: 0; }
}

/* --- REDAKTIONELL (Briefing-Variante): Boxen-Spalte links, Text rechts ------ */
.pdp-briefing__grid { grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.06fr); }
.pdp-briefing__copy { order: 2; }
.pdp-briefing__side { order: 1; }

/* ============================================================================
   FEINSCHLIFF — Navband/Trennlinien, blauer Verlauf, 33/33/33, Vergleich, Kästen
   ========================================================================== */
/* Obere Trennlinie unter dem Above-the-Fold weg */
.pdp-layout::after { display: none; }
/* Sprungmarken-Band: EINE Trennlinie oben, Pill sitzt darunter */
.pdp-navband { border-top: 1px solid var(--line); }
.pdp-navband .pdp-jumpbar { margin-top: var(--section-pad-block); }
/* Sektion nach der Trennlinie: ganz leichter blauer Verlauf von oben nach unten */
.pdp-postfold { border-top: 0; background: linear-gradient(180deg, rgba(28,157,225,0.06) 0%, rgba(28,157,225,0) 72%); }

/* Kaufentscheidung: gleichmäßige 33/33/33-Spalten */
.pdp-decision__cols { grid-template-columns: 1fr 1fr 1fr; }
/* Vergleich: Passt / Nicht blind kaufen UNTEREINANDER (schmale Mittelspalte) */
.pdp-compare { grid-template-columns: 1fr; }
.pdp-compare__col--no { border-left: 0; border-top: 1px solid var(--line); }
/* Dritte Spalte: „Prüfen Sie diese Daten" abgerundet, „Unsicher?" als Kasten */
.pdp-decision__side .pdp-proof { border-radius: var(--r-lg); }
.pdp-decision__side .pdp-advice { border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); background: #fff; }

/* ============================================================================
   RUNDE 2 — Headline-Größe = Startseiten-h2, Jumpbar in Blau, Buy-Row nebeneinander
   ========================================================================== */
/* Alle PDP-Sektions-Headlines auf die Startseiten-Standard-h2-Größe (wie „… kein Grau-Import") */
main[data-pdp-root] .section-head h2,
main[data-pdp-root] .section-head--split h2,
.pdp-briefing__copy h2, .pdp-principle__head h2, .pdp-flow__head h2,
.pdp-guard__copy h2, .pdp-lab__copy h2, .pdp-feature-row__copy h2,
.pdp-decision__intro h2, .pdp-statband-section h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
}

/* Jumpbar-Band bekommt denselben blauen Ton wie die Folgesektion → Pill sitzt im blauen Bereich */
.pdp-navband { background: rgba(28,157,225,0.06); }
/* „Wird oft zusammengekauft" nimmt exakt denselben blauen Ton → fließt nahtlos aus dem Navband */
.pdp-fbt-section { background: rgba(28,157,225,0.06); border-bottom: 1px solid var(--line); }

/* Lieferzeile: darf umbrechen (kein Overflow), Punkt an erster Zeile ausgerichtet */
.pdp-buybox .delivery { white-space: normal; line-height: var(--lh-snug); }

/* Menge NEBEN dem Warenkorb-Button (bei Platzmangel bricht der CTA sauber um) */
/* Menge ÜBER dem Warenkorb-Button, beide volle Breite */
.buybox__buyrow { display: flex; flex-direction: column; align-items: stretch; gap: var(--sp-3); }
.buybox__buyrow .qty { display: flex; width: 100%; }
.pdp-buybox .qty button { width: 48px; height: 50px; flex: none; }
.pdp-buybox .buybox__buyrow .qty input { flex: 1 1 auto; width: auto; min-height: 50px; }
.buybox__buyrow .buybox__cta { width: 100%; flex: none; justify-content: center; white-space: nowrap; padding-inline: var(--sp-4); gap: var(--sp-2); }
.buybox__buyrow .buybox__cta .arrow { display: none; }

/* Beratungs-Kasten in der Info-Spalte (über dem Produktbeschreibungstext) */
.pinfo__advice { display: flex; align-items: center; gap: var(--sp-2); margin: var(--sp-4) 0; padding: var(--sp-3); border-radius: var(--r-lg); background: var(--bg-sunk); border: 1px solid var(--line); font-size: 0.75rem; color: var(--text-muted); line-height: var(--lh-snug); transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out); }
.pinfo__advice:hover { border-color: var(--color-primary); box-shadow: var(--sh-sm); }
.pinfo__advice-ic { flex: none; display: grid; place-items: center; }
.pinfo__advice-ic svg { width: 1.15rem; height: 1.15rem; color: var(--color-secondary); }
.pinfo__advice b { color: var(--text-strong); font-weight: var(--fw-semi); }
.pinfo__advice-txt { display: block; }

/* Dunkles Stat-Band (Highlights) — Kontrast-Sektion, große Kern-Werte */
.pdp-statband-section { background: var(--color-ground); color: #fff; }
.pdp-statband-section .eyebrow { color: var(--sec-300); }
.pdp-statband-section h2 { color: #fff; }
.pdp-statband { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(2rem, 4vw, 3.25rem); }
.pdp-stat { padding: 0 var(--sp-5); border-left: 1px solid rgba(255,255,255,0.15); }
.pdp-stat:first-child { border-left: 0; padding-left: 0; }
.pdp-stat__val { display: block; font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(1.35rem, 0.95rem + 1.4vw, 2rem); line-height: 1.05; letter-spacing: -0.02em; color: #fff; font-variant-numeric: tabular-nums; }
.pdp-stat__label { display: block; margin-top: var(--sp-3); font-size: var(--fs-sm); line-height: var(--lh-snug); color: rgba(255,255,255,0.75); }
@media (max-width: 760px) {
  .pdp-statband { grid-template-columns: 1fr 1fr; gap: var(--sp-6) 0; }
  .pdp-stat { border-left: 0; padding-inline: 0; }
  .pdp-stat:nth-child(even) { padding-left: var(--sp-5); border-left: 1px solid rgba(255,255,255,0.15); }
}

/* Grüne Conversion-CTA — farbige Kontrast-Sektion vor der FAQ */
.pdp-cta { position: relative; overflow: hidden; border-radius: var(--r-2xl); padding: clamp(2rem, 4.5vw, 3.75rem); background: linear-gradient(120deg, var(--leaf-600) 0%, var(--leaf-500) 100%); color: #fff; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: center; box-shadow: var(--sh-md); }
.pdp-cta .eyebrow { color: rgba(255,255,255,0.85); }
.pdp-cta h2 { color: #fff; margin: var(--sp-2) 0 var(--sp-4); }
.pdp-cta h2 .grad { -webkit-text-fill-color: #fff; color: #fff; background: none; opacity: 0.75; }
.pdp-cta__copy > p { color: rgba(255,255,255,0.92); line-height: var(--lh-relaxed); max-width: 54ch; margin: 0; }
.pdp-cta__actions { display: flex; flex-direction: column; gap: var(--sp-3); }
.pdp-cta__actions .btn--cta { min-height: 56px; }
.pdp-cta__phone { display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2); color: #fff; font-weight: var(--fw-semi); font-size: var(--fs-sm); }
.pdp-cta__phone svg { width: 1.1em; height: 1.1em; }
.pdp-cta__phone:hover { opacity: 0.85; }
@media (max-width: 820px) { .pdp-cta { grid-template-columns: 1fr; gap: var(--sp-5); } }

/* ============================================================================
   BUY-BOX PREMIUM — Hierarchie, Rhythmus, klare Zonen
   ========================================================================== */
/* overflow:hidden clippt den Akzent; position bleibt sticky (aus Basis-Regel) — sonst schiebt top die Box nach unten */
.pdp-buybox { overflow: hidden; }
/* Subtiler Premium-Akzent oben in der Karte — Tiefe ohne Buntheit */
.pdp-buybox::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 150px; pointer-events: none;
  background: radial-gradient(120% 100% at 50% -35%, color-mix(in srgb, var(--color-secondary) 13%, transparent), transparent 70%);
}
.pdp-buybox > * { position: relative; }

/* Preis-Zone — dominanter Anker */
.buybox__price { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.pdp-buybox .price__now { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 2rem; line-height: 1; letter-spacing: -0.02em; color: var(--text-strong); font-variant-numeric: tabular-nums; }
/* 12px statt --fs-xs (13px): bei 13px brach das Eurozeichen in eine zweite Zeile um (Justin, 2026-09-01) */
.buybox__vat { font-size: 12px; color: var(--text-soft); }
.buybox__freeship { color: var(--color-primary); font-weight: var(--fw-semi); }
.buybox__packnote { font-size: var(--fs-xs); color: var(--text-muted); }
.buybox__packnote[hidden] { display: none; }
.buybox__packnote b { color: var(--text-strong); font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; }

/* Verpackungseinheit — Einzeln/Set-Segmentwahl, ganz oben in der Kaufbox */
.buybox__packs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; margin-bottom: var(--sp-4); background: var(--bg-sunk); border: 1px solid var(--line); border-radius: var(--r-md); }
.buybox__packs[hidden] { display: none; }
.packopt { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: var(--sp-3); border: 1px solid transparent; border-radius: calc(var(--r-md) - 3px); background: transparent; cursor: pointer; text-align: left; transition: background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out); }
.packopt:hover { background: color-mix(in srgb, var(--brand) 6%, transparent); }
.packopt[aria-pressed="true"] { background: #fff; border-color: var(--brand); box-shadow: 0 1px 3px rgba(0,0,0,0.07); }
/* Mengen-Zeile als Flex, damit das Rabatt-Abzeichen rechts neben der Stueckzahl
   sitzt (Justin, 2026-09-03). Vorher stand es in der Preiszeile darunter. */
.packopt__lab { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-weight: var(--fw-bold); font-size: var(--fs-sm); line-height: 1.1; color: var(--text-strong); }
.packopt[aria-pressed="true"] .packopt__lab { color: var(--brand); }
.packopt__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 6px; margin-top: 4px; font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--text-strong); font-variant-numeric: tabular-nums; }
/* 11px statt 13px, und der Stueckpreis bricht nie in sich um. Bei 13px passte
   "125,25 € · 5,01 €/Stück" nicht in die Kachel und die Preiszeile wurde
   dreizeilig (Justin, 2026-09-03). */
.packopt__per { font-weight: var(--fw-normal); font-size: 0.6875rem; color: var(--text-soft); white-space: nowrap; }
.packopt__save { font-weight: var(--fw-bold); font-size: var(--fs-xs); color: var(--leaf-600); background: color-mix(in srgb, var(--leaf-500) 15%, transparent); padding: 1px 6px; border-radius: 999px; white-space: nowrap; }

/* Lieferung: grüner Text mit leuchtendem Punkt (kein Chip-Hintergrund) */
.pdp-buybox .delivery { align-items: flex-start; gap: var(--sp-2); margin: 0 0 var(--sp-5); color: var(--leaf-600); font-size: var(--fs-xs); font-weight: var(--fw-semi); }
.pdp-buybox .delivery .dot { margin-top: 0.4em; background: var(--leaf-500); box-shadow: 0 0 0 3px color-mix(in srgb, var(--leaf-500) 25%, transparent); }
.pdp-buybox .delivery--muted { color: var(--text-muted); font-weight: var(--fw-normal); }
.pdp-buybox .delivery--muted .dot { background: var(--line-strong); box-shadow: none; }

/* Aktions-Zone — Menge mit Label + dominanter CTA */
.buybox__action { display: flex; flex-direction: column; gap: var(--sp-3); margin: 0; }
.qty-field { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.qty-field__label { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-muted); }
.pdp-buybox .qty { border: 1px solid var(--line-strong); border-radius: var(--r-md); overflow: hidden; }
.pdp-buybox .qty button { width: 40px; height: 46px; font-size: 1.3rem; color: var(--text); transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out); }
.pdp-buybox .qty button:hover { background: var(--mist); color: var(--color-primary); }
.pdp-buybox .qty input { width: 28px; min-height: 46px; font-weight: var(--fw-bold); }
.buybox__cta { min-height: 58px; font-size: var(--fs-base); transition: transform var(--dur-2) var(--ease-out); }
.buybox__cta:hover { transform: translateY(-2px); }
.buybox__cta .arrow { transition: transform var(--dur-2) var(--ease-out); }
.buybox__cta:hover .arrow { transform: translateX(3px); }
.buybox__reassure { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.72rem; color: var(--text-muted); margin: var(--sp-1) 0 0; }
.buybox__reassure svg { width: 1.1em; height: 1.1em; flex: none; color: var(--color-primary); }
.buybox__reassure-txt { min-width: 0; white-space: nowrap; }
.buybox__reassure a { white-space: nowrap; color: var(--color-primary); font-weight: var(--fw-semi); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================================
   PROSA-AUFLOCKERUNG — Lead-Satz, Fakten-Betonung, Weiterlesen (kein Textverlust)
   ========================================================================== */
.pdp-lead { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--text-strong); font-weight: 500; margin-bottom: var(--sp-4); }
.pdp-fact-em { font-weight: var(--fw-semi); color: var(--text-strong); }

.pdp-readmore { margin-top: var(--sp-1); }
.pdp-readmore > summary { display: inline-flex; align-items: center; gap: var(--sp-2); cursor: pointer; list-style: none; color: var(--color-primary); font-weight: var(--fw-semi); font-size: var(--fs-sm); padding: var(--sp-2) 0; user-select: none; transition: color var(--dur-1) var(--ease-out); }
.pdp-readmore > summary::-webkit-details-marker { display: none; }
.pdp-readmore > summary::marker { content: ""; }
.pdp-readmore > summary:hover { color: var(--color-secondary); }
.pdp-readmore > summary svg { width: 1.05em; height: 1.05em; transition: transform var(--dur-2) var(--ease-out); }
.pdp-readmore[open] > summary svg { transform: rotate(180deg); }
.pdp-readmore .pdp-readmore__less { display: none; }
.pdp-readmore[open] .pdp-readmore__more { display: none; }
.pdp-readmore[open] .pdp-readmore__less { display: inline; }
.pdp-readmore__body { padding-top: var(--sp-2); }
.pdp-readmore[open] .pdp-readmore__body { animation: proseReveal 0.45s var(--ease-out); }
@keyframes proseReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pdp-readmore[open] .pdp-readmore__body { animation: none; } .pdp-readmore > summary svg, .pdp-readmore[open] > summary svg { transition: none; } }

/* ============================================================================
   FAQ 1:1 wie Startseite — die früheren PDP-Overrides (Kasten, grauer HG,
   Schatten, Innen-Padding) zurücksetzen: nur Hairline-Trenner, transparent.
   ========================================================================== */
[data-pdp-faq-section] { background: var(--bg); border-top: 0; }
[data-pdp-faq-section] .accordion { border: 0; border-top: 1px solid var(--line); border-radius: 0; overflow: visible; background: transparent; box-shadow: none; }
[data-pdp-faq-section] .acc-item { padding-inline: 0; }

/* --- Top-Marke (Info-Spalte): Headline + Hunter-Logo + Trennlinie ---------- */
.pinfo__brand { padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.pinfo__brand-head { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-muted); margin-bottom: var(--sp-3); }
.pinfo__brand-logo { height: 32px; width: auto; display: block; }

/* --- Client-seitiger Produktwechsel (Typ/Variante): sanfter Crossfade --------- */
main[data-pdp-root] { transition: opacity 0.15s var(--ease-out); }
main[data-pdp-root].pdp--swapping { opacity: 0; }
@media (prefers-reduced-motion: reduce) { main[data-pdp-root] { transition: none; } }

/* --- Typ-/Varianten-Auswahl (Info-Spalte): Text-Chips, dynamisch je Familie --- */
.pinfo__typepick { display: flex; flex-direction: column; gap: var(--sp-4); }
.pinfo__typepick[hidden] { display: none; }
.pdp-typepick__group { display: flex; flex-direction: column; gap: var(--sp-3); }
.pdp-typepick__label {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-3);
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm);
  color: var(--text-strong);
}
.pdp-typepick__count { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-xs); color: var(--text-soft); }
.pdp-typepick__chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.pdp-typepick__chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 0 0.85rem;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: #fff; color: var(--text-strong);
  font-family: var(--font-display); font-weight: var(--fw-semi); font-size: var(--fs-sm);
  line-height: 1; text-decoration: none; white-space: nowrap;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.pdp-typepick__chip:hover { border-color: var(--color-secondary); color: var(--color-primary); }
.pdp-typepick__chip.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; cursor: default; }
.pdp-typepick__chip--more { color: var(--text-soft); font-weight: var(--fw-medium); }
.pdp-typepick__chip--more:hover { color: var(--color-primary); border-color: var(--color-secondary); }

/* --- „Varianten im Vergleich": Datenblatt-Karte, je Zeile kaufbar ----------- */
.pdp-varc { border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: #fff; }
.pdp-varc__scroll { overflow-x: auto; scrollbar-width: thin; }
.pdp-varc__table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: var(--fs-sm); }
.pdp-varc__table thead th {
  text-align: left; padding: 0.85rem var(--sp-5);
  font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-xs);
  color: var(--text-soft); text-transform: uppercase; letter-spacing: var(--ls-wide);
  background: var(--bg-sunk); border-bottom: 1px solid var(--line-strong); white-space: nowrap;
}
.pdp-varc__table thead th.pdp-varc__col--diff { color: var(--color-primary); }
.pdp-varc__table thead th.pdp-varc__ah { text-align: right; }
.pdp-varc__table tbody th, .pdp-varc__table tbody td { padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--line); vertical-align: middle; text-align: left; color: var(--text-muted); }
.pdp-varc__table tbody tr:last-child th, .pdp-varc__table tbody tr:last-child td { border-bottom: 0; }
.pdp-varc__row--extra { display: none; }
.pdp-varc.is-expanded .pdp-varc__row--extra { display: table-row; }
.pdp-varc__row.is-current { background: color-mix(in srgb, var(--color-secondary) 8%, #fff); }
.pdp-varc__col--diff { color: var(--text-strong) !important; font-weight: var(--fw-bold); }
.pdp-varc__nh { min-width: 160px; }
.pdp-varc__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--text-strong); text-decoration: none; white-space: nowrap; }   /* Styling wie Preis */
.pdp-varc__name:hover { color: var(--color-primary); }
.pdp-varc__variant { color: var(--text-muted); white-space: nowrap; }   /* Styling wie Radius (Kontext-Spec) */
.pdp-varc__badge { display: inline-block; margin-right: var(--sp-2); padding: 3px 9px; border-radius: var(--r-pill); background: var(--color-primary); color: #fff; font-family: var(--font-body); font-weight: var(--fw-semi); font-size: 0.62rem; text-transform: uppercase; letter-spacing: var(--ls-wide); vertical-align: middle; }
.pdp-varc__na { color: var(--text-soft); }
.pdp-varc__price { text-align: left; white-space: nowrap; }
.pdp-varc__price b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--text-strong); }
.pdp-varc__table tbody td.pdp-varc__action { text-align: right; }
.pdp-varc__buy { display: flex; align-items: center; justify-content: flex-end; gap: var(--sp-2); }
.pdp-varc__qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--r-pill); overflow: hidden; flex: none; }
.pdp-varc__qbtn { width: 30px; height: 34px; display: grid; place-items: center; background: none; border: 0; color: var(--text); font-size: 1.05rem; line-height: 1; cursor: pointer; transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out); }
.pdp-varc__qbtn:hover { background: var(--mist); color: var(--color-primary); }
.pdp-varc__qval { min-width: 24px; text-align: center; font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; font-size: var(--fs-sm); }
.pdp-varc__add { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: var(--r-md); background: var(--color-cta); color: #0a0a0a; cursor: pointer; transition: filter var(--dur-1) var(--ease-out); }
.pdp-varc__add svg { width: 20px; height: 20px; }
.pdp-varc__add:hover { filter: brightness(0.95); }
.pdp-varc__more { padding: var(--sp-4) var(--sp-5); border-top: 1px solid var(--line); }
.pdp-varc__toggle { background: none; border: 0; padding: 0; font-family: var(--font-body); font-weight: var(--fw-semi); font-size: var(--fs-sm); color: var(--color-primary); cursor: pointer; }
.pdp-varc__toggle:hover { text-decoration: underline; }
@media (max-width: 760px) { .pdp-varc__table thead th, .pdp-varc__table tbody th, .pdp-varc__table tbody td { padding-inline: var(--sp-4); } }

/* --- Hunter-Marken-Siegel über der Headline der zentrierten Zebra-Sektionen ---
   Voll sichtbares, farbiges Logo, zentriert, flankiert von zum Logo hin auslaufenden Haarlinien. */
.pdp-ed__seal {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.9rem, 2.4vw, 1.75rem);
  width: fit-content; max-width: min(360px, 100%);
  margin: 0 auto var(--sp-5);
}
.pdp-ed__seal-logo { height: 34px; width: auto; display: block; flex: none; }
.pdp-ed__seal-rule { flex: 1 1 44px; height: 1px; min-width: 28px; }
.pdp-ed__seal-rule:first-child { background: linear-gradient(90deg, transparent, var(--line)); }
.pdp-ed__seal-rule:last-child { background: linear-gradient(90deg, var(--line), transparent); }

/* --- Sprungmarken-Anker: Offset unter dem Sticky-Header --- */
#main,
[data-pdp-fbt-section],
[data-pdp-simcompare-section],
#bestseller,
#kaufentscheidung,
#technische-daten,
[data-pdp-faq-section] { scroll-margin-top: 96px; }

/* ---------------------------------------------------------------------------
   LIGHTBOX — Produktbild formatfuellend (Klick auf das Hauptbild)
--------------------------------------------------------------------------- */
.gallery__main { cursor: zoom-in; }
.gallery__zoom { position: absolute; right: 10px; bottom: 10px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; cursor: zoom-in; border-radius: var(--r-pill); border: 1px solid var(--line); background: rgba(255,255,255,0.92); color: var(--color-primary); transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out); }
.gallery__zoom svg { width: 19px; height: 19px; }
.gallery__main:hover .gallery__zoom { background: #fff; transform: translateY(-1px); }
body.has-lightbox { overflow: hidden; }
/* Admin-Leiste nicht ueber den Schliessen-Knopf legen (nur eingeloggt sichtbar). */
body.admin-bar .lightbox { padding-top: calc(32px + var(--sp-4)); }
@media (max-width: 782px) { body.admin-bar .lightbox { padding-top: calc(46px + var(--sp-3)); } }
.lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; grid-template-rows: auto 1fr auto; gap: var(--sp-2); padding: var(--sp-4); background: rgba(6,35,50,0.94); backdrop-filter: blur(3px); }
.lightbox[hidden] { display: none; }
.lightbox__close { justify-self: end; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; cursor: pointer; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); color: #fff; }
.lightbox__close:hover { background: rgba(255,255,255,0.18); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__stage { position: relative; display: flex; align-items: center; justify-content: center; gap: var(--sp-4); min-height: 0; }
.lightbox__img { max-width: min(1100px, 100%); max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: var(--r-lg); background: #fff; }
.lightbox__nav { flex: none; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; cursor: pointer; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); color: #fff; }
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox--single .lightbox__nav, .lightbox--single .lightbox__thumbs, .lightbox--single .lightbox__count { display: none; }
.lightbox__bar { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); padding-top: var(--sp-2); }
.lightbox__thumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2); }
.lightbox__thumb { width: 56px; height: 56px; flex: none; padding: 0; cursor: pointer; overflow: hidden; opacity: 0.55; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.24); background: #fff; transition: opacity var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out); }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.lightbox__thumb:hover { opacity: 0.85; }
.lightbox__thumb[aria-current="true"] { opacity: 1; border-color: #fff; border-width: 2px; }
.lightbox__count { font-size: var(--fs-xs); color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums; }
@media (max-width: 700px) {
  .lightbox { padding: var(--sp-3); }
  .lightbox__stage { gap: var(--sp-2); }
  .lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(6,35,50,0.62); }
  .lightbox__nav--prev { left: 0; }
  .lightbox__nav--next { right: 0; }
  .lightbox__thumb { width: 44px; height: 44px; }
}
