/* =========================================================================
   Kielkraft - components & layout (marine webshop)
   ========================================================================= */

/* ---- Sections ---- */
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-6); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.section__title { font-family: var(--font-display); font-size: var(--fs-600); color: var(--ink); }
.section__more { font-weight: 700; color: var(--blue-700); font-size: var(--fs-200); white-space: nowrap; }
.section__more:hover { color: var(--blue); }
.section__lead { font-size: var(--fs-400); color: var(--body); margin-top: var(--sp-2); }
.bg-soft { background: var(--surface); }
.bg-navy { background: var(--navy); color: #fff; }

/* ---- Buttons ---- */
.btn { --bg: var(--navy); --fg: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
    padding: 11px 20px; border-radius: var(--r-md); border: 0; cursor: pointer;
    font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-200); line-height: 1.1;
    background: var(--bg); color: var(--fg); text-align: center;
    transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.btn:hover { color: var(--fg); background: var(--navy-700); box-shadow: var(--sh-sm); }
.btn:active { transform: translateY(1px); }
.btn--cta { --bg: var(--navy); }
.btn--sale { --bg: var(--red); } .btn--sale:hover { background: var(--red-700); }
.btn--ghost { --bg: transparent; --fg: var(--navy); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--navy); }
.btn--on-navy { --bg: #fff; --fg: var(--navy); } .btn--on-navy:hover { background: #eaf0f6; }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 26px; font-size: var(--fs-300); }
.btn--sm { padding: 8px 14px; font-size: var(--fs-100); }

/* =========================================================================
   Header (3 tiers)
   ========================================================================= */
.topbar { background: var(--navy-900); color: #cdd9e6; font-size: var(--fs-100); }
.topbar__row { display: flex; align-items: center; gap: var(--sp-4); min-height: 36px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__item svg { width: 14px; height: 14px; }
.topbar a { color: #e3ecf4; }
.topbar a:hover { color: #fff; }
.topbar__spacer { margin-inline-start: auto; }
.topbar .lang-switch a { color: #cdd9e6; padding: 2px 6px; }
.topbar .lang-switch a[aria-current] { color: #fff; font-weight: 700; text-decoration: underline; }

.headbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.headbar__row { display: flex; align-items: center; gap: var(--sp-5); min-height: 72px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand__lockup { display: inline-flex; align-items: flex-start; background: var(--navy); color: #fff;
    font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; line-height: 1;
    letter-spacing: -0.03em; padding: .4em .58em .44em; border-radius: 5px;
    transition: background var(--dur) var(--ease); }
.brand:hover .brand__lockup { background: var(--navy-700); }
.brand__tm { font-size: .4em; font-weight: 700; letter-spacing: 0; margin-left: .18em; margin-top: .12em; }
.brand--invert .brand__lockup { background: #fff; color: var(--navy); }
.brand--invert:hover .brand__lockup { background: #eaf0f6; }
@media (max-width: 480px) { .brand__lockup { font-size: 1.12rem; } }

.search { position: relative; flex: 1 1 auto; max-width: 620px; display: flex; align-items: stretch;
    border: 2px solid var(--navy); border-radius: var(--r-md); background: #fff; }
.search__cat { border: 0; background: var(--surface-2); padding: 0 12px; font-size: var(--fs-200); color: var(--body); border-right: 1px solid var(--line); border-radius: 6px 0 0 6px; }
.search__input { border: 0; flex: 1; padding: 11px 14px; font-size: var(--fs-200); outline: none; min-width: 0; background: transparent; border-radius: 0; }
.search__btn { border: 0; background: var(--navy); color: #fff; padding: 0 18px; cursor: pointer; display: grid; place-items: center; border-radius: 0 6px 6px 0; }
.search__btn:hover { background: var(--navy-700); }
.search__btn svg { width: 18px; height: 18px; }

/* Search autocomplete dropdown */
.search-suggest { position: absolute; top: calc(100% + 7px); left: 0; right: 0; z-index: 80;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-lg); overflow: hidden; }
.search-suggest[hidden] { display: none; }
.search-sug { display: flex; align-items: center; gap: var(--sp-3); padding: 9px 12px; cursor: pointer; border-bottom: 1px solid var(--line-2); }
.search-sug:last-child { border-bottom: 0; }
.search-sug:hover, .search-sug.is-active { background: var(--surface-2); }
.search-sug img { width: 46px; height: 40px; object-fit: contain; flex: 0 0 auto; }
.search-sug__b { min-width: 0; }
.search-sug__t { font-weight: 700; font-size: var(--fs-200); color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-sug__m { font-size: var(--fs-100); color: var(--muted); }
.search-sug__p { margin-left: auto; font-family: var(--font-display); font-weight: 800; font-size: var(--fs-200); color: var(--ink); white-space: nowrap; }
.search-sug--all { justify-content: center; color: var(--blue-700); font-weight: 700; font-size: var(--fs-200); }

/* Search results page */
.search-head { margin-bottom: var(--sp-5); }
.search--page { max-width: 640px; margin-top: var(--sp-4); }
.search-count { margin-top: var(--sp-3); color: var(--muted); font-size: var(--fs-200); }

/* ---- Mini-cart drawer ---- */
.minicart { position: fixed; inset: 0; z-index: 200; }
.minicart[hidden] { display: none; }
.minicart__overlay { position: absolute; inset: 0; background: rgba(6,27,48,.5); opacity: 0; transition: opacity .26s var(--ease); }
.minicart__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 92vw); background: #fff; box-shadow: var(--sh-lg); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .26s var(--ease); }
.minicart.is-open .minicart__overlay { opacity: 1; }
.minicart.is-open .minicart__panel { transform: translateX(0); }
.minicart__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--line); }
.minicart__head strong { font-family: var(--font-display); font-size: var(--fs-400); color: var(--ink); }
.minicart__close { background: none; border: 0; cursor: pointer; color: var(--muted); padding: 4px; display: grid; place-items: center; }
.minicart__close svg { width: 22px; height: 22px; }
.minicart__close:hover { color: var(--ink); }
.minicart__body { flex: 1; overflow-y: auto; padding: var(--sp-2) var(--sp-5); }
.minicart__empty { color: var(--muted); text-align: center; padding: var(--sp-7) 0; }
.minicart-it { display: flex; gap: var(--sp-3); align-items: center; padding: var(--sp-3) 0; border-bottom: 1px solid var(--line-2); }
.minicart-it img, .minicart-it__ph { width: 54px; height: 48px; object-fit: contain; flex: 0 0 auto; background: var(--surface-2); border-radius: var(--r-sm); }
.minicart-it__b { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 1px; }
.minicart-it__t { font-weight: 700; font-size: var(--fs-200); color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.minicart-it__v { font-size: var(--fs-100); color: var(--muted); }
.minicart-it__m { font-size: var(--fs-100); color: var(--body); font-variant-numeric: tabular-nums; }
.minicart-it__rm { background: none; border: 0; cursor: pointer; color: var(--muted); padding: 4px; flex: 0 0 auto; }
.minicart-it__rm svg { width: 17px; height: 17px; }
.minicart-it__rm:hover { color: var(--red); }
.minicart__foot { border-top: 1px solid var(--line); padding: var(--sp-4) var(--sp-5); }
.minicart__row { display: flex; justify-content: space-between; font-size: var(--fs-200); color: var(--body); padding: 2px 0; }
.minicart__row--total { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-400); color: var(--ink); margin-top: 4px; margin-bottom: var(--sp-4); }
.minicart__viewcart { display: block; text-align: center; font-size: var(--fs-200); font-weight: 600; color: var(--blue-700); margin-top: var(--sp-3); }
@media (prefers-reduced-motion: reduce) { .minicart__overlay, .minicart__panel { transition: none; } }

.header-actions { display: flex; align-items: center; gap: var(--sp-4); flex: 0 0 auto; }
.iconlink { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; color: var(--navy); font-size: var(--fs-100); font-weight: 600; }
.iconlink svg { width: 22px; height: 22px; }
.iconlink:hover { color: var(--blue); }
.cart-btn { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 9px 14px; border-radius: var(--r-md); background: var(--navy); color: #fff; }
.cart-btn:hover { color: #fff; background: var(--navy-700); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-btn__meta { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.cart-btn__label { font-size: var(--fs-100); color: #bcd0e4; }
.cart-btn__total { font-weight: 700; font-size: var(--fs-200); }
.cart-btn__count { background: var(--red); color: #fff; border-radius: var(--r-pill); min-width: 18px; height: 18px; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; padding-inline: 5px; margin-inline-start: 2px; }

/* Mega nav */
.mega { background: var(--navy); }
.mega__row { display: flex; align-items: stretch; gap: 0; }
.mega > .mega__row > ul { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.mega li { position: relative; display: flex; }
.mega > .mega__row > ul > li > a { display: inline-flex; align-items: center; gap: 7px; color: #eaf1f8; font-weight: 700; font-size: var(--fs-200); padding: 13px 16px; }
.mega > .mega__row > ul > li > a:hover, .mega li:focus-within > a { background: var(--navy-700); color: #fff; }
.mega .dot { width: 8px; height: 8px; border-radius: 50%; }
.mega a[data-axis="warm"] .dot { background: var(--gold); }
.mega a[data-axis="cool"] .dot { background: #46b3ff; }
.mega__panel { position: absolute; top: 100%; left: 0; min-width: 460px; background: #fff;
    border: 1px solid var(--line); border-top: 3px solid var(--navy); box-shadow: var(--sh-lg);
    border-radius: 0 0 var(--r-md) var(--r-md); padding: var(--sp-5); z-index: 60;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.mega li:hover > .mega__panel, .mega li:focus-within > .mega__panel { opacity: 1; visibility: visible; transform: none; }
.mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.mega__col h4 { font-family: var(--font-sans); font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: var(--sp-2); }
.mega__col ul { display: flex; flex-direction: column; gap: 2px; }
.mega__col a { display: block; color: var(--ink); font-weight: 600; font-size: var(--fs-200); padding: 6px 8px; border-radius: var(--r-sm); }
.mega__col a:hover { background: var(--surface-2); color: var(--blue-700); }
.mega__col a small { color: var(--muted); font-weight: 600; }

.nav-toggle { display: none; }

/* =========================================================================
   Trust bar
   ========================================================================= */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.trustbar__row { display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-6); padding-block: var(--sp-3); align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-200); font-weight: 600; color: var(--body); }
.trust-item svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }

/* =========================================================================
   Promo hero
   ========================================================================= */
.promo { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.promo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,27,48,.92) 0%, rgba(6,27,48,.7) 40%, rgba(6,27,48,.1) 75%, transparent 100%); }
.promo__inner { position: relative; min-height: clamp(360px, 46vw, 520px); display: flex; align-items: center; padding-block: var(--sp-7); }
.promo__content { max-width: 50ch; }
.promo__kicker { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-weight: 700; font-size: var(--fs-100); padding: 4px 10px; border-radius: var(--r-sm); text-transform: uppercase; letter-spacing: .04em; }
.promo h1 { color: #fff; margin-block: var(--sp-3); }
.promo__sub { font-size: var(--fs-400); color: #d6e3f0; max-width: 46ch; }
.promo__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.promo__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.promo__cta .btn--ghost:hover { background: rgba(255,255,255,.12); }

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

.hero { position: relative; overflow: hidden; background: var(--navy-900); }
.hero__viewport { overflow: hidden; }
.hero__track { display: flex; will-change: transform; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.hero__slide { min-width: 100%; position: relative; }
.hero__slide--cool { background: radial-gradient(130% 120% at 80% 8%, #16518f 0%, #0a3060 42%, var(--navy-900) 100%); }
.hero__slide--warm { background: radial-gradient(130% 120% at 80% 8%, #1c4f86 0%, #0c365f 42%, var(--navy-900) 100%); }
.hero__inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: var(--sp-6); align-items: center; min-height: clamp(430px, 48vw, 560px); padding-block: var(--sp-6); }
.hero__content { position: relative; z-index: 2; max-width: 47ch; color: #fff; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: var(--fs-100); padding: 5px 11px; border-radius: var(--r-sm); text-transform: uppercase; letter-spacing: .05em; }
.hero__eyebrow--sale { background: var(--red); color: #fff; }
.hero__eyebrow--top { background: var(--gold); color: #16263a; }
.hero__eyebrow--cool { background: rgba(70,179,255,.18); color: #bfe0ff; }
.hero__eyebrow--warm { background: rgba(224,161,46,.2); color: #f4d79a; }
.hero__title { color: #fff; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; font-size: clamp(1.95rem, 1.4rem + 2.3vw, 3.05rem); margin: var(--sp-3) 0 var(--sp-2); }
.hero__lead { color: #d6e3f0; font-size: var(--fs-400); line-height: 1.55; max-width: 42ch; }
.hero__specs { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--sp-4) 0; }
.hero__specs span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #eaf2fb; padding: 5px 11px; border-radius: var(--r-sm); font-size: var(--fs-100); font-weight: 700; font-variant-numeric: tabular-nums; }
.hero__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px; margin-bottom: var(--sp-5); }
.hero__old { color: #9fb6cc; text-decoration: line-through; font-weight: 600; font-size: var(--fs-300); }
.hero__now { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.2rem); color: #fff; line-height: 1; }
.hero__vat { flex-basis: 100%; font-size: var(--fs-100); color: #9fb6cc; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero__media { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.hero__media::before { content: ""; position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(70,179,255,.4), transparent 68%); }
.hero__slide--warm .hero__media::before { background: radial-gradient(circle, rgba(224,161,46,.34), transparent 68%); }
.hero__media img { position: relative; z-index: 1; max-width: 100%; width: auto; max-height: clamp(300px, 38vw, 500px); object-fit: contain; filter: drop-shadow(0 28px 46px rgba(0,0,0,.55)); }
.hero__ph { position: relative; z-index: 1; color: #9fb6cc; font-weight: 700; }

.hero__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.hero__nav:hover { background: rgba(255,255,255,.24); border-color: #fff; }
.hero__nav svg { width: 22px; height: 22px; }
.hero__nav--prev { left: max(16px, calc((100vw - var(--container)) / 2 - 22px)); }
.hero__nav--next { right: max(16px, calc((100vw - var(--container)) / 2 - 22px)); }
.hero__dots { position: absolute; bottom: 16px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 8px; }
.hero__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: width var(--dur) var(--ease), background var(--dur) var(--ease); }
.hero__dot:hover { background: rgba(255,255,255,.7); }
.hero__dot.is-active { width: 26px; border-radius: 5px; background: #fff; }

@media (max-width: 820px) {
    .hero__inner { grid-template-columns: 1fr; gap: var(--sp-4); min-height: 0; padding-block: var(--sp-5) var(--sp-7); }
    .hero__media { order: -1; min-height: 0; }
    .hero__media img { max-height: clamp(200px, 42vw, 300px); }
    .hero__title { margin-top: var(--sp-2); }
    .hero__nav { display: none; }
}
@media (prefers-reduced-motion: reduce) { .hero__track { transition: none; } }

/* Hero brand slide (the original lifestyle hero, kept as slide 1) */
.hero__slide--brand { background: var(--navy-900); }
.hero__brandmedia { position: absolute; inset: 0; z-index: 0; }
.hero__brandmedia img { width: 100%; height: 100%; object-fit: cover; }
.hero__brandscrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,27,48,.94) 0%, rgba(6,27,48,.66) 45%, rgba(6,27,48,.18) 78%, transparent 100%); }
.hero__brand-inner { position: relative; z-index: 2; min-height: clamp(430px, 48vw, 560px); display: flex; align-items: center; padding-block: var(--sp-6); }
.hero__brand-content { max-width: 50ch; color: #fff; }
.hero__brand-content .hero__title { margin-top: var(--sp-3); }
@media (max-width: 820px) {
    .hero__brandscrim { background: linear-gradient(180deg, rgba(6,27,48,.55) 0%, rgba(6,27,48,.82) 55%, rgba(6,27,48,.92) 100%); }
    .hero__brand-inner { min-height: clamp(360px, 70vw, 460px); }
}

/* =========================================================================
   Category grid
   ========================================================================= */
.catgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.cat-card { position: relative; overflow: hidden; border-radius: var(--r-md); min-height: 220px; display: flex; align-items: flex-end; padding: var(--sp-5); color: #fff; background: var(--navy); border: 1px solid var(--line); }
.cat-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.cat-card:hover .cat-card__img { transform: scale(1.04); }
.cat-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,27,48,.9), rgba(6,27,48,.2) 70%, transparent); }
.cat-card__body { position: relative; }
.cat-card__tag { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-100); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #cfe0f0; }
.cat-card__tag b { width: 8px; height: 8px; border-radius: 50%; }
.cat-card h3 { color: #fff; margin-top: 6px; }
.cat-card p { color: #cfe0f0; font-size: var(--fs-200); margin-top: 4px; max-width: 38ch; }
.cat-card__link { margin-top: var(--sp-3); display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #fff; }
.cat-card__link::after { content: "\2192"; }

/* =========================================================================
   Product cards (shop)
   ========================================================================= */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.pcard { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
    display: flex; flex-direction: column; overflow: hidden; transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.pcard:hover { box-shadow: var(--sh-md); border-color: #c9d6e2; }
.pcard__media { position: relative; aspect-ratio: 4 / 3; background: #fff; display: grid; place-items: center; padding: var(--sp-3); }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; }
.pcard__ph { color: var(--muted); font-size: var(--fs-100); text-align: center; }
.pcard__badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 5px; z-index: 2; align-items: flex-start; }
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: var(--r-sm); font-size: var(--fs-100); font-weight: 700; letter-spacing: .02em; }
.badge--sale { background: var(--red); color: #fff; }
.badge--top { background: var(--gold); color: #3a2a06; }
.badge--new { background: var(--green); color: #fff; }
.badge--electric { background: #e6f0fb; color: var(--blue-700); }
.badge--petrol { background: #fbf0e1; color: #8a5a14; }
.badge--soft { background: var(--surface-2); color: var(--body); border: 1px solid var(--line); }

.pcard__body { padding: var(--sp-3) var(--sp-4) var(--sp-4); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard__brand { font-size: var(--fs-100); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.pcard__title { font-family: var(--font-display); font-size: var(--fs-300); font-weight: 700; line-height: 1.2; }
.pcard__title a { color: var(--ink); }
.pcard__title a:hover { color: var(--blue-700); }
.pcard__specs { display: flex; flex-wrap: wrap; gap: 4px; }
.pcard__specs span { font-size: var(--fs-100); color: var(--body); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 2px 7px; font-weight: 600; }
.pcard__price { margin-top: auto; padding-top: var(--sp-2); }
.price__old { color: var(--muted); text-decoration: line-through; font-size: var(--fs-200); margin-right: 6px; }
.price__now { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.price__now.is-sale { color: var(--red); }
.price__from { font-size: var(--fs-100); color: var(--muted); font-weight: 600; }
.price__vat { font-size: var(--fs-100); color: var(--muted); }
.price__freight { font-size: var(--fs-100); color: var(--body); }
.price__freight b { color: var(--ink); }
.pcard__foot { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-3); }
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-100); font-weight: 600; color: var(--green); }
.stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.stock--short { color: var(--gold); } .stock--short .dot { background: var(--gold); }

/* =========================================================================
   Brand showcase
   ========================================================================= */
.brands { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.brand-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); display: flex; flex-direction: column; }
.brand-block__name { font-family: var(--font-display); font-size: var(--fs-500); font-weight: 800; color: var(--navy); }
.brand-block__tag { font-size: var(--fs-100); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.brand-block p { font-size: var(--fs-200); color: var(--body); margin: var(--sp-2) 0 var(--sp-4); }
.brand-block__models { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--sp-4); }
.brand-block__models a { display: flex; justify-content: space-between; gap: var(--sp-3); padding: 7px 0; border-bottom: 1px solid var(--line-2); font-weight: 600; color: var(--ink); font-size: var(--fs-200); }
.brand-block__models a:hover { color: var(--blue-700); }
.brand-block__models .p { font-variant-numeric: tabular-nums; color: var(--body); font-weight: 700; }
.brand-block .btn { margin-top: auto; }

/* =========================================================================
   Shop layout (category: filter sidebar + grid)
   ========================================================================= */
.shop-layout { display: grid; grid-template-columns: 248px 1fr; gap: var(--sp-5); align-items: start; }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4); position: sticky; top: var(--sp-4); }
.filters h3 { font-family: var(--font-display); font-size: var(--fs-300); margin-bottom: var(--sp-3); }
.filter-group { padding-block: var(--sp-3); border-top: 1px solid var(--line-2); }
.filter-group:first-of-type { border-top: 0; }
.filter-group > label { display: block; font-weight: 700; font-size: var(--fs-200); margin-bottom: 6px; color: var(--ink); }
.filter-group select, .filter-group input { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: var(--fs-200); background: #fff; }
.shop-toolbar { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.shop-toolbar .count { font-weight: 700; color: var(--ink); }
.shop-toolbar .spacer { margin-inline-start: auto; }
.listing-item.is-hidden { display: none; }

/* =========================================================================
   Breadcrumb
   ========================================================================= */
.breadcrumb { font-size: var(--fs-100); color: var(--muted); padding-block: var(--sp-3); display: flex; gap: 7px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--blue-700); }

/* =========================================================================
   PDP + buy box (Kaufbox)
   ========================================================================= */
.pdp { padding-block: var(--sp-4) var(--sp-7); }
.pdp__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); align-items: start; }
.pdp__buy-col { position: sticky; top: var(--sp-4); }
.gallery__main { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); display: grid; place-items: center; min-height: clamp(380px, 42vw, 540px); padding: var(--sp-5); }
.gallery__main img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; padding: 0; }
.gallery__ph { color: var(--muted); font-size: var(--fs-200); text-align: center; padding: var(--sp-6); }
.gallery__thumbs { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.gallery__thumbs button { width: 70px; height: 58px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; cursor: pointer; overflow: hidden; }
.gallery__thumbs button.is-active { border-color: var(--navy); }

.konsole { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--navy); border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: var(--sp-5); }
.konsole__head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.konsole__model { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-400); color: var(--ink); }
.konsole__axis { font-size: var(--fs-100); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 8px; border-radius: var(--r-sm); }
.konsole.axis-warm .konsole__axis { background: #fbf0e1; color: #8a5a14; }
.konsole.axis-cool .konsole__axis { background: #e6f0fb; color: var(--blue-700); }
.konsole__pricewrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.konsole__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,1.5rem+1vw,2.4rem); color: var(--ink); line-height: 1; }
.konsole__old { color: var(--muted); text-decoration: line-through; font-weight: 600; }
.konsole__save { background: var(--red); color: #fff; font-weight: 700; font-size: var(--fs-100); padding: 3px 8px; border-radius: var(--r-sm); }
.konsole__ship { font-size: var(--fs-200); color: var(--body); margin-top: 6px; }
.konsole__ship b { color: var(--ink); }

.kgauges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; margin-top: var(--sp-4); }
.kgauge { background: #fff; padding: var(--sp-3); text-align: center; }
.kgauge span { display: block; font-family: var(--font-display); font-weight: 800; font-size: var(--fs-400); color: var(--ink); font-variant-numeric: tabular-nums; }
.kgauge em { font-style: normal; font-size: 0.68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

.opt-group { margin-top: var(--sp-4); }
.opt-label { display: flex; justify-content: space-between; font-size: var(--fs-200); font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.opt-label .opt-current { color: var(--muted); font-weight: 600; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg__btn { font-size: var(--fs-200); padding: 9px 13px; border: 1.5px solid var(--line); background: #fff; border-radius: var(--r-sm); cursor: pointer; color: var(--body); font-weight: 600; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.seg__btn:hover { border-color: var(--navy); }
.seg__btn[aria-pressed="true"] { border-color: var(--navy); background: var(--navy); color: #fff; }

.konsole__avail { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-4); font-size: var(--fs-200); color: var(--body); }
.konsole__avail .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,157,85,.15); }
.konsole__avail b { color: var(--ink); }
.konsole__cta { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }
.wallets { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--sp-4); }
.wallets span { font-size: var(--fs-100); font-weight: 700; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 4px 8px; }
.microtrust { display: grid; grid-template-columns: 1fr 1fr; gap: 6px var(--sp-4); margin-top: var(--sp-4); }
.microtrust li { display: flex; align-items: center; gap: 7px; font-size: var(--fs-100); color: var(--body); }
.microtrust svg { width: 15px; height: 15px; color: var(--green); flex: 0 0 auto; }
.invoice-note { margin-top: var(--sp-4); padding: 10px 12px; border-radius: var(--r-sm); background: #eef4fb; border: 1px solid #d7e6f5; font-size: var(--fs-200); color: var(--body); }
.invoice-note b { color: var(--navy); }

.mini-konsole { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; transform: translateY(120%); transition: transform var(--dur) var(--ease); background: rgba(255,255,255,.98); border-top: 2px solid var(--navy); box-shadow: 0 -8px 24px rgba(11,47,85,.12); }
.mini-konsole.is-visible { transform: translateY(0); }
.mini-konsole__row { display: flex; align-items: center; gap: var(--sp-4); padding-block: 10px; }
.mini-konsole__name { font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.mini-konsole__price { font-family: var(--font-display); font-weight: 800; color: var(--ink); margin-inline-start: auto; font-variant-numeric: tabular-nums; }

/* Gauges (PDP body), spec + compare tables */
.gauges { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.gauge { padding: var(--sp-4); border-right: 1px solid var(--line); }
.gauge:last-child { border-right: 0; }
.gauge__label { font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.gauge__value { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-700); color: var(--ink); font-variant-numeric: tabular-nums; }
.gauge__unit { font-size: var(--fs-200); color: var(--muted); }
.spectable, .compare { width: 100%; border-collapse: collapse; font-size: var(--fs-200); }
.spectable th, .spectable td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.spectable th { font-weight: 600; color: var(--muted); width: 42%; }
.spectable td { color: var(--ink); font-variant-numeric: tabular-nums; }
.compare { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.compare th, .compare td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.compare thead th { font-family: var(--font-display); color: var(--ink); }
.compare tbody th { font-weight: 600; color: var(--muted); }
.compare td { color: var(--ink); }
.compare td.is-pro { color: var(--green); font-weight: 700; }

/* Risk-reversal feature list */
.featurelist { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.feature { padding-top: var(--sp-3); border-top: 3px solid var(--navy); }
.feature h3 { font-size: var(--fs-400); margin-bottom: 6px; }
.feature p { font-size: var(--fs-200); color: var(--body); }

/* FAQ / prose / callout */
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: var(--sp-3); padding: 14px 0; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--blue); font-weight: 800; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { color: var(--body); padding-bottom: 14px; max-width: 72ch; }
.prose { max-width: 72ch; color: var(--body); }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-6); font-size: var(--fs-500); }
.prose h3 { margin-top: var(--sp-5); font-size: var(--fs-400); }
.prose ul { list-style: disc; padding-left: 1.4em; }
.prose ol { list-style: decimal; padding-left: 1.4em; }
.prose li + li { margin-top: 6px; }
.prose a { text-decoration: underline; }
.prose strong { color: var(--ink); }
.callout { border: 1px solid #d7e6f5; background: #eef4fb; color: var(--navy); border-radius: var(--r-md); padding: var(--sp-4); font-size: var(--fs-200); }

/* Category banner (cat + about hero) */
.cat-banner { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.cat-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-banner__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,27,48,.9), rgba(6,27,48,.45) 70%, transparent); }
.cat-banner__inner { position: relative; padding-block: var(--sp-7); min-height: 240px; display: flex; flex-direction: column; justify-content: center; }
.cat-banner h1 { color: #fff; max-width: 20ch; }
.cat-banner p { color: #d6e3f0; max-width: 54ch; margin-top: var(--sp-2); }

/* Buying advisor wizard */
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-6); }
.wizard__steps { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-5); font-size: var(--fs-100); color: var(--muted); }
.wizard__steps span { display: inline-flex; align-items: center; gap: 6px; }
.wizard__steps b { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); }
.wizard__q { font-family: var(--font-display); font-size: var(--fs-500); color: var(--ink); margin-bottom: var(--sp-4); }
.choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.choice { text-align: left; padding: var(--sp-4); border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.choice:hover { border-color: var(--navy); background: var(--surface-2); }
.choice b { display: block; color: var(--ink); }
.choice span { font-size: var(--fs-200); color: var(--muted); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--navy-900); color: #aebfd0; margin-top: var(--sp-9); }
.site-footer a { color: #cad8e6; } .site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-6); padding-block: var(--sp-7); }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--sp-3); }
.site-footer ul { display: flex; flex-direction: column; gap: 7px; font-size: var(--fs-200); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; font-size: var(--fs-100); color: #8aa0b4; }
.payment-icons { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.payment-icons span { background: #fff; color: var(--navy); border-radius: var(--r-sm); padding: 4px 8px; font-size: 0.7rem; font-weight: 800; }

/* Cookie consent */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: var(--navy); color: #d6e3f0; box-shadow: 0 -8px 24px rgba(6,27,48,.2); }
.consent__row { display: flex; align-items: center; gap: var(--sp-5); padding-block: var(--sp-3); }
.consent__text { font-size: var(--fs-200); margin: 0; }
.consent__text a { color: #fff; text-decoration: underline; }
.consent__actions { margin-inline-start: auto; display: flex; gap: var(--sp-3); flex: 0 0 auto; }
.consent .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1000px) {
    .pdp__grid { grid-template-columns: 1fr; }
    .pdp__buy-col { position: static; }
    .pgrid { grid-template-columns: repeat(3, 1fr); }
    .shop-layout { grid-template-columns: 1fr; }
    .filters { position: static; }
    .featurelist { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .search { order: 3; flex-basis: 100%; max-width: none; }
    .headbar__row { flex-wrap: wrap; min-height: 0; padding-block: 10px; gap: var(--sp-3); }
    .mega { display: none; }
    .pgrid { grid-template-columns: repeat(2, 1fr); }
    .catgrid, .brands { grid-template-columns: 1fr; }
    .nav-toggle { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; margin-inline-start: auto; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .pgrid { grid-template-columns: 1fr; }
    .gauges { grid-template-columns: repeat(2, 1fr); }
    .choices { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .consent__row { flex-direction: column; align-items: stretch; }
    .consent__actions { margin-inline-start: 0; }
    .topbar__item--hide-sm { display: none; }
}

.eyebrow { display: inline-block; font-weight: 700; font-size: var(--fs-100); letter-spacing: .05em;
    text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-2); }
.eyebrow--sale { color: var(--red); }
.listing-item { display: flex; }
.listing-item > .pcard { flex: 1 1 auto; }

/* ---- Brands & partnership ---- */
.partner__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); align-items: center; }
.partner-claim { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-400); font-weight: 600; color: var(--ink); }
.partner-claim svg { width: 24px; height: 24px; color: var(--green); flex: 0 0 auto; margin-top: 2px; }
.brandstrip { display: flex; gap: var(--sp-4); margin-top: var(--sp-5); flex-wrap: wrap; }
.brand-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); min-width: 180px; text-align: center; }
.brand-tile__name { display: block; font-family: var(--font-display); font-weight: 800; font-size: var(--fs-500); color: var(--navy); letter-spacing: -.01em; }
.brand-tile small { color: var(--muted); font-size: var(--fs-100); }
.partner-note { margin-top: var(--sp-4); font-size: var(--fs-100); color: var(--muted); max-width: 62ch; }
.testimonial { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--navy); border-radius: var(--r-md); padding: var(--sp-5); margin: 0; }
.testimonial__avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; }
.testimonial__quote { font-family: var(--font-display); font-size: var(--fs-400); color: var(--ink); line-height: 1.45; margin: var(--sp-4) 0; }
.testimonial__by strong { display: block; color: var(--ink); }
.testimonial__placeholder { font-size: var(--fs-100); color: var(--red); }
@media (max-width: 860px) { .partner__grid { grid-template-columns: 1fr; } }

/* ---- Brand logos ---- */
.brand-logo { display: block; width: auto; height: 30px; }
.brand-logo--card { height: 18px; }
.brand-logo--tile { height: 34px; margin-inline: auto; }
.brand-logo--block { height: 30px; margin-bottom: var(--sp-3); }
.brand-logo--pdp { height: 26px; margin-bottom: var(--sp-3); }
.brand-logo-text { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-size: var(--fs-100); }
.brand-chip { display: inline-flex; align-items: center; background: #fff; border-radius: var(--r-sm); padding: 7px 11px; box-shadow: var(--sh-sm); }
.brand-chip .brand-logo { height: 22px; }
.footer-brands { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; padding-block: var(--sp-5); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brands > span:first-child { font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .08em; color: #8aa0b4; }

/* ---- Payment logos ---- */
.pay-strip { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.pay-chip { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); height: 30px; min-width: 46px; padding: 4px 8px; }
.pay-chip img { height: 20px; width: auto; display: block; }
.pay-chip--text { font-weight: 800; font-size: var(--fs-100); color: var(--navy); letter-spacing: .03em; }

/* ---- Tiefpreis-Garantie ---- */
.tiefpreis { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-6); align-items: center;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); border-radius: var(--r-lg);
    padding: clamp(1.5rem, 1rem + 3vw, 3rem); color: #fff; }
.tiefpreis__seal { width: 138px; height: 138px; border-radius: 50%; background: var(--red); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    box-shadow: 0 12px 32px rgba(216,35,42,.45); flex: 0 0 auto; border: 4px solid rgba(255,255,255,.18); }
.tiefpreis__pct { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.tiefpreis__seal span, .tiefpreis__seal strong { font-size: var(--fs-100); letter-spacing: .08em; text-transform: uppercase; line-height: 1.25; }
.tiefpreis__body h2 { color: #fff; }
.tiefpreis__body p { color: #d6e3f0; max-width: 56ch; margin-top: var(--sp-2); }
.tiefpreis__steps { display: flex; gap: var(--sp-5); flex-wrap: wrap; margin: var(--sp-4) 0; }
.tpstep { display: flex; align-items: center; gap: 9px; font-weight: 600; color: #eaf1f8; font-size: var(--fs-200); }
.tpstep b { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }

/* ---- Boostboards banner ---- */
.bb-banner { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-5); align-items: center;
    background: radial-gradient(130% 130% at 82% 18%, #1b4f8a, var(--navy-900)); border-radius: var(--r-lg);
    padding: clamp(1.5rem, 1rem + 3vw, 2.8rem); overflow: hidden; color: #fff;
    transition: box-shadow var(--dur) var(--ease); }
.bb-banner:hover { box-shadow: var(--sh-lg); color: #fff; }
.bb-banner__logo { margin-bottom: var(--sp-4); }
.bb-banner__logo img { height: 28px; width: auto; }
.bb-banner__content h2 { color: #fff; max-width: 20ch; }
.bb-banner__content p { color: #cfe0f0; max-width: 48ch; margin: var(--sp-2) 0 var(--sp-4); }
.bb-banner__media img { width: 100%; height: auto; max-height: 250px; object-fit: contain;
    filter: drop-shadow(0 22px 44px rgba(0,0,0,.45)); }

@media (max-width: 760px) {
    .tiefpreis { grid-template-columns: 1fr; text-align: center; }
    .tiefpreis__seal { margin-inline: auto; }
    .tiefpreis__steps { justify-content: center; }
    .bb-banner { grid-template-columns: 1fr; text-align: center; }
    .bb-banner__logo { display: inline-flex; }
    .bb-banner__media { order: -1; }
}

/* ---- Contact form ---- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: var(--sp-7); align-items: start; }
.form { margin-top: var(--sp-5); }
.field { margin-bottom: var(--sp-4); }
.field > label { display: block; font-weight: 600; font-size: var(--fs-200); color: var(--ink); margin-bottom: 5px; }
.field input, .field textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: var(--fs-300); background: #fff; font-family: inherit; }
.field input:focus, .field textarea:focus { border-color: var(--navy); outline: none; box-shadow: 0 0 0 3px rgba(11,47,85,.12); }
.field.has-error input, .field.has-error textarea { border-color: var(--red); }
.field-err { display: block; color: var(--red); font-size: var(--fs-100); margin-top: 4px; }
.field-note { font-size: var(--fs-100); color: var(--muted); margin: var(--sp-3) 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert { padding: 12px 16px; border-radius: var(--r-sm); margin: var(--sp-4) 0; font-weight: 600; }
.form-alert--ok { background: #e7f6ee; border: 1px solid #b6e3c9; color: #146c43; }
.form-alert--err { background: #fdeced; border: 1px solid #f5c2c7; color: var(--red-700); }
.contact-info { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); }
.contact-info h2 { font-size: var(--fs-500); margin-bottom: var(--sp-4); }
.contact-info ul { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-info li { display: flex; flex-direction: column; gap: 2px; font-size: var(--fs-200); }
.contact-info li strong { font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-note { margin-top: var(--sp-5); font-size: var(--fs-100); color: var(--muted); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Buying advisor ---- */
.advisor-brands { display: flex; align-items: center; gap: var(--sp-5); margin-bottom: var(--sp-5); }
.advisor { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-6); }
.advisor__progress { height: 6px; background: var(--line-2); border-radius: var(--r-pill); overflow: hidden; margin-bottom: var(--sp-5); }
.advisor__progress span { display: block; height: 100%; width: 0; background: var(--navy); border-radius: var(--r-pill); transition: width var(--dur) var(--ease); }
.advisor__q { font-family: var(--font-display); font-size: var(--fs-500); color: var(--ink); margin-bottom: var(--sp-4); }
.advisor__choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.advisor__choices--3 { grid-template-columns: repeat(3, 1fr); }
.acard { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left; padding: var(--sp-4);
    border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff; cursor: pointer;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.acard:hover { border-color: var(--navy); background: var(--surface-2); transform: translateY(-2px); }
.acard svg { width: 30px; height: 30px; color: var(--navy); }
.acard b { color: var(--ink); font-size: var(--fs-300); }
.acard span { color: var(--muted); font-size: var(--fs-200); }
.advisor__reason { font-size: var(--fs-400); color: var(--ink); margin-top: var(--sp-2); }
.acard-rec { display: grid; grid-template-columns: 160px 1fr; gap: var(--sp-4); align-items: center;
    border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4); background: #fff; margin: var(--sp-4) 0; }
.acard-rec--big { border-color: var(--navy); box-shadow: var(--sh-md); }
.acard-rec__media { background: var(--surface-2); border-radius: var(--r-sm); aspect-ratio: 4/3; display: grid; place-items: center; overflow: hidden; }
.acard-rec__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.acard-rec__ph { color: var(--muted); font-size: var(--fs-100); text-align: center; padding: var(--sp-3); }
.acard-rec__brand { font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.acard-rec__body strong { display: block; font-family: var(--font-display); font-size: var(--fs-500); color: var(--ink); }
.acard-rec__specs { display: block; color: var(--body); font-size: var(--fs-200); margin: 4px 0; font-variant-numeric: tabular-nums; }
.acard-rec__price { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-500); color: var(--navy); }
.advisor__alt { margin-top: var(--sp-4); }
.advisor__alt .acard-rec { grid-template-columns: 90px 1fr; }
.advisor__alt .acard-rec__body strong { font-size: var(--fs-400); }
.advisor__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); }

/* ---- Shaft-length explainer ---- */
.shaft-explainer { display: grid; grid-template-columns: 280px 1fr; gap: var(--sp-6); align-items: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); }
.shaft-svg { width: 100%; height: auto; }
.shaft-text p { margin-bottom: var(--sp-3); color: var(--body); }
.shaft-text a { font-weight: 600; }

@media (max-width: 720px) {
    .advisor__choices, .advisor__choices--3 { grid-template-columns: 1fr; }
    .acard-rec { grid-template-columns: 110px 1fr; }
    .shaft-explainer { grid-template-columns: 1fr; }
}

/* ---- Guide / article ---- */
.article-meta { font-size: var(--fs-200); color: var(--muted); margin: var(--sp-2) 0 var(--sp-5); }
.article-cover { width: 100%; border-radius: var(--r-md); margin-bottom: var(--sp-6); border: 1px solid var(--line); }
.article-cta { margin-top: var(--sp-7); background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--navy); border-radius: var(--r-md); padding: var(--sp-5); }
.article-cta h3 { margin-bottom: var(--sp-2); }
.article-cta p { color: var(--body); margin-bottom: var(--sp-4); }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.guide-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.guide-card:hover { box-shadow: var(--sh-md); border-color: #c9d6e2; }
.guide-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.guide-card__media img { width: 100%; height: 100%; object-fit: cover; }
.guide-card__body { padding: var(--sp-4); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.guide-card__meta { font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.guide-card h3 { font-size: var(--fs-400); color: var(--ink); }
.guide-card p { font-size: var(--fs-200); color: var(--body); }
.guide-card__more { margin-top: auto; font-weight: 700; color: var(--blue-700); font-size: var(--fs-200); }
@media (max-width: 860px) { .guide-grid { grid-template-columns: 1fr; } }

/* ---- Cart ---- */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--sp-6); align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: var(--sp-3); }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: var(--sp-4); align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); }
.cart-item__img { width: 80px; height: 64px; background: #fff; border-radius: var(--r-sm); display: grid; place-items: center; overflow: hidden; }
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__info { display: flex; flex-direction: column; gap: 2px; }
.cart-item__info strong { color: var(--ink); }
.cart-item__variant { font-size: var(--fs-200); color: var(--muted); }
.cart-item__unit { font-size: var(--fs-100); color: var(--muted); }
.cart-item__qty { display: flex; gap: 6px; align-items: center; }
.cart-item__qty input { width: 62px; padding: 8px; border: 1px solid var(--line); border-radius: var(--r-sm); text-align: center; }
.cart-item__line { font-family: var(--font-display); font-weight: 800; color: var(--ink); white-space: nowrap; }
.cart-item__rm button { background: none; border: 0; font-size: 1.5rem; color: var(--muted); cursor: pointer; line-height: 1; padding: 0 4px; }
.cart-item__rm button:hover { color: var(--red); }
.cart-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); position: sticky; top: var(--sp-4); }
.cart-summary h2 { font-size: var(--fs-500); margin-bottom: var(--sp-4); }
.cart-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: var(--fs-300); color: var(--body); }
.cart-row .price { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.cart-row--total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: var(--sp-3); font-size: var(--fs-400); }
.cart-row--total .price { font-size: var(--fs-600); color: var(--navy); }
.cart-vat { font-size: var(--fs-100); color: var(--muted); margin: 6px 0 var(--sp-4); }
@media (max-width: 860px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 64px 1fr auto; row-gap: var(--sp-2); }
    .cart-item__qty, .cart-item__line { grid-column: 2 / -1; justify-self: start; }
}

/* ---- Checkout ---- */
.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: var(--sp-6); align-items: start; }
.checkout-form h2 { font-size: var(--fs-500); margin-bottom: var(--sp-3); }
.field-row { display: grid; grid-template-columns: 1fr 2fr; gap: var(--sp-3); }
.pay-radios { display: flex; flex-direction: column; gap: 8px; }
.pay-radio { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; font-weight: 600; }
.pay-radio:hover { border-color: var(--navy); }
.pay-radio input { accent-color: var(--navy); width: 18px; height: 18px; }
.checkout-terms { display: flex; gap: 10px; align-items: flex-start; margin-top: var(--sp-4); font-size: var(--fs-200); }
.checkout-terms.has-error { color: var(--red); }
.checkout-terms input { margin-top: 3px; }
.checkout-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); position: sticky; top: var(--sp-4); }
.checkout-summary h2 { font-size: var(--fs-500); margin-bottom: var(--sp-4); }
.checkout-item { display: flex; justify-content: space-between; gap: var(--sp-3); padding: 8px 0; border-bottom: 1px solid var(--line-2); font-size: var(--fs-200); }
.checkout-item .price { font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr 1fr; } }

/* ---- Advisor CTA banner ---- */
.advisor-cta { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap;
    background: linear-gradient(135deg, var(--navy), var(--navy-700)); border-radius: var(--r-lg);
    padding: clamp(2rem, 1.5rem + 3vw, 3.25rem); color: #fff; }
.advisor-cta__text { max-width: 56ch; }
.advisor-cta h2 { color: #fff; }
.advisor-cta p { color: #d6e3f0; margin-top: var(--sp-2); }
.advisor-cta__btn { flex: 0 0 auto; }
@media (max-width: 720px) { .advisor-cta { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   Account & Auth (login, register, dashboard, password reset)
   ============================================================ */
.auth-section { background:
    radial-gradient(60% 60% at 50% 0%, var(--surface-2), transparent 70%); }
.auth-card { max-width: 520px; margin-inline: auto; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md);
    padding: clamp(var(--sp-5), 2vw + 1rem, var(--sp-7)); }
.auth-card--wide { max-width: 640px; }
.auth-card h1 { font-size: var(--fs-600); margin-top: 4px; }
.auth-card__lead { color: var(--body); margin-top: var(--sp-2); }
.auth-card .form { margin-top: var(--sp-5); }
.auth-card__alt { margin-top: var(--sp-5); padding-top: var(--sp-4);
    border-top: 1px solid var(--line-2); font-size: var(--fs-200); color: var(--muted); }
.auth-card__alt a { font-weight: 700; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-4); }
.form-grid--zip { grid-template-columns: 130px 1fr; }
.form-row { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.form-row--between { justify-content: space-between; flex-wrap: wrap; }
.link-muted { background: none; border: 0; padding: 0; cursor: pointer;
    color: var(--blue-700); font-size: var(--fs-200); font-weight: 600; font-family: inherit; }
.link-muted:hover { text-decoration: underline; }

.checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: var(--sp-4);
    font-size: var(--fs-200); color: var(--body); cursor: pointer; line-height: 1.45; }
.checkbox input { margin-top: 2px; width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--navy); }
.checkbox.has-error { color: var(--red); }
.checkbox.has-error input { outline: 2px solid var(--red); outline-offset: 1px; }

/* Segmented private/business toggle */
.seg-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md);
    margin-bottom: var(--sp-5); }
.seg-toggle__opt { position: relative; }
.seg-toggle__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg-toggle__opt span { display: block; text-align: center; padding: 9px 12px; border-radius: var(--r-sm);
    font-weight: 700; font-size: var(--fs-200); color: var(--muted); transition: all var(--dur) var(--ease); }
.seg-toggle__opt input:checked + span { background: var(--navy); color: #fff; box-shadow: var(--sh-sm); }
.seg-toggle__opt input:focus-visible + span { outline: 3px solid var(--blue-700); outline-offset: 2px; }
.business-fields[hidden] { display: none; }

/* ---- Dashboard ---- */
.account__head { display: flex; justify-content: space-between; align-items: flex-end;
    gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-5); }
.account__head h1 { font-size: var(--fs-600); }
.account__email { color: var(--muted); font-size: var(--fs-200); margin-top: 2px; }
.account__layout { display: grid; grid-template-columns: 240px 1fr; gap: var(--sp-6); align-items: start; }
.account__nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: var(--sp-4); }
.account__navlink { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
    text-align: left; padding: 11px 14px; border: 1px solid transparent; border-radius: var(--r-md);
    background: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: var(--fs-200);
    color: var(--body); transition: all var(--dur) var(--ease); }
.account__navlink:hover { background: var(--surface-2); color: var(--ink); }
.account__navlink.is-active { background: var(--navy); color: #fff; }
.account__navlink--shop { color: var(--blue-700); margin-top: var(--sp-3);
    border-top: 1px solid var(--line-2); border-radius: 0; padding-top: var(--sp-4); }
.account__navlink--shop:hover { background: none; text-decoration: underline; }
.account__count { background: var(--surface-2); color: var(--ink); border-radius: var(--r-pill);
    font-size: var(--fs-100); font-weight: 700; padding: 1px 9px; min-width: 22px; text-align: center; }
.account__navlink.is-active .account__count { background: rgba(255,255,255,.2); color: #fff; }
.account__panel { display: none; }
.account__panel.is-active { display: block; animation: account-fade var(--dur) var(--ease); }
@keyframes account-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.account__panel h2 { font-size: var(--fs-500); margin-bottom: var(--sp-4); }

.account-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); margin-bottom: var(--sp-5); }
.account-card { display: flex; gap: var(--sp-3); align-items: flex-start;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4); }
.account-card__icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center;
    border-radius: var(--r-md); background: var(--surface-2); color: var(--navy); }
.account-card__icon svg { width: 22px; height: 22px; }
.account-card h3 { font-size: var(--fs-300); }
.account-card p { font-size: var(--fs-200); color: var(--body); margin-top: 2px; }
.account-card--invoice.is-on { border-color: #b6e3c9; background: #f3fbf6; }
.account-card--invoice.is-on .account-card__icon { background: #e0f3e8; color: var(--green); }
.account-card--invoice.is-off .account-card__icon { color: var(--muted); }

/* Checkout account hint */
.checkout-account { font-size: var(--fs-200); color: var(--body); background: var(--surface-2);
    border: 1px solid var(--line); border-radius: var(--r-md); padding: 10px 14px; margin-bottom: var(--sp-4); }
.checkout-account a { font-weight: 700; }
.checkout-account--in { background: #f3fbf6; border-color: #b6e3c9; color: #146c43; }
.checkout-account--in a { color: #146c43; text-decoration: underline; }

/* Contact help topics */
.contact-help { list-style: none; margin: var(--sp-4) 0 0; display: grid; gap: 8px; }
.contact-help li { position: relative; padding-left: 26px; color: var(--body); font-size: var(--fs-200); }
.contact-help li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
    background: var(--green); border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }

/* Login: account benefits */
.auth-benefits { max-width: 520px; margin: var(--sp-5) auto 0; padding: var(--sp-5);
    background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); }
.auth-benefits h2 { font-size: var(--fs-300); margin-bottom: var(--sp-3); }
.auth-benefits ul { list-style: none; display: grid; gap: 10px; }
.auth-benefits li { position: relative; padding-left: 26px; color: var(--body); font-size: var(--fs-200); }
.auth-benefits li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
    background: var(--navy); border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }
.account-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); }
.account-summary h3 { font-size: var(--fs-300); margin-bottom: var(--sp-3); }
.account-summary address { font-style: normal; line-height: 1.7; color: var(--body); }
.account-summary__empty { color: var(--muted); }
.account-summary .link-muted { margin-top: var(--sp-3); display: inline-block; }
.account-empty { text-align: center; padding: var(--sp-7) var(--sp-4);
    background: var(--surface-2); border: 1px dashed var(--line); border-radius: var(--r-md); }
.account-empty p { color: var(--muted); margin-bottom: var(--sp-4); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); }
.account-orders { width: 100%; border-collapse: collapse; font-size: var(--fs-200); }
.account-orders th, .account-orders td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line-2); }
.account-orders thead th { background: var(--surface-2); font-size: var(--fs-100);
    text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.account-orders tbody tr:last-child td { border-bottom: 0; }
.account-orders .ta-right { text-align: right; }
.ta-right { text-align: right; }
.order-status { display: inline-block; padding: 3px 10px; border-radius: var(--r-pill);
    font-size: var(--fs-100); font-weight: 700; background: var(--surface-2); color: var(--body); }
.order-status--new { background: #eaf2fb; color: var(--blue-700); }
.order-status--paid, .order-status--partner { background: #fff4e2; color: #9a6212; }
.order-status--shipped { background: #e8eefc; color: #3b4ea8; }
.order-status--delivered { background: #e7f6ee; color: #146c43; }
.order-status--cancelled { background: #fdeced; color: var(--red-700); }

@media (max-width: 860px) {
    .account__layout { grid-template-columns: 1fr; }
    .account__nav { position: static; flex-direction: row; flex-wrap: wrap; }
    .account__navlink { flex: 1 1 auto; justify-content: center; }
    .account__navlink--shop { border-top: 0; padding-top: 11px; }
    .account-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .form-grid, .form-grid--zip { grid-template-columns: 1fr; }
    .account-orders thead { position: absolute; left: -9999px; }
    .account-orders tr { display: block; border: 1px solid var(--line); border-radius: var(--r-md);
        margin-bottom: var(--sp-3); padding: var(--sp-2) var(--sp-3); }
    .account-orders td { display: flex; justify-content: space-between; gap: var(--sp-3);
        border: 0; padding: 7px 0; text-align: right; }
    .account-orders td::before { content: attr(data-label); font-weight: 700; color: var(--muted); text-align: left; }
    .table-wrap { border: 0; }
}
