/* ============================================================
   Detailschuur — template-stylesheet
   Gedeeld door: index.html, categorie.html, product.html
   ============================================================ */

:root {
  /* Merkkleuren 1-op-1 uit de WoodMart-instellingen van detailschuur.nl.
     De grijzen zijn bewust neutraal (zoals op de live shop) en niet
     blauwzweemig, zodat het nieuwe ontwerp niet afwijkt van de webshop. */
  --red: #e4003d;         /* --btn-accented-bgcolor */
  --red-primary: #d9013b; /* --wd-primary-color */
  --red-dark: #ea0056;    /* --btn-accented-bgcolor-hover */
  --red-deep: #8a0128;
  --pink-soft: #fde8ee;
  --ink: #242424;         /* --wd-title-color */
  --dark: #1f1f1f;
  --dark-2: #141414;
  --navy: #1c2b4b;
  --body: #666666;        /* live #777777, iets donkerder voor leesbaarheid */
  --muted: #6f6f6f;      /* was #8c8c8c: dat haalde op wit geen 4,5:1 */
  --line: #e6e6e6;
  --bg-soft: #f7f7f7;     /* --btn-default-bgcolor */
  --white: #ffffff;
  --green: #17a35b;
  --green-text: #13703f;  /* zelfde groen, donker genoeg voor tekst (AA) */
  --red-on-dark: #ff5c86; /* hetzelfde accent, licht genoeg op donkere vlakken */
  --green-soft: #e7f6ee;
  --gold: #f6a90c;

  /* fonts overgenomen van detailschuur.nl: Outfit (titels), Work Sans (tekst), Urbanist (header) */
  --font-head: "Outfit", Arial, Helvetica, sans-serif;
  --font-body: "Work Sans", Arial, Helvetica, sans-serif;
  --font-header: "Urbanist", Arial, Helvetica, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(16, 16, 20, .04), 0 10px 30px -18px rgba(16, 16, 20, .18);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select { font-family: inherit; }

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

/* ---------- typografie ---------- */

h1, h2, h3, .h-display {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.015em;
  font-weight: 700;
}

.label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.label--muted { color: var(--muted); }

.h2 { font-size: clamp(24px, 3vw, 32px); }
.h2--caps { text-transform: uppercase; letter-spacing: .02em; font-size: clamp(20px, 2.4vw, 26px); }

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--soft { background: var(--bg-soft); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head .link-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  white-space: nowrap;
  transition: border-color .15s;
}
.section-head .link-more:hover { border-color: var(--ink); }

/* ---------- knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}

.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2a2a32; }

.btn--outline { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); }

.btn--outline-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn--outline-light:hover { border-color: #fff; }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: #128a4c; }

.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ---------- placeholders (beeld volgt) ---------- */

.ph {
  background: repeating-linear-gradient(135deg, #ececf1 0 9px, #f6f6f9 9px 18px);
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

.ph::after {
  content: attr(data-label);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b6b6c1;
}

.ph--dark {
  background: repeating-linear-gradient(135deg, #1b1b22 0 9px, #22222a 9px 18px);
}
.ph--dark::after { color: #4d4d58; }

.ph--navy {
  background: repeating-linear-gradient(135deg, #232326 0 9px, #2c2c31 9px 18px);
}
.ph--navy::after { color: #6d6d78; }

/* ---------- sterren ---------- */

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}
.stars::before { content: "★★★★★"; }
.rating-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- badges ---------- */

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 5px 11px;
}
.badge--red { background: var(--red); color: #fff; }
.badge--pink { background: var(--pink-soft); color: var(--red); }
.badge--green { background: var(--green); color: #fff; }
.badge--dark { background: var(--ink); color: #fff; }
.badge--outline { border: 1px solid var(--line); color: var(--muted); background: #fff; }

/* ============================================================
   TOPBAR + HEADER + NAV
   ============================================================ */

.topbar {
  background: var(--dark-2);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-family: var(--font-header);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}
.topbar-usps { display: flex; gap: 26px; }
.topbar-usps li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-usps .tick { color: var(--red); font-weight: 700; }
.topbar-links { display: flex; gap: 22px; }
.topbar-links a { display: flex; align-items: center; gap: 6px; }
.topbar-links a:hover { color: #fff; }

.siteheader {
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-header);
}
.siteheader .container {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 48px; width: auto; }

.searchbar { flex: 1 1 auto; position: relative; max-width: 460px; }
.searchbar input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 12px 52px 12px 20px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.searchbar input:focus { border-color: var(--ink); }
.searchbar button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
}
.searchbar button:hover { background: var(--red-dark); }

.header-meta { display: flex; align-items: center; gap: 22px; margin-left: auto; }

.score-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--body);
}
.score-chip b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12.5px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--body);
}
.header-action .ico {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.header-action:hover { color: var(--ink); }

.cart-chip { position: relative; }
.cart-chip .count {
  position: absolute;
  top: -7px;
  left: 13px;
  min-width: 17px;
  height: 17px;
  border-radius: var(--r-pill);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.mainnav { background: #fff; border-bottom: 1px solid var(--line); font-family: var(--font-header); }
.mainnav .container { display: flex; align-items: center; gap: 4px; min-height: 52px; }
.mainnav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 13px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mainnav a .car { font-size: 9px; color: var(--muted); }
.mainnav a:hover { background: var(--bg-soft); }
.mainnav a.is-active { color: var(--red); }
.mainnav .nav-actie {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
}
.mainnav .nav-actie:hover { background: var(--red-dark); }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* --- hero --- */

.hero { padding: 28px 0 8px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
}

.hero-card {
  border-radius: var(--r-lg);
  padding: 44px 44px 40px;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.hero-card--dark {
  background:
    radial-gradient(600px 300px at 85% 110%, rgba(227, 15, 79, .22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 10px, transparent 10px 20px),
    var(--dark-2);
  color: rgba(255,255,255,.72);
}
.hero-card--dark h1 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); max-width: 420px; }

.hero-card--red {
  background:
    radial-gradient(500px 320px at 90% -10%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(145deg, #f0135a, var(--red-deep));
  color: rgba(255,255,255,.85);
}
.hero-card--red h2 { color: #fff; font-size: clamp(24px, 2.4vw, 30px); max-width: 300px; }

.hero-card p { max-width: 400px; font-size: 14.5px; }

.hero-roundel {
  position: absolute;
  top: 34px;
  right: 40px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 27px;
  line-height: 1;
  transform: rotate(8deg);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.45);
}
.hero-roundel small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  color: var(--red);
}

.hero-thumbs { display: flex; gap: 10px; margin-top: 6px; }
.hero-thumbs .ph { width: 74px; height: 54px; border-radius: var(--r-sm); }
.hero-card--red .hero-thumbs .ph {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.14) 0 9px, rgba(255,255,255,.06) 9px 18px);
}
.hero-card--red .hero-thumbs .ph::after { color: rgba(255,255,255,.55); }

/* --- categorieën --- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 12px 16px;
  text-align: center;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.cat-card:hover { border-color: #d5d5de; box-shadow: var(--shadow-card); transform: translateY(-2px); }
.cat-card .ph { aspect-ratio: 1 / 1; margin-bottom: 12px; }
.cat-card h3 { font-size: 14.5px; font-weight: 700; font-family: var(--font-body); }
.cat-card span { font-size: 12px; color: var(--muted); }

/* --- over / advies-band --- */

.about-band {
  background:
    radial-gradient(700px 420px at 92% 115%, rgba(227, 15, 79, .3), transparent 62%),
    var(--dark-2);
  color: rgba(255,255,255,.72);
  padding: 84px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-grid .ph { aspect-ratio: 4 / 3.4; border-radius: var(--r-lg); }
.about-band h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); max-width: 460px; margin-bottom: 18px; }
.about-band p { max-width: 480px; }
.about-stats {
  display: flex;
  gap: 34px;
  margin: 26px 0 30px;
  font-size: 13.5px;
}
.about-stats b { color: #fff; font-size: 15px; margin-right: 6px; }
.about-cta { display: flex; gap: 12px; }

/* --- reviews-strip --- */

.reviews-strip { background: var(--bg-soft); padding: 42px 0; }
.reviews-strip .container {
  display: grid;
  grid-template-columns: 200px 1fr 70px;
  gap: 30px;
  align-items: center;
}
.trust-box { text-align: left; }
.trust-box .keur {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.trust-box .keur .ico {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 11px;
}
.trust-box .big-score {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--ink);
}
.trust-box .sub { font-size: 12px; color: var(--muted); margin: 2px 0 14px; }

.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.review-card .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.review-card .name { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.review-card .date { font-size: 11.5px; color: var(--muted); }
.review-card p { font-size: 13px; margin-top: 7px; }

.strip-arrows { display: flex; flex-direction: column; gap: 8px; }
.strip-arrows button,
.arrow-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  display: grid; place-items: center; font-size: 13px;
  transition: border-color .15s;
}
.strip-arrows button:hover, .arrow-btn:hover { border-color: var(--ink); }

/* --- productkaarten --- */

.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

.pcard {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 12px 14px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pcard:hover { border-color: #d5d5de; box-shadow: var(--shadow-card); transform: translateY(-2px); }

.pcard .fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  display: grid; place-items: center;
  font-size: 13px;
  z-index: 2;
}
.pcard .fav:hover { color: var(--red); border-color: var(--red); }

.pcard .badge { position: absolute; top: 12px; left: 12px; z-index: 2; }

.pcard .ph { aspect-ratio: 1 / .92; margin-bottom: 12px; }

.pcard .brand {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pcard .pname {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 3px 0 6px;
  min-height: 2.7em;
}
.pcard .rating-line { margin-bottom: 10px; }

.pcard .buyrow {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.pcard .price { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink); line-height: 1; }
.pcard .price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--muted); margin-top: 4px; }
.pcard .cart-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 15px;
}
.pcard .cart-btn:hover { background: var(--red-dark); }

/* pluspunten-lijst (alternatieve producten op PDP) */
.pcard .points { font-size: 12px; margin: 2px 0 12px; display: grid; gap: 4px; }
.pcard .points li { display: flex; gap: 7px; align-items: baseline; }
.pcard .points .y { color: var(--green); font-weight: 700; }
.pcard .points .n { color: var(--muted); font-weight: 700; }

/* --- voordeelsets --- */

.sets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.set-card {
  border-radius: var(--r-lg);
  padding: 30px 30px 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(420px 240px at 90% 115%, rgba(227,15,79,.18), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 10px, transparent 10px 20px),
    var(--dark);
  color: rgba(255,255,255,.7);
}
.set-card h3 { color: #fff; font-size: 20px; }
.set-card p { font-size: 13px; max-width: 300px; }
.set-card .set-thumbs { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.set-card .set-thumbs .ph { width: 44px; height: 44px; border-radius: var(--r-sm); }
.set-card .set-thumbs .plus { color: rgba(255,255,255,.4); font-weight: 700; }
.set-card .set-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.set-card .set-price s { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.45); font-family: var(--font-body); }

.set-card--light {
  background:
    linear-gradient(150deg, #f2f2f5, #dfdfe6);
  color: var(--body);
}
.set-card--light h3 { color: var(--ink); }
.set-card--light .set-price { color: var(--ink); }
.set-card--light .set-price s { color: var(--muted); }
.set-card--light .set-thumbs .plus { color: var(--muted); }

/* --- merken --- */

.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.brand-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  padding: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.brand-card:hover { border-color: #d5d5de; box-shadow: var(--shadow-card); }
.brand-card b { font-family: var(--font-head); font-size: 16px; color: var(--ink); }
.brand-card span { font-size: 11.5px; color: var(--muted); }
.brand-card--all { background: var(--bg-soft); border-style: dashed; }
.brand-card--all b { font-size: 14px; }

/* --- producten in actie --- */

.action-band { background: var(--dark-2); color: rgba(255,255,255,.65); padding: 72px 0; }
.action-band .section-head .h2 { color: #fff; }
.action-band .label { color: var(--red); }
.action-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.action-card {
  aspect-ratio: 9 / 15;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}
.action-card .badge { align-self: flex-start; }
.action-card .cap { font-size: 12px; color: rgba(255,255,255,.85); line-height: 1.4; position: relative; z-index: 1; }
.action-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

/* --- verhaal --- */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.story-grid > .ph { aspect-ratio: 4 / 3.6; border-radius: var(--r-lg); }
.story h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.story .intro { margin-bottom: 22px; max-width: 480px; }
.story-checks { display: grid; gap: 16px; margin-bottom: 28px; }
.story-checks li { display: flex; gap: 13px; align-items: flex-start; }
.story-checks .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.story-checks b { display: block; color: var(--ink); font-size: 14.5px; }
.story-checks p { font-size: 13.5px; }
.story .cta-row { display: flex; gap: 12px; }

/* --- usp-band --- */

.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.usp-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.usp-card .ico {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 15px;
}
.usp-card b { display: block; color: var(--ink); font-size: 14px; }
.usp-card p { font-size: 12.5px; }

/* ============================================================
   FOOTER
   ============================================================ */

.sitefooter {
  background: var(--dark-2);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { max-width: 300px; margin-bottom: 20px; }
.pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-row span {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 9px;
  color: rgba(255,255,255,.75);
}

.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col a:hover { color: #fff; }

.footer-help {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 24px;
}
.footer-help h4 { margin-bottom: 10px; }
.footer-help b { color: #fff; display: block; margin-bottom: 6px; font-size: 14.5px; }
.footer-help p { font-size: 13px; margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: 12px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: #fff; }
.footer-credit a { color: rgba(255,255,255,.6); }
.footer-credit a:hover { color: #fff; }

/* --- whatsapp float --- */

.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
  z-index: 50;
}
.wa-float:hover { transform: scale(1.05); }

/* ============================================================
   CATEGORIEPAGINA
   ============================================================ */

.crumbs {
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.crumbs .container { display: flex; gap: 8px; padding-top: 13px; padding-bottom: 13px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: #c9c9d2; }
.crumbs .cur { color: var(--ink); font-weight: 600; }

.cat-head { padding: 40px 0 26px; }
.cat-head-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.cat-head h1 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.cat-head .intro { max-width: 560px; }

.advice-card {
  background:
    radial-gradient(340px 200px at 95% 120%, rgba(227,15,79,.25), transparent 60%),
    var(--dark-2);
  color: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  padding: 26px 28px;
}
.advice-card b { color: #fff; display: block; font-size: 15.5px; margin-bottom: 7px; }
.advice-card p { font-size: 13px; margin-bottom: 16px; }

.chip-row { display: flex; gap: 9px; flex-wrap: wrap; padding: 4px 0 26px; }
.chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 17px;
  background: #fff;
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--pink-soft); border-color: var(--red); color: var(--red); }

.cat-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
  padding-bottom: 72px;
}

/* facetten */
.facets { display: grid; gap: 26px; align-content: start; }
.facet-note {
  background: var(--pink-soft);
  border-radius: var(--r-md);
  padding: 15px 17px;
  font-size: 12.5px;
  color: #a4123f;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.facet-note .ico { color: var(--red); margin-top: 1px; }

.facet h3 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 3px;
}
.facet .facet-sub { font-size: 11.5px; color: var(--muted); margin-bottom: 11px; display: block; }
.facet ul { display: grid; gap: 9px; }
.facet label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body);
  cursor: pointer;
}
.facet label:hover { color: var(--ink); }
.facet input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--red);
  border-radius: 4px;
}
.facet .cnt { margin-left: auto; font-size: 11.5px; color: var(--muted); }

.price-slider { position: relative; height: 22px; margin: 10px 2px 12px; }
.price-slider .track {
  position: absolute; left: 0; right: 0; top: 9px; height: 4px;
  background: var(--line); border-radius: 4px;
}
.price-slider .fill {
  position: absolute; left: 8%; right: 12%; top: 9px; height: 4px;
  background: var(--red); border-radius: 4px;
}
.price-slider .knob {
  position: absolute; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--red);
}
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-inputs input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 13px;
}

/* resultatenbalk */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}
.results-bar select {
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
}
.results-bar .sort { display: flex; align-items: center; gap: 10px; }

.cat-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* tussenbanner advies */
.inline-advice {
  grid-column: 1 / -1;
  background: var(--pink-soft);
  border-radius: var(--r-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.inline-advice .ico {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 16px;
}
.inline-advice b { color: var(--ink); display: block; font-size: 14.5px; }
.inline-advice p { font-size: 13px; }
.inline-advice .btn { margin-left: auto; white-space: nowrap; }

/* tussenbanner set-promo */
.inline-promo {
  grid-column: 1 / -1;
  border-radius: var(--r-lg);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(420px 240px at 92% 120%, rgba(227,15,79,.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 10px, transparent 10px 20px),
    var(--dark-2);
  color: rgba(255,255,255,.7);
}
.inline-promo h3 { color: #fff; font-size: 21px; margin: 8px 0 8px; }
.inline-promo p { font-size: 13.5px; max-width: 440px; }
.inline-promo .set-thumbs { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.inline-promo .set-thumbs .ph { width: 46px; height: 46px; border-radius: var(--r-sm); }
.inline-promo .set-thumbs .plus { color: rgba(255,255,255,.4); font-weight: 700; }
.inline-promo .promo-buy { text-align: right; display: grid; gap: 8px; justify-items: end; }
.inline-promo .was { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: line-through; }
.inline-promo .now { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: #fff; line-height: 1; }
.inline-promo .save { font-size: 12px; color: #ff7ba4; font-weight: 600; }
.inline-promo .btn { margin-top: 6px; }

/* populaire keuzes / quotes */
.quote-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
}
.quote-card .stars { margin-bottom: 12px; }
.quote-card p { font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.55; margin-bottom: 14px; }
.quote-card .who { font-size: 12.5px; color: var(--muted); }

/* seo-blok + faq */
.seo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.seo-copy h2 { margin-bottom: 16px; }
.seo-copy h3 { font-size: 15.5px; margin: 22px 0 6px; font-family: var(--font-body); font-weight: 700; }
.seo-copy p { font-size: 14px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 14px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 18px; color: var(--red); font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: 13.5px; padding: 0 0 16px; max-width: 520px; }
.faq h2 { margin-bottom: 12px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag-row a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 16px;
}
.tag-row a:hover { border-color: var(--ink); color: var(--ink); }

/* ============================================================
   PRODUCTPAGINA
   ============================================================ */

.pdp { padding: 34px 0 64px; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery { display: grid; grid-template-columns: 76px 1fr; gap: 14px; }
.gallery-thumbs { display: grid; gap: 10px; align-content: start; }
.gallery-thumbs .ph { aspect-ratio: 1; border-radius: var(--r-sm); border: 1.5px solid transparent; cursor: pointer; }
.gallery-thumbs .ph.is-active { border-color: var(--ink); }
.gallery-main .ph { aspect-ratio: 1 / 1.04; border-radius: var(--r-lg); }

.buybox .label { margin-bottom: 8px; }
.buybox h1 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 10px; }
.buybox .rating-line { margin-bottom: 16px; font-size: 13px; }
.buybox .rating-line a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.buybox .intro { font-size: 14.5px; margin-bottom: 20px; }

.kit-list h3 {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.kit-list ul { display: grid; gap: 8px; margin-bottom: 22px; }
.kit-list li { display: flex; gap: 10px; font-size: 13.5px; }
.kit-list .dot { color: var(--red); font-weight: 700; }
.kit-list b { color: var(--ink); }

.price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.price-block .price { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--ink); }
.price-block small { font-size: 12px; color: var(--muted); }

.stock-note {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--green-soft);
  color: #0d7a43;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 500;
  padding: 11px 14px;
  margin: 14px 0 18px;
}
.stock-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }

.buy-row { display: flex; gap: 12px; margin-bottom: 18px; }
.qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.qty button { width: 40px; height: 48px; font-size: 16px; color: var(--ink); }
.qty button:hover { background: var(--bg-soft); }
.qty input {
  width: 40px;
  text-align: center;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}
.buy-row .btn { flex: 1; font-size: 15px; }

.pdp-meta {
  display: flex;
  gap: 24px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.pdp-meta a { display: flex; align-items: center; gap: 7px; }
.pdp-meta a:hover { color: var(--ink); }

/* info-accordeons */
.pdp-info h2 { margin-bottom: 20px; }
.accordion details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0 24px;
  margin-bottom: 10px;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  padding: 18px 0;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 20px; color: var(--red); font-weight: 400; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { font-size: 13.5px; padding-bottom: 18px; max-width: 640px; }

/* in de doos */
.kit-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kit-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px 18px;
  background: #fff;
}
.kit-card .ph { aspect-ratio: 1 / .95; margin-bottom: 12px; }
.kit-card b { color: var(--ink); font-size: 14px; display: block; margin-bottom: 3px; }
.kit-card p { font-size: 12.5px; }

/* oprichters-quote */
.founder-band {
  background:
    radial-gradient(560px 340px at 8% 115%, rgba(227, 15, 79, .28), transparent 60%),
    var(--dark-2);
  color: rgba(255,255,255,.75);
  padding: 80px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-band blockquote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.founder-who {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 26px;
}
.founder-who .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
}
.founder-who b { color: #fff; display: block; }
.founder-checks { display: grid; gap: 14px; margin-bottom: 28px; }
.founder-checks li { display: flex; gap: 12px; font-size: 13.5px; }
.founder-checks .tick { color: #ff7ba4; font-weight: 700; }
.founder-checks b { color: #fff; }
.founder-grid > .ph { aspect-ratio: 4 / 3.5; border-radius: var(--r-lg); }

/* reviews pdp */
.revs-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}
.revs-head .score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
}
.revs-head .sub { font-size: 13px; color: var(--muted); }
.revs-head .write {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rev-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 20px 22px;
}
.rev-card .head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.rev-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.rev-card .name { font-weight: 700; font-size: 13.5px; color: var(--ink); line-height: 1.3; }
.rev-card .verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.rev-card p { font-size: 13px; margin-top: 8px; }
.revs-all { text-align: center; margin-top: 26px; }
.revs-all a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* brede beeldbanner */
.wide-banner {
  background:
    radial-gradient(700px 380px at 80% 130%, rgba(227,15,79,.14), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 11px, transparent 11px 22px),
    var(--dark-2);
  color: #fff;
  padding: 110px 0;
  text-align: left;
}
.wide-banner h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); max-width: 480px; margin-bottom: 26px; }
.dots { display: flex; gap: 7px; }
.dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); }
.dots .is-active { background: #fff; }

/* feature-rijen */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 44px 0;
}
.feat-row .ph { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
.feat-row h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 12px; }
.feat-row p { max-width: 440px; font-size: 14.5px; }
.feat-row--flip .feat-copy { order: 2; }
.feat-row--flip .ph { order: 1; }

/* instagram-strip */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.insta-card {
  aspect-ratio: 1 / 1.15;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 14px;
}
.insta-card .badge { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(4px); }

/* nieuwsbrief */
.newsletter {
  background: var(--dark-2);
  color: rgba(255,255,255,.65);
  padding: 56px 0;
}
.newsletter .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin: 6px 0 8px; }
.newsletter p { font-size: 13.5px; max-width: 440px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input {
  flex: 1;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 13px 20px;
  font-size: 14px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter input:focus { border-color: rgba(255,255,255,.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .product-grid, .action-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid, .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .kit-cards, .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-strip .container { grid-template-columns: 1fr; }
  .strip-arrows { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-usps li:nth-child(n+3) { display: none; }
}

@media (max-width: 860px) {
  .hero-grid, .about-grid, .story-grid, .seo-grid,
  .pdp-grid, .founder-grid, .feat-row, .newsletter .container,
  .cat-head-grid { grid-template-columns: 1fr; }
  .feat-row--flip .feat-copy { order: 0; }
  .feat-row--flip .ph { order: 0; }
  .cat-layout { grid-template-columns: 1fr; }
  .sets-grid, .quote-cards, .review-cards, .rev-cards { grid-template-columns: 1fr; }
  .cat-products { grid-template-columns: repeat(2, 1fr); }
  .mainnav .container { overflow-x: auto; }
  .header-meta .header-action span.txt { display: none; }
  .searchbar { max-width: none; }
  .topbar-links { display: none; }
  .about-grid .ph { order: -1; }
}

@media (max-width: 560px) {
  .product-grid, .cat-products, .action-grid,
  .cat-grid, .brand-grid, .kit-cards, .insta-grid, .usp-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .inline-promo { grid-template-columns: 1fr; }
  .inline-promo .promo-buy { text-align: left; justify-items: start; }
  .inline-advice { flex-wrap: wrap; }
  .inline-advice .btn { margin-left: 0; }
  /* Smal scherm: één USP in de topbar is genoeg; nooit horizontale scroll. */
  .topbar-usps li:nth-child(n+2) { display: none; }
  .topbar .container { overflow: hidden; }
}

/* ============================================================
   NAVIGATIE 2.0 — mega menu, mobiele drawer, promobalk,
   vakantiemelding, kortingscode-chip
   ============================================================ */

/* --- kortingscode-chip (hero) --- */

.code-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1.5px dashed rgba(255,255,255,.4);
  border-radius: 12px;
  padding: 11px 18px;
  color: #fff;
  background: rgba(255,255,255,.06);
  transition: border-color .15s;
}
.code-chip:hover { border-color: #fff; }
.code-chip .code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .14em;
}
.code-chip .copy-hint { font-size: 11.5px; color: rgba(255,255,255,.55); }
.code-chip.is-copied { border-color: #2fe07f; }
.code-chip.is-copied .copy-hint { color: #2fe07f; }
.hero-card .fine { font-size: 11.5px; color: rgba(255,255,255,.45); max-width: 420px; }

/* --- promobalk (boven de topbar, beheerd via plugin) --- */

.promobar { background: var(--red); color: #fff; font-size: 13px; font-weight: 600; font-family: var(--font-header); }
.promobar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  flex-wrap: wrap;
  padding-top: 6px;
  padding-bottom: 6px;
}
.promobar b { font-weight: 800; }
.promobar .count { display: flex; gap: 6px; }
.promobar .count span {
  background: rgba(0,0,0,.25);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  min-width: 34px;
  text-align: center;
}
.promobar .count span small { font-size: 9px; opacity: .7; margin-left: 2px; font-weight: 600; }
.promobar .btn { background: var(--ink); color: #fff; padding: 8px 18px; font-size: 12px; }
.promobar .btn:hover { background: #2a2a32; }

/* --- vakantiemelding (beheerd via plugin) --- */

.vacation-bar {
  background: #fff4e0;
  color: #7d5300;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #f1e0bd;
}
.vacation-bar .container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.vacation-bar .ico { flex: none; }

/* --- mega menu (desktop) --- */

.mainnav { position: relative; }
.mainnav .nav-links { display: flex; align-items: center; gap: 4px; flex: 1 1 auto; }
.nav-item { display: contents; }

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 40px 60px -40px rgba(16,16,20,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 60;
}
.nav-item.is-open > .mega { opacity: 1; visibility: visible; transform: none; }
.nav-item.is-open > a { background: var(--bg-soft); }

.mega-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; padding: 34px 0 38px; }
.mega-inner--cols { grid-template-columns: 1fr; }

.mega-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; align-content: start; }
.mega-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: background .15s;
}
.mega-cat:hover { background: var(--bg-soft); }
.mega-cat .thumb { width: 46px; height: 46px; border-radius: 10px; flex: none; }
.mega-cat small { display: block; font-weight: 400; color: var(--muted); font-size: 11.5px; }

.mega-cols { display: flex; gap: 56px; padding: 0; }
.mega-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  font-family: var(--font-body);
}
.mega-col a { display: block; padding: 6px 0; font-size: 13.5px; color: var(--body); }
.mega-col a:hover { color: var(--ink); }
.mega-col .all { font-weight: 600; color: var(--red); margin-top: 4px; }

.mega-deals-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.mega-deals-head b { font-family: var(--font-head); font-size: 17px; color: var(--ink); }
.mega-deals-head a { font-size: 12.5px; font-weight: 600; color: var(--red); }
.mega-deal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.mega-deal:hover { border-color: #d5d5de; box-shadow: var(--shadow-card); }
.mega-deal .thumb { width: 58px; height: 58px; border-radius: 10px; flex: none; }
.mega-deal b { display: block; font-size: 13.5px; color: var(--ink); line-height: 1.3; }
.mega-deal .priceline { display: flex; align-items: baseline; gap: 8px; margin-top: 3px; }
.mega-deal .priceline .now { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--ink); }
.mega-deal .priceline s { font-size: 12px; color: var(--muted); }
.mega-deal .off {
  margin-left: auto;
  background: var(--pink-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 4px 9px;
  flex: none;
}

/* --- hamburger + mobiele drawer --- */

.nav-burger {
  display: none;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font-header);
}
.nav-burger .bars { display: grid; gap: 3.5px; }
.nav-burger .bars i { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 2px; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,16,20,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
  z-index: 98;
}
.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(370px, 90vw);
  background: #fff;
  z-index: 99;
  transform: translateX(-103%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
body.drawer-open .drawer { transform: none; }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head img { height: 40px; width: auto; }
.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--ink);
}

.drawer-search { padding: 14px 18px; border-bottom: 1px solid var(--line); }
.drawer-search input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 11px 18px;
  font-size: 14px;
  outline: none;
}

.drawer-nav { padding: 6px 10px 14px; }
.d-item { border-bottom: 1px solid var(--line); }
.d-item:last-child { border-bottom: 0; }
.d-item > a,
.d-item > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-align: left;
  font-family: var(--font-header);
}
.d-item .car { font-size: 10px; color: var(--muted); transition: transform .2s; }
.d-item.is-open > button .car { transform: rotate(180deg); }
.d-sub { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.d-item.is-open .d-sub { max-height: 460px; }
.d-sub a { display: block; padding: 11px 10px 11px 26px; font-size: 14px; color: var(--body); }
.d-sub a:active { color: var(--ink); }
.d-sub .all { color: var(--red); font-weight: 600; }
.d-actie { margin: 14px 10px 4px; }
.d-actie .btn { width: 100%; }

.drawer-foot {
  margin-top: auto;
  padding: 18px;
  background: var(--bg-soft);
  display: grid;
  gap: 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
}
.drawer-foot a { display: flex; gap: 9px; align-items: center; }
.drawer-foot .tick { color: var(--green); font-weight: 700; }

@media (max-width: 1024px) {
  .mainnav .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .mainnav .nav-actie { margin-left: auto; }
  .promobar .container { gap: 10px; font-size: 12px; }
}

/* ============================================================
   MEGA MENU 2.0 (kaartstijl) + AJAX-ZOEKSUGGESTIE
   ============================================================ */

.mega {
  left: 24px;
  right: 24px;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 70px 100px -40px rgba(16,16,20,.45);
}

.mega-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.45fr;
  gap: 44px;
  padding: 34px 0 42px;
}
.mega-pcol .photo {
  aspect-ratio: 2.2 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--bg-soft);
}
.mega-pcol .photo img { width: 100%; height: 100%; object-fit: cover; }
.mega-pcol h5 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
  font-family: var(--font-body);
}
.mega-pcol a { display: block; padding: 6px 0; font-size: 14px; color: var(--body); }
.mega-pcol a:hover { color: var(--ink); }
.mega-pcol a.all { color: var(--red); font-weight: 600; }

.mega-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
}
.mega-banner .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 30%, rgba(10,10,14,.55) 100%);
}
.mega-banner h4 {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 27px;
  color: #fff;
}
.mega-banner .btn { position: relative; z-index: 1; }

/* --- zoeksuggestie --- */

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(880px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 40px 80px -30px rgba(16,16,20,.4);
  z-index: 90;
  display: none;
  overflow: hidden;
}
.search-suggest.is-open { display: block; }
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-height: 430px;
  overflow: auto;
  overscroll-behavior: contain;
}
.ss-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.ss-item:hover { background: var(--bg-soft); }
.ss-item:nth-child(3n) { border-right: 0; }
.ss-item img { width: 54px; height: 54px; object-fit: contain; flex: none; }
.ss-item .ph { width: 54px; height: 54px; border-radius: 8px; flex: none; }
.ss-item b { display: block; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.ss-item b mark { background: none; color: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.ss-item .price { font-size: 12.5px; color: var(--red); font-weight: 700; margin-top: 2px; display: block; }
.ss-item .price small { color: var(--muted); font-weight: 500; }
.ss-foot {
  display: block;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.ss-foot:hover { color: var(--red); }
.ss-empty { padding: 22px; font-size: 13.5px; color: var(--muted); text-align: center; }

.drawer-search { position: relative; }
.drawer-search .search-suggest { width: calc(100% - 16px); left: 8px; }
.drawer-search .ss-grid { grid-template-columns: 1fr; max-height: 50vh; }
.drawer-search .ss-item { border-right: 0; }

@media (max-width: 1200px) {
  .mega-photo-grid { grid-template-columns: 1fr 1fr 1fr; }
  .mega-banner { grid-column: 1 / -1; min-height: 220px; }
}
@media (max-width: 860px) {
  .search-suggest { width: calc(100vw - 32px); }
  .ss-grid { grid-template-columns: 1fr; }
  .ss-item { border-right: 0; }
}

/* grid-items mogen krimpen; afbeeldingen dwingen geen kolombreedte af */
.mega-photo-grid > * { min-width: 0; }
.mega-pcol .photo img { max-width: 100%; }

/* Overrides: mega menu leeft binnen .mainnav, dus de generieke navregels
   (.mainnav .container = flex, .mainnav a = pill) moeten hier wijken. */
.mainnav .container.mega-photo-grid { display: grid; gap: 44px; min-height: 0; }
.mainnav .container.mega-inner { display: grid; gap: 56px; min-height: 0; }
.mainnav .container.mega-inner--cols { display: block; }

.mainnav .mega-pcol a,
.mainnav .mega-col a {
  border-radius: 0;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: var(--body);
  font-family: var(--font-body);
}
.mainnav .mega-pcol a:hover,
.mainnav .mega-col a:hover { background: none; color: var(--ink); }
.mainnav .mega-pcol a.all,
.mainnav .mega-col a.all { color: var(--red); font-weight: 600; }

.mainnav .mega-banner {
  border-radius: 14px;
  padding: 28px;
  display: flex;
  font-size: 15px;
}
.mainnav .mega-banner:hover { background: none; }
.mainnav .mega-banner .btn {
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
}

/* vaste fotohoogte voorkomt verspringen bij lazy load */
.mega-pcol .photo { height: 118px; aspect-ratio: auto; }

/* Sticky navigatie. Bewust geen backdrop-filter: dat zou van de nav een
   containing block maken en de fixed drawer/overlay breken. */
.mainnav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  box-shadow: 0 10px 30px -24px rgba(16,16,20,.35);
}

/* ============================================================
   V0.2: WooCommerce-prijzen, cart-drawer, iconen
   ============================================================ */

/* WooCommerce stopt toegankelijkheidstekst in de prijs; netjes verbergen */
.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}
.price del, .price-block del { color: var(--muted); font-weight: 500; font-size: .78em; text-decoration: line-through; margin-right: 6px; }
.price ins, .price-block ins { text-decoration: none; }

/* icoontjes */
.svgico { display: inline-flex; }
.svgico svg { width: 1em; height: 1em; }

/* --- cart-drawer (rechts) --- */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,16,20,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
  z-index: 98;
}
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(400px, 92vw);
  background: #fff;
  z-index: 99;
  transform: translateX(103%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}
body.cart-open .cart-drawer { transform: none; }
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open { overflow: hidden; }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-header);
}
.cart-head b { font-size: 15.5px; color: var(--ink); }
.cart-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.cart-items { flex: 1; overflow-y: auto; padding: 6px 20px; }
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item .thumb { width: 58px; height: 58px; border-radius: 10px; flex: none; }
.cart-item .thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-item b { display: block; font-size: 13.5px; color: var(--ink); line-height: 1.35; }
.cart-item .meta { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.cart-item .remove { margin-left: auto; color: var(--muted); font-size: 16px; flex: none; }
.cart-item .remove:hover { color: var(--red); }

.cart-empty { text-align: center; padding: 48px 20px; color: var(--muted); font-size: 14px; }
.cart-empty .btn { margin-top: 16px; }

.cart-foot { border-top: 1px solid var(--line); padding: 18px 20px 20px; display: grid; gap: 10px; }
.cart-foot .subtotal { display: flex; justify-content: space-between; font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.cart-foot .subtotal small { display: block; font-weight: 400; color: var(--muted); font-size: 11.5px; }
.cart-foot .btn { width: 100%; }

/* ============================================================
   V0.3: groter logo, WebwinkelKeur full width
   ============================================================ */

.logo img { height: 58px; }
.drawer-head img { height: 46px; }
.footer-brand .logo img { height: 62px; }
@media (max-width: 860px) {
  .logo img { height: 48px; }
}

/* WebwinkelKeur/Valued-widget over de volle breedte */
.reviews-full {
  background: var(--bg-soft);
  padding: 56px 24px;
}
.reviews-full valued-widget {
  display: block;
  width: 100%;
  max-width: none;
}

/* Mega menu: kolommen bovenaan uitlijnen (de generieke .mainnav .container
   heeft align-items:center, daardoor zakten kolommen met minder links omlaag)
   en het paneel op containerbreedte centreren in plaats van full width. */
.mainnav .container.mega-photo-grid,
.mainnav .container.mega-inner { align-items: start; }

.mega {
  left: 50%;
  right: auto;
  width: min(1248px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(6px);
  border-radius: 0 0 24px 24px;
}
.nav-item.is-open > .mega { transform: translateX(-50%) translateY(0); }

/* ============================================================
   BTW-schakelaar (incl./excl.)
   ============================================================ */

.vat-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  padding: 2px;
}
.vat-switch button {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.vat-switch button.is-active { background: #fff; color: var(--ink); }

.vat-switch--light { border-color: var(--line); }
.vat-switch--light button { color: var(--muted); }
.vat-switch--light button.is-active { background: var(--ink); color: #fff; }

/* ============================================================
   V0.4 — feedback Niice (Rick, 10 aug 2026)
   ============================================================ */

/* --- Huisstijl: productnamen in Urbanist, net als op de live webshop
       (--wd-entities-title-font) --- */

.pcard .pname { font-family: var(--font-header); }

/* --- Herokaarten met achtergrondfoto ---------------------------------
   De foto ligt onder een donkere laag, zodat kop, code en knop altijd
   leesbaar blijven. Zonder foto verandert er niets. */

.hero-card.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-card.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* De kleur en sterkte van de laag zijn per actie instelbaar in het
   beheerscherm; zonder eigen keuze geldt de standaard donkere laag. */
.hero-card--dark.has-bg::after {
  background: var(--hero-overlay, linear-gradient(100deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.78) 45%, rgba(10,10,10,.45) 100%));
}
.hero-card--red.has-bg::after {
  background: linear-gradient(100deg, rgba(138,1,40,.93) 0%, rgba(217,1,59,.8) 55%, rgba(217,1,59,.5) 100%);
}
/* Inhoud boven de foto. De rondel staat al absoluut gepositioneerd en
   houdt daarom zijn eigen plek rechtsboven. */
.hero-card.has-bg > *:not(.hero-roundel) { position: relative; z-index: 1; }
.hero-card.has-bg .hero-roundel { z-index: 2; }

@media (max-width: 560px) {
  /* Op smalle schermen staat de tekst over de volle breedte: laag donkerder. */
  .hero-card--dark.has-bg::after { background: var(--hero-overlay-flat, rgba(10,10,10,.86)); }
  .hero-card--red.has-bg::after { background: linear-gradient(180deg, rgba(138,1,40,.9), rgba(217,1,59,.86)); }

  /* De rondel dekte op mobiel de badge af; rechtsonder is ruimte zat. */
  .hero-roundel {
    top: auto;
    bottom: 26px;
    right: 22px;
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
  .hero-roundel small { font-size: 8px; }
}

/* --- Categoriekaarten: tekst nooit door of tegen de foto ------------- */

.cat-card { display: flex; flex-direction: column; }
.cat-card .ph {
  background: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0;
  margin-bottom: 14px;
}
.cat-card .ph.has-img { background: #fff; }
.cat-card .ph img { mix-blend-mode: normal; border-radius: var(--r-sm); }
/* Placeholderstrepen alleen zolang er nog geen foto is. */
.cat-card .ph:not(.has-img) {
  background: repeating-linear-gradient(135deg, #ececf1 0 9px, #f6f6f9 9px 18px);
  border-color: transparent;
}
.cat-card h3 { margin-bottom: 2px; }

/* --- Footer in de huidige stijl van de webshop: licht, met het
       officiële logo en leesbare tekst --------------------------------- */

.sitefooter--light {
  background: var(--white);
  color: var(--body);
  border-top: 1px solid var(--line);
}
.sitefooter--light .footer-col h4 { color: var(--ink); }
.sitefooter--light .footer-col a { color: var(--body); }
.sitefooter--light .footer-col a:hover { color: var(--red); }
/* Knoppen houden hun eigen kleur: geen grijze tekst op rood. */
.sitefooter--light .footer-col a.btn--red,
.sitefooter--light a.btn--red:hover { color: #fff; }
.sitefooter--light .pay-row span {
  border-color: var(--line);
  color: var(--body);
  background: var(--bg-soft);
}
.sitefooter--light .footer-help {
  background: var(--bg-soft);
  border-color: var(--line);
}
.sitefooter--light .footer-help b { color: var(--ink); }
.sitefooter--light .footer-bottom {
  border-top-color: var(--line);
  background: var(--bg-soft);
  color: var(--body);
}
.sitefooter--light .footer-bottom a { color: var(--body); }
.sitefooter--light .footer-bottom a:hover { color: var(--red); }
.sitefooter--light .footer-credit a { color: var(--body); }
.sitefooter--light .footer-credit a:hover { color: var(--red); }

/* --- Actielabel in de navigatie: 1-op-1 de badge van de live webshop --- */

.nav-actie-slot { margin-left: auto; display: flex; align-items: center; }

.ds-sale-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  font-family: var(--font-header);
  line-height: 1;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: transform .15s ease;
}
.ds-sale-badge:hover { transform: translateY(-1px); }
.ds-sale-badge:active { transform: translateY(0); }
.ds-sale-badge:focus-visible { outline: 2px solid var(--red-primary); outline-offset: 3px; border-radius: 20px; }

.ds-sale-badge-off {
  background: var(--red-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 5px 9px;
  border-radius: 20px;
}
.ds-sale-badge-code {
  color: var(--red-primary);
  background: #fff;
  font-family: "SF Mono", Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1.5px dashed var(--red-primary);
  transition: background .15s ease, color .15s ease;
}
.ds-sale-badge:hover .ds-sale-badge-code,
.ds-sale-badge.is-copied .ds-sale-badge-code { background: var(--red-primary); color: #fff; }

.ds-sale-badge-done {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 999;
}
.ds-sale-badge.is-copied .ds-sale-badge-done { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Variant in de mobiele drawer: volle breedte, code + hint naast elkaar. */
.ds-sale-badge--block {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
}
.ds-sale-badge--block:hover { background: var(--red-dark); transform: none; }
.ds-sale-badge--block .ds-sale-badge-code {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.65);
  color: #fff;
}
.ds-sale-badge--block:hover .ds-sale-badge-code,
.ds-sale-badge--block.is-copied .ds-sale-badge-code { background: #fff; color: var(--red); }
.ds-sale-badge-label { font-size: 13px; font-weight: 600; color: #fff; }

@media (max-width: 1024px) { .ds-sale-badge-off { display: none; } }
@media (max-width: 480px) { .nav-actie-slot .ds-sale-badge { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .ds-sale-badge, .ds-sale-badge-code, .ds-sale-badge-done { transition: none; }
  .ds-sale-badge:hover { transform: none; }
}

/* --- Horizontale sliders op mobiel (populaire producten, USP's) ------ */

@media (max-width: 860px) {
  .is-mobile-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .is-mobile-slider::-webkit-scrollbar { display: none; }
  .is-mobile-slider > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .product-grid.is-mobile-slider > * { width: min(62vw, 240px); }
  .usp-grid.is-mobile-slider > * { width: min(78vw, 300px); }
  /* De USP-band is zelf de container: rand-tot-rand scrollen, tekst netjes. */
  .container.is-mobile-slider {
    max-width: none;
    scroll-padding-inline: 24px;
  }
}

/* --- Categoriepagina: filter op producttype ------------------------- */

.facet--links ul { display: grid; gap: 9px; }
.facet--links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body);
}
.facet--links a:hover { color: var(--ink); }
.facet--links a .box {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border: 1.5px solid #c9c9c9;
  border-radius: 4px;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.facet--links a:hover .box { border-color: var(--red); }
.facet--links a .cnt { margin-left: auto; font-size: 11.5px; color: var(--muted); }

/* --- Categoriepagina: "lees meer" onder de introtekst ---------------- */

.cat-head .read-on {
  display: inline-block;
  margin-left: 6px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.cat-head .read-on:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Categoriepagina: SEO-tekst breed in twee kolommen, FAQ eronder -- */

.seo-copy--cols {
  columns: 2;
  column-gap: 56px;
  max-width: none;
}
.seo-copy--cols > .label,
.seo-copy--cols > h2 { column-span: all; }
.seo-copy--cols h3 { break-after: avoid; }
.seo-copy--cols p { break-inside: avoid; }

.faq--centered {
  max-width: 780px;
  margin: 52px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.faq--centered summary { text-align: left; }
.faq--centered details p { max-width: none; text-align: left; }

@media (max-width: 860px) {
  .seo-copy--cols { columns: 1; }
  .faq--centered { margin-top: 36px; }
}

/* --- Productpagina: prijs incl. én excl. btw ------------------------- */

.price-duo {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 6px;
}
.price-duo .pd-amount { display: block; }
.price-duo .vat {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.price-duo .pd-incl .pd-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}
.price-duo .pd-excl {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.price-duo .pd-excl .pd-amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--body);
  line-height: 1;
}
/* Met de btw-schakelaar op "excl." wisselen de twee van rol. */
body.vat-excl .price-duo { flex-direction: row-reverse; justify-content: flex-end; }
body.vat-excl .price-duo .pd-excl { border-left: 0; padding-left: 0; }
body.vat-excl .price-duo .pd-incl { padding-left: 14px; border-left: 1px solid var(--line); }
body.vat-excl .price-duo .pd-excl .pd-amount { font-size: 30px; font-weight: 800; color: var(--ink); }
body.vat-excl .price-duo .pd-incl .pd-amount { font-size: 17px; font-weight: 700; color: var(--body); }

/* --- Productpagina: tabbladnavigatie -------------------------------- */

.tabs { margin-top: 22px; }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-nav [role="tab"] {
  position: relative;
  flex: 0 0 auto;
  padding: 14px 20px;
  font-family: var(--font-header);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--body);
  white-space: nowrap;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color .15s, background .15s;
}
.tab-nav [role="tab"]:hover { color: var(--ink); background: rgba(0,0,0,.03); }
.tab-nav [role="tab"].is-active { color: var(--ink); }
.tab-nav [role="tab"].is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--red);
}
.tab-nav [role="tab"]:focus-visible { outline: 2px solid var(--red-primary); outline-offset: -2px; }

.tab-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 26px 28px 28px;
}
.tab-panel p { font-size: 14px; margin-bottom: 12px; }
.tab-panel p:last-child { margin-bottom: 0; }
.tab-panel h2, .tab-panel h3, .tab-panel h4 { margin: 18px 0 8px; font-size: 16px; }
.tab-panel ul, .tab-panel ol { margin: 0 0 12px 20px; font-size: 14px; }
.tab-panel ul li { list-style: disc; margin-bottom: 5px; }
.tab-panel ol li { list-style: decimal; margin-bottom: 5px; }
.tab-panel img { max-width: 100%; height: auto; border-radius: var(--r-sm); }
.tab-panel a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }

/* FAQ in het productinfo-tabblad: iets ruimer dan het categorie-blok. */
.faq--pdp details:first-child summary { padding-top: 4px; }
.faq--pdp details p { max-width: 640px; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th,
.spec-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 40%; font-weight: 600; color: var(--ink); padding-right: 20px; }

@media (max-width: 560px) {
  .tab-nav [role="tab"] { padding: 13px 14px; font-size: 13.5px; }
  .tab-panel { padding: 20px 18px 22px; }
  .spec-table th { width: 45%; }
}

/* --- "Lees meer" op lange teksten ----------------------------------- */

.readmore { position: relative; }
.readmore.is-clamped .readmore-body {
  max-height: 12.4em;   /* ongeveer zeven regels */
  overflow: hidden;
}
.readmore.is-clamped::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9.4em;
  height: 3em;
  background: linear-gradient(rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.readmore-btn {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
}
.readmore-btn:hover { text-decoration: underline; text-underline-offset: 3px; }
.readmore-btn[hidden] { display: none; }

/* =====================================================================
   Winkelwagen (v0.6.0): conversiegericht, met verzenddrempel-balk,
   prominent kortingscodeveld, sticky overzicht en vertrouwenselementen.
   ===================================================================== */

.cartpage { padding: 26px 0 70px; }
.cartpage .crumbs { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.cartpage .crumbs a { color: var(--muted); }
.cartpage .crumbs a:hover { color: var(--red); }
.cart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.cart-head h1 { font-size: clamp(24px, 3vw, 32px); }
.cart-count-label { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--muted); }
.cart-head .verder { font-size: 13.5px; font-weight: 600; color: var(--body); }
.cart-head .verder:hover { color: var(--red); }

/* verzenddrempel */
.ship-bar { margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 18px; }
.ship-bar-tekst { font-size: 13.5px; }
.ship-bar-tekst b { color: var(--ink); }
.ship-bar-tekst .gratis-ja { color: var(--green-text); font-weight: 700; }
.ship-track { margin-top: 9px; height: 8px; border-radius: 999px; background: var(--bg-soft); overflow: hidden; }
.ship-fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--red), #ff5c86); transition: width .4s ease; }
.ship-fill.is-vol { background: #1d9a53; }

.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; margin-top: 22px; }

/* regels */
.cart-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 12px; align-items: center; }
.cart-row.is-weg { display: none; }
.cr-thumb .ph { width: 96px; height: 96px; border-radius: var(--r-sm); }
.cr-brand { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.cr-name { display: block; font-weight: 600; color: var(--ink); line-height: 1.35; margin-top: 2px; }
.cr-name:hover { color: var(--red); }
.cr-stock { display: block; font-size: 12px; color: var(--green-text); margin-top: 4px; }
.cr-tools { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 34px; height: 34px; border: none; background: none; font-size: 17px; cursor: pointer; color: var(--body); }
.qty button:hover { color: var(--red); }
.qty-in { width: 38px; border: none; text-align: center; font: 600 14px var(--font-body); color: var(--ink); }
.cr-del { background: none; border: none; font: 500 12.5px var(--font-body); color: var(--muted); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cr-del:hover { color: var(--red); }
.cr-prijs { text-align: right; }
.cr-regel { display: block; font-family: var(--font-head); font-size: 17px; color: var(--ink); white-space: nowrap; }
.cr-stuk { font-size: 12px; color: var(--muted); }

.cart-leeg { background: #fff; border: 1px dashed var(--line); border-radius: var(--r-md); padding: 44px 30px; text-align: center; }
.cart-leeg h2 { margin-bottom: 6px; }
.cart-leeg .btn { margin-top: 16px; }

/* kortingscode */
.coupon { background: var(--pink-soft); border: 1.5px dashed var(--red); border-radius: var(--r-md); padding: 16px 18px; margin-top: 6px; }
.coupon label { font-size: 13.5px; display: block; margin-bottom: 8px; }
.coupon-rij { display: flex; gap: 8px; }
.coupon-rij input { flex: 1; border: 1.5px solid rgba(228,0,61,.35); border-radius: 999px; padding: 11px 18px; font: 600 14px var(--font-body); letter-spacing: .06em; text-transform: uppercase; background: #fff; }
.coupon-rij input:focus { outline: none; border-color: var(--red); }
.coupon-melding { font-size: 12.5px; margin-top: 7px; min-height: 18px; }
.coupon-melding.is-goed { color: var(--green-text); font-weight: 600; }
.coupon-melding.is-fout { color: #c00034; }

/* overzicht */
.cart-sum { position: sticky; top: 90px; }
.sum-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; }
.sum-box h2 { font-size: 18px; margin-bottom: 12px; }
.sum-rij { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 7px 0; }
.sum-rij[hidden] { display: none; }
.sum-rij b { font-weight: 600; color: var(--ink); }
.sum-korting span, .sum-korting b { color: var(--green-text); }
.sum-totaal { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 13px; font-size: 15px; }
.sum-totaal b { font-family: var(--font-head); font-size: 20px; }
.sum-totaal small { color: var(--muted); font-weight: 500; }
.btn-afrekenen { width: 100%; justify-content: center; text-align: center; margin-top: 14px; padding: 15px 20px; font-size: 15.5px; }
.sum-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.sum-pay { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.sum-pay > span { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.paylogos { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.paylogo { display: inline-flex; align-items: center; justify-content: center; height: 30px; padding: 0 9px; background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.paylogo img { height: 15px; width: auto; max-width: 54px; display: block; }

/* trustblok + usps */
.sum-trust { display: flex; align-items: center; gap: 14px; background: var(--dark-2); border-radius: var(--r-md); padding: 16px 18px; margin-top: 12px; text-decoration: none; }
.sum-trust .trust-score { flex: none; width: 52px; height: 52px; border-radius: 12px; background: #e50069; color: #fff; display: grid; place-items: center; font: 800 19px var(--font-head); }
.sum-trust .trust-tekst b { display: block; color: #fff; font-size: 14px; line-height: 1.3; }
.sum-trust .trust-tekst span { font-size: 12px; color: rgba(255,255,255,.65); }
.sum-usps { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; }
.sum-usps li { font-size: 13px; padding-left: 24px; position: relative; }
.sum-usps li::before { content: "\2713"; position: absolute; left: 2px; color: var(--red); font-weight: 700; }

.cart-aanraders { margin-top: 54px; }

@media (max-width: 960px) {
  .cart-grid { grid-template-columns: 1fr; }
  .cart-sum { position: static; }
}
@media (max-width: 560px) {
  .cart-row { grid-template-columns: 72px 1fr; }
  .cr-thumb .ph { width: 72px; height: 72px; }
  .cr-prijs { grid-column: 2; text-align: left; display: flex; gap: 10px; align-items: baseline; }
  .coupon-rij { flex-direction: column; }
}

/* --- WebwinkelKeur-score onder de producttitel (meeting 19 aug) --------- */
.pdp-wwk { display: inline-flex; align-items: center; gap: 9px; margin: 4px 0 10px; text-decoration: none; }
.pdp-wwk .stars-mini { color: #f5a623; font-size: 14px; letter-spacing: 1.5px; }
.pdp-wwk b { color: var(--ink); font-size: 13.5px; }
.pdp-wwk span { font-size: 12.5px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.pdp-wwk:hover span { color: var(--red); }

/* --- Productpagina: meer kleurverschil tussen de secties (meeting) ------ */
.reviews-full { background: var(--bg-soft); padding-top: 44px; padding-bottom: 44px; }

/* --- Betaallogo's in de footer (meeting) -------------------------------- */
.footer-pay { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.footer-pay .paylogo { background: #fff; }

/* =====================================================================
   Afrekenen (v0.7.0). Eén pagina, links de stappen en rechts een
   meelopende samenvatting. Bewust zonder menu, zoekveld en uitstapjes:
   alles wat op deze pagina afleidt, kost bestellingen.
   ===================================================================== */


.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Terugval voor browsers zonder :has(): JS zet .is-gekozen op de kaart. */
.co-keuze.is-gekozen { border-color: var(--red); background: #fffafb; }
.co-keuze.is-gekozen .co-banken { display: block; }

/* --- strakke kop en voet, alleen tijdens het afrekenen --------------- */
.leanhead { background: #fff; border-bottom: 1px solid var(--line); padding: 14px 0; }
.leanhead .container { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.leanhead .logo img { height: 34px; width: auto; display: block; }
.leanhead .steps { list-style: none; display: flex; align-items: center; gap: 10px; margin: 0; padding: 0; }
.leanhead .steps li { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.leanhead .steps li a { color: inherit; display: flex; align-items: center; gap: 7px; }
.leanhead .steps li a:hover { color: var(--red); }
.leanhead .steps li + li::before { content: ""; width: 26px; height: 1px; background: var(--line); }
.leanhead .steps .bol { width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--bg-soft); color: var(--body); font-size: 12px; font-weight: 700; }
.leanhead .steps .is-done { color: var(--body); }
.leanhead .steps .is-done .bol { background: var(--green-soft); color: var(--green-text); }
.leanhead .steps .is-now { color: var(--ink); }
.leanhead .steps .is-now .bol { background: var(--red); color: #fff; }
.leanhead-meta { display: flex; align-items: center; gap: 16px; font-size: 12.5px; color: var(--body); }
.leanhead-meta .veilig { display: inline-flex; align-items: center; gap: 6px; }
.leanhead-meta .veilig .svgico { color: var(--green-text); }
.leanhead-meta .hulp { font-weight: 700; color: var(--ink); }
.leanhead-meta .hulp:hover { color: var(--red); }

.leanfoot { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 20px 0; margin-top: 50px; }
.leanfoot .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--body); }
.leanfoot nav { display: flex; gap: 16px; flex-wrap: wrap; }
.leanfoot nav a { color: var(--body); }
.leanfoot nav a:hover { color: var(--red); }
.leanfoot .footer-credit a { color: var(--body); text-decoration: underline; text-underline-offset: 3px; }

/* --- raamwerk -------------------------------------------------------- */
.checkoutpage { padding: 26px 0 20px; background: var(--bg-soft); }
.co-grid { display: grid; grid-template-columns: 1fr 400px; gap: 34px; align-items: start; }
.co-terug { display: inline-block; font-size: 13px; font-weight: 600; color: var(--body); margin-bottom: 8px; }
.co-terug:hover { color: var(--red); }
.checkoutpage h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }

/* snel afrekenen met een wallet, vóór het formulier */
.co-express { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; }
.co-express-kop { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.co-express-knoppen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.xp { height: 46px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; cursor: pointer; display: grid; place-items: center; transition: border-color .15s ease, transform .15s ease; }
.xp:hover { border-color: var(--ink); transform: translateY(-1px); }
.xp img { height: 20px; width: auto; max-width: 74px; }
.xp--apple { background: #000; border-color: #000; }
.xp--apple img { filter: brightness(0) invert(1); }
.co-express-melding { font-size: 12.5px; color: var(--body); margin-top: 10px; }
.co-of { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--muted); font-size: 12.5px; }
.co-of::before, .co-of::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* --- stappen --------------------------------------------------------- */
.co-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px 24px; margin-bottom: 16px; }
.co-step--slank { padding: 6px 24px; }
.co-step h2 { font-size: 18px; display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.co-step h2 .nr { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-grid; place-items: center; font: 700 13px var(--font-body); flex: none; }
.co-step h3 { font-size: 14.5px; margin: 18px 0 2px; }

.co-veld { margin-top: 14px; }
.co-veld > label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.co-veld > label small { font-weight: 500; color: var(--muted); }
.co-veld input[type=text], .co-veld input[type=email], .co-veld input[type=tel], .co-veld select, .co-uitklap-blok textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px;
  font: 400 14.5px var(--font-body); color: var(--ink); background: #fff;
}
.co-veld input:focus, .co-veld select:focus, .co-uitklap-blok textarea:focus { outline: none; border-color: var(--ink); }
.co-veld.is-fout input { border-color: var(--red); background: #fff7f9; }
.co-veld .hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
.co-veld .fout, .co-afronden .fout { font-size: 12.5px; font-weight: 600; color: var(--red); margin-top: 5px; }
.co-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-rij--pc { grid-template-columns: 1.1fr .8fr .8fr; }
.co-pc-melding { font-size: 12.5px; color: var(--green-text); font-weight: 600; margin-top: 10px; }
.co-pc-melding .tick { margin-right: 4px; }

.co-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: 13.5px; line-height: 1.5; cursor: pointer; }
.co-check input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--red); flex: none; }
.co-check a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.co-check a:hover { color: var(--red); }
.co-check--kader { border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; }
.co-check--kader b { display: block; color: var(--ink); }
.co-check--kader small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.co-zakelijk-velden[hidden], .co-factuur-velden[hidden], .co-uitklap-blok[hidden] { display: none; }

/* keuzekaarten voor verzenden en betalen */
.co-keuzes { display: grid; gap: 10px; }
.co-keuze { display: flex; gap: 12px; align-items: flex-start; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.co-keuze:hover { border-color: #cfcfcf; }
.co-keuze:has(input:checked) { border-color: var(--red); background: #fffafb; }
.co-keuze[hidden] { display: none; }
.co-keuze input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--red); flex: none; }
.co-keuze-body { flex: 1; min-width: 0; }
.co-keuze-kop { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.co-keuze-kop b { font-size: 14.5px; color: var(--ink); }
.co-keuze-body small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.co-keuze-prijs { font: 600 14px var(--font-body); color: var(--ink); white-space: nowrap; }
.co-keuze-prijs.is-gratis { color: var(--green-text); font-weight: 700; }
.co-keuze-logos { display: flex; align-items: center; gap: 6px; flex: none; }
.co-keuze-logos img { height: 17px; width: auto; max-width: 56px; }
.co-banken { display: none; margin-top: 11px; }
.co-keuze:has(input:checked) .co-banken { display: block; }
.co-banken select { width: 100%; max-width: 280px; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 10px 12px; font: 400 14px var(--font-body); background: #fff; }
.co-ship-hint { font-size: 12.5px; color: var(--green-text); font-weight: 600; margin-top: 11px; }

.co-uitklap { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: none; border: none; padding: 16px 0; font: 600 14px var(--font-body); color: var(--ink); cursor: pointer; }
.co-uitklap:hover { color: var(--red); }
.co-uitklap .car { font-size: 17px; color: var(--muted); }
.co-uitklap[aria-expanded="true"] .car { transform: rotate(45deg); }
.co-uitklap-blok { padding-bottom: 18px; }
.co-uitklap-blok .hint { font-size: 12px; color: var(--muted); margin-top: 7px; }

/* afronden */
.co-afronden { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 24px 24px; }
.co-bestel { width: 100%; justify-content: center; text-align: center; margin-top: 14px; padding: 17px 20px; font-size: 16px; }
.co-bestel-bedrag { font-weight: 700; }
.co-melding { font-size: 13px; margin-top: 11px; padding: 11px 14px; border-radius: var(--r-sm); background: var(--green-soft); color: var(--green-text); }
.co-melding.is-fout { background: var(--pink-soft); color: var(--red); }
.co-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 11px; }
.co-garanties { list-style: none; margin: 16px 0 0; padding: 15px 0 0; border-top: 1px solid var(--line); display: grid; gap: 7px; }
.co-garanties li { font-size: 13px; padding-left: 24px; position: relative; }
.co-garanties li::before { content: "\2713"; position: absolute; left: 2px; color: var(--red); font-weight: 700; }

.co-hulp { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 18px; font-size: 13.5px; color: var(--body); }
.co-hulp b { color: var(--ink); }
.co-hulp a { font-weight: 700; color: var(--red); }

/* --- samenvatting ---------------------------------------------------- */
.co-sum { position: sticky; top: 22px; }
.co-sum .sum-box { padding: 20px 22px; }
.co-sum-toggle { display: none; }
.co-regels { display: grid; gap: 14px; margin: 6px 0 14px; }
.co-regel { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.co-regel-thumb { position: relative; display: block; }
.co-regel-thumb .ph { width: 56px; height: 56px; border-radius: var(--r-sm); }
.co-regel-aantal { position: absolute; top: -7px; right: -7px; min-width: 21px; height: 21px; padding: 0 5px; border-radius: 999px; background: var(--ink); color: #fff; font: 700 11.5px var(--font-body); display: grid; place-items: center; }
.co-regel-tekst small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.co-regel-tekst a { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.co-regel-tekst a:hover { color: var(--red); }
.co-regel-prijs { font: 600 14px var(--font-body); color: var(--ink); white-space: nowrap; }
.co-wijzig { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--body); text-decoration: underline; text-underline-offset: 3px; }
.co-wijzig:hover { color: var(--red); }
.coupon--slank { margin: 16px 0 6px; padding: 13px 15px; }
.coupon--slank label { font-size: 12.5px; }
.coupon--slank .coupon-rij input { padding: 9px 15px; font-size: 13px; }
.coupon--slank .coupon-rij .btn { padding: 9px 16px; font-size: 13px; }
.co-sum .sum-btw span, .co-sum .sum-btw b { color: var(--muted); font-weight: 500; font-size: 13px; }
.co-sum .sum-verzendlabel { color: var(--muted); font-style: normal; font-size: 12.5px; }
.ship-bar--slank { margin-top: 14px; padding: 12px 14px; background: var(--bg-soft); border-color: transparent; }
.ship-bar--slank .ship-bar-tekst { font-size: 12.5px; }

@media (max-width: 1080px) {
  .co-grid { grid-template-columns: 1fr 350px; gap: 24px; }
}
@media (max-width: 900px) {
  /* Op mobiel staat de samenvatting bovenaan en ingeklapt: je ziet het
     bedrag meteen, zonder dat de regels het formulier wegdrukken. */
  .co-grid { grid-template-columns: 1fr; gap: 18px; }
  .co-sum { position: static; order: -1; }
  .co-sum-toggle { width: 100%; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 16px; font: 600 14px var(--font-body); color: var(--ink); cursor: pointer; text-align: left; }
  .co-sum-toggle .tekst { flex: 1; }
  .co-sum-toggle .tekst small { color: var(--muted); font-weight: 500; }
  .co-sum-toggle .ico { color: var(--red); display: inline-flex; }
  .co-sum-toggle .car { color: var(--muted); transition: transform .2s ease; }
  .co-sum-toggle[aria-expanded="true"] .car { transform: rotate(180deg); }
  .co-sum-body { margin-top: 12px; }
  .co-sum-body[hidden] { display: none; }
  .leanhead .container { flex-wrap: wrap; row-gap: 12px; }
  .leanhead .steps { order: 3; width: 100%; justify-content: center; }
}
@media (max-width: 620px) {
  .checkoutpage { padding-top: 16px; }
  .co-step, .co-afronden { padding: 18px 16px 20px; }
  .co-step--slank { padding: 4px 16px; }
  .co-rij, .co-rij--pc { grid-template-columns: 1fr; gap: 0; }
  .co-rij--pc .co-veld:first-child { margin-top: 14px; }
  .leanhead-meta .veilig { display: none; }
  .leanhead .steps li + li::before { width: 14px; }
  .leanhead .steps li { font-size: 12px; }
  .co-express-knoppen { grid-template-columns: 1fr; }
}

/* =====================================================================
   De echte winkel (v0.8.0). WooCommerce' eigen stylesheets staan uit, dus
   zijn formulieren, meldingen en betaalmethodes hier opgemaakt in dezelfde
   taal als de rest van de site.
   ===================================================================== */

/* --- algemene pagina's ---------------------------------------------- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 12px; width: auto; height: auto; clip: auto; background: #fff; padding: 10px 16px; border-radius: var(--r-sm); z-index: 200; }
.inhoudspagina { padding: 40px 0 70px; }
.inhoudspagina .pagina-kop h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }
.inhoud-blok { max-width: 780px; }
.inhoud-blok h2 { margin: 28px 0 10px; }
.inhoud-blok p, .inhoud-blok li { color: var(--body); line-height: 1.7; }
.inhoud-blok ul, .inhoud-blok ol { padding-left: 20px; margin: 10px 0; }
.fout-404 { text-align: center; max-width: 620px; margin: 0 auto; }
.fout-404 .searchbar { margin: 22px auto; max-width: 460px; }

/* --- meldingen van WooCommerce --------------------------------------- */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error, .wc-block-components-notice-banner {
  list-style: none; margin: 0 0 18px; padding: 14px 18px; border-radius: var(--r-md);
  font-size: 14px; border: 1px solid var(--line); background: #fff;
}
.woocommerce-message { background: var(--green-soft); border-color: transparent; color: var(--green-text); }
.woocommerce-info { background: var(--bg-soft); }
.woocommerce-error { background: var(--pink-soft); border-color: rgba(228,0,61,.3); color: #c00034; }
.woocommerce-error li + li { margin-top: 5px; }
.woocommerce-message .button, .woocommerce-info .button { float: right; font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* --- formulieren ------------------------------------------------------ */
.woocommerce form .form-row { margin: 0 0 14px; }
.woocommerce form .form-row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.woocommerce form .form-row label .required { color: var(--red); text-decoration: none; }
.woocommerce form .form-row .optional { color: var(--muted); font-weight: 500; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px;
  font: 400 14.5px var(--font-body); color: var(--ink); background: #fff; height: auto; line-height: 1.4;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { outline: none; border-color: var(--ink); }
.woocommerce form .form-row.woocommerce-invalid input.input-text { border-color: var(--red); background: #fff7f9; }
.woocommerce form .form-row .description { font-size: 12px; color: var(--muted); margin-top: 5px; }
.woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 48.5%; float: left; }
.woocommerce form .form-row-last { float: right; }
.woocommerce form .form-row-wide, .woocommerce form .form-row.notes { clear: both; width: 100%; }
.woocommerce form .clear { clear: both; }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 1.4; padding: 0; color: var(--ink); }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; transform: translateY(-50%); right: 10px; }

/* Velden die achter een link horen te staan: toevoeging en bedrijfsnaam.
   Een zichtbaar leeg veld laat mensen twijfelen of ze iets vergeten zijn. */
.dst-optioneel-veld, .dst-zakelijk-veld { display: none; }
.dst-optioneel-veld.is-open, .dst-zakelijk-veld.is-open { display: block; }
.dst-veldlink { background: none; border: none; padding: 0; margin: -4px 0 14px; font: 600 13px var(--font-body); color: var(--body); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.dst-veldlink:hover { color: var(--red); }

/* --- winkelwagen: extra's van de echte pagina ------------------------- */
.cartpage.is-live .cart-row .quantity { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.cartpage.is-live .cart-row .quantity input.qty { width: 56px; border: none; text-align: center; font: 600 14px var(--font-body); color: var(--ink); padding: 8px 0; -moz-appearance: textfield; }
.cartpage.is-live .cart-row .quantity input.qty::-webkit-outer-spin-button,
.cartpage.is-live .cart-row .quantity input.qty::-webkit-inner-spin-button { opacity: 1; }
.cart-acties { display: flex; justify-content: flex-end; gap: 10px; margin: 6px 0 14px; }
.cart-acties .btn--outline { border: 1.5px solid var(--line); background: #fff; }
.sum-verzendkeuze { display: block; }
.sum-verzendkeuze ul { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 6px; }
.sum-verzendkeuze li { display: flex; align-items: baseline; gap: 8px; font-size: 13.5px; }
.sum-verzendkeuze li label { color: var(--body); }
.sum-verzendkeuze .woocommerce-shipping-destination { font-size: 12px; color: var(--muted); margin-top: 8px; }
.sum-verzendkeuze .shipping-calculator-button { font-size: 12.5px; color: var(--body); text-decoration: underline; text-underline-offset: 3px; }

/* --- kortingscode: ingeklapt, met de actiecode al ingevuld ------------ */
.dst-coupon { margin: 16px 0; }
.dst-coupon-link { background: none; border: none; padding: 0; font: 600 13.5px var(--font-body); color: var(--ink); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.dst-coupon-link:hover { color: var(--red); }
.dst-coupon.is-open .dst-coupon-link { color: var(--red); }
.dst-coupon-blok { margin-top: 10px; }
.dst-coupon-blok[hidden] { display: none; }
.dst-coupon-form .coupon-rij input { flex: 1; min-width: 0; border: 1.5px solid rgba(228,0,61,.35); border-radius: 999px; padding: 11px 18px; font: 600 14px var(--font-body); letter-spacing: .06em; text-transform: uppercase; background: #fff; }
.dst-coupon-fine { font-size: 11.5px; color: var(--muted); margin-top: 7px; }

/* --- bezorgbelofte ---------------------------------------------------- */
.lever-note { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--body); margin: 14px 0; }
.lever-note .svgico { color: var(--green-text); flex: none; display: inline-flex; }
.lever-note.is-vakantie { color: var(--ink); background: #fff8e6; border: 1px solid #f3dfae; border-radius: var(--r-sm); padding: 11px 14px; }
.lever-note--pdp { margin: 10px 0 4px; }
.lever-note--klein { font-size: 12.5px; justify-content: center; margin: 12px 0 0; }

/* --- garanties bij de knop -------------------------------------------- */
.trust-row { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 7px; }
.trust-row li { font-size: 13px; padding-left: 24px; position: relative; color: var(--body); }
.trust-row li::before { content: "\2713"; position: absolute; left: 2px; color: var(--red); font-weight: 700; }
.pdp-garanties { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }

/* --- meelopende bestelbalk op de productpagina ------------------------ */
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -14px rgba(16,16,20,.3); padding: 10px 0; }
.sticky-buy[hidden] { display: none; }
.sticky-buy .container { display: flex; align-items: center; gap: 14px; }
.sticky-buy .sb-thumb .ph { width: 44px; height: 44px; border-radius: var(--r-sm); }
.sticky-buy .sb-tekst { flex: 1; min-width: 0; }
.sticky-buy .sb-tekst b { display: block; font-size: 13.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .sb-prijs { font-size: 13px; color: var(--body); }
.sticky-buy .sb-knop { flex: none; }

/* --- verzenddrempel in de drawer -------------------------------------- */
.ship-bar--mini { margin: 0 0 14px; padding: 11px 14px; background: var(--bg-soft); border: none; border-radius: var(--r-sm); }
.ship-bar--mini .ship-bar-tekst { font-size: 12.5px; }

/* --- afrekenen: de echte pagina --------------------------------------- */
.checkoutpage.is-live #customer_details { display: block; }
.checkoutpage.is-live .co-step h2 { margin-bottom: 16px; }
.co-verzendadres { margin: 0 0 16px; }
.woocommerce-shipping-fields, .woocommerce-additional-fields { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 16px; }
.woocommerce-shipping-fields h3, .woocommerce-additional-fields h3 { font-size: 15px; margin-bottom: 10px; }
#ship-to-different-address { font-size: 14px; }
#ship-to-different-address label { display: flex; align-items: center; gap: 9px; font-weight: 600; cursor: pointer; }
#ship-to-different-address input { width: 17px; height: 17px; accent-color: var(--red); }
.woocommerce-billing-fields h3 { font-size: 15px; margin-bottom: 10px; }
.checkoutpage.is-live .wc_payment_methods { list-style: none; margin: 0; padding: 0; }
.checkoutpage.is-live .wc_payment_methods .co-keuze { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.checkoutpage.is-live .wc_payment_methods .payment_box { grid-column: 1 / -1; font-size: 13px; color: var(--body); background: var(--bg-soft); border-radius: var(--r-sm); padding: 12px 14px; margin-top: 4px; }
.checkoutpage.is-live .wc_payment_methods .payment_box p:last-child { margin-bottom: 0; }
.checkoutpage.is-live .co-keuze-logos img { height: 20px; width: auto; max-width: 60px; }
.checkoutpage.is-live .co-afronden { margin-top: 18px; }
.woocommerce-terms-and-conditions-wrapper { font-size: 13.5px; }
.woocommerce-terms-and-conditions-wrapper .form-row { margin-bottom: 10px; }
.woocommerce-terms-and-conditions-wrapper label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.woocommerce-terms-and-conditions-wrapper input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--red); flex: none; }
.woocommerce-privacy-policy-text p { font-size: 12.5px; color: var(--muted); }
.woocommerce-form-login-toggle, .woocommerce-form-coupon-toggle { display: none; }
.checkoutpage.is-live .co-sum .woocommerce-checkout-review-order-table { display: block; }
.blockUI.blockOverlay { background: #fff !important; opacity: .6 !important; }

/* --- account ná de bestelling ----------------------------------------- */
.dst-na-aankoop { background: var(--bg-soft); border-radius: var(--r-md); padding: 22px 24px; margin: 26px 0; max-width: 620px; }
.dst-na-aankoop h2 { font-size: 18px; margin-bottom: 6px; }
.dst-na-aankoop p { font-size: 14px; color: var(--body); margin-bottom: 12px; }
.dst-na-aankoop input { flex: 1; min-width: 0; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 18px; font: 400 14px var(--font-body); background: #fff; }

/* --- paginering -------------------------------------------------------- */
.cat-paginering { display: flex; justify-content: center; gap: 6px; margin-top: 30px; flex-wrap: wrap; }
.cat-paginering .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; font-size: 14px; font-weight: 600; color: var(--body); text-decoration: none; }
.cat-paginering .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.cat-paginering .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }
.sort-form { display: flex; align-items: center; gap: 8px; }

@media (max-width: 720px) {
  .woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 100%; float: none; }
  .cart-acties { justify-content: stretch; }
  .cart-acties .btn { flex: 1; text-align: center; justify-content: center; }
  .sticky-buy .sb-tekst .sb-prijs { display: none; }
}

/* --- correcties op de echte pagina's ---------------------------------- */
/* WooCommerce zet met JavaScript inline display-waarden op adresvelden,
   dus onze verborgen velden hebben !important nodig. */
.dst-optioneel-veld:not(.is-open), .dst-zakelijk-veld:not(.is-open) { display: none !important; }

/* Productfoto's in het besteloverzicht komen van WooCommerce als losse img. */
.co-regel-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--r-sm); background: #fff; display: block; }
.co-regel-thumb { width: 56px; flex: none; }
.cart-row .cr-thumb img { width: 96px; height: 96px; object-fit: contain; border-radius: var(--r-sm); background: #fff; display: block; }
.drawer-regels .cart-item .thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Lege blokken van WooCommerce niet als kader tonen. */
.woocommerce-shipping-fields:not(:has(.form-row)):not(:has(#ship-to-different-address)),
.woocommerce-additional-fields:not(:has(.form-row)) { display: none; }

/* De koppen van WooCommerce in onze stijl. */
.woocommerce-billing-fields > h3, .woocommerce-shipping-fields > h3, .woocommerce-additional-fields > h3 {
  font-family: var(--font-head); font-size: 15px; color: var(--ink); margin: 0 0 12px;
}

/* --- rood op donkere vlakken -----------------------------------------
   Het merkrood haalt op bijna zwart geen 4,5:1. Op donkere secties
   gebruiken we daarom de lichtere variant. Zie [[no-dark-on-dark]]. */
.topbar-usps .tick { color: var(--red-on-dark); }
.about-band .label, .action-band .label, .story-band .label,
.sitefooter:not(.sitefooter--light) .label { color: var(--red-on-dark); }
.about-band a:not(.btn), .action-band a:not(.btn) { color: var(--red-on-dark); }
.sum-trust .trust-tekst span { color: rgba(255,255,255,.78); }

/* Laatste contrastpunten uit de meting. */
.crumbs .sep, .crumbs span { color: var(--muted); }
.chip.is-active, .facet .chip.is-active { color: #c00034; }
.tick, .story-checks .tick, .drawer-foot .tick { color: var(--green-text); } /* het lichte groen haalt op zachte vlakken geen 4,5:1 */

/* --- meldingen bij een veld (postcodecheck, btw-controle) ------------- */
.dst-veldmelding { font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.dst-veldmelding[hidden] { display: none; }
.dst-veldmelding.is-goed { color: var(--green-text); }
.dst-veldmelding.is-fout { color: #c00034; }
.dst-veldmelding.is-bezig { color: var(--muted); font-weight: 500; }

/* --- verleggingsregel op bestelling en factuur ------------------------ */
.dst-verlegd { font-size: 13px; color: var(--body); background: var(--bg-soft); border-radius: var(--r-sm); padding: 12px 14px; margin-top: 14px; }
.dst-verlegd b { color: var(--ink); }
.dst-adres-uitleg { font-size: 12.5px; color: var(--muted); margin: -4px 0 12px; }
.dst-referentie { font-size: 13px; color: var(--body); margin-top: 10px; }

/* =====================================================================
   Contact, FAQ en verlanglijst: de onderdelen die nu nog aan Elementor en
   WoodMart hangen, zodat ze blijven werken zodra die eruit gaan.
   ===================================================================== */

.dst-contact { max-width: 720px; }
.dst-honing { position: absolute; left: -9999px; }
.dst-contact-form .co-rij { gap: 14px; }
.dst-contact-form .btn { margin-top: 6px; }
.dst-contact-note { font-size: 12px; color: var(--muted); margin-top: 10px; }
.dst-contact .cf-turnstile { margin: 14px 0; }
.dst-melding { border-radius: var(--r-md); padding: 15px 18px; margin-bottom: 20px; font-size: 14px; }
.dst-melding b { display: block; margin-bottom: 2px; }
.dst-melding.is-goed { background: var(--green-soft); color: var(--green-text); }
.dst-melding.is-fout { background: var(--pink-soft); color: #c00034; }

.dst-faq { max-width: 780px; border-top: 1px solid var(--line); }
.dst-faq-item { border-bottom: 1px solid var(--line); }
.dst-faq h3 { margin: 0; font-size: inherit; }
.dst-faq-vraag { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; padding: 18px 0; text-align: left; font: 600 16px var(--font-body); color: var(--ink); cursor: pointer; }
.dst-faq-vraag:hover { color: var(--red); }
.dst-faq-vraag .car { font-size: 20px; color: var(--muted); flex: none; transition: transform .2s ease; }
.dst-faq-vraag[aria-expanded="true"] .car { transform: rotate(45deg); color: var(--red); }
.dst-faq-antwoord { padding: 0 0 18px; color: var(--body); line-height: 1.7; max-width: 640px; }
.dst-faq-antwoord[hidden] { display: none; }

.dst-wish { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; padding: 0; font: 600 13px var(--font-body); color: var(--body); cursor: pointer; }
.dst-wish:hover { color: var(--red); }
.dst-wish.is-aan { color: var(--red); }
.dst-wish.is-aan svg { fill: var(--red); }
.dst-wishlist-leeg { text-align: center; padding: 50px 20px; border: 1px dashed var(--line); border-radius: var(--r-md); }
.dst-wishlist-leeg[hidden] { display: none; }
.dst-wishlist-leeg h2 { margin-bottom: 6px; }
.dst-wishlist-leeg .btn { margin-top: 16px; }
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.contact-intro { max-width: 620px; margin-bottom: 24px; color: var(--body); line-height: 1.7; }
.contact-zij { display: grid; gap: 16px; }
.contact-kaart { background: var(--bg-soft); border-radius: var(--r-md); padding: 22px 24px; }
.contact-kaart h2 { font-size: 17px; margin-bottom: 8px; }
.contact-kaart p { font-size: 14px; color: var(--body); }
.contact-groot { font: 700 22px var(--font-head); color: var(--ink); }
.contact-groot:hover { color: var(--red); }
.faq-hulp { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 34px; background: var(--bg-soft); border-radius: var(--r-md); padding: 18px 22px; font-size: 14px; }
.faq-hulp b { color: var(--ink); }
.faq-hulp .btn { margin-left: auto; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .faq-hulp .btn { margin-left: 0; }
}
.pcard .fav.dst-wish { color: var(--muted); }
.pcard .fav.dst-wish.is-aan { color: var(--red); }
.pcard .fav.dst-wish.is-aan svg { fill: var(--red); }
.pdp-meta .dst-wish { font-size: 13.5px; }
.topbar-drempel b { color: #fff; }
.topbar-drempel.is-gehaald { color: #fff; }
.lever-rest { color: var(--ink); }
.buy-row--live + .pdp-garanties + .sum-pay { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.buybox .sum-pay .paylogos { gap: 6px; }
.buybox .sum-pay .paylogo { height: 26px; padding: 0 7px; }

/* =====================================================================
   Over ons en zakelijk bestellen: de pagina's die Elementor vervangen.
   ===================================================================== */
.over-hero { padding: 44px 0 10px; }
.over-hero h1 { font-size: clamp(28px, 4vw, 44px); margin: 6px 0 14px; }
.over-intro { max-width: 720px; font-size: 17px; line-height: 1.65; color: var(--body); }
.over-grid { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.over-tekst h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 30px 0 10px; }
.over-tekst h2:first-child { margin-top: 0; }
.over-tekst p { color: var(--body); line-height: 1.75; margin-bottom: 14px; max-width: 660px; }
.over-zij { display: grid; gap: 16px; position: sticky; top: 90px; }
.over-kaart { background: var(--bg-soft); border-radius: var(--r-md); padding: 24px; }
.over-kaart h2 { font-size: 17px; margin-bottom: 12px; }
.over-adres { font-size: 14.5px; line-height: 1.6; color: var(--body); margin-bottom: 12px; }
.over-adres strong { color: var(--ink); }
.over-bereik { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.over-contact { margin-bottom: 16px; font-size: 14px; }
.over-contact a { color: var(--body); }
.over-contact a:hover { color: var(--red); }
.over-merken { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 14px 0 0; }
.over-merken li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.over-merken-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.over-gegevens { display: flex; flex-wrap: wrap; gap: 12px 40px; margin-top: 14px; }
.over-gegevens dt { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.over-gegevens dd { margin: 2px 0 0; font-size: 15px; color: var(--ink); font-weight: 600; }

.zakelijk-stappen { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zakelijk-stappen li { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.zakelijk-stappen .nr { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff; font: 700 15px var(--font-body); margin-bottom: 12px; }
.zakelijk-stappen h2 { font-size: 17px; margin-bottom: 8px; }
.zakelijk-stappen p { font-size: 14px; color: var(--body); line-height: 1.6; }
.zakelijk-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.zakelijk-info h2 { font-size: 18px; margin: 0 0 10px; }
.zakelijk-info h2 + h2, .zakelijk-info p + h2 { margin-top: 22px; }
.zakelijk-info p { color: var(--body); line-height: 1.7; }
.zakelijk-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--bg-soft); border-radius: var(--r-lg); padding: 30px 34px; }
.zakelijk-cta h2 { font-size: 21px; margin-bottom: 6px; }
.zakelijk-cta p { color: var(--body); }
.zakelijk-cta-knoppen { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .over-grid { grid-template-columns: 1fr; gap: 28px; }
  .over-zij { position: static; }
  .zakelijk-stappen { grid-template-columns: 1fr; }
  .zakelijk-info { grid-template-columns: 1fr; gap: 24px; }
}

/* --- koppen die eigenlijk labels zijn ---------------------------------
   Menu-onderdelen en facetten waren h4/h5. Dat maakte de koppenstructuur
   onlogisch voor screenreaders en zoekmachines, terwijl het optisch
   hetzelfde moet blijven. */
.mega-pcol .mega-kop, .mega-banner .mega-kop {
  display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.mega-banner .mega-kop { color: #fff; font-size: 17px; }
.footer-col .footer-kop { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.facet .facet-kop { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }

/* =====================================================================
   Mijn account en de bedankpagina.
   ===================================================================== */

.account-kop { margin-bottom: 26px; }
.account-kop h1 { font-size: clamp(24px, 3vw, 34px); margin: 6px 0 8px; }
.account-kop p { color: var(--body); max-width: 620px; }

.account-login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.account-kaart { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 28px; }
.account-kaart h2 { font-size: 18px; margin-bottom: 14px; }
.account-uitleg { font-size: 13.5px; color: var(--body); margin-bottom: 14px; }
.account-login-acties { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.account-login-acties label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; margin: 0; }
.account-login-acties input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--red); }
.account-vergeten { font-size: 13px; color: var(--body); text-decoration: underline; text-underline-offset: 3px; }
.account-vergeten:hover { color: var(--red); }
.account-garanties { margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap; }
.account-garanties li { padding-left: 22px; }

.account-grid { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
.account-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 500; color: var(--body); }
.account-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.account-nav .is-active a, .account-nav .woocommerce-MyAccount-navigation-link--dashboard.is-active a { background: var(--ink); color: #fff; }
.account-nav .svgico { display: inline-flex; }
.account-inhoud h2 { font-size: 19px; margin: 0 0 14px; }
.account-inhoud h2 + h2, .account-inhoud p + h2, .account-inhoud div + h2 { margin-top: 30px; }

.account-orders { display: grid; gap: 12px; }
.account-order { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; }
.ao-kop { display: flex; align-items: center; gap: 10px; }
.ao-kop b { font-family: var(--font-head); font-size: 16px; color: var(--ink); }
.ao-status { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--bg-soft); color: var(--body); }
.ao-status--completed { background: var(--green-soft); color: var(--green-text); }
.ao-status--processing { background: #fff4e0; color: #8a5b00; }
.ao-status--cancelled, .ao-status--failed { background: var(--pink-soft); color: #c00034; }
.ao-meta { font-size: 13.5px; color: var(--body); margin: 6px 0 12px; }
.account-meer { font-size: 13.5px; font-weight: 600; color: var(--body); text-decoration: underline; text-underline-offset: 3px; }
.account-meer:hover { color: var(--red); }
.account-leeg { background: var(--bg-soft); border-radius: var(--r-md); padding: 34px 30px; text-align: center; }
.account-leeg h2 { margin-bottom: 6px; }
.account-leeg p { color: var(--body); margin-bottom: 16px; }
.account-snel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.account-snel a { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; }
.account-snel a:hover { border-color: var(--ink); }
.account-snel b { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 3px; }
.account-snel span { font-size: 12.5px; color: var(--muted); }

/* tabellen van WooCommerce binnen het account */
.account-inhoud .shop_table, .account-inhoud table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.account-inhoud th, .account-inhoud td { padding: 12px 14px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.account-inhoud th { background: var(--bg-soft); font-weight: 700; color: var(--ink); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
.account-inhoud tr:last-child td { border-bottom: none; }
.account-inhoud .button, .account-inhoud .woocommerce-button { display: inline-flex; align-items: center; justify-content: center; padding: 9px 16px; border-radius: 999px; background: var(--ink); color: #fff; font: 600 13px var(--font-body); }
.account-inhoud .button:hover { background: var(--red); }
.woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.woocommerce-Address { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; }
.woocommerce-Address-title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.woocommerce-Address-title h2, .woocommerce-Address-title h3 { font-size: 16px; margin: 0; }
.woocommerce-Address address { font-style: normal; font-size: 14px; color: var(--body); line-height: 1.6; }

/* bedankpagina */
.bedankt { max-width: 780px; }
.bedankt-kop { margin-bottom: 26px; }
.bedankt-vink { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--green-soft); color: var(--green-text); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.bedankt-kop h1 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 10px; }
.bedankt-kop p { color: var(--body); line-height: 1.65; }
.bedankt-blokken { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 26px; }
.bedankt-blok { background: var(--bg-soft); border-radius: var(--r-md); padding: 15px 18px; }
.bedankt-blok .bl-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.bedankt-blok b { font-family: var(--font-head); font-size: 17px; color: var(--ink); }
.bedankt-adres { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; margin-bottom: 24px; }
.bedankt-adres h2 { font-size: 16px; margin-bottom: 8px; }
.bedankt-adres address { font-style: normal; color: var(--body); line-height: 1.6; }
.bedankt-adres-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.bedankt-knoppen { display: flex; gap: 10px; flex-wrap: wrap; }
.woocommerce-order-overview { list-style: none; padding: 0; margin: 0 0 22px; display: none; }

@media (max-width: 900px) {
  .account-login-grid, .account-grid, .woocommerce-Addresses { grid-template-columns: 1fr; }
  .account-grid { gap: 22px; }
  .account-nav ul { display: flex; overflow-x: auto; gap: 6px; padding-bottom: 4px; }
  .account-nav a { white-space: nowrap; border: 1px solid var(--line); }
  .account-snel { grid-template-columns: 1fr; }
}
/* Staat er maar één kaart (registreren uit), dan niet halverwege afbreken. */
.account-login-grid .account-kaart:only-child { max-width: 520px; }

/* =====================================================================
   Berichten, archieven en reacties.
   ===================================================================== */
.bericht-kop { padding: 40px 0 18px; }
.bericht-kop h1 { font-size: clamp(26px, 3.6vw, 40px); margin: 6px 0 10px; max-width: 800px; }
.bericht-meta { font-size: 13.5px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.bericht-beeld { margin-bottom: 26px; }
.bericht-beeld img { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }
.bericht-inhoud { max-width: 760px; padding-bottom: 40px; }
.bericht-inhoud p { color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.bericht-inhoud h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 32px 0 10px; }
.bericht-inhoud h3 { font-size: 18px; margin: 24px 0 8px; }
.bericht-inhoud img { max-width: 100%; height: auto; border-radius: var(--r-md); }
.bericht-inhoud blockquote { border-left: 3px solid var(--red); padding-left: 18px; margin: 22px 0; font-size: 17px; color: var(--ink); }
.bericht-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 18px; }
.bericht-kaart img, .bericht-kaart .ph { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-md); display: block; }
.bericht-kaart time { display: block; font-size: 12px; color: var(--muted); margin: 10px 0 4px; }
.bericht-kaart h2, .bericht-kaart h3 { font-size: 17px; line-height: 1.35; margin-bottom: 6px; }
.bericht-kaart h2 a, .bericht-kaart h3 a { color: var(--ink); }
.bericht-kaart h2 a:hover, .bericht-kaart h3 a:hover { color: var(--red); }
.bericht-kaart p { font-size: 13.5px; color: var(--body); line-height: 1.6; }
.archief-intro { color: var(--body); max-width: 640px; margin-top: 8px; }
.archief-leeg { background: var(--bg-soft); border-radius: var(--r-md); padding: 44px 30px; text-align: center; }
.archief-leeg h2 { margin-bottom: 6px; }
.archief-leeg p { color: var(--body); margin-bottom: 16px; }

.reacties { max-width: 760px; padding: 10px 0 50px; }
.reacties h2 { font-size: 19px; margin-bottom: 16px; }
.reactielijst { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 18px; }
.reactielijst .comment-body { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; }
.reactielijst .comment-author { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); }
.reactielijst .comment-author img { border-radius: 50%; }
.reactielijst .comment-meta { font-size: 12px; color: var(--muted); margin: 4px 0 8px; }
.reactielijst .children { list-style: none; padding-left: 26px; margin-top: 14px; display: grid; gap: 14px; }
.comment-form { display: grid; gap: 12px; max-width: 620px; }
.comment-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; font: 400 14.5px var(--font-body); background: #fff;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--ink); }
.reactie-note { font-size: 12.5px; color: var(--muted); }
.comment-reply-title { font-size: 19px; margin-bottom: 6px; }

/* =====================================================================
   Het koopblok van WooCommerce: varianten, aantal en de bestelknop.
   Dit is het belangrijkste stukje van de productpagina, dus het krijgt
   dezelfde vormgeving als de rest in plaats van de kale standaard.
   ===================================================================== */

.buy-row--live form.cart { display: grid; gap: 14px; margin: 0; }
.buy-row--live .variations { width: 100%; border-collapse: collapse; }
.buy-row--live .variations tr { display: grid; grid-template-columns: 1fr; gap: 6px; margin-bottom: 12px; }
.buy-row--live .variations th,
.buy-row--live .variations td { padding: 0; text-align: left; border: none; display: block; }
.buy-row--live .variations th label {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.buy-row--live .variations select {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px;
  font: 500 14.5px var(--font-body); color: var(--ink); background: #fff;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.buy-row--live .variations select:focus { outline: none; border-color: var(--ink); }
.buy-row--live .reset_variations {
  display: inline-block; font-size: 12.5px; color: var(--body); text-decoration: underline;
  text-underline-offset: 3px; margin-top: 4px;
}
.buy-row--live .reset_variations:hover { color: var(--red); }

.woocommerce-variation { margin: 4px 0 0; }
.woocommerce-variation-price { font-family: var(--font-head); font-size: 26px; color: var(--ink); }
.woocommerce-variation-price .price del { font-size: 16px; color: var(--muted); font-family: var(--font-body); }
.woocommerce-variation-availability { font-size: 13.5px; color: var(--green-text); margin-top: 4px; }
.woocommerce-variation-description { font-size: 13.5px; color: var(--body); margin-top: 6px; }

.buy-row--live .woocommerce-variation-add-to-cart,
.buy-row--live form.cart:not(.variations_form) { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.buy-row--live .quantity {
  display: inline-flex; align-items: center; border: 1.5px solid var(--line);
  border-radius: 999px; overflow: hidden; background: #fff;
}
.buy-row--live .quantity input.qty {
  width: 62px; border: none; text-align: center; padding: 13px 0;
  font: 600 15px var(--font-body); color: var(--ink); background: none;
}
.buy-row--live .quantity input.qty:focus { outline: none; }
.buy-row--live .single_add_to_cart_button {
  flex: 1; min-width: 180px; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 26px; border: none; border-radius: 999px;
  background: var(--red); color: #fff; font: 700 15.5px var(--font-body); cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.buy-row--live .single_add_to_cart_button:hover { background: var(--red-dark); transform: translateY(-1px); }
.buy-row--live .single_add_to_cart_button.disabled,
.buy-row--live .single_add_to_cart_button[disabled] { background: #c9c9cf; cursor: not-allowed; transform: none; }
.buy-row--live .stock.out-of-stock { font-size: 14px; color: #c00034; font-weight: 600; }
.buy-row--live .woocommerce-grouped-product-list { width: 100%; }

/* Losse "in winkelwagen"-knoppen elders op de site (categorie, verlanglijst) */
.pcard .cart-btn.added, .pcard .added_to_cart { display: none; }
.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button { opacity: 1; }

/* =====================================================================
   Toetsenbordbediening. Wie met tab door de site gaat moet altijd kunnen
   zien waar hij is; de standaard-outline van de browser verdwijnt op
   sommige knoppen achter de achtergrond.
   ===================================================================== */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #1f6feb;
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .single_add_to_cart_button:focus-visible, .co-bestel:focus-visible {
  outline: 3px solid #1f6feb;
  outline-offset: 3px;
}
.siteheader:focus-within .searchbar input { border-color: var(--ink); }
/* Muisgebruikers houden de rustige weergave. */
:where(a, button):focus:not(:focus-visible) { outline: none; }

/* Wie beweging liever uit heeft, krijgt geen animaties. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
