/* =========================================================
   Pulse · styles
   Warm beige, diep botanisch groen. Editorial en rustig.
   ========================================================= */

:root {
  /* Palet */
  --paper:   #EDE7DA;
  --paper-2: #E3DBCB;
  --ink:     #1C1A16;
  --pine:    #23402F;
  --sage:    #8A9A7B;
  --pulse:   #00C853;

  /* Afgeleiden */
  --ink-70: rgba(28, 26, 22, 0.70);
  --ink-55: rgba(28, 26, 22, 0.55);
  --ink-12: rgba(28, 26, 22, 0.12);
  --ink-08: rgba(28, 26, 22, 0.08);
  --paper-70: rgba(237, 231, 218, 0.72);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Ritme */
  --wrap: 1180px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  /* Inhoud iets naar links: van de vrije ruimte naast de kolom komt maar
     30% links en 70% rechts te liggen (i.p.v. gecentreerd, 50/50). */
  --wrap-ml: max(0px, calc((100% - var(--wrap)) * 0.3));
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 14px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset-achtig ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--paper);
  /* uiterst fijne warme korrel voor papiergevoel */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 { margin: 0; font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450; }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2.5px solid var(--pine);
  outline-offset: 3px;
  border-radius: 3px;
}
.closing :focus-visible,
.footer :focus-visible { outline-color: var(--sage); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--pine);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Wrap ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: var(--wrap-ml);
  margin-right: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: 760px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 1.15rem;
}
.eyebrow--light { color: var(--sage); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.92em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--pine);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn--primary:hover { background: #1a3324; transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(35,64,47,0.9); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-12);
}
.btn--ghost:hover { border-color: var(--pine); color: var(--pine); transform: translateY(-2px); }

.btn--paper {
  background: var(--paper);
  color: var(--pine);
}
.btn--paper:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(0,0,0,0.55); }

.btn--pill {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-12);
  padding: 0.6em 1.2em;
  font-size: 0.92rem;
}
.btn--pill:hover { border-color: var(--pine); color: var(--pine); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper-70);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--ink-12); }

.nav__inner {
  max-width: var(--wrap);
  margin-left: var(--wrap-ml);
  margin-right: auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pine);
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-70);
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px; height: 1.5px;
  background: var(--pine);
  transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav .btn--pill { margin-left: 0.4rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: var(--section-y);
}
.hero__grid {
  max-width: var(--wrap);
  margin-left: var(--wrap-ml);
  margin-right: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 40rem; }

.hero__title { margin: 0.4rem 0 1.6rem; line-height: 0.98; }
.hero__brand {
  display: block;
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  font-weight: 450;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__tag {
  display: block;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--pine);
  margin-top: 0.5rem;
  /* De tagline loopt over twee regels op smallere schermen: de strakke
     line-height van .hero__title zou die tegen elkaar aan duwen. */
  line-height: 1.18;
  letter-spacing: 0;
}

.hero__sub {
  font-size: clamp(1.06rem, 1.4vw, 1.2rem);
  color: var(--ink-70);
  max-width: 32rem;
  margin-top: 1.6rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* Signature morph */
.morph {
  margin: 0;
  padding: 1.35rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(227,219,203,0.55));
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px -34px rgba(35,64,47,0.55);
  max-width: 33rem;
}
.morph__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.9rem;
}
.morph__slot {
  display: grid;
  min-height: 3.6em;
  align-content: center;
}
.morph__raw, .morph__human {
  grid-area: 1 / 1;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.morph__raw {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-55);
  letter-spacing: 0.01em;
  align-self: center;
  opacity: 0; /* default: toon de menselijke zin (ook zonder JS) */
}
.morph__human {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: var(--ink);
  align-self: center;
  opacity: 1;
}
/* JS-gestuurde staten */
.morph[data-state="raw"] .morph__human { opacity: 0; transform: translateY(8px); filter: blur(3px); }
.morph[data-state="raw"] .morph__raw   { opacity: 1; transform: none; filter: none; }
.morph[data-state="human"] .morph__raw   { opacity: 0; transform: translateY(-8px); filter: blur(3px); }
.morph[data-state="human"] .morph__human { opacity: 1; transform: none; filter: none; }

/* pulse-dot (het enige felle groen) */
.pulse-dot {
  position: relative;
  width: 9px; height: 9px;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.pulse-dot__core {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 6px rgba(0,200,83,0.6);
}
.pulse-dot::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--pulse);
  animation: pulse-ring 2.4s var(--ease) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(3); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}

.hero__media {
  position: relative;
}
.hero__media > img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--ink-08);
  box-shadow: 0 40px 80px -48px rgba(35,64,47,0.55);
}

/* Hero slideshow */
.slideshow {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ink-08);
  box-shadow: 0 40px 80px -48px rgba(35,64,47,0.55);
  background: var(--paper-2);
}
/* Elke foto is een link naar de productpagina, met de juiste voorselectie. */
.slideshow__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  will-change: opacity;
}
.slideshow__slide.is-active { opacity: 1; }
/* De foto's die niet in beeld zijn liggen erbovenop: niet aanklikbaar maken. */
.slideshow__slide:not(.is-active) { pointer-events: none; }
.slideshow__slide:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: -4px;
}

.slideshow__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.05);
  transition: transform 6s var(--ease);
  will-change: transform;
}
.slideshow__slide.is-active .slideshow__img { transform: scale(1); }

/* Prijslabel: klein papieren kaartje linksonder, rustig en zonder schaduw. */
.slideshow__tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  max-width: calc(100% - 7rem);
  padding: 0.34rem 0.66rem;
  border-radius: 10px;
  background: var(--paper-70);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: background-color 0.3s var(--ease);
}
.slideshow__tag-price { font-weight: 600; white-space: nowrap; }
.slideshow__slide:hover .slideshow__tag,
.slideshow__slide:focus-visible .slideshow__tag { background: var(--paper); }

.slideshow__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.95rem;
  z-index: 2;
  display: flex;
  /* Rechtsonder, zodat het prijslabel linksonder de ruimte houdt. */
  justify-content: flex-end;
  padding-right: 0.95rem;
  gap: 0.5rem;
}
.slideshow__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--paper-70);
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.slideshow__dot:hover { background: var(--paper); }
.slideshow__dot.is-active { background: var(--paper); transform: scale(1.35); }

@media (prefers-reduced-motion: reduce) {
  .slideshow__slide { transition: opacity 0.4s var(--ease); }
  .slideshow__img { transition: none; transform: none; }
  .slideshow__slide.is-active .slideshow__img { transform: none; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt {
  background: var(--paper-2);
  border-block: 1px solid var(--ink-08);
}

.section__head { max-width: 44rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
}
.section--tight .section__title,
.wrap--narrow .section__title { max-width: 18ch; }

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.58;
  color: var(--ink-70);
  max-width: 40rem;
  margin-top: 1.3rem;
}
.lead + .lead { margin-top: 1.1rem; }

.note {
  font-size: 0.95rem;
  color: var(--ink-55);
  max-width: 40rem;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ink-12);
}
.note--wide { max-width: 52rem; margin-top: clamp(2.6rem, 5vw, 3.6rem); }
.note--inline { margin: 0; padding: 0; border: 0; }

/* ---- vertaal-voorbeelden (niet X maar Y) ---- */
.translate {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-12);
  max-width: 62rem;
}
.translate__row {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) auto 1fr;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(1.3rem, 2.6vw, 1.9rem) 0;
  border-bottom: 1px solid var(--ink-12);
}
.translate__raw {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink-55);
  letter-spacing: 0.01em;
}
.translate__arrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.translate__human {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.28;
  color: var(--ink);
}

/* =========================================================
   PRIVACY
   ========================================================= */
.privacy {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.privacy__media { margin: 0; }
.privacy__media img {
  display: block;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  border-radius: 18px;
  border: 1px solid var(--ink-08);
  box-shadow: 0 40px 80px -50px rgba(35,64,47,0.5);
}

/* =========================================================
   PRODUCT
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 58rem;
}
.feature {
  background: var(--paper-2);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.feature__title {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.feature p { color: var(--ink-70); font-size: 0.98rem; }

.colors { margin-top: clamp(3rem, 6vw, 4.5rem); }
.colors__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.colors__title {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink);
}
.colors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.swatch {
  display: grid;
  gap: 0.85rem;
}
.swatch img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--ink-08);
  background: var(--paper);
}
.swatch__name {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* =========================================================
   FACTS (Nederland)
   ========================================================= */
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
  margin-top: 2rem;
}
.facts li {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  border: 1px solid var(--ink-12);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  background: rgba(255,255,255,0.25);
}

/* =========================================================
   CLOSING CTA (pine)
   ========================================================= */
.closing {
  background: var(--pine);
  color: var(--paper);
  padding-block: clamp(5rem, 11vw, 8.5rem);
  position: relative;
  overflow: hidden;
}
.closing::after {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  right: -18vw; top: -22vw;
  background: radial-gradient(circle, rgba(138,154,123,0.22), transparent 68%);
  pointer-events: none;
}
/* Dit blok staat wél midden op de pagina: .wrap ligt normaal iets naar links. */
.closing__inner { text-align: center; margin-inline: auto; position: relative; z-index: 1; }
.closing__title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 1.1rem;
  color: var(--paper);
}
.closing__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: rgba(237,231,218,0.78);
  max-width: 34rem;
  margin: 0 auto 2.2rem;
}
.closing__note {
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(237,231,218,0.55);
}
/* Twee noten onder elkaar horen dichter op elkaar te staan. */
.closing__note--tight { margin-top: 0.45rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-08);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--ink-12);
}
.footer__mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
}
.footer__brand p {
  color: var(--ink-55);
  margin-top: 0.6rem;
  max-width: 22rem;
  font-size: 0.98rem;
}
.footer__h {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 1rem;
}
.footer__col a {
  display: block;
  color: var(--ink-70);
  padding: 0.28rem 0;
  width: fit-content;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--pine); }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ink-55);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  /* width is hier nodig: met alleen auto-marges krimpt dit grid-item naar nul,
     omdat de foto's in de slideshow allemaal absoluut gepositioneerd zijn. */
  .hero__media { width: 100%; max-width: 22rem; margin-inline: auto; }
  .privacy { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .features { grid-template-columns: 1fr; }
  .translate__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: start;
  }
  .translate__arrow { justify-self: start; }
  .colors__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .swatch img { max-width: 22rem; }
  .facts li { font-size: 0.72rem; }

  /* Op de telefoon staat de slideshow onder de herotekst, over de volle
     breedte en met een rustiger hoogte dan de 3/4 van de desktop. De
     max-width houdt hem op bredere telefoons uit het hele scherm. */
  .hero__media { max-width: 26rem; }
  .slideshow { aspect-ratio: 4 / 5; }
  .slideshow__tag {
    left: 0.7rem;
    bottom: 0.7rem;
    max-width: calc(100% - 6.4rem);
    font-size: 0.72rem;
  }
  .slideshow__dots { bottom: 0.8rem; padding-right: 0.7rem; }
}

@media (max-width: 380px) {
  :root { --pad: 1.15rem; }
  .hero__brand { font-size: 3rem; }
}

/* =========================================================
   SHARED HEADER / FOOTER COMPONENTS
   ========================================================= */
site-header, site-footer { display: block; }
/* Ruimte gereserveerd zodat er geen sprong is voor de component laadt. */
site-header { min-height: 3.6rem; }

.nav__link.is-current,
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__link.is-current::after,
.nav__links a[aria-current="page"]::after { right: 0; }

/* Hamburger (alleen mobiel) */
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav__toggle:hover { border-color: var(--pine); }
.nav__bars { position: relative; display: block; width: 20px; height: 14px; }
.nav__bars::before, .nav__bars::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1.6px;
  background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__bars::before { top: 3px; }
.nav__bars::after  { top: 10px; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { top: 6.5px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after  { top: 6.5px; transform: rotate(-45deg); }

/* Mobiel paneel */
.nav__panel { display: none; }
.nav__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem var(--pad) 1.25rem;
}
.nav__panel-link {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ink-08);
}
.nav__panel-link.is-current { color: var(--pine); }
.nav__panel-reserve { margin-top: 1rem; align-self: flex-start; }

/* =========================================================
   HOME · hoofdstukken (korte samenvatting per pagina)
   ========================================================= */
.chapters {
  border-top: 1px solid var(--ink-12);
  max-width: 62rem;
}
.chapters__item { border-bottom: 1px solid var(--ink-12); }
.chapters__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(1.6rem, 3vw, 2.3rem) 0.25rem;
  transition: background-color 0.3s var(--ease), padding-inline 0.3s var(--ease);
}
.chapters__link:hover { background: rgba(255,255,255,0.28); padding-inline: 0.9rem 0.9rem; }
.chapters__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--sage);
  letter-spacing: 0.1em;
  padding-top: 0.35rem;
}
.chapters__title {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
}
.chapters__text {
  color: var(--ink-70);
  font-size: 1rem;
  max-width: 46ch;
  display: block;
}
.chapters__arrow {
  font-size: 1.5rem;
  color: var(--pine);
  align-self: center;
  transition: transform 0.3s var(--ease);
}
.chapters__link:hover .chapters__arrow { transform: translateX(6px); }

/* ---------- Plannen (welk plan pak jij) ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.plan { display: flex; }
.plan__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: rgba(255,255,255,0.34);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
}
.plan__link:hover {
  transform: translateY(-4px);
  border-color: var(--pine);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 22px 44px -30px rgba(35,64,47,0.6);
}
.plan__icon {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--pine);
  margin-bottom: 1rem;
}
.plan__title {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.plan__text {
  color: var(--ink-70);
  font-size: 0.98rem;
  line-height: 1.5;
}
.plan__cta {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.plan__cta span { transition: transform 0.3s var(--ease); }
.plan__link:hover .plan__cta span { transform: translateX(5px); }
.plans__note {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink-55);
  font-size: 0.98rem;
}
.plans__note a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .plans { grid-template-columns: 1fr; max-width: 34rem; }
}

/* =========================================================
   INTERIOR PAGE HERO
   ========================================================= */
.page { padding-bottom: clamp(4rem, 9vw, 8rem); }
.page__section { margin-top: clamp(1.6rem, 3.5vw, 2.8rem); }
.page-hero {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.page-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  margin-top: 0.5rem;
}
.page-hero__lead {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 40rem;
  margin-top: 1.5rem;
}

/* Losse tekstblokken op inhoudspagina's */
.prose { max-width: 40rem; }
.prose p { color: var(--ink-70); font-size: clamp(1.05rem, 1.4vw, 1.18rem); }
.prose p + p { margin-top: 1.2rem; }

/* =========================================================
   JURIDISCHE PAGINA'S (voorwaarden / privacy / retourneren)
   Gescoped op .legal zodat de rest van de site ongemoeid blijft.
   ========================================================= */
.legal .page__section { max-width: 40rem; }
.legal h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.legal h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.legal ul, .legal ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-70);
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
}
.legal li { margin-top: 0.5rem; line-height: 1.55; }
.legal li::marker { color: var(--sage); }
/* Loopt de tekst door na een opsomming, dan hoort daar dezelfde
   tussenruimte als tussen twee alinea's. */
.legal ul + p, .legal ol + p { margin-top: 1.2rem; }
.legal a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__updated {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-55);
}
/* Staat er geen tussenzin onder de titel, dan is 0.4rem te krap. */
.page-hero__title + .legal__updated { margin-top: 1.2rem; }

/* Bedrijfsgegevens als definitielijst */
.legal__meta {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1.4rem;
  font-size: 1rem;
  font-style: normal;
}
.legal__meta dt { color: var(--ink-55); }
.legal__meta dd { margin: 0; color: var(--ink); }

/* Uitgelicht kader (o.a. privacy-kernpunt) */
.legal__highlight {
  margin-top: 1.4rem;
  padding: 1.3rem 1.5rem;
  background: rgba(255,255,255,0.34);
  border: 1px solid var(--ink-12);
  border-left: 3px solid var(--pine);
  border-radius: var(--radius);
}
.legal__highlight p { margin: 0; color: var(--ink); font-size: 1.08rem; }

/* Genummerde stappen */
.legal ol.steps { padding-left: 1.3rem; }
.legal ol.steps li { margin-top: 0.7rem; }

/* Modelformulier herroeping */
.model-form {
  margin-top: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper-2);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--ink-70);
  line-height: 1.65;
}
.model-form p { margin: 0 0 0.9rem; }
.model-form p:last-child { margin-bottom: 0; }
.model-form .blank { color: var(--ink-55); }

@media (max-width: 480px) {
  .legal__meta { grid-template-columns: 1fr; gap: 0.15rem; }
  .legal__meta dd { margin-bottom: 0.6rem; }
}

/* Footer: bedrijfsgegevens */
.footer__legal {
  margin-top: 1.1rem;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-55);
}
.footer__legal strong { color: var(--ink-70); font-weight: 600; }
.footer__legal a { color: var(--ink-70); }
.footer__legal a:hover { color: var(--pine); }

/* =========================================================
   ONS VERHAAL (founderpagina: tekst over de volle breedte,
   met kleine zwevende foto's waar de tekst omheen loopt)
   ========================================================= */
.story__lead {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.34;
  color: var(--ink);
  max-width: 52rem;
}
.story h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
/* Tekst gebruikt de volle paginabreedte; blok bevat de zwevende foto */
.story__block { display: flow-root; }
.story .prose { max-width: none; }

/* Kleine foto die rechts zweeft, tekst loopt eromheen (Word-stijl) */
.story__media {
  float: right;
  width: min(230px, 38%);
  margin: 0.4rem 0 0.9rem 1.6rem;
}
.story__media--left {
  float: left;
  margin: 0.4rem 1.6rem 0.9rem 0;
}
.story__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--ink-08);
  box-shadow: 0 18px 38px -28px rgba(35,64,47,0.5);
}

/* Korte puntenlijst zonder drukte */
.points { max-width: 44rem; margin-top: 0.5rem; }
.points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--ink-12);
  color: var(--ink-70);
}
.points li:last-child { border-bottom: 1px solid var(--ink-12); }
.points__k {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--sage);
  padding-top: 0.2rem;
}
.points strong {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-body);
}

/* Volgende-pagina link */
.next {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--pine);
}
.next__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.next__arrow { transition: transform 0.3s var(--ease); }
.next:hover .next__arrow { transform: translateX(6px); }

/* Kleine CTA-regel onderaan inhoudspagina's */
.mini-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--ink-12);
}
.mini-cta__text { color: var(--ink-70); }

/* =========================================================
   RESERVEREN · formulier
   ========================================================= */
.reserve {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form {
  background: var(--paper-2);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.5rem;
}
.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--ink-12);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder { color: var(--ink-55); }
.field input:hover { border-color: var(--ink-55); }
.field input:focus-visible {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(35,64,47,0.15);
}
.field input[aria-invalid="true"] { border-color: #9a3b2f; }
.field input[aria-invalid="true"]:focus-visible { box-shadow: 0 0 0 3px rgba(154,59,47,0.16); }

.form__error {
  min-height: 1.2rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #9a3b2f;
}
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; margin-top: 0.4rem; }
.form__fine {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-55);
  line-height: 1.5;
}
.reserve__aside { padding-top: 0.5rem; }
.reserve__aside .lead { margin-top: 0; }
.steps { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.step__n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--paper);
  background: var(--pine);
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.step p { color: var(--ink-70); font-size: 0.98rem; }
.step strong { color: var(--ink); font-weight: 600; }

/* Bedankt-pagina */
.thanks { text-align: center; }
.thanks .page-hero__title { max-width: none; margin-inline: auto; }
.thanks .page-hero__lead { margin-inline: auto; }

/* =========================================================
   FOOTER · vier kolommen
   ========================================================= */
.footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; }
.footer__mark { display: inline-block; transition: color 0.25s var(--ease); }
.footer__mark:hover { color: var(--pine); }

/* =========================================================
   RESPONSIVE · nieuwe componenten
   ========================================================= */
@media (max-width: 900px) {
  .reserve { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__reserve { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    border-top: 1px solid transparent;
    transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease),
                transform 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .nav__panel[data-open="true"] {
    max-height: 24rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top-color: var(--ink-12);
  }
  .chapters__link { grid-template-columns: auto 1fr; }
  .chapters__arrow { display: none; }
  .points li { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* =========================================================
   PRODUCTPAGINA · INTRO
   ========================================================= */
.pdp-intro {
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

/* Hier wél echt gecentreerd: .wrap staat normaal iets naar links. */
.pdp-intro__inner { margin-inline: auto; }
.pdp-intro__title {
  font-size: clamp(3.4rem, 11vw, 7rem);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pdp-intro__lead {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  color: var(--pine);
  max-width: 26ch;
  margin: clamp(1rem, 2.5vw, 1.6rem) auto 0;
}
.pdp-intro__sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--ink-70);
  max-width: 46ch;
  margin: 1.1rem auto 0;
}

/* =========================================================
   PRODUCTPAGINA (PDP)
   ========================================================= */
.pdp__hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}
/* Kolommen mogen krimpen: anders duwt de min-content van het kooppaneel
   het grid buiten de container (paneel liep rechts uit beeld). */
.pdp__hero > * { min-width: 0; }
.pdp__block { margin-top: clamp(3.5rem, 8vw, 6.5rem); }
.pdp__head { margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }
.pdp__h {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
}
/* Zo groot als de sectietitels elders op de site. */
.pdp__h--lg {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

/* Galerij · één foto van de zwarte band */
.gallery__single {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-08);
  background: var(--paper-2);
}
.gallery__single[hidden] { display: none; }
.gallery__single img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Galerij · de kleuren: één grote foto met de vijf kleuren eronder */
.gallery__colors[hidden] { display: none; }
.gallery__colors .gallery__single { position: relative; }

/* Naam van de kleur, rustig bovenaan in beeld. */
.colorshot__label {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--paper-70);
  backdrop-filter: blur(3px);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  white-space: nowrap;
}

/* De rij kleine kleuren onder de grote foto. */
.colorthumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
  list-style: none;
}
.colorthumb {
  display: block;
  width: 72px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.25s var(--ease);
}
.colorthumb:hover { opacity: 1; }
.colorthumb.is-selected { opacity: 1; }
.colorthumb__shot {
  display: block;
  border: 1.5px solid var(--ink-12);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-2);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.colorthumb:hover .colorthumb__shot { border-color: var(--ink-55); }
.colorthumb.is-selected .colorthumb__shot {
  border-color: var(--pine);
  box-shadow: 0 0 0 1.5px var(--pine);
}
.colorthumb__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.colorthumb__name {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
  line-height: 1.3;
}
.colorthumb.is-selected .colorthumb__name { color: var(--ink); }

/* Smal scherm: iets kleinere kleuren, zodat de vijf naast elkaar blijven. */
@media (max-width: 420px) {
  .colorthumbs { gap: 0.45rem; }
  .colorthumb { width: 60px; }
}

/* "In het kort": tabel naast één foto */
.kort { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.kort__text { min-width: 0; }
.kort .features { max-width: none; margin-top: clamp(1.4rem, 3vw, 2rem); }
.kort__shot {
  position: relative; margin: 0; min-width: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--ink-08); background: var(--paper-2);
}
.kort__shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .kort { grid-template-columns: 1fr; }
  .kort__shot { aspect-ratio: 4 / 3; }
}

/* Kooppaneel */
.buy { max-width: 30rem; }
.buy__name {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0.3rem 0 0.8rem;
  color: var(--ink);
}
.buy__value {
  color: var(--ink-70);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  max-width: 28rem;
}
.price {
  margin: 1.6rem 0 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ink-12);
}
.price__amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--ink);
}
.price__note { display: block; font-size: 0.9rem; color: var(--ink-55); margin-top: 0.35rem; }

/* Kleurkeuze (radiogroep) */
.swatches { border: 0; padding: 0; margin: 0 0 1.5rem; min-inline-size: 0; }
.swatches legend {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.75rem;
  padding: 0;
}
.swatch-opt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem 0.5rem 0.6rem;
  margin: 0 0.5rem 0.5rem 0;
  border: 1.5px solid var(--ink-12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-70);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.swatch-opt input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.swatch-opt__dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex: none;
}
.swatch-opt__dot[data-c="beige"] { background: #CBBBA0; }
.swatch-opt__dot[data-c="blauw"] { background: #3F5A76; }
.swatch-opt__dot[data-c="groen"] { background: #6E7353; }
.swatch-opt__dot[data-c="oranjebeige"] { background: #C6996F; }
.swatch-opt__dot[data-c="oranje"] { background: #C1683A; }
.swatch-opt:hover { border-color: var(--ink-55); color: var(--ink); }
.swatch-opt.is-selected { border-color: var(--pine); color: var(--ink); background: rgba(35,64,47,0.05); }
.swatch-opt:focus-within { outline: 2.5px solid var(--pine); outline-offset: 3px; }
.swatch-opt--soon { cursor: default; opacity: 0.5; }
.swatch-opt--soon:hover { border-color: var(--ink-12); color: var(--ink-70); }

/* Bundelkeuze (band, of band met extra sportband) */
.bundle { border: 0; padding: 0; margin: 0 0 1.5rem; min-inline-size: 0; }
.bundle legend {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-55); margin-bottom: 0.75rem; padding: 0;
}
.bundle-opt {
  position: relative; display: block; padding: 0.9rem 1.05rem;
  border: 1.5px solid var(--ink-12); border-radius: var(--radius);
  cursor: pointer; margin-bottom: 0.6rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.bundle-opt input {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  border: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.bundle-opt:hover { border-color: var(--ink-55); }
.bundle-opt.is-selected { border-color: var(--pine); background: rgba(35,64,47,0.05); }
.bundle-opt:focus-within { outline: 2.5px solid var(--pine); outline-offset: 3px; }
.bundle-opt__row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.bundle-opt__name { font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.bundle-opt__price { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.bundle-opt__tag {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pine); background: rgba(35,64,47,0.1); padding: 0.2rem 0.5rem; border-radius: 999px;
}
.bundle-opt__sub { display: block; margin-top: 0.35rem; font-size: 0.88rem; color: var(--ink-70); line-height: 1.4; }
/* Actieprijs: de oude prijs klein en doorgestreept ervoor. */
.bundle-opt__was {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-55);
  margin-right: 0.15rem;
}

.bundle-colors { margin: 0 0 1.5rem; padding: 1rem 1.05rem; border: 1px solid var(--ink-12); border-radius: var(--radius); background: var(--paper-2); }
.bundle-colors[hidden] { display: none; }
.bundle-colors__label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-55); margin: 0 0 0.7rem;
}
.swatch-row { display: flex; flex-wrap: wrap; }
.bundle-colors__hint { margin: 0.5rem 0 0; font-size: 0.85rem; color: #9a3b2f; }
.bundle-colors__hint[hidden] { display: none; }

/* Beeld-onderbrekingen op de productpagina */
.pdp__shot { margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ink-08); background: var(--paper-2); }
.pdp__shot img { display: block; width: 100%; height: auto; }
.pdp__shot--banner { max-width: 46rem; }
.pdp__shot--banner img { aspect-ratio: 3 / 2; object-fit: cover; }
.pdp__shot--sm { max-width: 22rem; }
.pdp__split { display: grid; grid-template-columns: 22rem 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 760px) {
  .pdp__split { grid-template-columns: 1fr; }
  .pdp__shot--sm { max-width: 20rem; }
}

/* Aantal */
.qty { margin-bottom: 1.5rem; }
.qty__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.75rem;
}
.qty__control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink-12);
  border-radius: 999px;
  overflow: hidden;
}
.qty__control:focus-within { outline: 2.5px solid var(--pine); outline-offset: 3px; }
.qty__btn {
  width: 46px; height: 46px;
  border: 0; background: transparent;
  font-size: 1.35rem; color: var(--ink);
  cursor: pointer; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.2s var(--ease);
}
.qty__btn:hover { background: rgba(35,64,47,0.07); }
.qty__input {
  width: 3rem; text-align: center;
  border: 0; background: transparent;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--ink);
  -moz-appearance: textfield; appearance: textfield;
}
.qty__input:focus-visible { outline: none; }
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Koopknop + noten */
.buy__btn { width: 100%; margin-bottom: 1rem; }
.buy__dispatch { font-size: 0.92rem; color: var(--ink-70); margin-bottom: 0.55rem; }
.buy__trust { font-size: 0.85rem; color: var(--ink-55); line-height: 1.5; }
/* Waar de band mee werkt, direct onder de koopknop. */
.buy__compat { font-size: 0.85rem; color: var(--ink-55); line-height: 1.5; margin-bottom: 0.9rem; }

.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }
.btn:disabled:hover, .btn[aria-disabled="true"]:hover { transform: none; box-shadow: none; }
.btn--primary:disabled:hover, .btn--primary[aria-disabled="true"]:hover { background: var(--pine); }

/* Inline tekstlink */
.inline-link {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--pine);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.inline-link:hover { border-bottom-color: var(--pine); }

/* Specificaties */
.specs { border-top: 1px solid var(--ink-12); max-width: 60rem; }
.specs__row {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 0.6rem 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ink-12);
}
.specs dt { font-weight: 600; color: var(--ink); }
.specs dd { margin: 0; color: var(--ink-70); }
.specs__todo {
  font-family: var(--font-mono);
  font-size: 0.82em;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--sage);
}

/* FAQ */
.faq { border-top: 1px solid var(--ink-12); max-width: 52rem; }
.faq__item { border-bottom: 1px solid var(--ink-12); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--pine);
  flex: none;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 1.4rem; max-width: 44rem; }
.faq__a p { color: var(--ink-70); }

/* PDP responsive */
@media (max-width: 900px) {
  .pdp__hero { grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 2.5rem); }
  .buy { max-width: none; }
  .gallery { max-width: 30rem; }
  .specs__row { grid-template-columns: 12rem 1fr; }
}
@media (max-width: 640px) {
  .specs__row { grid-template-columns: 1fr; gap: 0.2rem; padding: 1rem 0; }
  .specs dt { font-size: 0.95rem; }
}

/* =========================================================
   DE APP-pagina
   Menselijke zin (serif) + rustig "de cijfers"-paneel (mono).
   ========================================================= */
.appsec { margin-top: clamp(3.5rem, 8vw, 6.5rem); }
.appsec__head { max-width: 44rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }

/* "De cijfers"-paneel */
.figures {
  background: var(--paper-2);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem);
}
/* Ankerdoelen (bijv. #fitheid, #slaap, #herstel) niet onder de sticky nav laten vallen */
.figures[id], .metric[id] { scroll-margin-top: 5.5rem; }
.figures__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.figures code, .figures .m {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(28,26,22,0.06);
  padding: 0.08em 0.4em;
  border-radius: 5px;
  color: var(--ink);
  white-space: nowrap;
}
.metric { padding: 1.05rem 0; border-top: 1px solid var(--ink-12); }
.metric:first-of-type { border-top: 0; padding-top: 0; }
.metric__head {
  display: flex; align-items: baseline; gap: 0.65rem; flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.metric__name { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.metric__weight {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--pine);
  background: rgba(35,64,47,0.08);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
}
.metric__body { color: var(--ink-70); font-size: 0.96rem; line-height: 1.55; }

/* Verdeelbalk (gelijke wegingen) */
.weightbar { display: flex; gap: 4px; margin-bottom: 1.4rem; }
.weightbar span { flex: 1; height: 10px; border-radius: 3px; }
.weightbar span:nth-child(1) { background: var(--pine); }
.weightbar span:nth-child(2) { background: #35513E; }
.weightbar span:nth-child(3) { background: var(--sage); }
.weightbar span:nth-child(4) { background: #AEB9A2; }
.figures__caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-55);
  margin-top: 0.6rem;
}
/* Zet de technische uitleg eronder expliciet neer als verdieping. */
.figures__intro {
  font-size: 0.95rem;
  color: var(--ink-70);
  margin-top: -0.7rem;
  margin-bottom: 1.2rem;
}

/* Hartslagzones (oplopende intensiteit, binnen het groene palet) */
.zones { display: flex; gap: 4px; margin: 0.5rem 0 0; }
.zones span { flex: 1; height: 12px; border-radius: 3px; }
.zones span:nth-child(1) { background: #CCD4C2; }
.zones span:nth-child(2) { background: #A8B79A; }
.zones span:nth-child(3) { background: var(--sage); }
.zones span:nth-child(4) { background: #4C6B52; }
.zones span:nth-child(5) { background: var(--pine); }

/* Diepste mechaniek in een details */
.deep { margin-top: 1.3rem; border-top: 1px solid var(--ink-12); }
.deep summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pine);
}
.deep summary::-webkit-details-marker { display: none; }
.deep summary::after {
  content: "+"; font-family: var(--font-body); font-size: 1.3rem; line-height: 1;
  color: var(--pine); flex: none; transition: transform 0.3s var(--ease);
}
.deep[open] summary::after { transform: rotate(45deg); }
.deep__body { padding: 0.6rem 0 0.4rem; }
.deep__body p { color: var(--ink-70); font-size: 0.95rem; }
.deep__body p + p { margin-top: 0.6rem; }

/* Eerlijke lijst */
.honest { border-top: 1px solid var(--ink-12); max-width: 52rem; }
.honest li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ink-12);
  color: var(--ink-70);
}
.honest__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage); margin-top: 0.55rem; flex: none;
}

/* =========================================================
   APP-PAGINA · hero mag de volle breedte gebruiken
   (gescoped, raakt andere pagina's niet)
   ========================================================= */
.app-page .page-hero__title { max-width: none; }
.app-page .page-hero__lead { max-width: 65ch; }
.app-page .pdp__h { max-width: 26ch; }

/* =========================================================
   APP-PAGINA · geannoteerde telefoon per onderwerp
   ========================================================= */
/* Sectie-indeling: telefoon+callouts als één kolom, cijfers ernaast.
   Gestapeld op smal/tussenformaat, tweekoloms met sticky telefoon op desktop. */
.appsec--phone .appsec__phone { margin-top: clamp(1.6rem, 3.5vw, 2.5rem); }

@media (min-width: 1101px) {
  .appsec--phone {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    column-gap: clamp(2rem, 3.5vw, 3.25rem);
    align-items: start;
  }
  .appsec--phone .appsec__head { grid-column: 1 / -1; grid-row: 1; }
  .appsec--phone .appsec__phone { grid-column: 1; grid-row: 2; margin-top: 0; position: sticky; top: 4.75rem; }
  .appsec--phone .figures { grid-column: 2; grid-row: 2; margin-top: 0; max-width: none; }
  .appsec--phone.appsec--flip { grid-template-columns: minmax(0, 1fr) minmax(0, 600px); }
  .appsec--phone.appsec--flip .appsec__phone { grid-column: 2; }
  .appsec--phone.appsec--flip .figures { grid-column: 1; }
}

/* Compacte telefoon + callouts-eenheid */
.walk__stage {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(1.4rem, 2vw, 1.9rem);
  align-items: center;
  max-width: 750px;
}
.walk__stage--right { grid-template-columns: minmax(0, 1fr) 300px; }
.walk__stage--right .phone { order: 2; }
.walk__stage--right .walk__callouts { order: 1; align-items: flex-end; }
.walk__wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.wire { stroke: var(--pine); stroke-width: 1.5; fill: none; stroke-opacity: 0.5; }

.walk__callouts { display: flex; flex-direction: column; justify-content: center; gap: clamp(1rem, 2.4vw, 1.7rem); }
.walk__callouts[hidden] { display: none; }
.callout { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; max-width: 40ch; }
.walk__stage--right .callout { margin-left: auto; grid-template-columns: 1fr auto; text-align: right; }
.walk__stage--right .callout__t { order: 1; }
.walk__stage--right .callout__n { order: 2; }
.callout__n {
  width: 1.6rem; height: 1.6rem; flex: none;
  border-radius: 50%;
  background: var(--pine); color: var(--paper);
  font-family: var(--font-mono); font-size: 0.78rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.callout__t { color: var(--ink-70); font-size: 0.98rem; line-height: 1.5; }

.walk__cap {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--ink-55);
}
.appsec .figures { margin-top: clamp(2rem, 4vw, 3rem); }
.appsec--phone .figures { max-width: 54rem; }

/* Telefoon (donker, natuurgetrouw op de app) */
.phone {
  width: 300px;
  padding: 10px;
  border: 1.5px solid rgba(0,0,0,0.28);
  border-radius: 40px;
  background: #0E1220;
  box-shadow: 0 34px 66px -40px rgba(20,28,45,0.7);
}
.phone__screen {
  position: relative;
  border-radius: 30px;
  background: #161D2E;
  padding: 18px 15px 22px;
  height: 632px;
  overflow: hidden;
  color: #EEF1F7;
}
/* Onderkant subtiel laten weglopen, alsof je verder kunt scrollen */
.phone__screen::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(22,29,46,0) 0%, #161D2E 88%);
  pointer-events: none;
  z-index: 2;
}

/* App-schermen */
.scr { display: flex; flex-direction: column; gap: 14px; }
.scr__hd { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 1.02rem; color: #EEF1F7; }
.scr__hd--c { justify-content: center; }
.scr__chev { color: #6E7A92; font-size: 1.1rem; line-height: 1; }
.scr__sec { font-size: 0.9rem; font-weight: 600; color: #EEF1F7; }
.scr__sub { font-size: 0.78rem; color: #8A93A8; }
.scr__sub--c { text-align: center; }

/* Ring + score */
.ring { width: 146px; height: 146px; transform: rotate(-90deg); }
.ring--lg { width: 166px; height: 166px; }
.ring__track { fill: none; stroke: rgba(255,255,255,0.09); stroke-width: 6; }
.ring__val { fill: none; stroke-width: 6; stroke-linecap: round; }
.ring__val--gold { stroke: #E7B23C; }
.ring__val--sage { stroke: #94A888; }
.ring__val--green { stroke: #5FE08A; }
.pt__panel .ring__val { transition: stroke-dashoffset 0.8s var(--ease); }
@media (prefers-reduced-motion: reduce) { .pt__panel .ring__val { transition: none; } }
.scr__ringbox { position: relative; display: flex; align-items: center; justify-content: center; width: 146px; height: 146px; flex: none; }
.scr__ringbox--lg { width: 166px; height: 166px; margin-inline: auto; }
.scr__big { position: absolute; display: flex; flex-direction: column; align-items: center; }
.scr__num { font-family: var(--font-mono); font-weight: 700; font-size: 2.1rem; line-height: 1; color: #fff; }
.scr__num--xl { font-size: 2.4rem; }
.scr__cap { font-size: 0.66rem; color: #8A93A8; margin-top: 0.3rem; }

/* Fitheid-top: ring + progressie */
.scr__fit-top { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.scr__prog { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.scr__prog-lbl { font-size: 0.82rem; color: #C3C9D6; }
.scr__prog-track { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.scr__prog-track > i { display: block; height: 100%; width: 18%; background: #E7B23C; border-radius: 3px; }
.scr__prog-sub { font-size: 0.66rem; color: #8A93A8; }

/* Kaarten (componenten / analyse) */
.scr__cards { position: relative; display: flex; flex-direction: column; gap: 8px; }
.scr__card {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  background: #212A40; border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 10px 12px;
}
.scr__ic { width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.scr__ic svg { width: 17px; height: 17px; }
.scr__ic--green { background: rgba(70,208,127,0.15); color: #46D07F; }
.scr__ic--gold { background: rgba(231,178,60,0.16); color: #E7B23C; }
.scr__cbody { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.scr__cname { font-size: 0.85rem; color: #EEF1F7; }
.scr__csub { font-size: 0.7rem; color: #8A93A8; }
.scr__cend { display: flex; align-items: center; gap: 8px; }
.scr__cval { font-family: var(--font-mono); font-weight: 700; font-size: 0.92rem; color: #fff; white-space: nowrap; }
.scr__cval--muted { color: #8A93A8; }
.scr__cbar { width: 22px; height: 5px; border-radius: 3px; flex: none; }
.scr__cbar--green { background: #46D07F; }
.scr__cbar--gold { background: #E7B23C; }

/* Slaap: "goed geslapen" */
.scr__good {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center;
  background: rgba(70,208,127,0.1); border: 1px solid rgba(70,208,127,0.2);
  border-radius: 14px; padding: 11px 13px;
}
.scr__check { width: 22px; height: 22px; border-radius: 50%; background: #46D07F; color: #0E1220; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.scr__check svg { width: 12px; height: 12px; }
.scr__goodtx { font-size: 0.8rem; color: #D6DCE6; line-height: 1.35; }

/* Activiteit (Vandaag) */
.scr__toggle { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; background: #212A40; border-radius: 999px; padding: 4px; }
.scr__tg { text-align: center; font-size: 0.82rem; font-weight: 600; color: #8A93A8; padding: 7px 0; border-radius: 999px; }
.scr__tg--on { background: #5FE08A; color: #0E1220; }
.scr__goalcard {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 12px 13px;
}
.scr__goaltx { font-family: var(--font-display); font-weight: 450; font-size: 1.02rem; color: #EEF1F7; }
.scr__goalsub { font-size: 0.72rem; color: #8A93A8; }
.scr__weekcard, .scr__chartcard {
  position: relative; display: flex; flex-direction: column; gap: 9px;
  background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 12px 13px;
}
.scr__wchead { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.scr__wchead > span:first-child { font-size: 0.85rem; font-weight: 600; color: #EEF1F7; }
.scr__muted { font-size: 0.66rem; color: #6E7A92; }
.scr__wcrow { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; }
.scr__days { display: flex; gap: 5px; }
.scr__days i {
  flex: 1; aspect-ratio: 1; border-radius: 50%;
  background: #5FE08A; color: #0E1220; font-size: 0.58rem; font-weight: 700; font-style: normal;
  display: flex; align-items: center; justify-content: center;
}
.scr__days i.off { background: #2E374C; color: #6E7A92; }
.scr__who { font-size: 0.62rem; color: #6E7A92; line-height: 1.35; }
.scr__spark { display: flex; align-items: flex-end; gap: 4px; height: 44px; width: 100%; }
.scr__spark i { flex: 1; background: rgba(95,224,138,0.35); border-radius: 2px; min-height: 3px; }
.scr__spark--chart { height: 52px; gap: 3px; }
.scr__spark--chart i { background: #5FE08A; }
.scr__axis { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.56rem; color: #6E7A92; }
.scr__statrow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scr__statcard {
  position: relative; display: flex; flex-direction: column; gap: 2px;
  background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 11px 12px;
}
.scr__num--md { font-size: 1.4rem; }
.scr__ok { font-size: 0.66rem; color: #5FE08A; }

/* =========================================================
   Interactief app-prototype (navigeerbaar dashboard)
   Hergebruikt .phone/.ring/.scr__ringbox/.walk__*; hieronder
   alleen de nieuwe onderdelen. Alle kleuren spiegelen de app.
   ========================================================= */
.walk__stage--proto { align-items: start; }

/* Telefoon: vast scherm met scrollende inhoud en vaste tab-bar */
.pt__screen { padding: 0; display: flex; flex-direction: column; }
.pt__screen::after { display: none; }
.pt__scroll { flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden; padding: 18px 15px 20px; scrollbar-width: none; }
.pt__scroll::-webkit-scrollbar { width: 0; height: 0; }
.pt__view { position: relative; display: flex; flex-direction: column; gap: 14px; }
.pt__panel { display: none; flex-direction: column; gap: 14px; }
.pt__panel.is-on { display: flex; }
.pt__panel.is-anim { animation: pt-slide 0.32s var(--ease); }
@keyframes pt-slide { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

/* Detail-header met terugknop */
.pt__top { display: grid; grid-template-columns: 36px 1fr 36px; align-items: center; }
.pt__back { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: #EEF1F7; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s var(--ease); }
.pt__back svg { width: 17px; height: 17px; }
.pt__back:hover { background: rgba(255,255,255,0.12); }
.pt__title { text-align: center; font-weight: 600; font-size: 1.08rem; color: #EEF1F7; }

/* Dashboard-kop (Fitheid >) + badge */
.pt__dashhd { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pt__fitbtn { display: inline-flex; align-items: center; gap: 7px; background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; color: #EEF1F7; }
.pt__fitbtn .pt__chev { color: #6E7A92; font-size: 1.25rem; }
.pt__badge { background: rgba(70,208,127,0.14); color: #5FE08A; font-size: 0.74rem; font-weight: 600; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.pt__badge--lg { font-size: 0.92rem; padding: 9px 17px; }

/* Ring-rij (dashboard) en gecentreerde ring (detail) */
.pt__ringrow { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
.pt__ringc { display: flex; flex-direction: column; align-items: center; gap: 11px; padding-top: 4px; }
.pt__prog { display: flex; flex-direction: column; gap: 8px; }
.pt__prog-lbl { font-size: 0.95rem; color: #C3C9D6; text-align: center; }
.pt__bars { display: flex; align-items: flex-end; gap: 7px; height: 78px; }
.pt__bars i { flex: 1; border-radius: 4px; background: #5FE08A; min-height: 6px; }
.pt__bars i.is-gold { background: #E7B23C; }
.pt__prog-sub { font-size: 0.68rem; color: #6E7A92; text-align: center; }
.pt__insight { color: #B8C0CE; font-size: 0.95rem; line-height: 1.4; text-align: center; }

/* Vandaag-kaart (dashboard) */
.pt__day { display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px; align-items: center; background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 12px 14px; }
.pt__dayic { width: 40px; height: 40px; border-radius: 11px; background: rgba(70,208,127,0.14); color: #5FE08A; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pt__dayic svg { width: 20px; height: 20px; }
.pt__daybody b { display: block; font-size: 1rem; color: #EEF1F7; font-weight: 500; }
.pt__daybody span { font-size: 0.76rem; color: #8A93A8; }
.pt__dayscore { font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem; color: #EEF1F7; }
.pt__pill { background: rgba(70,208,127,0.14); color: #5FE08A; font-size: 0.82rem; font-weight: 600; padding: 5px 13px; border-radius: 999px; }

/* Sectiekoppen binnen een scherm */
.pt__sec { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: #EEF1F7; }
.pt__secrow { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.pt__secrow small { font-size: 0.78rem; color: #6E7A92; font-weight: 400; }

/* Componentkaart (knop) */
.pt__comp { position: relative; width: 100%; display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto auto; gap: 11px; align-items: center; text-align: left; background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 13px; cursor: pointer; transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease); }
.pt__comp:hover { border-color: rgba(95,224,138,0.45); background: #263048; }
.pt__compic { width: 40px; height: 40px; border-radius: 11px; background: rgba(70,208,127,0.15); color: #5FE08A; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pt__compic svg { width: 21px; height: 21px; }
.pt__compbody { min-width: 0; }
.pt__compname { font-size: 1rem; color: #EEF1F7; font-weight: 500; }
.pt__compdesc { font-size: 0.74rem; color: #8A93A8; line-height: 1.3; margin-top: 3px; }
.pt__compend { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.pt__compval { font-family: var(--font-mono); font-weight: 700; font-size: 1.3rem; color: #EEF1F7; line-height: 1; }
.pt__comptoday { font-size: 0.7rem; color: #6E7A92; margin-top: 3px; white-space: nowrap; }
.pt__compbar { width: 20px; height: 6px; border-radius: 3px; }
.pt__compbar.is-green { background: #5FE08A; }
.pt__compbar.is-gold { background: #E7B23C; }
.pt__carrow { color: #6E7A92; font-size: 1.25rem; line-height: 1; }

/* Hartslag-kaart */
.pt__hr { background: #10151f; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 14px; }
.pt__hrtop { display: flex; align-items: flex-start; justify-content: space-between; }
.pt__hrlbl { font-size: 0.88rem; color: #8A93A8; }
.pt__hrbpm { font-family: var(--font-mono); font-weight: 700; font-size: 2.1rem; color: #fff; line-height: 1.1; }
.pt__hrbpm span { font-family: var(--font-body); font-weight: 400; font-size: 0.92rem; color: #8A93A8; margin-left: 5px; }
.pt__toggle { width: 44px; height: 25px; border-radius: 999px; background: #2E374C; position: relative; flex: none; }
.pt__toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; }
.pt__hrstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; text-align: center; margin-top: 12px; }
.pt__hrstats > div span { display: block; font-size: 0.66rem; color: #8A93A8; }
.pt__hrstats > div b { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; color: #EEF1F7; }

/* Grafieken (SVG) */
.pt__chart { width: 100%; display: block; }
.pt__chartttl { font-size: 0.82rem; color: #8A93A8; margin-bottom: 4px; }
.pt__chartcap { display: flex; justify-content: space-between; font-size: 0.72rem; color: #6E7A92; margin-top: 6px; }

/* Radar (Balans) */
.pt__radar { width: 100%; max-width: 250px; margin: 2px auto 0; display: block; }
.pt__baltxt { font-size: 0.82rem; color: #8A93A8; line-height: 1.45; }

/* Ontdekt-in-je-data */
.pt__disc { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.pt__disc::-webkit-scrollbar { display: none; }
.pt__disccard { flex: 0 0 60%; background: #212A40; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 13px; }
.pt__discic { width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; }
.pt__discic svg { width: 21px; height: 21px; }
.pt__discic.is-gold { background: rgba(231,178,60,0.18); color: #E7B23C; }
.pt__discic.is-flame { background: rgba(240,136,62,0.18); color: #F0883E; }
.pt__discval { font-weight: 700; font-size: 1.25rem; color: #EEF1F7; margin-top: 14px; }
.pt__disctx { font-size: 0.75rem; color: #8A93A8; line-height: 1.35; margin-top: 5px; }
.pt__discnote { font-size: 0.73rem; color: #6E7A92; }

/* Componentscherm: score-header + balk */
.pt__cscore { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.pt__cscoreic { width: 58px; height: 58px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; }
.pt__cscoreic svg { width: 30px; height: 30px; }
.pt__cscoreic.is-green { background: rgba(70,208,127,0.15); color: #5FE08A; }
.pt__cscoreic.is-gold { background: rgba(231,178,60,0.18); color: #E7B23C; }
.pt__cscoret { font-family: var(--font-display); font-weight: 500; font-size: 1.65rem; color: #EEF1F7; line-height: 1.05; }
.pt__cscorep { font-size: 0.88rem; color: #8A93A8; margin-top: 2px; }
.pt__pbar { height: 9px; border-radius: 5px; background: #2A3346; overflow: hidden; }
.pt__pbar i { display: block; height: 100%; border-radius: 5px; width: 0; transition: width 0.7s var(--ease); }
.pt__pbar i.is-green { background: #5FE08A; }
.pt__pbar i.is-gold { background: #E7B23C; }

/* Kaart met label/waarde */
.pt__panelcard { background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.pt__pcrow { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.pt__pclbl { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8A93A8; }
.pt__bignum { font-family: var(--font-mono); font-weight: 700; font-size: 2.4rem; color: #fff; line-height: 1.1; }
.pt__bignum span { font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: #8A93A8; margin-left: 4px; }
.pt__chip { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; background: #2A3346; color: #C3C9D6; font-size: 0.82rem; padding: 6px 13px; border-radius: 999px; }
.pt__chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #8A93A8; }
.pt__legend { display: flex; gap: 18px; font-size: 0.72rem; color: #8A93A8; }
.pt__legend i { font-style: normal; display: inline-flex; align-items: center; gap: 6px; }
.pt__legdash { width: 16px; height: 3px; border-radius: 2px; background: #5FE08A; display: inline-block; }
.pt__legband { width: 15px; height: 10px; border-radius: 3px; background: rgba(255,255,255,0.16); display: inline-block; }

/* Statraster (Je cijfers) */
.pt__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pt__stat { background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 13px; }
.pt__stat .pt__pclbl { display: block; margin-bottom: 7px; }
.pt__statval { font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem; color: #EEF1F7; }
.pt__statval span { font-family: var(--font-body); font-weight: 400; font-size: 0.82rem; color: #8A93A8; margin-left: 3px; }
.pt__statsub { font-size: 0.66rem; color: #6E7A92; margin-top: 4px; }

/* Rij-kaart (rusthartslag, geslapen, afstand...) */
.pt__row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; background: #212A40; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 13px; }
.pt__rowic { width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pt__rowic svg { width: 20px; height: 20px; }
.pt__rowic.is-green { background: rgba(70,208,127,0.15); color: #5FE08A; }
.pt__rowic.is-purple { background: rgba(139,147,240,0.2); color: #8B93F0; }
.pt__rowic.is-gold { background: rgba(231,178,60,0.18); color: #E7B23C; }
.pt__rowname { font-size: 0.98rem; color: #EEF1F7; }
.pt__rowval { font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: #EEF1F7; white-space: nowrap; }
.pt__note { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.pt__noteic { color: #5FE08A; display: inline-flex; }
.pt__noteic svg { width: 18px; height: 18px; }
.pt__notetx { font-size: 0.73rem; color: #8A93A8; line-height: 1.4; }
.pt__explain { font-size: 0.88rem; color: #B8C0CE; line-height: 1.5; }

/* Tab-bar onderin (vast) */
.pt__tabbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 8px; border-top: 1px solid rgba(255,255,255,0.06); background: #10151f; flex: none; }
.pt__tab { display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: 0; padding: 8px 2px; border-radius: 14px; cursor: pointer; color: #6E7A92; font-size: 0.66rem; font-family: var(--font-body); transition: color 0.2s var(--ease), background-color 0.2s var(--ease); }
.pt__tab svg { width: 22px; height: 22px; }
.pt__tab.is-on { color: #5FE08A; background: rgba(255,255,255,0.05); }
.pt__tab.is-locked { opacity: 0.45; }
.pt__tab.is-locked:hover { opacity: 0.7; }

/* Hint-toast bij gedimde tabs */
.pt__hint { position: absolute; left: 14px; right: 14px; bottom: 82px; z-index: 5; background: rgba(16,21,31,0.97); border: 1px solid rgba(255,255,255,0.12); color: #EEF1F7; font-size: 0.82rem; text-align: center; padding: 11px 12px; border-radius: 13px; opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); pointer-events: none; box-shadow: 0 16px 34px -20px rgba(0,0,0,0.8); }
.pt__hint.is-show { opacity: 1; transform: none; }

/* Callouts: actieve highlight (mark + regel) */
.callout.is-active .callout__n { background: #2f5a41; box-shadow: 0 0 0 4px rgba(35,64,47,0.35); }
.mark.is-active { background: var(--pulse); color: #06210f; transform: scale(1.15); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pt__panel.is-anim { animation: none; }
  .pt__pbar i { transition: none; }
}

/* Mobiel: callouts als lijst onder de telefoon */
@media (max-width: 700px) {
  .walk__stage--proto { grid-template-columns: 1fr; justify-items: center; }
  .walk__stage--proto .walk__wires { display: none; }
  .walk__stage--proto .walk__callouts { justify-items: start; }
}

/* Genummerde markers op het scherm (licht, op donker scherm) */
.mark {
  position: absolute; z-index: 3;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--paper); color: var(--pine);
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px rgba(14,18,32,0.85);
}
.scr__ringbox > .mark { top: 0; right: 0; }
.scr__cards > .mark { top: -11px; right: 4px; }
.scr__card > .mark { top: -9px; right: -9px; }
.scr__good > .mark { top: -9px; right: -9px; }
.scr__toggle > .mark { top: -9px; right: -9px; }
.scr__goalcard > .mark { top: -9px; right: -9px; }
.scr__weekcard > .mark { top: -9px; right: -9px; }
.scr__chartcard > .mark { top: -9px; right: -9px; }
/* Telefoon rechts: markers naar de linkerkant zodat de draden kort blijven */
.walk__stage--right .scr__ringbox > .mark { right: auto; left: 0; }
.walk__stage--right .scr__cards > .mark { right: auto; left: 4px; }
.walk__stage--right .scr__card > .mark { right: auto; left: -9px; }
.walk__stage--right .scr__good > .mark { right: auto; left: -9px; }

/* Smal scherm: geen draden, callouts als genummerde lijst onder de telefoon */
@media (max-width: 700px) {
  .walk__stage,
  .walk__stage--right { grid-template-columns: 1fr; gap: 1.6rem; justify-items: stretch; }
  .walk__stage--right .phone { order: 0; }
  .walk__stage--right .walk__callouts { order: 0; align-items: stretch; }
  .walk__wires { display: none; }
  .phone { width: min(300px, 84vw); margin-inline: auto; }
  .walk__callouts { justify-content: flex-start; max-width: 34rem; margin-inline: auto; }
  .callout,
  .walk__stage--right .callout { max-width: none; margin-left: 0; }
}

/* =========================================================
   WINKELMAND · knop in de nav
   ========================================================= */
.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 0.9rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink-70);
  transition: color 0.25s var(--ease);
}
.nav__cart:hover { color: var(--pine); }
.nav__cart-icon { display: block; }
/* Het aantal, als klein rondje op de rechterbovenhoek van het icoon. */
.nav__cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--pine);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.nav__cart-count[hidden] { display: none; }
/* Zonder links ernaast (mobiel) mag de mand de vrije ruimte pakken en
   staat de hamburger er direct naast. */
@media (max-width: 640px) {
  .nav__cart { margin-left: auto; margin-right: 0.15rem; }
  .nav__toggle { margin-left: 0; }
}

/* =========================================================
   WINKELMAND · lade
   ========================================================= */
.cart { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.cart__scrim {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 22, 0.38);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cart__scrim[hidden] { display: none; }
.cart.is-open { pointer-events: auto; }
.cart.is-open .cart__scrim { opacity: 1; }

.cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(27rem, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-left: 1px solid var(--ink-12);
  box-shadow: -24px 0 60px -40px rgba(28, 26, 22, 0.7);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart__panel[hidden] { display: none; }
.cart.is-open .cart__panel { transform: translateX(0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem var(--pad) 1rem;
  border-bottom: 1px solid var(--ink-12);
}
.cart__title { font-size: 1.5rem; font-weight: 500; }
.cart__close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.cart__close:hover { border-color: var(--pine); color: var(--pine); }

.cart__body { flex: 1; overflow-y: auto; padding: 0.5rem var(--pad); }
.cart__empty { padding: 2.5rem 0; color: var(--ink-70); }

.cart__list { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ink-08);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item__shot {
  width: 80px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--ink-08);
}
.cart-item__main { min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 0.95rem; line-height: 1.35; }
.cart-item__meta { margin-top: 0.15rem; font-size: 0.85rem; color: var(--ink-55); }
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.7rem;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink-12);
  border-radius: 999px;
  overflow: hidden;
}
.cart-item__qty button {
  width: 32px; height: 32px;
  border: 0; background: transparent;
  font-size: 1.1rem; line-height: 1; color: var(--ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.2s var(--ease);
}
.cart-item__qty button:hover { background: rgba(35, 64, 47, 0.07); }
.cart-item__qty span {
  min-width: 1.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.cart-item__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  white-space: nowrap;
}
.cart-item__remove {
  margin-top: 0.5rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--ink-55);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cart-item__remove:hover { color: var(--ink); border-bottom-color: var(--ink-55); }

.cart__foot {
  padding: 1.15rem var(--pad) 1.35rem;
  border-top: 1px solid var(--ink-12);
  background: var(--paper-2);
}
.cart__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}
.cart__row--soft { margin-top: 0.35rem; font-weight: 400; color: var(--ink-70); font-size: 0.92rem; }
.cart__amount { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }

.cart__terms {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.1rem 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-70);
  cursor: pointer;
}
.cart__terms input {
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.18rem 0 0;
  accent-color: var(--pine);
  cursor: pointer;
}
.cart__terms-link {
  color: #2563eb;
  font-weight: 600;
  border-bottom: 1px solid rgba(37, 99, 235, 0.35);
}
.cart__terms-link:hover { border-bottom-color: #2563eb; }

.cart__pay { width: 100%; }
.cart__error { margin-top: 0.6rem; font-size: 0.85rem; color: #9a3b2f; }
.cart__error[hidden] { display: none; }
.cart__cont {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-70);
  transition: color 0.25s var(--ease);
}
.cart__cont:hover { color: var(--pine); }

/* Achtergrond niet meescrollen zolang de lade open staat. */
html.has-cart-open, html.has-cart-open body { overflow: hidden; }

/* Mobiel: de lade komt van onderen en laat de bovenkant vrij. */
@media (max-width: 640px) {
  .cart__panel {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 88vh;
    border-left: 0;
    border-top: 1px solid var(--ink-12);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -24px 60px -40px rgba(28, 26, 22, 0.7);
    transform: translateY(100%);
  }
  .cart.is-open .cart__panel { transform: translateY(0); }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  /* Toon alleen de menselijke zin, statisch */
  .morph__raw { display: none; }
  .morph__human { opacity: 1 !important; transform: none !important; filter: none !important; }
  .pulse-dot::before { display: none; }
}
