/* 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; }
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%; 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;
  height: 74px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo {
  font-size: 27px;
  font-weight: 700;
  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; gap: 30px; justify-self: center; }
.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; }

.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; }

/* ---------- 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--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__media { position: relative; height: 520px; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero__content .wide { width: 100%; }
.hero__box { max-width: 520px; background: rgba(255, 255, 255, .9); 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 ---------- */

.brandstrip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); background: var(--cream); }
.brandstrip a {
  display: grid; place-items: center; padding: 30px 16px; text-align: center;
  font-size: 15px; letter-spacing: 1.4px; color: var(--heading);
  border-right: 1px solid rgba(0, 0, 0, .05);
}
.brandstrip a:last-child { border-right: 0; }
.brandstrip a:hover { background: var(--cream-2); }

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

.circles { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; }
.circle { text-align: center; display: grid; gap: 12px; justify-items: center; }
.circle img {
  width: 104px; height: 104px; border-radius: 50%; object-fit: contain;
  background: var(--cream); padding: 12px;
  transition: transform .2s ease;
}
.circle:hover img { transform: scale(1.05); }
.circle span { font-size: 13.5px; color: var(--heading); }

/* ---------- 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; }

.paylist { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 22px; }
.pay {
  height: 26px; min-width: 40px; padding: 0 7px; border: 1px solid var(--line-soft); background: #fff;
  display: grid; place-items: center; font-size: 9px; font-weight: 700; letter-spacing: .3px;
  color: var(--heading); border-radius: 3px; text-transform: uppercase;
}
.pay--ideal  { color: #CC0066; }
.pay--klarna { background: #FFB3C7; border-color: #FFB3C7; color: #0A0B09; }
.pay--paypal { color: #003087; }
.pay--visa   { color: #1A1F71; }
.pay--mc     { color: #EB001B; }
.pay--applepay { color: #000; }
.pay--bancontact { color: #005498; }

.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; }
.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 ---------- */

.brand-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.brand-tile { border: 1px solid var(--line-soft); padding: 26px 22px 24px; text-align: center; transition: border-color .15s ease; }
.brand-tile:hover { border-color: var(--heading); }
.brand-tile__shots { display: flex; justify-content: center; gap: 6px; margin-bottom: 18px; }
.brand-tile__shots img { width: 110px; max-width: 31%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; background: var(--tile); }
.brand-tile__name { font-size: 19px; margin-bottom: 5px; }
.brand-tile__meta { color: var(--muted); font-size: 13px; margin: 0; }

.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; }

/* ---------- 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__express { text-align: center; margin-bottom: 8px; }
.checkout__express p { font-size: 13px; color: var(--muted); margin: 0 0 10px; }
.checkout__or { display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-size: 11px; letter-spacing: var(--track); text-transform: uppercase; margin: 20px 0; }
.checkout__or::before, .checkout__or::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.btn--paypal { background: #FFC439; border-color: #FFC439; color: #003087; font-weight: 700; font-size: 15px; letter-spacing: 0; text-transform: none; }
.btn--paypal:hover { background: #F2B630; border-color: #F2B630; color: #003087; }

.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: 14px 16px; cursor: pointer; font-size: 14.5px; }
.pay-option__head .paylist { margin: 0 0 0 auto; }
.pay-option input { accent-color: #3C7CF6; }
.pay-option__body { display: none; padding: 0 16px 16px; font-size: 13.5px; color: var(--muted); background: #FAFAFB; }
.pay-option:has(input:checked) .pay-option__body { display: block; }
.pay-option:has(input:checked) { background: #F2F7FF; outline: 2px solid #3C7CF6; outline-offset: -2px; 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; }
.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; }

/* ---------- 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; }
  .circles { grid-template-columns: repeat(4, 1fr); }
  .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)); }
  .brandstrip { grid-template-columns: repeat(3, 1fr); }
  .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; }
  .nav, .header__lang { display: none; }
  .burger { display: block; }
  .header__inner { height: 62px; grid-template-columns: auto 1fr; }
  .logo { font-size: 21px; }
  /* 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; }
  .hero__media { height: 400px; }
  .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; }
  .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: 1fr; }
  .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; }
  .shop__side { position: static; margin-bottom: 24px; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .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) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 14px; }
  .grid--3, .bundle-grid { grid-template-columns: minmax(0, 1fr); }
  .cat-grid, .circles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail__track { grid-auto-columns: 62%; }
  .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 { grid-template-columns: repeat(2, 1fr); }
  .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; } }
