:root {
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --surface: #ffffff;
  --ink: #0f1115;
  --ink-soft: #4a4f5b;
  --muted: #8b8f9a;
  --line: #e7e8ec;
  --line-strong: #cfd2d8;
  --brand: #d12c2c;
  --brand-dark: #a51e1e;
  --brand-soft: #fbe9e9;
  --accent: #0a8a4e;
  --sale: #d12c2c;
  --gold: #c79b3a;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(15,17,21,.04), 0 1px 1px rgba(15,17,21,.03);
  --shadow-md: 0 6px 20px rgba(15,17,21,.07);
  --max: 1240px;
  --pad: clamp(16px, 3.5vw, 32px);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--brand); }
button { font-family: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Age banner */
.age-banner {
  position: fixed; inset: 0;
  background: rgba(15,17,21,.7);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-banner__inner {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 440px;
  box-shadow: var(--shadow-md);
}
.age-banner__inner p { margin: 0 0 20px; font-size: 15px; }
.age-banner__inner button {
  background: var(--ink); color: #fff; border: 0;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; cursor: pointer;
}
.age-banner__inner button:hover { background: var(--brand); }

/* Topbar */
.topbar {
  background: var(--ink);
  color: #d8dae0;
  font-size: 11.5px;
  line-height: 1.2;
}
.topbar__inner {
  display: flex; gap: 14px; justify-content: center;
  padding: 5px 0;
  flex-wrap: wrap;
  align-items: center;
}
.topbar span { white-space: nowrap; }
.topbar__hide-sm { opacity: 0.4; }
@media (max-width: 720px) {
  .topbar { font-size: 10.5px; }
  .topbar__inner { gap: 10px; padding: 4px 0; }
  .topbar__hide-sm { display: none; }
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  text-decoration: none;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
}
.brand__mark {
  height: 44px; width: 44px; display: block;
  flex-shrink: 0;
}
.brand__lockup {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.brand__wordmark {
  font-size: 22px; font-weight: 900;
  color: #ee00ac;
  letter-spacing: -0.5px;
}
.brand__tld {
  color: var(--muted); font-weight: 700;
  font-size: 13px;
  margin-left: 1px;
}
.brand__tagline {
  font-size: 9.5px; font-weight: 700;
  color: #1a1554;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 3px;
  margin-top: 2px;
}
.brand__tagline strong { font-weight: 800; }
.brand__planet {
  height: 12px; width: 12px;
  display: inline-block;
  vertical-align: middle;
}
.brand--footer { color: #fff; }
.brand--footer .brand__wordmark { color: #ff5fa7; }
.brand--footer .brand__tld { color: #9aa0a8; }
.brand--footer .brand__tagline { color: #fff; }
@media (max-width: 480px) {
  .brand__mark { height: 36px; width: 36px; }
  .brand__wordmark { font-size: 18px; }
  .brand__tagline { font-size: 8.5px; letter-spacing: 1.3px; }
}
/* Legacy text mark/name (kept for fallback) */
.brand__mark { color: var(--brand); font-size: 16px; }
.brand__tld { color: var(--muted); font-weight: 600; }

.main-nav {
  display: flex; gap: 28px; align-items: center;
  flex: 1; margin-left: 32px;
}
.main-nav a {
  color: var(--ink); font-size: 14.5px; font-weight: 600;
}
.main-nav a:hover { color: var(--brand); }
@media (max-width: 880px) { .main-nav { display: none; } }

.header-actions {
  display: flex; gap: 6px; align-items: center;
}
.icon-btn {
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
  color: var(--ink);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: var(--bg-alt); }
.cart-count {
  position: absolute;
  top: 2px; right: 0;
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  border: 0; cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 15px 28px; font-size: 16px; }

/* Brand banner strip */
.banner-strip {
  position: relative;
  background: #f4ebd6;
  overflow: hidden;
}
.banner-strip__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.banner-strip img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 880px) { .banner-strip img { max-height: 220px; } }
.banner-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* Hero shop */
.hero-shop {
  background:
    linear-gradient(135deg, var(--brand-soft) 0%, #fff5e6 100%);
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.hero-shop__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-shop__grid { grid-template-columns: 1fr; }
}
.hero-shop__copy { max-width: 640px; }
.hero-shop__tag {
  display: inline-block;
  background: var(--ink); color: #fff;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.hero-shop h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.hero-shop p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 56ch;
}
.hero-shop__price {
  display: flex; align-items: baseline; gap: 8px;
  margin: 0 0 4px;
  flex-wrap: wrap;
}
.price-from { color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.price-big {
  font-size: 48px; font-weight: 900; color: var(--brand);
  letter-spacing: -.025em;
  line-height: 1;
}
.price-big sup.price-aster { font-size: 18px; color: var(--brand); font-weight: 700; vertical-align: super; }
.price-unit {
  color: var(--ink-soft); font-size: 14px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.price-strike {
  color: var(--muted); font-size: 16px;
  text-decoration: line-through; margin-left: 8px;
}
.hero-shop__price-secondary {
  font-size: 14px; color: var(--ink-soft);
  margin: 0 0 22px;
}
.hero-shop__price-secondary s { color: var(--muted); }
.hero-shop__ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* Bundle card in hero */
.bundle-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.bundle-card__inner {
  display: block;
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.bundle-card__inner:hover { text-decoration: none; color: inherit; }
.bundle-card__inner:hover .bundle-card__btn-visual {
  background: var(--brand-dark);
}
.bundle-card__media {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin: 4px 0 16px;
  padding: 16px;
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bundle-card__media img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.bundle-card__flag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--brand); color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 5px 10px; border-radius: 4px;
  letter-spacing: .02em;
}
.bundle-card__title {
  font-size: 22px; font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 8px;
}
.bundle-card__desc {
  font-size: 14.5px; color: var(--ink-soft);
  margin: 0 0 16px;
}
.bundle-card__price {
  display: flex; align-items: baseline; gap: 6px;
  margin: 0 0 4px;
}
.bundle-card__per-pod {
  font-size: 34px; font-weight: 900; color: var(--brand);
  letter-spacing: -.025em;
  line-height: 1;
}
.bundle-card__per-pod-label {
  font-size: 13px; font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .06em;
}
.bundle-card__total {
  font-size: 13px; color: var(--ink-soft);
  margin: 0 0 14px;
}
.bundle-card__total strong { color: var(--ink); font-weight: 700; }
.bundle-card__old {
  color: var(--muted);
  text-decoration: line-through;
  margin: 0 4px;
}
.bundle-card__btn-visual {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand);
  color: #fff;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  transition: background .12s ease;
}
.bundle-card__hero-tag {
  display: inline-block;
  background: var(--gold); color: #1a1208;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 10px;
}

/* Bundle ladder section */
.bundles {
  padding: clamp(48px, 6vw, 72px) 0 clamp(24px, 3vw, 36px);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.bundles__head {
  text-align: center;
  margin-bottom: 28px;
}
.bundles__head h2 { margin: 0 0 8px; }
.bundles__head p {
  font-size: 15px; color: var(--ink-soft);
  margin: 0 auto; max-width: 60ch;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 920px) { .bundle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bundle-grid { grid-template-columns: 1fr; } }

.bundle-tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.bundle-tier__media {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin: 0 0 10px;
  padding: 12px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bundle-tier__media img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}
.bundle-tier:hover .bundle-tier__media img { transform: scale(1.04); }
.bundle-tier--featured .bundle-tier__media { background: #fff; }
.bundle-tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  border-color: var(--ink);
}
.bundle-tier--featured {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
}
.bundle-tier--featured:hover { border-color: var(--brand-dark); }
.bundle-tier__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.bundle-tier__size {
  font-size: 26px; font-weight: 800;
  letter-spacing: -.02em;
}
.bundle-tier__save {
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 4px 8px; border-radius: 4px;
}
.bundle-tier--featured .bundle-tier__save { background: var(--brand); }
.bundle-tier__count {
  font-size: 13px; color: var(--ink-soft);
  margin: 0;
}
.bundle-tier__per {
  order: 1;
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.015em;
  margin: 8px 0 0;
  line-height: 1.1;
}
.bundle-tier__price {
  order: 2;
  display: flex; align-items: baseline; gap: 8px;
  margin: 0;
}
.bundle-tier__price::before {
  content: "Gesamt:";
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  margin-right: 2px;
}
.bundle-tier__now {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}
.bundle-tier__old {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: line-through;
}
.bundle-tier__perpod {
  order: 3;
  font-size: 12.5px; color: var(--muted);
  margin: 0 0 12px;
}
.bundle-tier__cta { order: 4; }
.bundle-tier__cta {
  display: inline-block;
  background: var(--ink); color: #fff;
  text-align: center;
  padding: 10px 14px;
  font-size: 13.5px; font-weight: 700;
  border-radius: var(--radius-sm);
  margin-top: auto;
  transition: background .12s ease;
}
.bundle-tier:hover .bundle-tier__cta { background: var(--brand); }
.bundle-tier--featured .bundle-tier__cta { background: var(--brand); }
.bundle-tier--featured:hover .bundle-tier__cta { background: var(--brand-dark); }
.bundle-tier__crown {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: #1a1208;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
}
.bundles__note {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13.5px; color: var(--ink-soft);
}
.bundles__note a { text-decoration: underline; }

/* Sections */
section { padding: clamp(40px, 6vw, 72px) 0; }
h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 18px;
}

/* Shop */
.shop {
  padding-top: 32px;
}
.shop-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 22px;
}
.shop-head h2 { margin: 0; }
.shop-count {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}

/* Filters */
.filters {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.filter-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.filter-label {
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-right: 4px;
  text-transform: uppercase; letter-spacing: .06em;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 13.5px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .12s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .15s ease, transform .15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--soldout { opacity: .75; }

.card__link {
  color: inherit; display: flex; flex-direction: column; flex: 1;
}
.card__link:hover { color: inherit; }

.card__media {
  position: relative;
  background: var(--bg-alt);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card__media img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 9px;
  border-radius: 4px;
  color: #fff;
  z-index: 2;
}
.badge--best     { background: var(--gold); color: #1a1208; }
.badge--new      { background: var(--ink); }
.badge--nf       { background: var(--accent); }
.badge--soldout  { background: var(--muted); }

.card__body {
  padding: 14px 14px 12px;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
@media (max-width: 420px) {
  .card__body { padding: 10px 10px 10px; }
  .card__title { font-size: 13px; }
  .card__meta { font-size: 11.5px; }
  .card__price-now { font-size: 16px; }
  .card__price-old { font-size: 11.5px; }
  .card__per { font-size: 10.5px; }
  .card__btn { padding: 10px 8px; font-size: 12.5px; }
  .card__media { padding: 12px; }
}
.card__title {
  font-size: 14.5px; font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.005em;
  color: var(--ink);
}
.card__meta {
  font-size: 12.5px; color: var(--muted);
  margin: 0;
}
.card__price {
  margin-top: 8px;
  display: flex; align-items: baseline; gap: 4px;
}
.card__price-now {
  font-size: 22px; font-weight: 900; color: var(--sale);
  letter-spacing: -.015em;
  line-height: 1;
}
.card__price-aster {
  font-size: 11px; font-weight: 700;
  color: var(--sale);
  margin-left: 1px;
  vertical-align: super;
  line-height: 0;
}
.card__price-unit {
  font-size: 12.5px; font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .04em;
}
.card__price-old {
  font-size: 13px; color: var(--muted);
  text-decoration: line-through;
}
.card__per {
  font-size: 11.5px; color: var(--muted);
  margin: 4px 0 0;
}
.card__per s { color: var(--muted); }

.card__btn {
  display: block;
  text-align: center;
  background: var(--ink); color: #fff;
  padding: 11px 14px;
  font-size: 13.5px; font-weight: 700;
  border-top: 1px solid var(--ink);
  transition: background .12s ease;
  margin-top: auto;
}
.card:hover .card__btn { background: var(--brand); color: #fff; }
.card__btn--disabled {
  background: var(--bg-alt); color: var(--muted);
  border-top: 1px solid var(--line);
  cursor: not-allowed;
}
.card__btn--disabled:hover { background: var(--bg-alt); color: var(--muted); }

.price-disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--bg-alt);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}
.price-disclaimer p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.price-disclaimer strong { color: var(--ink); }

.shop-footnote {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.shop-footnote a { color: var(--ink); text-decoration: underline; }

/* USP strip */
.usp-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usp-grid { grid-template-columns: 1fr; } }
.usp { text-align: left; }
.usp__icon {
  font-size: 28px; line-height: 1;
  margin-bottom: 10px;
}
.usp h3 {
  font-size: 15px; font-weight: 800;
  margin: 0 0 6px;
}
.usp p {
  font-size: 13.5px; color: var(--ink-soft);
  margin: 0;
}

/* Variant Picker (PDP-style block in hub) */
.picker {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.picker__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .picker__grid { grid-template-columns: 1fr; gap: 24px; } }

.picker__gallery { position: sticky; top: 90px; }
@media (max-width: 880px) { .picker__gallery { position: static; } }

.picker__media {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.picker__media img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}
.picker__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 10px;
  border-radius: 4px;
  color: #fff;
}
.picker__badge:empty { display: none; }
.picker__badge--best     { background: var(--gold); color: #1a1208; }
.picker__badge--new      { background: var(--ink); }
.picker__badge--nf       { background: var(--accent); }
.picker__badge--soldout  { background: var(--muted); }

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
  list-style: none; padding: 10px 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--ink-soft);
}
.breadcrumb li::after {
  content: "›"; color: var(--muted); margin-left: 6px;
}
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li:last-child { color: var(--ink); font-weight: 600; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--brand); }

/* Nav active state */
.main-nav a.is-active { color: var(--brand); }

.picker__brand {
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 8px;
}
.picker h2,
.picker #pickerTitle {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 12px;
}
.picker__rating {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 18px;
}
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }

.picker__price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.picker__price-now {
  font-size: 42px; font-weight: 900; color: var(--brand);
  letter-spacing: -.025em; line-height: 1;
}
.picker__price-now sup { font-size: 18px; color: var(--brand); font-weight: 700; }
.picker__price-unit {
  font-size: 14px; font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .06em;
}
.picker__price-secondary {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin: 0 0 6px;
  font-size: 14px;
}
.picker__price-2er {
  color: var(--ink); font-weight: 700;
}
.picker__price-2er-label {
  color: var(--muted); font-weight: 500; font-size: 13px;
}
.picker__price-old {
  font-size: 13px; color: var(--muted);
  text-decoration: line-through;
}
.picker__price-save {
  background: var(--brand); color: #fff;
  font-size: 11.5px; font-weight: 800;
  padding: 2px 7px; border-radius: 4px;
  letter-spacing: .02em;
}
.picker__price-meta {
  font-size: 12.5px; color: var(--muted);
  margin: 0 0 16px;
}
.picker__price-meta a { color: var(--ink-soft); text-decoration: underline; }

.picker__stock {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-soft);
  margin-bottom: 20px;
}
.stock-dot {
  width: 8px; height: 8px; border-radius: 999px;
  display: inline-block;
}
.stock-dot--in  { background: var(--accent); box-shadow: 0 0 0 3px rgba(10,138,78,.15); }
.stock-dot--out { background: var(--muted); }

.picker__variant { margin-bottom: 18px; }
.picker__variant-label {
  display: block;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink); margin-bottom: 6px;
}
.picker__select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%2315171c' stroke-width='2' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.picker__select:focus {
  outline: none;
  border-color: var(--brand);
}
.picker__taste {
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-left: 3px solid var(--brand);
  padding: 12px 14px;
  margin: 0 0 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.picker__taste:empty { display: none; }

.btn--xl { padding: 16px 24px; font-size: 16px; }
.picker__cta { width: 100%; margin-bottom: 10px; }
.picker__bundle-cta {
  width: 100%;
  margin-bottom: 18px;
}

.picker__trust {
  list-style: none; padding: 0; margin: 0 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.picker__trust li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 5px 0;
}

.picker__nf-link {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}
.picker__nf-link a { color: var(--brand); text-decoration: underline; }

/* Content blocks (long-form SEO sections) */
.content-block {
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}
.content-block--alt { background: var(--bg-alt); }
.content-block .wrap { max-width: 880px; }
.content-block--split .wrap { max-width: 1120px; }

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 24px; } }
.split__visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.content-block h2 { margin-bottom: 14px; }
.content-block h3 {
  font-size: 17px; font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -.005em;
}
.content-block p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.65;
}
.content-block p strong { color: var(--ink); }
.content-block a:not(.btn) { color: var(--brand); text-decoration: underline; }
.content-block a:not(.btn):hover { color: var(--brand-dark); }
.content-block a.btn { color: #fff; text-decoration: none; }
.content-block a.btn:hover { color: #fff; text-decoration: none; }
.content-block a.btn.btn--ghost { color: var(--ink); }
.content-block a.btn.btn--ghost:hover { color: #fff; }
.content-lead {
  font-size: 17px !important;
  color: var(--ink) !important;
}

/* Device deep cards */
.device-deep {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0 16px;
}
@media (max-width: 720px) { .device-deep { grid-template-columns: 1fr; } }
.device-deep article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.device-deep article p {
  font-size: 14.5px;
  margin: 0;
}
.content-block--alt .device-deep article { background: #fff; }
.muted { color: var(--muted); font-size: 13.5px; }
.muted.small { font-size: 12.5px; }

/* Compare table */
.compare-table {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}
.content-block--alt .compare-table { background: #fff; }
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.3fr 1.4fr;
  gap: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.compare-row:first-child { border-top: 0; }
.compare-row > div { padding-right: 10px; }
.compare-row strong { color: var(--ink); }
.compare-row--head {
  background: #f3f2ed;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11.5px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr 1fr; gap: 4px 12px; font-size: 13.5px; }
  .compare-row--head { display: none; }
  .compare-row > div { padding-right: 0; }
}

/* Steps list */
.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 14px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 16px 18px 16px 64px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  counter-increment: step;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.content-block--alt .steps li { background: #fff; }
.steps li strong { color: var(--ink); }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--brand); color: #fff;
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
}

/* FAQ */
.faq {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 8px;
}
.faq summary {
  font-size: 15px; font-weight: 700;
  cursor: pointer; list-style: none;
  position: relative; padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 20px; color: var(--muted); font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 10px 0 0;
  color: var(--ink-soft); font-size: 14.5px;
}

/* Footer */
.site-footer {
  background: #14161b;
  color: #c5c8d0;
  padding: 56px 0 24px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand__tld { color: #8b8f9a; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2d34;
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; margin: 0 0 12px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; font-size: 14px; }
.site-footer a { color: #c5c8d0; }
.site-footer a:hover { color: #fff; }
.site-footer .muted { color: #8b8f9a; font-size: 13.5px; margin-top: 10px; }
.site-footer .muted.small { font-size: 12.5px; line-height: 1.5; }
.site-footer__bottom {
  padding-top: 22px;
  font-size: 12.5px;
  color: #6f747f;
}
.brand--footer { font-size: 18px; margin: 0; }

/* ============================================
   CTR CONVERSION ELEMENTS
============================================ */

/* Inline CTAs after content blocks */
.cta-inline {
  margin: 24px 0 0 !important;
}
.cta-inline .btn {
  font-size: 14.5px;
  padding: 12px 22px;
}

/* Free-Shipping-Bar (sticky under header) */
.shipping-bar {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid #2a2d34;
  position: relative;
  z-index: 49;
}
.shipping-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
}
.shipping-bar__icon { font-size: 14px; }
.shipping-bar__text { font-weight: 700; }
.shipping-bar__suggest { color: rgba(255,255,255,.7); }
.shipping-bar__cta {
  background: var(--brand);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}
.shipping-bar__cta:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }
@media (max-width: 720px) {
  .shipping-bar { font-size: 12px; }
  .shipping-bar__suggest { display: none; }
}

/* Floating Action Button (Desktop) */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--brand);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(209,44,44,.35), 0 4px 12px rgba(0,0,0,.15);
  z-index: 80;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, background .12s ease;
  pointer-events: none;
}
.fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }
.fab__icon { font-size: 18px; }
.fab__text { display: flex; flex-direction: column; line-height: 1.15; }
.fab__line1 { font-size: 11.5px; opacity: .85; }
.fab__line2 { font-size: 14px; }
@media (max-width: 720px) {
  .fab { display: none; }
}

/* Sticky Mobile Bottom-Bar */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(0,0,0,.08);
  z-index: 90;
  transform: translateY(100%);
  transition: transform .25s ease;
  display: none;
}
.mobile-bar.is-visible { transform: translateY(0); }
@media (max-width: 720px) {
  .mobile-bar { display: block; }
  /* Add bottom space so content isn't hidden behind bar */
  body { padding-bottom: 68px; }
}
.mobile-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}
.mobile-bar__inner img {
  width: 44px; height: 44px;
  object-fit: contain;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 4px;
}
.mobile-bar__info { flex: 1; min-width: 0; }
.mobile-bar__title {
  font-size: 13px; font-weight: 700;
  margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mobile-bar__price {
  font-size: 12px; color: var(--ink-soft);
  margin: 0;
}
.mobile-bar__price strong { color: var(--brand); font-size: 14px; }
.mobile-bar__cta {
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-bar__cta:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }

/* Card add-to-cart "+" button */
.card__add {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: all .12s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.card__add:hover { background: var(--ink); color: #fff; transform: scale(1.05); }
.card__add.is-added { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Multi-Sort Mini-Cart */
.minicart {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 85;
  font-family: var(--font);
}
@media (max-width: 720px) {
  .minicart { bottom: 76px; left: 12px; right: 12px; }
}
.minicart__toggle {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.minicart__toggle:hover { background: var(--brand); }
.minicart__count {
  background: var(--brand);
  color: #fff;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  padding: 0 6px;
}
.minicart__chevron { font-size: 10px; opacity: .7; }

.minicart__panel {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  padding: 18px;
}
@media (max-width: 720px) {
  .minicart__panel { width: 100%; left: 0; right: 0; }
}
.minicart__panel h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.minicart__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  max-height: 220px;
  overflow-y: auto;
}
.minicart__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.minicart__item:last-child { border-bottom: 0; }
.minicart__item img {
  width: 28px; height: 28px;
  object-fit: contain;
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 3px;
}
.minicart__item-name { flex: 1; font-weight: 600; }
.minicart__remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.minicart__remove:hover { color: var(--brand); }
.minicart__hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  padding: 8px 10px;
  background: var(--brand-soft);
  border-radius: var(--radius-sm);
}
.minicart__cta {
  display: block;
  background: var(--brand);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  margin-bottom: 8px;
}
.minicart__cta:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }
.minicart__clear {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  padding: 6px;
  text-decoration: underline;
}
.minicart__clear:hover { color: var(--brand); }

/* Card media needs relative positioning for add button */
.card__media { position: relative; }
