/* ===========================================================
   ELIXR — shop layer. Extends styles.css; load it AFTER.
   =========================================================== */

/* ------------------------- Trust topbar ------------------------------- */
/* Sits above the sticky nav, in normal flow, so it scrolls away. */
.topbar {
  background: var(--navy);
  color: var(--offwhite);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar .tb-track {
  display: flex;
  width: max-content;
  animation: tb-scroll 46s linear infinite;
}
.topbar:hover .tb-track { animation-play-state: paused; }
.tb-group { display: flex; align-items: center; flex: none; padding-block: 9px; }
.tb-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(252, 251, 248, 0.92);
}
.tb-group .gd {
  color: var(--gold);
  margin: 0 22px;
  font-size: 8px;
  transform: translateY(-1px);
}
@keyframes tb-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .topbar .tb-track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
  .tb-group:nth-child(2) { display: none; }
}

/* --------------------------- Nav: cart -------------------------------- */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-std);
  color: var(--charcoal);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.cart-link:hover { background: var(--ink-04); }
.cart-link svg { width: 19px; height: 19px; }
.cart-link [data-cart-count] {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--offwhite);
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--cream);
}
.cart-link [data-cart-count].is-empty { display: none; }

/* keep nav links visible on subpages even on smaller widths */
.nav-links a.active { color: var(--charcoal); background: var(--ink-04); }

/* --------------------------- Page hero -------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-block: clamp(48px, 7vw, 92px);
}
.page-hero .hero-wash { height: 460px; opacity: 0.55; }
.page-hero .inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 {
  margin: 14px 0 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.0;
  letter-spacing: -1.4px;
  color: var(--charcoal);
}
.page-hero .lead { margin-top: 18px; max-width: 560px; }

/* ----------------------------- Breadcrumb ----------------------------- */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  padding-block: 22px 0;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--charcoal); text-decoration: underline; }
.crumbs .sep { opacity: .5; }

/* =============================== PDP ================================== */
.pdp { padding-block: clamp(28px, 4vw, 48px) clamp(64px, 9vw, 110px); }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.pdp-media {
  position: sticky;
  top: 92px;
  border-radius: var(--r-container);
  padding: 18px;
  background:
    radial-gradient(78% 68% at 50% 14%, color-mix(in srgb, var(--wash-1) 70%, transparent) 0%, transparent 72%),
    var(--offwhite);
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 60px -32px rgba(22,36,63,0.35);
}
.pdp-media image-slot {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--r-container) - 10px);
  border: 1px solid var(--border);
  background: var(--offwhite);
}
.pdp-info { display: flex; flex-direction: column; gap: 20px; }
.pdp-cat { font-size: 13px; }
.pdp-title {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--charcoal);
}
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pdp-price .amt {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
}
.pdp-price .per { font-size: 14px; color: var(--muted); }
.pdp-lead { font-size: 17px; color: var(--ink-82); line-height: 1.5; margin: 0; }
.pdp-blurb { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* variant selector */
.variant-row { display: flex; flex-direction: column; gap: 10px; }
.variant-row .label { font-size: 13px; font-weight: 500; color: var(--ink-82); letter-spacing: .01em; }
.variant-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--r-std);
  border: 1px solid var(--border-strong);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.variant-chip:hover { background: var(--ink-04); }
.variant-chip.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--offwhite);
}
.variant-chip .vp { opacity: .7; font-weight: 400; }
.variant-chip.active .vp { opacity: .85; }

/* qty stepper + add row */
.buy-row { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-std);
  background: var(--cream);
  overflow: hidden;
}
.qty button {
  width: 44px;
  height: 46px;
  border: none;
  background: transparent;
  font-size: 19px;
  color: var(--charcoal);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .12s ease;
}
.qty button:hover { background: var(--ink-04); }
.qty [data-qty-value] {
  min-width: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.buy-row .btn { flex: 1; min-width: 180px; height: 46px; }

.assurance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.assurance .row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-82); }
.assurance .row svg { width: 17px; height: 17px; flex: none; color: var(--gold); }

/* spec list */
.spec-list {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--offwhite);
}
.spec-list .srow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
.spec-list .srow:last-child { border-bottom: none; }
.spec-list .sk { color: var(--muted); }
.spec-list .sv { color: var(--charcoal); font-weight: 500; text-align: right; }

/* PDP supporting sections */
.pdp-detail {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.detail-card {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--cream);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-card .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--offwhite);
  border: 1px solid var(--border);
  box-shadow: var(--inset);
}
.detail-card .ico svg { width: 19px; height: 19px; color: var(--charcoal); }
.detail-card h4 { margin: 0; font-size: 18px; font-weight: 500; letter-spacing: -0.3px; }
.detail-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ============================ Cart page ============================== */
.cart-wrap { padding-block: clamp(32px, 5vw, 56px) clamp(64px, 9vw, 110px); }
.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.cart-list { display: flex; flex-direction: column; }
.cart-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.cart-row:first-child { border-top: 1px solid var(--border); }
.cart-thumb {
  width: 92px;
  height: 92px;
  border-radius: var(--r-comfy);
  border: 1px solid var(--border);
  background:
    radial-gradient(72% 70% at 50% 20%, var(--wash-1) 0%, transparent 72%),
    var(--ink-03);
  overflow: hidden;
}
.cart-thumb image-slot { width: 100%; height: 100%; }
.cart-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-info .cn { font-size: 17px; font-weight: 500; letter-spacing: -0.3px; color: var(--charcoal); text-decoration: none; }
.cart-info .cn:hover { text-decoration: underline; }
.cart-info .cc { font-size: 13px; color: var(--muted); }
.cart-info .remove {
  align-self: flex-start;
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: 13px; color: var(--muted); text-decoration: underline;
  margin-top: 2px;
}
.cart-info .remove:hover { color: var(--charcoal); }
.cart-end { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-end .lineprice { font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.cart-row .qty button { width: 38px; height: 40px; font-size: 17px; }
.cart-row .qty [data-qty-value] { min-width: 34px; }

/* summary */
.cart-summary {
  position: sticky;
  top: 92px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--offwhite);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-summary h3 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.4px; }
.sum-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--ink-82); }
.sum-row .muted { color: var(--muted); }
.sum-row.total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
}
.sum-row.total .v { font-family: 'Newsreader', Georgia, serif; font-weight: 500; color: var(--navy); }
.ship-hint {
  font-size: 13px;
  color: var(--muted);
  background: var(--gold-faint);
  border-radius: var(--r-std);
  padding: 10px 12px;
  line-height: 1.45;
}
.ship-hint.free { background: rgba(79,154,106,0.14); color: #2f6b48; }
.cart-summary .btn { width: 100%; }

/* empty state */
.empty-state {
  text-align: center;
  max-width: 460px;
  margin: clamp(40px, 8vw, 96px) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.empty-state .ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--offwhite);
  border: 1px solid var(--border);
  box-shadow: var(--inset);
}
.empty-state .ico svg { width: 28px; height: 28px; color: var(--muted); }
.empty-state h2 { margin: 0; }
.empty-state p { margin: 0; color: var(--muted); }

/* =========================== Checkout =============================== */
.checkout-wrap { padding-block: clamp(32px, 5vw, 56px) clamp(64px, 9vw, 110px); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.form-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.fieldset { display: flex; flex-direction: column; gap: 16px; }
.fieldset > h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fieldset > h3 .step-n {
  width: 22px; height: 22px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--offwhite);
  font-size: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--ink-82); }
.field .opt { color: var(--muted); font-weight: 400; }
.input, .select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--offwhite);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-std);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder { color: rgba(28,28,28,0.34); }
.input:focus, .select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22,36,63,0.1);
}
.input.invalid { border-color: #c0492f; box-shadow: 0 0 0 3px rgba(192,73,47,0.1); }
.pay-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--ink-03);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-std);
  padding: 13px 14px;
  line-height: 1.5;
}
.pay-note svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--gold); }

/* mini order summary in checkout */
.order-summary {
  position: sticky;
  top: 92px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--offwhite);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order-summary h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.3px; }
.mini-list { display: flex; flex-direction: column; gap: 12px; }
.mini-row { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.mini-row .mq {
  width: 26px; height: 26px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-micro);
  background: var(--ink-04);
  font-size: 12px; font-weight: 600; color: var(--ink-82);
}
.mini-row .mn { flex: 1; color: var(--ink-82); }
.mini-row .mp { font-variant-numeric: tabular-nums; font-weight: 500; }
.order-summary .divider { border-top: 1px solid var(--border); }
.discount-row { display: flex; gap: 8px; }
.discount-row .input { flex: 1; }
.discount-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(79,154,106,0.14);
  color: #2f6b48;
  border-radius: var(--r-std);
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 500;
}
.discount-applied .remove-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  font: inherit;
  font-size: 12.5px;
  opacity: 0.85;
  cursor: pointer;
}
.discount-msg { font-size: 12.5px; color: var(--muted); min-height: 1em; }
.discount-msg.is-error { color: #c0492f; }

/* =========================== Confirmation =========================== */
.confirm-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-block: clamp(56px, 9vw, 120px);
}
.confirm-card {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.confirm-check {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: rgba(79,154,106,0.14);
  color: #2f6b48;
}
.confirm-check svg { width: 34px; height: 34px; }
.confirm-card h1 {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -1px;
  line-height: 1.04;
}
.confirm-card .order-no {
  font-size: 14px;
  color: var(--ink-82);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-variant-numeric: tabular-nums;
}
.confirm-card .order-no strong { font-weight: 600; }

/* ============================== FAQ ================================= */
.faq-wrap { padding-block: clamp(40px, 6vw, 72px) clamp(64px, 9vw, 110px); max-width: 820px; }
.faq-group { margin-top: 40px; }
.faq-group > .gh {
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 6px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm {
  width: 24px; height: 24px; flex: none;
  position: relative;
}
.faq-item summary .pm::before,
.faq-item summary .pm::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
  transition: transform .22s ease, opacity .22s ease;
}
.faq-item summary .pm::before { top: 11px; left: 3px; width: 18px; height: 1.6px; }
.faq-item summary .pm::after { left: 11px; top: 3px; width: 1.6px; height: 18px; }
.faq-item[open] summary .pm::after { transform: scaleY(0); opacity: 0; }
.faq-item .ans {
  overflow: hidden;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  padding: 0 44px 24px 0;
}
.faq-item .ans p { margin: 0 0 12px; }
.faq-item .ans p:last-child { margin-bottom: 0; }

/* =========================== Prose / info =========================== */
.prose { max-width: 720px; }
.prose h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin: 48px 0 14px;
  color: var(--charcoal);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-82); font-size: 16.5px; line-height: 1.62; margin: 0 0 16px; }
.prose .lead { color: var(--muted); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px 0;
}
.metric {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--cream);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric .mv {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -1px;
}
.metric .ml { font-size: 14px; color: var(--muted); }

/* =========================== Contact =============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-block .ck { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.contact-block .cv { font-size: 17px; color: var(--charcoal); }
.contact-block a.cv { text-decoration: none; }
.contact-block a.cv:hover { text-decoration: underline; }

/* ============================== Toast =============================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--navy);
  color: var(--offwhite);
  border-radius: var(--r-pill);
  padding: 13px 14px 13px 22px;
  box-shadow: 0 18px 44px -16px rgba(15,26,46,0.6), inset 0 0 0 1px var(--gold-faint);
  font-size: 14.5px;
  transition: transform .34s cubic-bezier(0.2,0.7,0.2,1), opacity .3s ease;
  opacity: 0;
  max-width: calc(100vw - 32px);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .toast-link {
  color: var(--navy-deep);
  background: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
.toast .toast-link:hover { opacity: .92; }

/* ===================== Promise / stat block ========================= */
.promise { padding-block: clamp(56px, 8vw, 104px); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.promise-card {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--cream);
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promise-card .ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--offwhite);
  border: 1px solid var(--border);
  box-shadow: var(--inset);
  margin-bottom: 4px;
}
.promise-card .ico svg { width: 20px; height: 20px; color: var(--charcoal); }
.promise-card h4 { margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.3px; }
.promise-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.statbar {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--navy);
  color: var(--offwhite);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.statbar .stat {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.10);
}
.statbar .stat:first-child { border-left: none; }
.statbar .sv {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.statbar .sl { font-size: 13.5px; color: rgba(252,251,248,0.78); line-height: 1.45; }

/* ========================= Calculator =============================== */
.calc-wrap { padding-block: clamp(28px, 4vw, 48px) clamp(64px, 9vw, 110px); }
.calc-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.calc-panel {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--offwhite);
  padding: 28px 26px 30px;
}
.calc-panel h3 { margin: 0 0 20px; font-size: 19px; font-weight: 600; letter-spacing: -0.4px; }
.calc-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.calc-field label { font-size: 13.5px; font-weight: 500; color: var(--ink-82); }
.calc-field .hint { font-size: 12.5px; color: var(--muted); }
.calc-field .with-unit { position: relative; display: flex; align-items: center; }
.calc-field .with-unit .unit {
  position: absolute; right: 14px;
  font-size: 13px; color: var(--muted); pointer-events: none;
}
.calc-results {
  position: sticky; top: 92px;
  display: flex; flex-direction: column; gap: 16px;
}
.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.calc-out {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--cream);
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.calc-out.lead-out { grid-column: 1 / -1; background: var(--navy); color: var(--offwhite); }
.calc-out .ov {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1; letter-spacing: -1px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.calc-out.lead-out .ov { color: var(--gold); font-size: clamp(38px, 4.4vw, 56px); }
.calc-out .ol { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.calc-out.lead-out .ol { color: rgba(252,251,248,0.8); }
.calc-out .osub { font-size: 12.5px; color: var(--muted); }
.calc-out.lead-out .osub { color: rgba(252,251,248,0.6); }
.calc-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted);
  background: var(--ink-03);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-std);
  padding: 13px 14px; line-height: 1.5;
}
.calc-note svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--gold); }
.syringe {
  position: relative;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: var(--offwhite);
  overflow: hidden;
}
.syringe .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-faint), var(--gold-soft));
  border-right: 2px solid var(--gold);
  transition: width .25s ease;
}
.syringe .ticks { position: absolute; inset: 0; display: flex; }
.syringe .ticks i { flex: 1; border-left: 1px solid rgba(28,28,28,0.12); }
.syringe .ticks i:first-child { border-left: none; }
.syringe .lbl {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums;
}

/* ============================ Responsive ============================ */
@media (max-width: 920px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-media { position: static; max-width: 460px; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; order: -1; }
  .pdp-detail { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar .stat:nth-child(3) { border-left: none; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-results { position: static; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 64px 1fr; grid-template-areas: "thumb info" "end end"; row-gap: 14px; }
  .cart-thumb { width: 64px; height: 64px; }
  .cart-end { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
}

/* ---------- Bacteriostatisch water herinnering ---------- */
.bacwater-note {
  border: 1px solid var(--gold-soft);
  background: var(--gold-faint);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bacwater-note .bw-head {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  font-size: 15px;
}
.bacwater-note .bw-head svg { flex: none; color: var(--gold); }
.bacwater-note p { margin: 0; font-size: 14.5px; color: var(--ink-82); line-height: 1.5; }
.bacwater-note .bw-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.cart-wrap .bacwater-note { margin: 0 0 22px; }
