/* Skin-hause — vormgeving naar het model van cosmadic.de.
   Typografie: Figtree (koppen én tekst, gewicht 400, geen uppercase in koppen).
   Palet: inkt #212326, kop #1A1B18, lijn #D2D5D9, crème #FAF0E6,
   sale-rood #D72C0D, sterren #FFB503, knop #303030. Alle hoeken zijn recht. */

:root {
  --ink: #212326;
  --heading: #1A1B18;
  --muted: #6E7378;
  --muted-2: #8A8F94;
  --line: #D2D5D9;
  --line-soft: #E8EAEC;
  --cream: #FAF0E6;
  --cream-2: #F6EDE5;
  --tile: #F2F2F2;
  --sale: #D72C0D;
  --star: #FFB503;
  --success: #008060;
  --btn: #303030;
  --btn-hover: #1A1B18;
  --white: #fff;
  --container: 1240px;
  --pad: 40px;
  --track: 2.2px;   /* letterspacing van de uppercase micro-tekst */
}

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

/* Een eigen display-waarde wint van de browserregel voor [hidden]; zonder deze
   regel blijven verborgen blokken (leeg mandje, kortingsregel) toch staan. */
[hidden] { display: none !important; }

/* Ligt het uitklapmenu over de winkel, dan staat de pagina eronder stil.
   overflow alleen is op iOS niet genoeg; touch-action houdt ook het
   meeveren tegen. Binnen het menu zelf mag je gewoon scrollen.

   Belangrijk: het slot staat op <html> en NIET op <body>. Met overflow:hidden
   op de body wordt de body zelf het scrollgebied, en dan houdt de plakkende
   header op met plakken: die sprong dan terug naar de bovenkant van de pagina.
   Had je naar beneden gescrold, dan opende het menu buiten beeld en leek de
   winkel vast te lopen. */
html.op-slot { overflow: hidden; }
html.op-slot, html.op-slot body { touch-action: none; }
html.op-slot .nav, html.op-slot .modaal { touch-action: pan-y; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 400;
  color: var(--heading);
  letter-spacing: -.2px;
  line-height: 1.25;
  margin: 0;
  overflow-wrap: break-word;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.wide { max-width: 1560px; margin: 0 auto; padding: 0 var(--pad); }

/* Kleine uppercase micro-tekst — komt overal terug: nav, knoppen, labels. */
.micro {
  font-size: 11px;
  letter-spacing: var(--track);
  text-transform: uppercase;
}

/* ---------- Aankondigingsbalk ---------- */

.topbar {
  background: var(--heading);
  color: #fff;
  font-size: 12.5px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 20px;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--heading);
  white-space: nowrap;
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
}
/* De punt is het enige gekleurde element in het merk; hij staat strak tegen
   de laatste letter aan, anders gaat hij zweven op grote formaten. */
.logo__punt { color: var(--sale); margin-left: -.06em; }
.logo--groot { font-size: 46px; letter-spacing: -1.8px; }
.logo--klein { font-size: 20px; letter-spacing: -.7px; }

.nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav__item { position: relative; }
.nav__link {
  font-size: 12px;
  letter-spacing: var(--track);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 26px 0;
  cursor: pointer;
  background: none;
  border: 0;
  white-space: nowrap;
}
.nav__link:hover { color: var(--muted); }
.nav__link--sale { color: var(--sale); }
.nav__caret { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; }

.nav__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .07);
  padding: 28px 32px;
  display: none;
  z-index: 70;
}
.nav__item:hover .nav__mega, .nav__item:focus-within .nav__mega { display: block; }
.nav__mega-inner { display: flex; gap: 56px; }
.nav__col { display: grid; gap: 1px; align-content: start; min-width: 215px; }
.nav__col-title {
  font-size: 10.5px;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 14px;
}
.nav__col a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 10px;
  margin: 0 -10px;
  font-size: 14px;
  white-space: nowrap;
}
.nav__col a:hover { background: var(--cream); }
.nav__n { color: var(--muted-2); font-size: 12px; }

/* Het merkenpaneel is breed; als het onder één menu-item hangt loopt het van
   het scherm af. Daarom hangt het over de volle breedte van de header. */
.nav__item--breed { position: static; }
.nav__mega--breed { left: 0; right: 0; transform: none; padding: 30px var(--pad) 34px; }
.nav__mega--breed .nav__mega-inner {
  max-width: var(--container); margin: 0 auto; gap: 48px; align-items: start;
}

/* Merken in het uitklapmenu, gegroepeerd op beginletter. */
.nav__az { columns: 4; column-gap: 44px; flex: 1; min-width: 0; }
.nav__az-groep { break-inside: avoid; margin: 0 0 18px; display: grid; gap: 1px; }
.nav__az-groep .nav__col-title { margin-bottom: 8px; border-bottom: 1px solid var(--line-soft); padding-bottom: 6px; }
.nav__az-groep a {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 6px 10px; margin: 0 -10px; font-size: 14px;
}
.nav__az-groep a:hover { background: var(--cream); }

/* De pijl hoort bij het uitklapmenu op mobiel; op desktop volstaat hoveren. */
.nav__uit { display: none; }

.header__actions { margin-left: auto; display: flex; align-items: center; gap: 20px; justify-self: end; }
.header__lang {
  font-size: 11px; letter-spacing: var(--track); text-transform: uppercase;
  display: flex; gap: 6px; align-items: center; color: var(--ink);
}
.header__lang svg:first-child { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.icon-btn { background: none; border: 0; padding: 0; cursor: pointer; position: relative; display: block; }
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: var(--heading); stroke-width: 1.4; display: block; }
.cart-count {
  position: absolute; top: -7px; right: -8px;
  background: var(--heading); color: #fff;
  font-size: 10px; line-height: 17px; min-width: 17px; text-align: center;
  border-radius: 50%;
}
.burger { display: none; }

/* ---------- Zoekpaneel ---------- */

.zoek-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .35);
  opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 95;
}
.zoek-backdrop.is-open { opacity: 1; pointer-events: auto; }
.zoek {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line-soft);
  padding: 30px var(--pad) 26px;
  transform: translateY(-100%);
  /* visibility erbij: anders blijft het paneel bereikbaar met de tabtoets. */
  visibility: hidden;
  transition: transform .25s ease, visibility .25s;
}
.zoek.is-open { transform: none; visibility: visible; }
.zoek__inner { max-width: 720px; margin: 0 auto; }
.zoek__form {
  display: flex; align-items: center; gap: 14px;
  border-bottom: 2px solid var(--heading); padding-bottom: 12px;
}
.zoek__form > svg { width: 22px; height: 22px; flex: 0 0 22px; stroke: var(--heading); fill: none; stroke-width: 1.6; }
.zoek__form input {
  flex: 1; min-width: 0; border: 0; outline: none; background: none;
  font: inherit; font-size: 19px; color: var(--ink);
  appearance: none; -webkit-appearance: none;
}
.zoek__form input::-webkit-search-cancel-button { -webkit-appearance: none; }
.zoek__form input::placeholder { color: var(--muted-2); }
.zoek__close { background: none; border: 0; cursor: pointer; font-size: 28px; line-height: 1; color: var(--muted); padding: 0 2px; }
.zoek__close:hover { color: var(--heading); }
.zoek__tips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 18px; font-size: 13px; color: var(--muted); }
.zoek__tips a { border: 1px solid var(--line); padding: 6px 13px; color: var(--ink); }
.zoek__tips a:hover { background: var(--heading); color: #fff; border-color: var(--heading); }

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn);
  color: #fff;
  border: 1px solid var(--btn);
  border-radius: 0;
  min-height: 48px;
  padding: 0 30px;
  font-size: 11px;
  letter-spacing: var(--track);
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  width: 100%;
  text-align: center;
}
.btn:hover { background: var(--btn-hover); border-color: var(--btn-hover); }
.btn[disabled] { background: #C9CCCF; border-color: #C9CCCF; color: #fff; cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--heading); }
.btn--ghost:hover { background: var(--heading); color: #fff; }
.btn--light { background: #fff; color: var(--heading); border-color: var(--line); }
.btn--light:hover { background: var(--heading); color: #fff; border-color: var(--heading); }
.btn--inline { width: auto; }
.btn--sm { min-height: 40px; padding: 0 18px; }

.link-u { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Secties ---------- */

.section { padding: 56px 0; }
.section--tight { padding: 34px 0; }
.section--top0 { padding-top: 0; }
.section--cream { background: var(--cream); }
.section__head {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 30px;
}
.section__title { font-size: 38px; text-align: center; }
.section__sub { color: var(--muted); margin: 10px 0 0; text-align: center; }
.section__more { text-align: center; margin-top: 34px; }

/* ---------- Prijsweergave ---------- */
/* Cosmadic zet de centen klein en verhoogd. In het Nederlands houden we het
   euroteken vooraan, de rest van de opmaak is gelijk. */

.price { display: inline-flex; align-items: flex-start; gap: 2px; white-space: nowrap; }
.price__cur { font-size: .72em; padding-top: .25em; }
.price__int { line-height: 1; }
.price__dec { font-size: .68em; padding-top: .12em; }
.price--old { color: var(--muted-2); text-decoration: line-through; margin-right: 8px; font-size: .85em; }
.price--sale { color: var(--sale); }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price-unit { color: var(--muted-2); font-size: 12.5px; }

/* ---------- Productkaart ---------- */

.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.rail { position: relative; }
.rail__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 18px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__track > * { scroll-snap-align: start; }
.rail__nav { position: absolute; top: -58px; right: 0; display: flex; align-items: center; gap: 14px; }
.rail__btn { background: none; border: 0; padding: 4px; cursor: pointer; line-height: 0; }
.rail__btn svg { width: 22px; height: 14px; stroke: var(--heading); fill: none; stroke-width: 1.2; }
.rail__btn:hover svg { stroke: var(--muted); }
.rail__sep { width: 1px; height: 16px; background: var(--line); }

.card { position: relative; text-align: left; }
.card__media {
  position: relative;
  background: var(--tile);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card__media > a { display: block; width: 100%; height: 100%; }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.card__media img.card__img--alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__img--alt { opacity: 1; }
.card:hover .card__img--main { opacity: 0; }

.card__badges { position: absolute; top: 0; left: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; z-index: 2; }
.badge {
  font-size: 11px;
  letter-spacing: .4px;
  padding: 4px 9px;
  background: var(--sale);
  color: #fff;
  line-height: 1.4;
}
.badge--soldout { background: #fff; color: var(--heading); font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; }
.badge--best, .badge--new { background: var(--heading); font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; }
.badge--bundel { background: var(--success); font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; }

.card__wish {
  position: absolute; right: 8px; top: 8px; z-index: 2;
  background: rgba(255, 255, 255, .85); border: 0; cursor: pointer; padding: 7px;
  opacity: 0; transition: opacity .15s ease;
}
.card:hover .card__wish, .card__wish.is-on { opacity: 1; }
.card__wish svg { width: 18px; height: 18px; fill: none; stroke: var(--heading); stroke-width: 1.4; }
.card__wish.is-on svg { fill: var(--sale); stroke: var(--sale); }

.card__brand { font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted-2); margin: 16px 0 6px; }
.card__title { font-size: 15px; line-height: 1.35; margin: 0 0 8px; color: var(--heading); }
.card__title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.card__price { font-size: 17px; margin: 0 0 7px; }
.card__soon { color: var(--muted); font-size: 13.5px; }
.card__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }

.stars { color: var(--star); letter-spacing: 1.5px; font-size: 14px; font-style: normal; line-height: 1; }
.star { font-style: normal; }
.star--empty { color: #DCDDDE; }
.star--half { background: linear-gradient(90deg, var(--star) 50%, #DCDDDE 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero--video { background: var(--heading); }

/* Achtergrond: de poster, uitvergroot en vervaagd tot een zachte kleurvlek. */
.hero__backdrop {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(34px) brightness(.72) saturate(1.2);
  transform: scale(1.25);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px; align-items: center;
  padding-top: 44px; padding-bottom: 44px;
  min-height: 520px;
}
.hero__player { justify-self: end; position: relative; }
.hero__play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .92);
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
  transition: transform .15s ease, background .15s ease;
}
.hero__play:hover { transform: scale(1.06); background: #fff; }
.hero__play svg { width: 26px; height: 26px; fill: var(--heading); margin-left: 3px; }
.hero__player video {
  display: block; height: 430px; width: auto; max-width: 100%;
  background: #000;
}
.hero__box { max-width: 520px; background: rgba(255, 255, 255, .92); padding: 40px 44px; }
.hero__eyebrow { font-size: 11px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.hero__title { font-size: 46px; line-height: 1.1; margin: 0 0 16px; }
.hero__sub { margin: 0 0 26px; color: var(--ink); }

/* ---------- Beoordelingsbalk (eKomi-strook) ---------- */

.trustbar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 22px 20px; font-size: 14px; flex-wrap: wrap;
}
.trustbar strong { font-weight: 700; }
.trustbar span { color: var(--muted); }

/* ---------- Merkenstrook ---------- */

/* Merkenbalk die doorlopend naar links schuift. Het spoor bevat dezelfde rij
   twee keer; op -50% staat de tweede rij precies waar de eerste begon, dus daar
   springt de animatie terug zonder dat je het ziet.
   De duur schaalt mee met het aantal namen (--merken), anders raast een korte
   rij voorbij en kruipt een lange. */
.brandstrip { background: var(--cream); overflow: hidden; }
.brandstrip__spoor {
  display: flex; width: max-content;
  animation: merkenloop calc(var(--merken, 6) * 5s) linear infinite;
}
/* Even stilzetten zodat je rustig op een merk kunt klikken. */
.brandstrip:hover .brandstrip__spoor,
.brandstrip:focus-within .brandstrip__spoor { animation-play-state: paused; }
/* Elke helft is minstens zo breed als het scherm; anders is de rij smaller dan
   de balk en zie je een gat zodra de lus terugspringt. De namen verdelen zich
   dan gelijkmatig over die breedte. */
.brandstrip__rij { display: flex; min-width: 100vw; align-items: stretch; }
/* Elke naam rekt op tot een gelijk vak: de namen staan netjes verdeeld én de
   hele balk is aanklikbaar, niet alleen de letters zelf. */
.brandstrip__rij a {
  flex: 1 0 auto;
  display: grid; place-items: center; padding: 30px 22px; text-align: center;
  font-size: 15px; letter-spacing: 1.4px; color: var(--heading);
  white-space: nowrap;
}
.brandstrip__rij a:hover { background: var(--cream-2); }

@keyframes merkenloop { to { transform: translateX(-50%); } }

/* Wie in zijn systeem "beweging verminderen" aan heeft staan, krijgt een
   gewone stilstaande rij die je zelf opzij kunt schuiven. */
@media (prefers-reduced-motion: reduce) {
  .brandstrip { overflow-x: auto; }
  .brandstrip__spoor { animation: none; }
}

/* ---------- Ronde categorietegels ---------- */

/* Horizontaal schuivende rij, zoals de referentie. De binnenrij is zo breed
   als zijn inhoud: past hij, dan centreert margin:auto hem; past hij niet, dan
   schuif je hem opzij vanaf links. */
/* De tegels stonden in een rij die je zijwaarts moest schuiven; daardoor waren
   ze klein en viel de helft buiten beeld. Nu een raster dat afloopt met het
   scherm, met flink grotere cirkels. */
.circles__row {
  display: grid;
  /* auto-fit: zoveel tegels naast elkaar als er passen, zonder dat er één
     eenzaam op een tweede regel valt. */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px 22px;
  margin: 0 auto;
}
.circle {
  text-align: center;
  display: grid; gap: 14px; justify-items: center; align-content: start;
}
.circle img, .circle__leeg {
  width: 100%; max-width: 180px; aspect-ratio: 1 / 1; height: auto;
  border-radius: 50%; object-fit: contain;
  background: var(--cream); padding: 14px;
  transition: transform .2s ease;
}
/* Een eigen sfeerfoto mag de cirkel helemaal vullen. */
.circle--foto img { object-fit: cover; padding: 0; }
.circle:hover img { transform: scale(1.04); }
.circle__leeg { display: grid; place-items: center; }
.circle__leeg svg { width: 44px; height: 44px; stroke: var(--muted-2); fill: none; stroke-width: 1.2; }
.circle span { font-size: 15px; font-weight: 500; color: var(--heading); line-height: 1.3; }
.circle__soon { font-size: 11.5px; color: var(--muted-2); font-style: normal; margin-top: -8px; }

/* ---------- Klantbeoordelingen (carrousel met kaartjes) ---------- */

.trust { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 16px; align-items: stretch; }
.trust__score {
  border: 1px solid var(--line-soft); padding: 20px; text-align: center;
  display: grid; align-content: center; gap: 6px;
}
.trust__score b { font-size: 20px; font-weight: 700; }
.trust__score span { font-size: 13.5px; color: var(--muted); }
.trust__card { border: 1px solid var(--line-soft); padding: 16px; font-size: 13px; display: grid; align-content: start; gap: 7px; }
.trust__meta { color: var(--muted-2); font-size: 12px; }
.trust__title { font-weight: 700; color: var(--heading); }
.trust__text { color: var(--ink); margin: 0; }
.trust__badge { color: #1a73e8; font-size: 12px; }

/* ---------- Voordelenrij ---------- */

.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.perk { display: grid; justify-items: center; gap: 10px; }
.perk svg { width: 40px; height: 40px; stroke: var(--heading); fill: none; stroke-width: 1.1; }
.perk strong { font-weight: 400; font-size: 15px; color: var(--heading); }
.perk span { color: var(--muted); font-size: 13.5px; }

/* ---------- Merktegels met opschrift ---------- */

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; height: 320px; overflow: hidden; display: block; background: var(--tile); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.04); }
/* Verloop onderaan: de productfoto's zijn licht, anders valt het opschrift weg. */
.tile::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
  pointer-events: none;
}
.tile span {
  position: absolute; left: 24px; bottom: 20px; z-index: 1; color: #fff;
  font-size: 20px; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ---------- Belofte-band ---------- */

.promise { background: var(--cream); padding: 56px 0; }
.promise .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.promise__item { display: grid; justify-items: center; gap: 8px; }
.promise__icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .7);
  display: grid; place-items: center;
}
.promise__icon svg { width: 24px; height: 24px; stroke: var(--heading); fill: none; stroke-width: 1.2; }
.promise__item strong { font-weight: 400; font-size: 15px; color: var(--heading); }
.promise__item span { color: var(--muted); font-size: 13.5px; }

/* ---------- Redactionele split ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__media { min-height: 420px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__text { background: var(--cream); display: grid; align-content: center; padding: 60px 8%; }
.split__text h2 { font-size: 34px; margin-bottom: 18px; }
.split__text p { margin: 0 0 14px; max-width: 46ch; }
.split__text p:last-child { margin-bottom: 0; }
.split--reverse .split__media { order: 2; }
.split--center .split__text { text-align: center; justify-items: center; }
.split--center .split__text p { margin-left: auto; margin-right: auto; }

/* ---------- Accordeons ---------- */

.acc { border-top: 1px solid var(--line-soft); }
.acc__item { border-bottom: 1px solid var(--line-soft); }
.acc__btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 0; text-align: left;
  font-size: 11px; letter-spacing: var(--track); text-transform: uppercase;
  list-style: none;
}
.acc__btn::-webkit-details-marker { display: none; }
.acc__btn-label { display: flex; align-items: center; gap: 10px; }
.acc__btn svg.acc__chev { width: 13px; height: 13px; stroke: var(--heading); fill: none; stroke-width: 1.6; transition: transform .2s ease; flex: 0 0 13px; }
.acc__ico { width: 16px; height: 16px; stroke: var(--heading); fill: none; stroke-width: 1.3; flex: 0 0 16px; }
.acc__item[open] > .acc__btn svg.acc__chev { transform: rotate(180deg); }
.acc__item.is-open > .acc__btn svg.acc__chev { transform: rotate(180deg); }
.acc__panel { padding: 0 0 22px; color: var(--ink); font-size: 14px; }
.acc__panel > :first-child { margin-top: 0; }
.acc__panel > :last-child { margin-bottom: 0; }
.acc__panel h2 { font-size: 25px; margin: 6px 0 14px; }
.acc__panel h3 { font-size: 18px; margin: 22px 0 10px; }
.acc__panel p { margin: 0 0 14px; }
.acc__panel ul { margin: 0 0 14px; padding-left: 20px; }

/* Genummerde vraag-en-antwoordlijst, zoals onderaan de productpagina's. */
.faq { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q {
  display: flex; align-items: center; gap: 14px; cursor: pointer; list-style: none;
  padding: 20px 0; font-size: 11px; letter-spacing: var(--track); text-transform: uppercase;
  color: var(--heading);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__sign {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--heading); color: #fff; display: grid; place-items: center;
  font-size: 15px; line-height: 1;
}
.faq__sign::before { content: "+"; }
.faq__item[open] .faq__sign::before { content: "–"; }
.faq__a { padding: 0 0 22px; max-width: 105ch; }
.faq__a p { margin: 0 0 12px; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Magazine ---------- */

.mag { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mag__item img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; background: var(--cream); }
.mag__item h3 { font-size: 18px; margin: 16px 0 8px; }
.mag__item p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
.mag__more { font-size: 12px; display: inline-flex; align-items: center; gap: 8px; }
.mag__more::before { content: ""; width: 18px; height: 1px; background: var(--heading); }

/* ---------- Merkenlijst ---------- */

.brandlist { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px 24px; text-align: center; }
.brandlist a { font-size: 14px; padding: 6px 0; }
.brandlist a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Productpagina ---------- */

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 530px;
  gap: 56px;
  padding: 34px var(--pad) 20px;
  max-width: 1560px;
  margin: 0 auto;
  align-items: start;
}
.pdp__media { position: sticky; top: 96px; display: grid; gap: 14px; }
.pdp__stage { aspect-ratio: 1 / 1; background: var(--tile); display: grid; place-items: center; overflow: hidden; }
/* Breedte én hoogte expliciet: anders blijft de height-attribuutwaarde staan
   en valt de foto op smalle schermen buiten het vak. */
.pdp__stage img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: 10px; justify-content: center; overflow-x: auto; scrollbar-width: none; }
.pdp__thumbs::-webkit-scrollbar { display: none; }
.pdp__thumb {
  border: 1px solid transparent; background: var(--tile); padding: 0; cursor: pointer;
  width: 68px; height: 68px; flex: 0 0 68px; overflow: hidden;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb.is-active { border-color: var(--heading); }

.pdp__brand { font-size: 13.5px; color: var(--muted); margin: 0 0 8px; }
.pdp__brand a:hover { text-decoration: underline; text-underline-offset: 3px; }
.pdp__title { font-size: 30px; line-height: 1.22; margin: 0 0 16px; }
.pdp__price { font-size: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 4px; }
.pdp__off { background: var(--sale); color: #fff; font-size: 12px; padding: 3px 8px; align-self: center; }
.pdp__meta { color: var(--muted-2); font-size: 12.5px; margin: 0; }
.pdp__rating { display: flex; align-items: center; gap: 8px; margin: 10px 0 0; font-size: 13.5px; }
.pdp__rating a { color: var(--muted); }

.pdp__usps { display: grid; gap: 11px; margin: 22px 0; }
.pdp__usp { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.pdp__usp svg { width: 20px; height: 20px; flex: 0 0 20px; stroke: var(--heading); fill: none; stroke-width: 1.2; }

.stock { display: flex; align-items: center; gap: 9px; font-size: 14px; margin-bottom: 20px; }
.stock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); flex: 0 0 9px; }
.stock strong { color: var(--success); font-weight: 700; }
.stock--no .stock__dot { background: var(--sale); }
.stock--no strong { color: var(--sale); }

.buyrow { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 12px; align-items: stretch; }
.qty-box { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); }
.qty-box button { width: 34px; height: 46px; background: none; border: 0; cursor: pointer; font-size: 17px; line-height: 1; color: var(--muted); }
.qty-box button:hover { color: var(--heading); }
.qty-box input {
  width: 40px; border: 0; text-align: center; font: inherit; font-size: 15px;
  background: none; -moz-appearance: textfield; appearance: textfield;
}
.qty-box input::-webkit-outer-spin-button, .qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.gift {
  display: flex; gap: 12px; align-items: center;
  background: #EDF7F1; border: 1px solid #CBE6D8;
  padding: 13px 16px; margin: 14px 0; font-size: 13.5px;
}
.gift svg { width: 22px; height: 22px; flex: 0 0 22px; stroke: var(--success); fill: none; stroke-width: 1.3; }
.gift strong { font-weight: 700; }

/* Officiële betaaliconen (de tekeningen van Mollie zelf, 32×24). Ze staan op
   een wit vlakje met een dun randje, zodat lichte logo's niet wegvallen. */
.paylist { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 22px; }
.pay {
  display: grid; place-items: center;
  padding: 3px 5px; border: 1px solid var(--line-soft); background: #fff; border-radius: 4px;
}
.pay-icoon { display: block; width: 32px; height: 24px; }

.pdp__long { max-width: 1560px; margin: 0 auto; padding: 10px var(--pad) 0; }
.pdp__long h2 { font-size: 28px; margin: 0 0 16px; }
.pdp__long h3 { font-size: 19px; margin: 26px 0 10px; }
.pdp__long p { margin: 0 0 14px; }

/* ---------- Reviews ---------- */

.reviews { border: 1px solid var(--line-soft); padding: 30px 34px 36px; margin: 20px auto 60px; max-width: 1000px; }
.reviews h2 { font-size: 24px; text-align: center; margin-bottom: 20px; }
.reviews__summary { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.reviews__score { text-align: center; }
.reviews__score .stars { font-size: 17px; }
.reviews__score b { display: block; font-size: 18px; font-weight: 700; margin-top: 6px; }
.reviews__score p { color: var(--muted); font-size: 13px; margin: 2px 0 0; }
.reviews__bars { display: grid; gap: 5px; max-width: 440px; }
.bar { display: grid; grid-template-columns: 92px 1fr 44px 38px; gap: 10px; align-items: center; font-size: 12.5px; color: var(--muted); }
.bar__track { height: 10px; background: var(--line-soft); }
.bar__fill { height: 100%; background: var(--star); }
.bar .stars { font-size: 12px; }

.review { border-bottom: 1px solid var(--line-soft); padding: 22px 0; }
.review__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.review__date { color: var(--muted-2); font-size: 12.5px; margin-left: auto; }
.review__verified { background: var(--heading); color: #fff; font-size: 10px; padding: 2px 7px; letter-spacing: .4px; }
.review__name { font-weight: 700; font-size: 13.5px; }
.review__title { font-weight: 700; margin: 10px 0 4px; color: var(--heading); }
.review__text { margin: 0; }
.reviews__note { text-align: center; color: var(--muted-2); font-size: 12px; margin-top: 22px; }

/* ---------- Kop van een overzichtspagina ---------- */

.page-head { background: var(--cream); padding: 52px 0; text-align: center; }
.page-head h1 { font-size: 40px; }
.page-head p { color: var(--muted); margin: 12px 0 0; }

.crumbs { padding: 16px 0 0; font-size: 12.5px; color: var(--muted); }
.crumbs .container { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs a:hover { text-decoration: underline; }
.crumbs strong { font-weight: 400; color: var(--ink); }

/* ---------- Collectiepagina ---------- */

.shop { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 44px; align-items: start; }
/* Zonder filterkolom (de salepagina) pakken de producten de volle breedte;
   dan past er ook een vierde kaart naast. */
.shop--vol { grid-template-columns: minmax(0, 1fr); gap: 0; }
.shop--vol .grid--3 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .shop--vol .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .shop--vol .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.shop__side { position: sticky; top: 96px; display: grid; gap: 4px; }
.shop__bar { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.shop__count { color: var(--muted); font-size: 13.5px; margin: 0 0 24px; }

.facet { border-bottom: 1px solid var(--line-soft); }
.facet__head {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; font-size: 11px; letter-spacing: var(--track); text-transform: uppercase;
}
.facet__head::-webkit-details-marker { display: none; }
.facet__head svg { width: 12px; height: 12px; stroke: var(--heading); fill: none; stroke-width: 1.6; transition: transform .2s ease; }
.facet[open] .facet__head svg { transform: rotate(180deg); }
.facet__list { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 1px; }
.facet__link { display: flex; justify-content: space-between; gap: 14px; padding: 7px 10px; margin: 0 -10px; font-size: 14px; }
.facet__link:hover { background: var(--cream); }
.facet__link.is-active { background: var(--heading); color: #fff; }
.facet__link.is-active .facet__n { color: rgba(255, 255, 255, .65); }
.facet__link.is-empty { opacity: .35; pointer-events: none; }
.facet__n { color: var(--muted-2); font-size: 12px; }

.active-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.active-filters__label { font-size: 12.5px; color: var(--muted); }
.pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); padding: 6px 13px; font-size: 12.5px; }
.pill:hover { background: var(--heading); color: #fff; border-color: var(--heading); }
.active-filters__clear { font-size: 12.5px; text-decoration: underline; text-underline-offset: 3px; margin-left: auto; }
.empty { text-align: center; padding: 70px 0; color: var(--muted); display: grid; gap: 18px; justify-items: center; }

/* ---------- Merk- en categorietegels ---------- */

/* ---------- Merken A–Z ---------- */

.az__letters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.az__letter {
  display: grid; place-items: center;
  min-width: 46px; height: 46px; padding: 0 10px;
  background: var(--tile); font-size: 16px;
  transition: background .15s ease, color .15s ease;
}
.az__letter:hover { background: var(--heading); color: #fff; }

.az__zoek { position: relative; max-width: 520px; margin-bottom: 40px; }
.az__zoek svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; fill: none; stroke: var(--muted-2); stroke-width: 1.6;
}
.az__zoek input {
  width: 100%; height: 54px; padding: 0 16px 0 48px;
  border: 1px solid var(--line); background: #fff;
  font: inherit; font-size: 16px; color: var(--ink);
}
.az__zoek input:focus { outline: 0; border-color: var(--heading); }

.az__cols { columns: 4; column-gap: 48px; }
.az__groep { break-inside: avoid; margin: 0 0 34px; }
.az__kop {
  font-size: 21px; margin: 0 0 6px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.az__merk {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  padding: 11px 0; font-size: 16px;
}
.az__merk:hover { color: var(--muted); }
.az__n { color: var(--muted-2); font-size: 12px; }
.az__leeg { color: var(--muted); }

.brand-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.brand-tile { border: 1px solid var(--line-soft); padding: 0 0 24px; text-align: center; transition: border-color .15s ease; }
/* Met een eigen merkfoto loopt het beeld tot aan de rand van de tegel. */
.brand-tile__foto { margin-bottom: 18px; background: var(--tile); }
.brand-tile__foto img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.brand-tile:hover { border-color: var(--heading); }
/* Zonder eigen merkfoto tonen we drie productfoto's. Ze krijgen hetzelfde vak
   als een echte foto, anders worden tegels met en zonder foto ongelijk hoog. */
.brand-tile__shots {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  aspect-ratio: 3 / 2; margin-bottom: 18px; background: var(--tile); padding: 0 10px;
}
.brand-tile__shots img { width: 110px; max-width: 31%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.brand-tile__name { font-size: 19px; margin: 0 18px 5px; }
.brand-tile__meta { color: var(--muted); font-size: 13px; margin: 0 18px; }

.cat-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.cat-tile { border: 1px solid var(--line-soft); padding: 18px 12px 16px; text-align: center; display: grid; gap: 8px; justify-items: center; }
.cat-tile:hover { border-color: var(--heading); }
.cat-tile img { width: 84px; height: 84px; object-fit: cover; background: var(--tile); }
.cat-tile__name { font-size: 13.5px; }
.cat-tile__n { color: var(--muted-2); font-size: 12px; }

/* ---------- Bundels ---------- */

.bundle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.bundle-card { border: 1px solid var(--line-soft); display: grid; grid-template-rows: auto 1fr; }
.bundle-card:hover { border-color: var(--heading); }
.bundle-card__shots { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); background: var(--tile); }
.bundle-card__shots img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; min-width: 0; }
.bundle-card__body { padding: 20px 22px 24px; display: grid; align-content: start; gap: 8px; }
.bundle-card__body h3 { font-size: 18px; }
.bundle-card__body p { color: var(--muted); font-size: 13.5px; margin: 0; }
.bundle-card__price { font-size: 19px; margin-top: 4px; }
.bundle-card__save { color: var(--sale); font-size: 13px; }

.bundle-items { display: grid; gap: 12px; margin: 20px 0; }
.bundle-item { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 14px; align-items: center; border: 1px solid var(--line-soft); padding: 10px; }
.bundle-item img { width: 64px; height: 64px; object-fit: cover; background: var(--tile); }
.bundle-item__brand { font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted-2); }
.bundle-item__title { font-size: 14px; color: var(--heading); }
.bundle-item__price { font-size: 14px; color: var(--muted); }

.bundle-sum { border: 1px solid var(--line); padding: 20px 22px; display: grid; gap: 10px; }
.bundle-sum__row { display: flex; justify-content: space-between; font-size: 14px; }
.bundle-sum__row--total { font-size: 20px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.bundle-sum__row--save { color: var(--sale); }

/* ---------- Winkelmandje (lade + pagina) ---------- */

.drawer-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, .35); opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 90; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 430px; max-width: 92vw;
  background: #fff; z-index: 100; transform: translateX(100%);
  transition: transform .28s ease; display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line-soft); }
.drawer__head h2 { font-size: 18px; }
.drawer__close { background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: var(--muted); }
.drawer__items { flex: 1; overflow-y: auto; padding: 6px 26px; }
.drawer__foot { border-top: 1px solid var(--line-soft); padding: 20px 26px; display: grid; gap: 12px; }
.drawer__total { display: flex; justify-content: space-between; font-size: 16px; }
.drawer__note { color: var(--muted); font-size: 12.5px; margin: 0; }
.drawer__empty { color: var(--muted); text-align: center; padding: 60px 0; }

.line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.line img { width: 70px; height: 70px; object-fit: cover; background: var(--tile); }
.line__brand { font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted-2); margin: 0; }
.line__title { font-size: 14px; margin: 3px 0 8px; color: var(--heading); }
.line__sub { font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.qty { display: inline-flex; border: 1px solid var(--line); }
.qty button { width: 28px; height: 28px; background: none; border: 0; cursor: pointer; color: var(--muted); }
.qty span { width: 30px; height: 28px; display: grid; place-items: center; font-size: 13px; }
.line__remove { background: none; border: 0; color: var(--muted-2); font-size: 11.5px; text-decoration: underline; cursor: pointer; padding: 6px 0 0; }

/* Spaarbalk: gratis cadeau / gratis verzending / gratis product */
.ladder { display: grid; gap: 10px; }
.ladder__track { position: relative; height: 3px; background: var(--line); margin: 22px 0 6px; }
.ladder__fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--heading); transition: width .3s ease; }
.ladder__stop { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 1px solid var(--line); }
.ladder__stop.is-done { background: var(--heading); border-color: var(--heading); }
.ladder__stop b { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); font-size: 11.5px; font-weight: 400; color: var(--muted); white-space: nowrap; }
.ladder__msg { font-size: 13px; text-align: center; color: var(--ink); }

/* Winkelwagenpagina */
.cart-head { display: grid; grid-template-columns: minmax(0, 1fr) 130px 140px 130px; gap: 16px; font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted-2); padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.cart-head span:nth-child(n+2) { text-align: right; }
.cart-head span:nth-child(3) { text-align: center; }
.cart-row { display: grid; grid-template-columns: minmax(0, 1fr) 130px 140px 130px; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.cart-row__product { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 18px; align-items: center; }
.cart-row__product img { width: 84px; height: 84px; object-fit: cover; background: var(--tile); }
.cart-row__price, .cart-row__total { text-align: right; }
.cart-row__qty { display: flex; justify-content: center; }
.cart-row__del { background: none; border: 1px solid var(--line-soft); cursor: pointer; width: 30px; height: 30px; display: grid; place-items: center; margin-left: auto; margin-top: 8px; }
.cart-row__del svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 1.4; }
.cart-foot { display: grid; grid-template-columns: 1fr 420px; gap: 60px; margin-top: 34px; align-items: start; }
.cart-note label { display: block; font-size: 14px; margin-bottom: 10px; }
.cart-note textarea { width: 100%; max-width: 380px; height: 90px; border: 1px solid var(--line); padding: 12px 14px; font: inherit; font-size: 14px; }
.cart-sum { display: grid; gap: 12px; }
.cart-sum__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.cart-sum__row--total { font-size: 20px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.cart-sum__note { color: var(--muted); font-size: 12.5px; margin: 0; text-align: right; }

/* Kortingscode-invoer */
.promo { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.promo input { height: 46px; border: 1px solid var(--line); padding: 0 14px; font: inherit; font-size: 14px; width: 100%; }
.promo input:focus { outline: 2px solid var(--heading); outline-offset: -2px; }
.promo .btn { width: auto; min-height: 46px; }
.promo-msg { font-size: 13px; margin: 0; }
.promo-msg--ok { color: var(--success); }
.promo-msg--err { color: var(--sale); }
.promo-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid var(--line); padding: 6px 12px; font-size: 12.5px; }
.promo-tag button { background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 15px; line-height: 1; }
.promo-hint { color: var(--muted); font-size: 12.5px; margin: 0; }

.acties { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 950px) { .acties { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }

/* ---------- Afrekenpagina ---------- */

.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 43%; min-height: 70vh; }
.checkout__form { padding: 40px var(--pad) 70px; }
.checkout__form-inner { max-width: 480px; margin: 0 auto; }
.checkout__aside { background: #F4F4F5; border-left: 1px solid var(--line-soft); padding: 40px var(--pad) 70px; }
.checkout__aside-inner { max-width: 400px; }
.checkout h2 { font-size: 19px; margin: 30px 0 14px; }
.checkout h2:first-child { margin-top: 0; }
.checkout__uitleg { margin: -8px 0 14px; color: var(--muted); font-size: 13.5px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f { position: relative; margin-bottom: 12px; }
.f input, .f select, .f textarea {
  width: 100%; height: 52px; border: 1px solid var(--line); border-radius: 5px;
  padding: 18px 14px 4px; font: inherit; font-size: 15px; background: #fff;
}
.f textarea { height: 90px; padding-top: 24px; resize: vertical; }
.f select { padding-top: 16px; }
.f label {
  position: absolute; left: 14px; top: 16px; color: var(--muted);
  font-size: 15px; pointer-events: none; transition: all .12s ease;
}
.f input:focus, .f select:focus, .f textarea:focus { outline: 2px solid #3C7CF6; outline-offset: -2px; border-color: #3C7CF6; }
.f input:focus + label, .f input:not(:placeholder-shown) + label,
.f textarea:focus + label, .f textarea:not(:placeholder-shown) + label,
.f select + label { top: 7px; font-size: 11px; }
.f-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin: 4px 0 16px; }
.f-check input { margin-top: 3px; }

.pay-options { border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.pay-option { display: block; border-bottom: 1px solid var(--line); }
.pay-option:last-child { border-bottom: 0; }
.pay-option__head { display: flex; align-items: center; gap: 12px; padding: 15px 16px; cursor: pointer; font-size: 15px; }
.pay-option__naam { min-width: 0; }
/* Het icoon staat rechts, altijd op dezelfde hoogte, zodat de rij rustig oogt.
   Iets groter dan in de voettekst: hier moet je erop kunnen mikken. */
.pay-option__head .pay-icoon { margin-left: auto; flex: none; width: 42px; height: auto; }
.pay-option__head .paylist { margin: 0 0 0 auto; }
.pay-option input { accent-color: var(--heading); flex: none; width: 18px; height: 18px; }
.pay-option__body { display: none; padding: 0 16px 15px 46px; font-size: 13.5px; color: var(--muted); }
.pay-option:hover { background: #FAFAFB; }
.pay-option:has(input:checked) .pay-option__body { display: block; }
/* Gekozen regel: rustig grijs kader in de huisstijl, geen felblauw. */
.pay-option:has(input:checked) {
  background: #FAFAFB;
  outline: 1.5px solid var(--heading); outline-offset: -1.5px;
  position: relative; z-index: 1;
}

.sum-line { display: grid; grid-template-columns: 66px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding-bottom: 18px; }
.sum-line__img { position: relative; width: 66px; height: 66px; }
.sum-line__img img { width: 100%; height: 100%; object-fit: cover; background: var(--tile); border: 1px solid var(--line-soft); border-radius: 6px; }
.sum-line__n { position: absolute; top: -8px; right: -8px; background: var(--muted); color: #fff; font-size: 11px; min-width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; }
.sum-line__title { font-size: 14px; color: var(--heading); }
.sum-line__sub { font-size: 12px; color: var(--muted); }
.sum-rows { display: grid; gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.sum-rows__r { display: flex; justify-content: space-between; font-size: 14px; }
.sum-rows__r--total { font-size: 22px; padding-top: 14px; border-top: 1px solid var(--line); align-items: baseline; }
.sum-rows__r--total span:first-child { font-size: 17px; }
.sum-rows__tax { color: var(--muted); font-size: 12.5px; }
.checkout__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-soft); font-size: 13px; }
.checkout__legal a { color: #3C7CF6; text-decoration: underline; }

.checkout-header { border-bottom: 1px solid var(--line-soft); padding: 18px var(--pad); display: flex; align-items: center; gap: 22px; }
.checkout-header__usp { font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted); line-height: 1.7; }

.done { max-width: 620px; margin: 0 auto; padding: 70px var(--pad) 90px; text-align: center; }
.done__mark { width: 62px; height: 62px; border-radius: 50%; background: var(--success); display: grid; place-items: center; margin: 0 auto 22px; }
.done__mark svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 2; }
.done h1 { font-size: 32px; margin-bottom: 12px; }
.done p { color: var(--muted); }

/* ---------- Footer ---------- */

.footer { background: var(--cream); padding: 54px 0 34px; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 40px; }
.footer h3 { font-size: 10.5px; letter-spacing: var(--track); text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a, .footer li { font-size: 14px; }
.footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer__social { display: flex; gap: 16px; }
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }

/* Sociale kanalen onderaan het uitklapmenu. Op desktop staan ze in de
   voettekst; daar hoeven ze niet nog eens in de balk. */
.nav__social { display: none; }
.footer__bottom { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 46px; font-size: 12.5px; color: var(--muted); }
.footer__bottom nav { display: flex; gap: 6px 16px; flex-wrap: wrap; }
.footer__bottom .paylist { margin: 0 0 0 auto; }

/* ---------- Pop-up: e-mailadres achterlaten ---------- */

.modaal-achter {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(0, 0, 0, .45);
}
.modaal {
  position: fixed; z-index: 140;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  text-align: center;
}
/* Met een foto erbij: beeld links, tekst rechts. */
.modaal--breed { width: min(880px, calc(100vw - 32px)); display: grid; grid-template-columns: 1fr 1fr; }
.modaal__beeld { background: var(--cream); }
.modaal__beeld img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modaal__inhoud { padding: 40px 34px 26px; }

.modaal__sluit {
  position: absolute; top: 8px; right: 12px; z-index: 1;
  background: none; border: 0; padding: 6px 10px;
  font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer;
}
.modaal__sluit:hover { color: var(--heading); }
.modaal__logo { margin-bottom: 20px; }
.modaal__titel { font-size: 30px; line-height: 1.15; margin: 0 0 12px; }
.modaal__tekst { color: var(--muted); margin: 0 0 22px; }
.modaal__form { display: grid; gap: 12px; }
.modaal__form input {
  height: 52px; padding: 0 16px;
  border: 1px solid var(--line); background: #fff;
  font: inherit; font-size: 15px; color: var(--ink);
}
.modaal__form input:focus { outline: 0; border-color: var(--heading); }
/* De knop uit het voorbeeld: breed en in de accentkleur. */
.btn--roze { background: var(--sale); border-color: var(--sale); color: #fff; font-size: 15px; }
.btn--roze:hover { background: #b32409; border-color: #b32409; }

.modaal__code { display: grid; gap: 12px; }
.modaal__code-uitleg { margin: 0; color: var(--muted); }
.modaal__code-vak {
  display: flex; align-items: stretch; gap: 0;
  border: 1px dashed var(--line);
}
.modaal__code-vak strong {
  flex: 1; display: grid; place-items: center;
  padding: 15px 12px; font-size: 21px; letter-spacing: 2px;
}
.modaal__code-vak button {
  border: 0; border-left: 1px dashed var(--line);
  background: var(--cream); padding: 0 20px;
  font: inherit; font-size: 13px; cursor: pointer; color: var(--heading);
}
.modaal__code-vak button:hover { background: var(--cream-2); }

.modaal__melding { margin: 12px 0 0; font-size: 14px; }
.modaal__melding.is-fout { color: var(--sale); }
.modaal__melding.is-goed { color: var(--success); }
.modaal__nee {
  display: block; margin: 18px auto 0;
  background: none; border: 0; padding: 4px 8px;
  font: inherit; font-size: 14px; color: var(--muted); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.modaal__nee:hover { color: var(--heading); }
.modaal__klein { margin: 2px 0 0; font-size: 12px; color: var(--muted-2); }

@media (max-width: 720px) {
  /* Naast elkaar past niet meer: de foto gaat als band naar boven. */
  .modaal--breed { grid-template-columns: 1fr; width: min(440px, calc(100vw - 32px)); }
  .modaal__beeld { height: 150px; }
  .modaal__inhoud { padding: 28px 22px 22px; }
  .modaal__titel { font-size: 25px; }
}

/* ---------- Toast ---------- */

.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px);
  background: var(--heading); color: #fff; padding: 13px 22px;
  font-size: 13px; opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 120;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */

@media (max-width: 1280px) {
  .pdp { grid-template-columns: minmax(0, 1fr) 440px; gap: 40px; }
  .brandlist { grid-template-columns: repeat(4, 1fr); }
  .nav { gap: 20px; }
  .nav__link { font-size: 11px; }
}

@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rail__track { grid-auto-columns: calc(33.333% - 16px); }
  .shop { grid-template-columns: 200px minmax(0, 1fr); gap: 28px; }
  .bundle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .az__cols { columns: 3; }
  .checkout { grid-template-columns: 1fr; }
  .checkout__aside { border-left: 0; border-bottom: 1px solid var(--line-soft); order: -1; }
  .checkout__aside-inner, .checkout__form-inner { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 950px) {
  :root { --pad: 20px; }
  .header__lang { display: none; }
  .burger { display: block; }
  /* Logo en iconen op regel 1; het menu klapt als volle tweede regel uit. */
  /* Kolom 1 hamburger, kolom 2 logo, kolom 3 de iconen. */
  /* Rij 1 vast op 62px: min-height geldt voor het hele raster, dus zodra het
     menu als tweede rij uitklapte werd de balk met logo en iconen platgedrukt. */
  .header__inner {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: 62px auto;
    min-height: 62px; row-gap: 0; column-gap: 14px;
  }
  .burger { grid-row: 1; grid-column: 1; }
  .burger svg { width: 25px; height: 25px; stroke-width: 1.5; }
  .logo { font-size: 21px; grid-row: 1; grid-column: 2; }
  .header__actions { grid-row: 1; grid-column: 3; }
  .nav {
    grid-row: 2; grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0 calc(var(--pad) * -1);
    padding: 4px var(--pad) 14px;
    border-top: 1px solid var(--line-soft);
  }
  /* Past het menu niet op het scherm, dan scrolt het menu zelf — niet de
     winkel erachter. */
  .nav.is-open {
    display: flex;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  /* dvh houdt rekening met de balk van de mobiele browser die in- en uitschuift. */
  @supports (height: 100dvh) {
    .nav.is-open { max-height: calc(100dvh - 62px); }
  }
  /* In het uitklapmenu is 12px met brede letterafstand slecht leesbaar;
     groter, vet en strakker gespatieerd leest een stuk rustiger. */
  .nav__link { font-size: 15px; font-weight: 700; letter-spacing: 1.1px; padding: 15px 0; flex: 1; }
  .nav__item { display: flex; align-items: center; border-bottom: 1px solid var(--line-soft); }
  .nav__item:last-child { border-bottom: 0; }
  /* Het caretje wijst omlaag; op mobiel doet de pijl rechts dat werk. */
  .nav__caret { display: none; }
  /* De rij mag doorlopen naar een tweede regel: daar staat het submenu. */
  .nav__item { flex-wrap: wrap; }

  /* Tikken op de regel klapt het submenu open; de pijl doet hetzelfde en
     draait mee. Standaard staat alles dicht. */
  .nav__uit {
    display: grid; place-items: center;
    width: 46px; height: 46px; flex: none;
    margin-right: calc(var(--pad) * -1 + 4px);
    background: none; border: 0; padding: 0; cursor: pointer;
  }
  .nav__uit svg {
    width: 17px; height: 17px; fill: none; stroke: var(--heading); stroke-width: 2.2;
    transition: transform .18s ease;
  }
  .nav__item.is-uit .nav__uit svg { transform: rotate(90deg); }   /* open: omlaag */

  /* Het submenu staat in het menu zelf, onder zijn eigen regel. */
  .nav__mega {
    position: static; inset: auto; transform: none; z-index: auto;
    width: 100%; order: 3;
    border: 0; box-shadow: none; background: none;
    padding: 0 0 18px;
    display: none;
  }
  /* Op desktop opent het paneel bij hover en focus. Op een touchscreen blijft
     de aangetikte link de focus houden, waardoor :focus-within het paneel open
     hield en dichtklappen niets leek te doen. Hier telt alleen 'is-uit'. */
  .nav__item:hover .nav__mega,
  .nav__item:focus-within .nav__mega { display: none; }
  .nav__item.is-uit .nav__mega { display: block; }
  /* Eén blok open = alleen dat blok. De rest van het menu staat in de weg als
     je door de merken of huidtypes scrolt. */
  .nav.heeft-uit .nav__item:not(.is-uit) { display: none; }
  .nav__social {
    display: flex; gap: 22px;
    padding: 20px 0 6px;
    border-top: 1px solid var(--line-soft);
  }
  .nav__social svg { width: 22px; height: 22px; fill: currentColor; display: block; }
  /* Staat er een blok open, dan hoort ook deze rij bij "de rest". */
  .nav.heeft-uit .nav__social { display: none; }

  .nav__mega-inner { flex-direction: column; gap: 20px; }
  /* "Shop op huidtype" boven de lijst is dubbelop: de menuregel erboven zegt
     al waar je bent. */
  .nav__mega-inner > :first-child > .nav__col-title { display: none; }
  .nav__col { min-width: 0; gap: 0; }
  .nav__col-title { margin-bottom: 6px; }
  .nav__col a, .nav__az-groep a {
    padding: 9px 0; margin: 0; font-size: 15px; white-space: normal;
    color: var(--muted);
  }
  .nav__col a:hover, .nav__az-groep a:hover { background: none; }
  /* In het menu zelf zijn de letterkoppen te veel: het menu wordt er twee
     schermen lang van. De merken staan er alfabetisch, in twee kolommen.
     Het A–Z-overzicht mét letters staat op merken.php. */
  /* flex:none, anders rekt de kolom op en valt er een gat onder de merken. */
  .nav__az { columns: 2; column-gap: 26px; width: auto; max-width: none; flex: none; }
  .nav__az-groep { margin: 0; }
  .nav__az-groep .nav__col-title { display: none; }
  .nav__az-groep a { padding: 8px 0; }
  .zoek { padding: 24px var(--pad) 20px; }
  .zoek__form input { font-size: 17px; }
  /* minmax(0,…) is nodig: anders houdt de thumbnailrij de kolom op zijn
     min-content-breedte en schuift de pagina horizontaal weg. */
  .pdp { grid-template-columns: minmax(0, 1fr); padding-top: 20px; }
  .pdp__info { min-width: 0; }
  .pdp__media { position: static; }
  /* Staand beeld op een staand scherm: video boven, tekst eronder. */
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 22px; padding-top: 22px; padding-bottom: 26px; min-height: 0; }
  .hero__player { justify-self: center; order: -1; }
  .hero__player video { height: auto; width: 100%; max-width: 300px; }
  .hero__box { padding: 28px 26px; }
  .hero__title { font-size: 32px; }
  .section__title { font-size: 28px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 300px; }
  .split__text { padding: 40px 24px; }
  .circles__row { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 28px 18px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .tile { height: 240px; }
  .perks, .promise .container { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .mag { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer__bottom .paylist { margin-left: 0; }
  .reviews { padding: 22px 18px 28px; }
  .reviews__summary { grid-template-columns: 1fr; gap: 20px; }
  .shop { grid-template-columns: minmax(0, 1fr); gap: 0; }
  /* Op een telefoon stond de filterkolom als een blok van bijna 800px vóór de
     producten: je moest er eerst helemaal langs scrollen. Daar navigeer je op
     mobiel via het menu, dus hier laten we hem weg. Sorteren blijft wel staan. */
  .shop__side { display: none; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .az__cols { columns: 2; column-gap: 24px; }
  .az__merk { font-size: 15px; }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .cat-tile img { width: 60px; height: 60px; }
  .active-filters__clear { margin-left: 0; }
  .cart-head { display: none; }
  .cart-row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .cart-row__price, .cart-row__total { text-align: left; }
  .cart-row__qty { justify-content: flex-start; }
  .cart-row__del { margin-left: 0; }
  .cart-foot { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  /* Twee naast elkaar op een telefoon, net als de rest van de winkel. */
  .circles__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; }
  .circle span { font-size: 15.5px; }
  .search { padding-right: 4px; }
  .search__go { padding: 0 12px; font-size: 10px; }
  /* Altijd twee productkaarten naast elkaar, ook op de collectiepagina.
     Bundelkaarten zijn te breed voor twee kolommen en blijven één per rij. */
  .grid, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 14px; }
  .bundle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
  .bundle-card__body { padding: 14px 14px 18px; gap: 6px; }
  /* 'BUNDEL · 4 PRODUCTEN' past in twee kolommen niet op één regel. */
  .bundle-card__body .badge { font-size: 9.5px; letter-spacing: .8px; padding: 4px 7px; }
  .bundle-card__body h3 { font-size: 15px; }
  .bundle-card__body p { font-size: 12.5px; }
  .bundle-card__price { font-size: 16px; }
  .mag__item h3 { font-size: 15px; }
  .mag__item p { font-size: 13px; }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Twee kaarten in beeld, met een randje van de derde als hint. */
  .rail__track { grid-auto-columns: calc(50% - 20px); gap: 14px; }
  .rail__nav { display: none; }
  .section { padding: 40px 0; }
  .section__title { font-size: 24px; }
  .pdp__title { font-size: 23px; }
  .page-head h1 { font-size: 28px; }
  .brandstrip__rij a { padding: 24px 22px; font-size: 14px; }
  /* Op een smal scherm is de rij korter; met dezelfde duur zou hij kruipen. */
  .brandstrip__spoor { animation-duration: calc(var(--merken, 6) * 2.5s); }
  .brandlist { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-auto-columns: 78%; overflow-x: auto; scrollbar-width: none; }
  .f-row { grid-template-columns: 1fr; }
  .buyrow { grid-template-columns: 96px minmax(0, 1fr); }
}

/* Nette afdruk voor feedbackrondes op papier. */
@media print {
  .header, .topbar, .drawer, .drawer-backdrop, .rail__nav { display: none !important; }
}

/* ---------- Kleine hulpklassen ---------- */

/* Ankers uit de footer mogen niet onder de plakkende header verdwijnen. */
[id] { scroll-margin-top: 96px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
@media (max-width: 950px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.page-head__intro{max-width:64ch;margin:14px auto 0;color:var(--muted)}
.page-head__intro p{margin:0 0 10px}
.page-head__intro p:last-child{margin-bottom:0}
