@charset "UTF-8";
/* ===========================================================
   REBØNE — Vrij luisteren. Veilig bewegen.
   Warm, even, light-forward palette · single Industrial-Orange accent
   Tokens sourced from the REBØNE Style Sheet 2025
   Type: Space Grotesk (display, echoes the wordmark) + Inter (body)
   =========================================================== */
:root {
  /* white base · black text · Nordic Blue accent */
  --ink:      #252427;   /* Loop-zwart: alle tekst op licht */
  --graphite: #14181a;   /* footer / dark anchor */
  --bone:     #cdd5d8;   /* cool light grey */
  --sand:     #eaeff0;   /* light cool grey — panels */
  --sand-2:   #f4f7f8;   /* lighter cool — alt sections */
  --paper:    #ffffff;   /* white base */
  --cream:    #ffffff;   /* cards — white */
  --white:    #ffffff;
  --muted:    #252427;   /* secundaire tekst: ook zwart (Loop) — hiërarchie via grootte/gewicht */
  --line:     rgba(15,19,21,.12);
  --line-2:   rgba(15,19,21,.20);

  /* single accent: REBØNE Nordic Blue (brand PMS 7706 / 7459) */
  --accent:     #33869e;   /* PMS 7706 C */
  --accent-2:   #499db6;   /* PMS 7459 C */
  --accent-ink: #256478;   /* darker — AA text/links on white */
  --accent-wash:#e8f1f3;   /* faint blue tint bg */

  /* warm companion washes — soft pastel backdrops, human over technical */
  --wash-blue:   #eaf3f5;
  --wash-orange: #fbeee7;
  --wash-lime:   #f0f4e9;
  --orange-soft: #a75a3c;

  /* één familie voor alles (zoals Loop/Avantt): Onest — neo-grotesk, medium koppen, krappe letterafstand */
  --font-display: 'Onest', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Onest', 'Helvetica Neue', Arial, sans-serif;

  --container: 1200px;
  --wide: 1320px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --spring-settle: cubic-bezier(.22,1,.36,1);   /* critically damped — default for anything that just appears */
  --spring-bounce: cubic-bezier(.34,1.56,.64,1); /* slight overshoot — only for momentum-driven moments */
  --spring-press: cubic-bezier(.32,.72,0,1);     /* fast in, controlled settle — for tap/press feedback */

  --shadow-sm: 0 2px 10px -4px rgba(25,29,28,.16);
  --shadow-md: 0 20px 44px -26px rgba(25,29,28,.34);
  --shadow-lg: 0 36px 80px -44px rgba(25,29,28,.42);

  --oe-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54'%3E%3Cg fill='none' stroke='%2333869e' stroke-width='1.1' stroke-opacity='0.6'%3E%3Ccircle cx='27' cy='27' r='9'/%3E%3Cpath d='M20.6 33.4 33.4 20.6'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.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; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r-sm); transition: top .2s var(--ease); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.02; margin: 0; letter-spacing: -0.03em; color: var(--ink); }
.oe { font-family: var(--font-display); font-weight: 500; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.eyebrow .oe { color: var(--accent); font-size: 15px; letter-spacing: 0; }
.eyebrow::before { content: "\00D8"; font-family: var(--font-display); font-weight: 500; color: var(--accent); font-size: 15px; letter-spacing: 0; }
.eyebrow--light { color: rgba(255,255,255,.72); }
.eyebrow--light .oe { color: var(--accent-2); }
.eyebrow--light::before { color: var(--accent-2); }

.section-lead { font-size: 17.5px; line-height: 1.62; color: var(--muted); max-width: 56ch; margin: 18px 0 0; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--spring-settle), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
/* respond the instant a finger/cursor presses down — don't wait for release */
.btn:active { transform: scale(.96); transition: transform .1s var(--spring-press); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { --btn-bg: var(--ink); --btn-fg: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { --btn-bg: #262d2c; box-shadow: 0 14px 30px -16px rgba(25,29,28,.5); }
.btn-accent { --btn-bg: #2c4a6e; --btn-fg: #fff; background-image: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); box-shadow: 0 10px 22px -12px rgba(28,39,51,.6); }
.btn-accent:hover { --btn-bg: #2c4a6e; background-image: linear-gradient(90deg, #16202a 0%, #23405f 55%, #5f88b5 100%); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn-outline:hover { --btn-bd: var(--ink); --btn-bg: rgba(25,29,28,.04); }
.btn-invert { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn-invert:hover { --btn-bg: var(--sand); }
.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); }
.btn-ghost-light:hover { --btn-bd: #fff; --btn-bg: rgba(255,255,255,.08); }

.ic { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ic-lg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ===========================================================
   ANNOUNCEMENT BAR
   =========================================================== */
.announce { position: relative; z-index: 120; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: rgba(255,255,255,.95); font-size: 13px; overflow: hidden; display: flex; align-items: center; }
.announce-track { display: flex; align-items: center; gap: 42px; white-space: nowrap; padding: 9px 0 9px 42px; animation: marquee 30s linear infinite; }
.announce-track span { display: inline-flex; align-items: center; gap: 8px; }
.announce-track .oe { color: rgba(255,255,255,.8); }
.announce::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 64px; background: linear-gradient(90deg, rgba(111,151,196,0) 0%, #6f97c4 45%); pointer-events: none; }
.announce-close { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); z-index: 1; background: #5b86b6; border: none; color: #fff; cursor: pointer; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.announce-close:hover { background: rgba(255,255,255,.22); }
.announce.is-hidden { display: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===========================================================
   HEADER (dark text over light hero; solid on scroll)
   =========================================================== */
.site-header { position: sticky; top: 0; z-index: 110; transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; background: transparent; }
.header-inner { max-width: var(--wide); margin: 0 auto; padding: 15px 28px; display: flex; align-items: center; gap: 30px; }
.logo { display: inline-flex; }
.logo img { height: 25px; width: auto; }
.main-nav { display: flex; gap: 30px; margin-right: auto; font-size: 15px; font-weight: 500; }
.mobile-nav { display: none; }   /* uitschuifmenu: staat buiten de header, alleen op telefoon */
.main-nav a { position: relative; padding: 6px 0; color: var(--ink); transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--ink); width: 40px; height: 40px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .3s var(--spring-settle); }
.icon-btn:hover { background: rgba(25,29,28,.06); }
.icon-btn:active { transform: scale(.9); transition: transform .1s var(--spring-press); }
.cart-count { position: absolute; top: 4px; right: 3px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.header-cta { margin-left: 4px; }
.menu-toggle { flex-direction: column; gap: 5px; display: none; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.site-header.scrolled { background: rgba(255,255,255,.88); -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px); border-bottom-color: var(--line); box-shadow: 0 6px 24px -22px rgba(15,19,21,.5); }

/* pages that open on a dark video hero: header starts light-on-dark, then flips on scroll */
body.dark-hero .site-header:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
body.dark-hero .site-header:not(.scrolled) .main-nav a,
body.dark-hero .site-header:not(.scrolled) .icon-btn,
body.dark-hero .site-header:not(.scrolled) .menu-toggle span { color: #fff; }
body.dark-hero .site-header:not(.scrolled) .menu-toggle span { background: #fff; }
body.dark-hero .site-header:not(.scrolled) .icon-btn:hover { background: rgba(255,255,255,.14); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   HERO (light, product-forward)
   =========================================================== */
.hero { position: relative; background: radial-gradient(120% 100% at 82% -10%, var(--cream) 0%, var(--paper) 40%, var(--sand-2) 100%); color: var(--ink); margin-top: -74px; padding-top: 74px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .05; background-image: var(--oe-pattern); background-size: 54px 54px; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: var(--wide); margin: 0 auto; padding: 60px 28px 84px; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; min-height: calc(100vh - 74px); }
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.9rem); letter-spacing: -0.035em; line-height: .98; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .085em; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; animation: underline 1s var(--ease-out) .7s forwards; }
@keyframes underline { to { transform: scaleX(1); } }
.hero-sub { font-size: 17.5px; line-height: 1.65; color: var(--muted); max-width: 48ch; margin: 24px 0 26px; }
.hero-rating { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 28px; }
.hero-rating strong { font-family: var(--font-display); font-size: 16px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-usps { list-style: none; margin: 30px 0 0; padding: 26px 0 0; display: flex; gap: 26px; flex-wrap: wrap; border-top: 1px solid var(--line); }
.hero-usps li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); font-weight: 500; }
.hero-usps .ic { color: var(--accent); }

/* hero stage (signature) */
.hero-stage { position: relative; }
.stage-frame { position: relative; }
.stage-panel { position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden; background: radial-gradient(75% 75% at 50% 42%, #ffffff 0%, #f1f4f5 55%, #e4eaec 100%); display: grid; place-items: center; box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.6); }
.stage-badge { position: absolute; top: 18px; left: 18px; z-index: 4; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }
.stage-product { position: relative; z-index: 3; width: 90%; height: 90%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 26px 34px rgba(25,29,28,.20)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.rings { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; pointer-events: none; }
.ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--accent); width: 42%; height: 42%; opacity: 0; animation: pulse 3.8s var(--ease-out) infinite; }
.ring.r2 { animation-delay: 1.27s; } .ring.r3 { animation-delay: 2.54s; }
@keyframes pulse { 0%{ transform: scale(.7); opacity: .5; } 70%{ opacity: .1; } 100%{ transform: scale(2.35); opacity: 0; } }
.ambient-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink); font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px; animation: floatchip 5s ease-in-out infinite; }
.ambient-chip svg { width: 14px; height: 14px; fill: none; stroke: var(--accent); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.amb-music { top: 11%; left: -4%; } .amb-traffic { top: 43%; right: -3%; animation-delay: 1.4s; } .amb-voice { bottom: 14%; left: 1%; animation-delay: 2.6s; }
@keyframes floatchip { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
.stage-caption { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.stage-name { display: flex; flex-direction: column; gap: 2px; }
.stage-name .pname { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.stage-name .pprice { font-size: 14px; color: var(--muted); }
.stage-color { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }

/* ===========================================================
   HUMAN HERO — warm, editorial, photo-led
   =========================================================== */
.human-hero { position: relative; margin-top: -74px; padding-top: 74px; background: var(--wash-blue); overflow: hidden; }
.human-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; min-height: calc(100vh - 74px); padding: 40px 28px; }
.human-hero-content { max-width: 480px; }
.human-hero-content h1 { font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.1rem); letter-spacing: -0.02em; line-height: 1.05; margin: 14px 0 20px; }
.human-hero-sub { font-size: 17.5px; line-height: 1.65; color: var(--muted); max-width: 42ch; margin: 0 0 30px; }
.human-hero-content .hero-cta-row { margin-bottom: 28px; }
.human-hero-media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.human-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) {
  .human-hero-inner { grid-template-columns: 1fr; padding: 32px 28px 40px; min-height: 0; }
  .human-hero-media { order: -1; aspect-ratio: 16/11; max-width: 520px; margin: 0 auto; }
  .human-hero-content { max-width: none; }
}

/* ===========================================================
   VIDEO HERO (full-bleed banner — retained for product pages)
   =========================================================== */
.video-hero { position: relative; margin-top: -74px; height: 92vh; min-height: 620px; max-height: 900px; overflow: hidden; display: flex; align-items: flex-end; background: var(--ink); }
.video-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,17,.28) 0%, rgba(10,15,17,.12) 30%, rgba(10,15,17,.20) 55%, rgba(10,15,17,.72) 100%); }
.video-hero-content { position: relative; z-index: 1; width: 100%; max-width: 720px; margin: 0 auto; padding: 0 28px 64px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; color: #fff; }
.video-hero-content h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.035em; line-height: 1; }
.video-hero-sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 50ch; margin: 0; }
.video-hero .hero-rating strong { color: #fff; }
.video-hero .hero-rating .muted { color: rgba(255,255,255,.68); }
.video-hero .hero-cta-row { justify-content: center; }
@media (max-width: 760px) {
  .video-hero { height: 82vh; min-height: 520px; }
  .video-hero-content { padding-bottom: 44px; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .video-hero-media { display: none; }
  .video-hero { background: linear-gradient(160deg, var(--graphite), var(--ink)); }
}

/* ===========================================================
   TECHNOLOGY PAGE
   =========================================================== */
.tech-hero { position: relative; margin-top: -74px; height: 64vh; min-height: 440px; max-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.tech-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tech-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,17,.55) 0%, rgba(10,15,17,.1) 40%, rgba(10,15,17,.1) 60%, rgba(10,15,17,.72) 100%); }
.tech-hero-content { position: relative; z-index: 1; padding-bottom: 56px; max-width: 640px; color: #fff; }
.tech-hero-content h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); letter-spacing: -0.03em; margin: 10px 0 16px; }
.tech-hero-content p:not(.eyebrow) { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0; }

.tech-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 28px; margin-top: 40px; }
.tech-card-media { position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: radial-gradient(75% 75% at 50% 42%, #ffffff 0%, #f1f4f5 55%, #e4eaec 100%); display: flex; align-items: center; justify-content: center; padding: 26px; }
.tech-card-media img { width: 100%; height: 100%; object-fit: contain; }
.tech-card-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.tech-card-title svg { color: var(--accent); flex-shrink: 0; }
.tech-card p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); }

.tech-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.tech-benefit { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.tech-benefit-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--accent-wash); color: var(--accent-ink); margin-bottom: 18px; }
.tech-benefit h3 { font-size: 19px; margin-bottom: 10px; }
.tech-benefit p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

@media (max-width: 760px) {
  .tech-hero { height: 56vh; min-height: 400px; }
  .tech-cards-grid, .tech-benefit-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .tech-hero-media { display: none; }
  .tech-hero { background: linear-gradient(160deg, var(--graphite), var(--ink)); }
}

/* colour swatches */
.swatches { display: flex; gap: 8px; align-items: center; }
.sw { width: 20px; height: 20px; border-radius: 50%; background: var(--sw); border: 2px solid #fff; padding: 0; box-shadow: 0 0 0 1px var(--line-2); }
.sw.static { cursor: default; }
.swatches.sm .sw { width: 13px; height: 13px; }

/* ===========================================================
   TRUST STRIP (light)
   =========================================================== */
/* cijferbalk: verankerd in een lichtblauwe band, getallen in het REBØNE-verloop, scheidingslijnen ertussen */
.trust { background: var(--white); padding: 28px 0 8px; }
.trust-inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; background: #eef4fb; border-radius: 16px; padding: 26px 16px; }
.trust-stat { position: relative; padding: 0 10px; }
.trust-stat + .trust-stat::before { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: rgba(44,74,110,.18); }
.trust-stat strong { display: block; font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; padding-right: .04em; }
.trust-stat span { display: block; margin-top: 8px; font-size: 14px; font-weight: 500; line-height: 1.35; color: var(--ink); }
.trust-stat a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }
.trust-stat a:hover { border-color: currentColor; }

/* ===========================================================
   SECTION SHARED
   =========================================================== */
.section { padding: 100px 0; }
.trust + .collectie { padding-top: 36px; }

/* --- Upgrade-blok (Hears-model) --- */
.upg { padding: 24px 0 56px; background: var(--white); }
.collectie:has(+ .upg) { padding-bottom: 40px; }   /* best sellers en upgrade-blok dicht op elkaar */

/* --- Reviews (Loop-model): foto, sterren, titel, citaat, naam-pill; swipebaar --- */
.reviews { background: var(--white); padding: 72px 0 84px; }
.rv-heading { text-align: center; font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 44px; }
.rv-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
.rv-track::-webkit-scrollbar { display: none; }
.rv-card { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; min-width: 0; }
.rv-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 35%; display: block; }
.rv-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.rv-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.rv-stars svg { width: 20px; height: 20px; fill: var(--ink); }
.rv-stars svg.off { fill: rgba(37,36,39,.2); }
.rv-card h3 { font-size: clamp(1.35rem, 1.8vw, 1.7rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 16px; }
.rv-card p { font-size: 15.5px; line-height: 1.6; margin: 0 0 26px; color: var(--ink); }
.rv-author { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: baseline; gap: 8px; background: var(--sand-2); border-radius: 10px; padding: 12px 16px; font-size: 15px; font-weight: 500; }
.rv-author span { font-size: 11.5px; }
.rv-dots { display: none; justify-content: center; gap: 8px; margin-top: 24px; }
.rv-dots.is-visible { display: flex; }
.rv-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(37,36,39,.22); cursor: pointer; }
.rv-dots button.is-active { background: var(--ink); }
@media (max-width: 900px) { .rv-track { grid-auto-columns: 74%; } }

/* --- Shop (Shokz-model) --- */
.shop-head { padding: 60px 0 26px; text-align: center; }
.shop-head--collection { padding: 30px 0 18px; }
.shop-head--collection h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.shop-head--collection .shop-head-sub { font-size: 18px; max-width: 62ch; }
.shop-head h1 { font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 400; letter-spacing: -0.03em; margin: 0; }
.kpills { padding: 6px 0 34px; }
.kpills .section-inner, .shop-head .section-inner { max-width: var(--wide); }
.kpills-scroller { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; padding: 4px 0; }
.kpills-scroller::-webkit-scrollbar { display: none; }
.kpill { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border: 0; border-radius: 999px; background: #f4f5f7; color: var(--ink); font: inherit; font-size: 16px; font-weight: 500; line-height: 1; white-space: nowrap; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), transform .3s var(--spring-settle); }
.kpill:hover { background: #e9ebef; }
.kpill:active { transform: scale(.97); }
.kpill-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid currentColor; flex-shrink: 0; position: relative; }
.kpill.is-active { background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: #fff; }
.kpill.is-active .kpill-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: #fff; }
.shop-section { background: #f3f4f5; padding: 40px 0 100px; }
.shop-section .section-inner { max-width: var(--wide); }
.shop-toolbar { margin: 0 0 26px; }
.shop-tools { display: flex; gap: 12px; align-items: center; position: relative; }
.btn-filter { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; border: 0; border-radius: 6px; padding: 12px 22px; font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; }
.btn-filter:hover { background: #3a3940; }
.filter-panel { position: absolute; left: 0; top: calc(100% + 10px); z-index: 20; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; box-shadow: var(--shadow-md); min-width: 320px; }
.filter-panel[hidden] { display: none; }
.filter-panel .filter-row { margin: 0; }
.shop-sort select { appearance: none; -webkit-appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23252427' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; border: 1px solid var(--line-2); border-radius: 6px; padding: 12px 42px 12px 16px; font: inherit; font-size: 15px; color: var(--ink); cursor: pointer; min-width: 230px; }
.shop-count { font-size: 14px; color: var(--ink); }
.sc-grid { gap: 22px; }
.sc-card { background: #fff; border-radius: 8px; padding: 22px 22px 24px; display: flex; flex-direction: column; min-width: 0; }
.sc-card.is-hidden { display: none; }
.sc-top { display: flex; justify-content: space-between; align-items: center; min-height: 30px; }
.sc-pill { font-size: 14px; font-weight: 500; background: #e6eef7; border-radius: 6px; padding: 5px 10px; }
.sc-pill > span { background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }   /* zelfde verloop als de banner-titel */
.sc-pill--empty { background: none; padding: 0; }
.sc-compare { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink); cursor: pointer; margin-left: auto; }
.sc-compare input { width: 18px; height: 18px; margin: 0; accent-color: var(--ink); cursor: pointer; }
.sc-media { display: grid; place-items: center; aspect-ratio: 1 / 1; margin: 6px 0 10px; }
.sc-media img { width: 82%; height: 82%; object-fit: contain; transition: transform .35s var(--ease-out); }
.sc-card:hover .sc-media img { transform: scale(1.04); }
.sc-name { font-size: 24px; font-weight: 400; letter-spacing: -0.02em; margin: 0 0 6px; }
.sc-name a { color: inherit; text-decoration: none; }
.sc-tag { margin: 0 0 14px; font-size: 15.5px; line-height: 1.45; }
.sc-swatches { display: flex; gap: 10px; margin-bottom: 22px; }
.sc-swatch { width: 18px; height: 18px; border-radius: 50%; background: var(--c); border: 1px solid rgba(0,0,0,.14); box-shadow: 0 0 0 2px #fff, 0 0 0 3px transparent; padding: 0; cursor: default; transition: box-shadow .15s; }
button.sc-swatch { cursor: pointer; }
button.sc-swatch:hover { box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(37,36,39,.45); }
.sc-swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ink); }
.sc-price { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 16px; display: flex; align-items: baseline; gap: 10px; }
.sc-price .was { font-size: 15px; opacity: .6; text-decoration: line-through; font-weight: 400; }
.sc-actions { display: flex; gap: 10px; margin-top: auto; }
.btn-sc-main { flex: 1; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: #fff; border-radius: 6px; padding: 13px 16px; font-size: 15.5px; font-weight: 500; text-decoration: none; transition: filter .2s; }
.btn-sc-main:hover { filter: brightness(1.12); }
.btn-sc-cart { width: 48px; flex-shrink: 0; border: 1px solid var(--line-2); border-radius: 6px; background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--ink); transition: border-color .2s; }
.btn-sc-cart:hover { border-color: var(--ink); }
.cmp-bar { position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 95; display: flex; align-items: center; gap: 16px; background: var(--ink); color: #fff; border-radius: 999px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-md); font-size: 14.5px; white-space: nowrap; }
.cmp-bar[hidden] { display: none; }

/* --- Muziek op de fiets (donker vlak in het blauwe palet) --- */
.safe { padding: 88px 0; background: linear-gradient(135deg, #1c2733 0%, #2c4a6e 60%, #4d78a8 100%); color: #fff; }
.safe .section-inner { max-width: var(--wide); }
.safe-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 48px 72px; align-items: center; }
.safe-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin: 0 0 16px; }
.safe-text h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 22px; max-width: 18ch; }
.safe-text p { font-size: 17px; line-height: 1.6; margin: 0 0 16px; color: rgba(255,255,255,.88); max-width: 56ch; }
.safe-text .safe-strong { color: #fff; font-weight: 500; font-size: 18px; }
.safe-points { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 14px; }
.safe-points li { position: relative; padding-left: 32px; font-size: 17px; line-height: 1.5; color: rgba(255,255,255,.82); max-width: 52ch; }
.safe-points li::before { content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.safe-points strong { color: #fff; font-weight: 600; }
.safe-text .btn { margin-top: 8px; }
.safe-stats { display: grid; grid-template-columns: 1fr; gap: 14px; }
.safe-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 26px 28px; }
.safe-stat strong { display: block; font-size: clamp(3rem, 5vw, 4.4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: #fff; }
.safe-stats .safe-stat--big strong { font-size: clamp(5.5rem, 10vw, 9rem); background: linear-gradient(90deg, #ffffff 0%, #a9c1de 100%); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; padding-right: .05em; }
.safe-stat p { margin: 12px 0 0; font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.88); }
.safe-src { margin: 4px 0 0; font-size: 12.5px; color: rgba(255,255,255,.6); }
@media (max-width: 900px) { .safe-grid { grid-template-columns: 1fr; gap: 28px; } }

/* --- Voorraadindicator (Hears-model) --- */
.pdp-stock { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: 14.5px; font-weight: 500; color: #1f8a4c; }
.stock-dot { width: 10px; height: 10px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,.2); }

/* --- Momenten (Hears-model) --- */
.moments { padding: 72px 0 24px; background: #fff; }
.moments .section-inner { max-width: var(--wide); }
.moments .moments-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 40px; }
.moments-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.moment { display: block; color: var(--ink); text-decoration: none; }
.moment-media { position: relative; aspect-ratio: 16 / 11; border-radius: 16px; overflow: hidden; background: var(--sand-2); }
.moment-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease-out); }
.moment:hover .moment-media img { transform: scale(1.04); }
.moment-badge { position: absolute; top: 14px; left: 14px; background: linear-gradient(90deg, #2c4a6e 0%, #33869e 100%); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.moment-cap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 4px 0; font-size: 21px; font-weight: 400; letter-spacing: -0.01em; }
.moment-cap svg { flex-shrink: 0; transition: transform .25s var(--ease-out); }
.moment:hover .moment-cap svg { transform: translateX(4px); }
@media (max-width: 900px) { .moments-track { gap: 20px; } .moment-cap { font-size: 18px; } }

/* --- Juridische pagina's + kleurkiezer --- */
.legal { padding: 24px 0 100px; }
.legal-body { max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.7; }
.legal-body h2.legal-part { font-size: 28px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-body h2 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 34px 0 10px; }
.legal-body p, .legal-body li { margin: 0 0 12px; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.pdp-colors { margin: 14px 0 20px; }
.pdp-colors-lbl { display: block; font-size: 14px; margin-bottom: 8px; }
.pdp-swatches { display: flex; gap: 10px; }
.pdp-swatch { width: 30px; height: 30px; border-radius: 50%; background: var(--c); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line-2); cursor: pointer; padding: 0; transition: box-shadow .15s; }
.pdp-swatch:hover { box-shadow: 0 0 0 1.5px var(--ink); }
.pdp-swatch.is-active { box-shadow: 0 0 0 2px var(--ink); }

/* --- Winkelwagen-lade --- */
/* welkomstcadeau-pop-up (Hears-model) */
.gift-backdrop { position: fixed; inset: 0; background: rgba(15,19,21,.55); z-index: 400; }
.gift-backdrop[hidden], .gift[hidden], .gift-step[hidden] { display: none; }
.gift { position: fixed; z-index: 401; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(1000px, calc(100vw - 32px)); max-height: calc(100vh - 32px); background: #fff; border-radius: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; box-shadow: var(--shadow-lg); }
.gift-close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border: 0; background: #fff; border-radius: 50%; display: grid; place-items: center; cursor: pointer; z-index: 2; color: var(--ink); }
.gift-close svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.gift-media { margin: 22px 0 22px 22px; border-radius: 16px; overflow: hidden; background: #e9edf0; min-height: 420px; }
.gift-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gift-body { padding: 56px 44px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; }
.gift-logo { height: 26px; width: auto; margin-bottom: 26px; }
.gift-body h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 500; letter-spacing: -0.03em; margin: 0 0 10px; line-height: 1.1; }
.gift-body p { margin: 0 0 22px; font-size: 16px; line-height: 1.5; max-width: 40ch; }
.gift-kicker { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px !important; color: #2c4a6e; }
.gift-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.gift-pick { border: 1px solid var(--line-2); background: #fff; border-radius: 14px; padding: 10px; cursor: pointer; transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .2s; aspect-ratio: 1; display: grid; place-items: center; }
.gift-pick img { width: 100%; height: 100%; object-fit: contain; }
.gift-pick svg { width: 78%; height: auto; display: block; margin: 0 auto; transition: transform .3s var(--spring-settle); }
.gift-pick:hover svg { transform: scale(1.06) rotate(-3deg); }
.gift-pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #2c4a6e; }
.gift-form { display: flex; gap: 8px; width: 100%; max-width: 420px; }
.gift-form input { flex: 1; min-width: 0; height: 50px; padding: 0 16px; border: 1px solid var(--line-2); border-radius: 999px; font: inherit; font-size: 15px; }
.gift-form input:focus { outline: none; border-color: #2c4a6e; }
.gift-form .btn { white-space: nowrap; }
.gift-note { min-height: 1.4em; font-size: 14px; margin: 10px 0 0 !important; }
.gift-code { display: inline-block; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: #fff; padding: 4px 16px; border-radius: 10px; letter-spacing: .06em; }
body.gift-open { overflow: hidden; }
@media (max-width: 760px) {
  .gift { grid-template-columns: 1fr; width: calc(100vw - 20px); max-height: calc(100dvh - 20px); overflow-y: auto; border-radius: 18px; }
  .gift-media { margin: 10px 10px 0; min-height: 0; height: 170px; }
  .gift-body { padding: 22px 18px 24px; }
  .gift-logo { height: 22px; margin-bottom: 16px; }
  .gift-body h2 { font-size: 1.6rem; }
  .gift-body p { font-size: 15px; margin-bottom: 16px; }
  .gift-picks { gap: 10px; }
  .gift-form { flex-direction: column; }
  .gift-form input, .gift-form .btn { width: 100%; }
}
.cart-backdrop { position: fixed; inset: 0; background: rgba(15,19,21,.45); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 12px; right: 12px; bottom: 12px; width: min(480px, calc(100% - 24px)); background: #fff; z-index: 301; display: flex; flex-direction: column; border-radius: 18px; box-shadow: var(--shadow-lg); transform: translateX(calc(100% + 24px)); transition: transform .4s var(--spring-settle); overflow: hidden; }
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px 12px; }
.cart-head h2 { font-size: 26px; font-weight: 500; margin: 0; display: flex; align-items: center; gap: 10px; letter-spacing: -0.02em; }
.cart-badge { display: inline-grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 600; }
.cart-close { background: none; border: 0; cursor: pointer; color: var(--ink); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; }
.cart-close svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.cart-close:hover { background: var(--sand-2); }
.cart-scroll { flex: 1; overflow-y: auto; padding: 0 26px; }
.cart-progress { padding: 4px 0 18px; }
.cart-progress-text { margin: 0 0 12px; font-size: 16px; font-weight: 500; }
.cart-bar { position: relative; height: 6px; border-radius: 6px; background: #e6e8ec; margin-right: 26px; }
.cart-bar-fill { height: 100%; width: 0; border-radius: 6px; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); transition: width .4s var(--spring-settle); }
.cart-bar-check { position: absolute; right: -26px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: #e6eef7; color: #fff; display: grid; place-items: center; transition: background .3s; }
.cart-bar-check svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; opacity: .35; }
.cart-progress.is-done .cart-bar-check { background: linear-gradient(90deg, #2c4a6e 0%, #6f97c4 100%); }
.cart-progress.is-done .cart-bar-check svg { opacity: 1; }
.cart-progress-goal { margin: 32px 0 0; text-align: right; font-size: 15px; line-height: 1.3; }
.cart-progress-goal span { color: var(--muted); font-size: 14px; }
.cart-items { border-top: 1px solid var(--line); }
.cart-empty { padding: 34px 0; text-align: center; font-size: 15px; }
.cart-item { display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 110px; height: 110px; object-fit: contain; background: #f3f4f5; border-radius: 4px; padding: 8px; box-sizing: border-box; }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; font-size: 15px; min-width: 0; }
.cart-item-info a { font-weight: 500; font-size: 19px; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.cart-item-price { font-size: 17px; }
.cart-item-price s { color: var(--muted); font-size: 15px; margin-left: 6px; }
.cart-item-tag { color: var(--muted); }
.cart-item-var { color: var(--muted); font-size: 14px; }
.cart-deal { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; background: #f3f4f5; border-radius: 8px; padding: 6px 12px; font-size: 14px; font-weight: 500; width: fit-content; }
.cart-deal svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-ctl { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cart-qty { display: inline-flex; align-items: center; gap: 12px; }
.cart-qty button { width: 24px; height: 24px; border: 0; background: none; cursor: pointer; font-size: 20px; line-height: 1; color: var(--ink); padding: 0; }
.cart-qty span { min-width: 60px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 8px; font-size: 16px; font-weight: 500; }
.cart-remove { background: none; border: 0; padding: 0; font: inherit; font-size: 15px; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cart-upsell { padding: 22px 0 24px; }
.cart-upsell h3 { margin: 0 0 14px; font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.cart-upsell-card { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 16px; align-items: center; background: #f3f4f5; border-radius: 12px; padding: 14px; }
.cart-upsell-card img { width: 96px; height: 96px; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px; box-sizing: border-box; }
.cart-upsell-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-upsell-info strong { font-size: 17px; font-weight: 500; }
.cart-upsell-price { font-size: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cart-upsell-price s { color: var(--muted); font-size: 14px; }
.cart-upsell-price em { font-style: normal; font-size: 12px; font-weight: 700; color: #fff; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); padding: 3px 8px; border-radius: 6px; }
.cart-upsell-info small { font-size: 13px; color: var(--muted); line-height: 1.4; }
.cart-foot { padding: 16px 26px 22px; border-top: 1px solid var(--line); background: #fff; }
.cart-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 24px; font-weight: 500; margin-bottom: 14px; }
.cart-total { display: flex; align-items: baseline; gap: 10px; }
.cart-total strong { font-weight: 600; }
.cart-total s { font-size: 17px; color: var(--muted); font-weight: 400; }
.cart-total s[hidden] { display: none; }
.cart-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; text-align: center; font-size: 14px; line-height: 1.3; }
.cart-trust span { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cart-trust svg { fill: none; stroke: #2c4a6e; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-trust span:first-child svg { fill: #2c4a6e; stroke: none; }
@media (max-width: 760px) {
  .cart-drawer { top: 0; right: 0; bottom: 0; width: 100%; border-radius: 0; }
  .cart-head { padding: 18px 18px 10px; } .cart-head h2 { font-size: 22px; }
  .cart-scroll { padding: 0 18px; }
  .cart-item { grid-template-columns: 84px minmax(0, 1fr); gap: 10px 14px; padding: 18px 0; }
  .cart-item img { width: 84px; height: 84px; }
  .cart-item .cart-ctl { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .cart-item .cart-qty span { min-width: 52px; height: 40px; }
  .cart-item .cart-deal { white-space: nowrap; }
  .cart-item-info { gap: 4px; }
  .cart-item-info a { font-size: 17px; }
  .cart-qty span { min-width: 50px; height: 40px; }
  .cart-upsell-card { grid-template-columns: 72px minmax(0, 1fr); }
  .cart-upsell-card .btn { grid-column: 1 / -1; }
  .cart-foot { padding: 14px 18px 18px; }
  .cart-row { font-size: 21px; }
}
body.cart-open { overflow: hidden; }

/* --- Over ons (Shokz 'Ons verhaal'-model) --- */
.ab-hero { min-height: 56vh; max-height: 620px; }
.ab-hero .tech2-hero-content h1 { max-width: 14ch; }
.ab-intro { padding: 72px 0 40px; }
.ab-intro .section-inner { max-width: 820px; }
.ab-lead { font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.35; margin: 0 0 22px; }
.ab-sub { font-size: 17px; line-height: 1.65; margin: 0; }
.ab-block { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 32px 64px; padding: 44px 0; border-top: 1px solid var(--line); }
.ab-block:first-child { border-top: 0; padding-top: 0; }
.ab-block:last-child { padding-bottom: 0; }
.ab-block h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 400; letter-spacing: -0.03em; margin: 0; line-height: 1.1; }
.ab-block p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; }
.ab-block .ab-strong { font-size: 18px; font-weight: 500; line-height: 1.45; }
.ab-block .tp-link { margin: 4px 0 0; }
.ab-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.ab-stat { background: #f3f4f5; border-radius: 12px; padding: 28px 26px 30px; }
.ab-stat strong { display: inline-block; font-size: clamp(2.6rem, 4vw, 3.6rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; padding-right: .06em; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 45%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }   /* verloop over de breedte van het getal zelf */
.ab-stat span { color: #2c4a6e; }
.ab-stat span { display: block; margin-top: 8px; font-size: 15px; font-weight: 500; }
.ab-stat p { margin: 14px 0 0; font-size: 14.5px; line-height: 1.55; }
.ab-timeline { max-width: 900px; margin: 0 auto; position: relative; padding-left: 40px; }
.ab-rail { position: absolute; left: 0; top: 10px; bottom: 10px; width: 6px; border-radius: 6px; background: rgba(37,36,39,.1); overflow: hidden; }
.ab-rail-fill { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(180deg, #2c4a6e 0%, #6f97c4 100%); border-radius: 6px; transform: scaleY(0); transform-origin: top center; will-change: transform; }
.ab-year { position: relative; }
.ab-year::before { content: ""; position: absolute; left: -44px; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid #2c4a6e; box-sizing: border-box; }
.ab-year { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 16px 32px; padding: 28px 0; border-top: 1px solid var(--line); }
.ab-year:first-child { border-top: 0; padding-top: 0; }
.ab-year h3 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 400; letter-spacing: -0.03em; margin: 0; line-height: 1; }
.ab-year ul { margin: 6px 0 0; padding-left: 18px; font-size: 16px; line-height: 1.6; }
.ab-year li + li { margin-top: 10px; }
@media (max-width: 900px) { .ab-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --- Technologiepagina (Shokz-model) --- */
.tech2-hero { position: relative; margin-top: -74px; min-height: 72vh; max-height: 760px; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.tech2-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tech2-hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,17,.55) 0%, rgba(10,15,17,.25) 55%, rgba(10,15,17,0) 100%); }
.tech2-hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--wide); margin: 0 auto; padding: 120px 48px 72px; color: #fff; }
.tech2-hero-content h1 { color: #fff; font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 22px; max-width: 16ch; }
.tech2-hero-content p { font-size: 15.5px; line-height: 1.6; max-width: 46ch; margin: 0; color: rgba(255,255,255,.92); }
.tech2 { padding: 80px 0; background: #fff; }
.tech2 .section-inner { max-width: var(--wide); }
.tech2--grey { background: #f3f4f5; }
.tech2--dark { background: var(--graphite); color: #fff; }
.tech2-title { text-align: center; font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 400; letter-spacing: -0.03em; margin: 0 0 48px; line-height: 1.1; }
.tech2-block { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 48px; align-items: center; margin-bottom: 56px; }
.tech2-block:last-child { margin-bottom: 0; }
.tech2-block--flip .tech2-media { order: 2; }
.tech2-media { border-radius: 12px; overflow: hidden; background: var(--ink); aspect-ratio: 16 / 10; }
.tech2-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tech2-media--img { background: #eef1f4; aspect-ratio: auto; max-width: 440px; margin: 0 auto; }   /* illustratie kleiner en gecentreerd */
.tech2-media--img img { width: 100%; height: auto; display: block; }
.tech2-text h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 14px; }
.tech2-text p { margin: 0; font-size: 16px; line-height: 1.65; }
.tech2-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.tech2-benefit { background: #fff; border-radius: 12px; padding: 30px 28px 32px; }
.tech2-benefit-ic { display: inline-flex; width: 44px; height: 44px; margin-bottom: 20px; }
.tech2-benefit-ic svg { width: 40px; height: 40px; fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.tech2-benefit h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 12px; }
.tech2-benefit p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.tp-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.tp-list { display: flex; flex-direction: column; }
.tp-item { border-bottom: 1px solid var(--line); }
.tp-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: 0; padding: 20px 0; font: inherit; font-size: 19px; font-weight: 500; text-align: left; color: var(--ink); cursor: pointer; }
.tp-head svg { flex-shrink: 0; transition: transform .3s var(--spring-settle); }
.tp-item.is-open .tp-head svg { transform: rotate(180deg); }
.tp-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--spring-settle); }
.tp-body > * { min-height: 0; overflow: hidden; }
.tp-item.is-open .tp-body { grid-template-rows: 1fr; }
.tp-body p { margin: 0; font-size: 15.5px; line-height: 1.6; padding-bottom: 6px; }
.tp-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; margin: 8px 0 22px; border-bottom: 1px solid transparent; }
.tp-link:hover { border-bottom-color: var(--ink); }
.tp-media-wrap { position: relative; border-radius: 12px; overflow: hidden; background: var(--ink); aspect-ratio: 4 / 3; }
.tp-media { position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease); }
.tp-media.is-active { opacity: 1; }
.tp-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tech2-stat { text-align: center; max-width: 760px; }
.tech2-stat .tech2-stat-num { font-size: clamp(4rem, 9vw, 7rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin: 0 0 18px; background: linear-gradient(90deg, #a9c1de 0%, #cfdcee 50%, #f2f6fb 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tech2-stat h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 18px; }
.tech2-stat p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.85); margin: 0 0 28px; }
@media (max-width: 900px) { .tech2-benefits { grid-template-columns: 1fr; } .tp-grid { grid-template-columns: 1fr; } .tp-media-wrap { order: -1; } }

/* --- 'Anderen bekeken ook' en Koop nu --- */
.related { background: #f3f4f5; }
.pdp-buy [data-buy-now] { margin-top: 10px; }
/* --- Afrekenen (prototype) --- */
.checkout { background: #f3f4f5; padding: 40px 0 100px; }
.checkout .section-inner { max-width: var(--wide); }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 24px; align-items: start; }
.co-form, .co-summary { background: #fff; border-radius: 12px; padding: 28px; }
.co-form h2, .co-summary h2 { font-size: 22px; font-weight: 500; margin: 0 0 18px; letter-spacing: -0.02em; }
.co-form h2 + .co-row, .co-form .field { margin-bottom: 14px; }
.co-form h2:not(:first-child) { margin-top: 30px; }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-form .field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.co-form .field input { background: #fff; border: 1px solid var(--line-2); border-radius: 6px; }
.co-pay { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 22px; }
.co-pay-opt { display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 6px; padding: 12px 10px; font-size: 14.5px; font-weight: 500; cursor: pointer; background: #fff; }
.co-pay-opt input { accent-color: var(--ink); margin: 0; }
.co-pay-opt.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.co-submit { border-radius: 6px; }
.co-note { margin: 14px 0 0; font-size: 14px; background: #e6eef7; border-radius: 6px; padding: 12px 14px; }
.co-note[hidden] { display: none; }
.co-secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 14px 0 0; font-size: 13px; }
.co-secure svg { fill: none; stroke: var(--ink); stroke-width: 1.8; }
.co-item { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.co-item img { width: 72px; height: 72px; object-fit: contain; background: var(--sand-2); border-radius: 8px; }
.co-item div { display: flex; flex-direction: column; gap: 2px; flex: 1; font-size: 14.5px; }
.co-item strong { font-weight: 500; font-size: 15.5px; }
.co-line { font-weight: 500; }
.co-totals { margin: 16px 0 0; }
.co-totals div { display: flex; justify-content: space-between; padding: 7px 0; font-size: 15px; }
.co-totals dt, .co-totals dd { margin: 0; }
.co-totals .co-total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 18px; font-weight: 600; }
.co-usps { list-style: none; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 14px; }
.co-usps li { display: flex; align-items: center; gap: 10px; }
.co-usps svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --- Productpagina (Shokz-model) --- */
.pdp-tabs { position: sticky; top: 0; z-index: 105; background: #f3f4f5; border-bottom: 1px solid var(--line); }
.pdp-tabs-inner { max-width: var(--wide); margin: 0 auto; padding: 12px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pdp-tabs-name { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; white-space: nowrap; }
.pdp-tabs-nav { display: flex; gap: 22px; min-width: 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
.pdp-tabs-nav::-webkit-scrollbar { display: none; }
.pdp-tabs-nav a { font-size: 16px; color: rgba(37,36,39,.55); text-decoration: none; white-space: nowrap; padding: 4px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.pdp-tabs-nav a:hover, .pdp-tabs-nav a.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.pdp-page [id] { scroll-margin-top: 140px; }
.why-box { margin-top: 22px; background: #f3f4f5; border-radius: 12px; padding: 18px 20px 16px; }
.why-box h3 { font-size: 17px; font-weight: 500; margin: 0 0 12px; }
.why-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.why-box li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.why-box svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
/* overzicht-bento */
.ov { padding: 72px 0 80px; background: linear-gradient(226deg, #ffffff 11%, #eef4fb 52%, #eef4fb 77%, #ffffff 105%); }
.ov .section-inner, .fit .section-inner, .dfy .section-inner { max-width: var(--wide); }
.ov-title, .fit .ov-title { text-align: center; font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 36px; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ov-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.ov-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ov-grid--4 .ov-card { min-height: 280px; }
.ov-card { background: #fff; border-radius: 16px; overflow: hidden; position: relative; min-height: 300px; }
.ov-img { display: grid; place-items: center; padding: 24px; }
.ov-img img { width: 88%; height: auto; max-height: 260px; object-fit: contain; }
.ov-listing { aspect-ratio: 6 / 5; min-height: 0; }
.ov-listing img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ov-name { display: flex; flex-direction: column; }
.ov-name h3 { font-size: 24px; font-weight: 500; text-align: center; margin: 22px 0 14px; letter-spacing: -0.02em; }
.ov-name img { flex: 1; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: 50% 30%; }
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 250px; gap: 20px; }
.bento-card { background: #fff; border-radius: 16px; overflow: hidden; position: relative; display: flex; flex-direction: column; padding: 22px 24px; }
.bento-card p, .bento-label { margin: 0; font-size: 15.5px; font-weight: 500; color: #426eaf; line-height: 1.4; position: relative; z-index: 1; }
.bento-media { flex: 1; min-height: 0; margin: 12px -24px -22px; overflow: hidden; }
.bento-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-media--contain { margin: 8px 0 0; position: relative; }
.bento-media--contain img { position: absolute; inset: 4%; width: 92%; height: 92%; object-fit: contain; object-position: center; }   /* absoluut: past altijd binnen de kaart */
.bento-card--product .bento-media { order: -1; margin: 0 0 10px; }
.bento-card--photo { grid-row: span 2; }
.bento-card--detail .bento-media { margin: 8px 0 0; }
.bento-card--hero .bento-media--contain { margin: 8px 0 8px; }
/* vaste plek per kaart (Shokz-opbouw): kolom 1 = kort + hoog, kolom 2 = hoog (naam) + kort, kolom 3 = kort (cijfer) + hoog */
.bento > :nth-child(1) { grid-column: 1; grid-row: 1; }
.bento > :nth-child(2) { grid-column: 1; grid-row: 2 / 4; }
.bento > :nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
.bento > :nth-child(4) { grid-column: 2; grid-row: 3; }
.bento > :nth-child(5) { grid-column: 3; grid-row: 1; }
.bento > :nth-child(6) { grid-column: 3; grid-row: 2 / 4; }
.bento-card--hero { grid-row: span 2; text-align: center; padding: 22px 24px 20px; }
.bento-card--hero h3 { margin: 0; font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.bento-card--hero .bento-media { margin: 14px -24px 14px; }
.bento-card--hero p { text-align: center; }
.bento-card--stat .bento-num { display: block; font-size: clamp(3.2rem, 5vw, 4.4rem); font-weight: 500; line-height: 1; letter-spacing: -0.03em; color: #9dbbe0; margin-top: 14px; position: relative; z-index: 1; }
.bento-card--stat .bento-media { position: absolute; right: 4%; bottom: 4%; width: 58%; height: 62%; margin: 0; }
.bento-card--stat .bento-media img { inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: right bottom; }
.ov-stat { padding: 24px 26px; }
.ov-stat-label { margin: 0; font-size: 15px; font-weight: 500; color: #426eaf; }
.ov-stat-value { margin: 26px 0 0; font-size: clamp(3.2rem, 5vw, 4.4rem); font-weight: 500; line-height: 1; letter-spacing: -0.03em; color: #9dbbe0; position: relative; z-index: 1; }
.ov-stat-value--long { font-size: clamp(1.9rem, 2.8vw, 2.5rem); }
.ov-stat-key { display: block; margin-top: 8px; font-size: 14px; position: relative; z-index: 1; }
.ov-stat img { position: absolute; right: -6%; bottom: -8%; width: 58%; height: auto; opacity: .95; pointer-events: none; }
/* fit */
.fit { padding: 72px 0 60px; background: #fff; }
.fit-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.fit-card { display: flex; background: #eef4fb; border-radius: 12px; overflow: hidden; min-height: 180px; }
.fit-media { flex: 0 0 38%; display: grid; place-items: center; padding: 18px; }
.fit-media img { width: 100%; max-height: 150px; object-fit: contain; }
.fit-text { flex: 1; padding: 26px 26px 26px 6px; display: flex; flex-direction: column; justify-content: center; }
.fit-text h3 { font-size: 19px; font-weight: 500; margin: 0 0 12px; letter-spacing: -0.01em; }
.fit-text ul { margin: 0; padding-left: 18px; font-size: 15.5px; line-height: 1.6; }
/* ontworpen voor jou */
.dfy { padding: 72px 0 80px; background: #f3f4f5; }
.dfy-title { text-align: center; font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 40px; }
.dfy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.dfy-card { background: #fff; border-radius: 12px; padding: 30px 28px 32px; min-height: 250px; }
.dfy-ic { display: block; width: 40px; height: 40px; margin-bottom: 26px; }
.dfy-ic svg { width: 40px; height: 40px; fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.dfy-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.2; }
.dfy-card p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.dfy-more { text-align: center; margin-top: 36px; }
.btn-dfy { display: inline-block; background: #fff; border: 1px solid var(--line-2); border-radius: 6px; padding: 14px 32px; font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; transition: border-color .2s; }
.btn-dfy:hover { border-color: var(--ink); }
@media (max-width: 900px) { .ov-grid, .ov-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .dfy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.final-cta { margin-bottom: 56px; }   /* wit vlak tussen eind-CTA en footer */
.resp + .final-cta { margin-top: -20px; }

/* --- Vergelijkpagina in shop-stijl --- */
.shop-head-sub { max-width: 60ch; margin: 14px auto 0; font-size: 16.5px; line-height: 1.55; }
body.page-compare main > .section { background: #f3f4f5; padding: 40px 0 100px; }
body.page-compare .section-inner { max-width: var(--wide); }
body.page-compare .cmp-picker-lbl { font-weight: 500; }
body.page-compare .cmp-picker-hint { color: var(--ink); }
body.page-compare .cmp-pick { background: #fff; border: 1px solid transparent; border-radius: 8px; padding: 8px 16px 8px 8px; }
body.page-compare .cmp-pick:hover { border-color: var(--ink); }
body.page-compare .cmp-pick.is-on { border-color: var(--ink); background: #fff; }
body.page-compare .cmp-pick-img { border: 0; background: var(--sand-2); }
body.page-compare .cmp-pick-name { font-weight: 500; }
body.page-compare .cmp-pick.is-on .cmp-pick-tick { background: var(--ink); border-color: var(--ink); }
body.page-compare .cmp-wrap { border: 0; border-radius: 8px; box-shadow: none; background: #fff; }
body.page-compare .cmp-rowlabel { background: #fff; color: var(--ink); }
body.page-compare .cmp-col.is-flag { background: #e6eef7; }
body.page-compare .cmp-img { background: var(--sand-2); }
body.page-compare .cmp-name { font-weight: 500; font-size: 16px; }
body.page-compare .cmp-price { font-weight: 500; font-size: 16px; }
body.page-compare .cmp-btn { border-radius: 6px; padding: 10px 20px; }
body.page-compare .cmp-corner { font-weight: 500; }
body.page-compare .cmp-return { border-radius: 8px; background: #e6eef7; border-color: #e6eef7; }
body.page-compare .cmp-return .btn, body.page-compare .cmp-bottom-return .btn { border-radius: 6px; }
body.page-compare .cmp-rate .pill-new { border-radius: 6px; background: #e6eef7; }
body.page-compare .cmp-rate .pill-new { background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; box-shadow: none; padding: 0; }

/* --- USP-band (Hears-model, schuivend) --- */
.usp-band { background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: #fff; overflow: hidden; padding: 26px 0; }
.usp-band + .reviews { padding-top: 56px; }   /* gelijke witruimte boven en onder de band */
.usp-track { display: flex; align-items: center; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.usp-band:hover .usp-track { animation-play-state: paused; }
.usp-dup { display: contents; }
.usp-item { display: inline-flex; align-items: center; gap: 14px; padding: 0 40px; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.usp-item .oe { color: rgba(255,255,255,.75); font-weight: 500; }

/* --- Verantwoordelijkheid (Hears-model): kleurvlak + fotokaarten --- */
.resp { padding: 24px 0 84px; }
.resp .section-inner { max-width: var(--wide); }
.resp-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: 14px; }
.resp-left { background: var(--accent-wash); border-radius: 12px; padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; min-height: 470px; }
.resp-left h2 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; margin: 0; }
.resp-left p { margin: 0 0 12px; font-size: 16.5px; max-width: 46ch; }
.resp-left .btn { align-self: flex-start; }
.resp-right { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.resp-card { position: relative; display: block; border-radius: 12px; overflow: hidden; background: var(--ink); color: #fff; text-decoration: none; min-height: 220px; }
.resp-card--tall { grid-row: 1 / 3; }
.resp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.resp-card:hover img { transform: scale(1.04); }
.resp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,17,0) 42%, rgba(10,15,17,.74) 100%); }
.resp-card-text { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; display: flex; flex-direction: column; gap: 6px; }
.resp-card-text strong { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.85); }
.resp-card-text span { font-size: 15.5px; line-height: 1.5; color: #fff; }
/* pagina */
.resp-hero { padding: 40px 0 10px; }
.resp-hero .section-inner { max-width: 760px; margin: 0; }
.resp-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; letter-spacing: -0.03em; margin: 0 0 16px; }
.resp-block { padding: 72px 0; }
.resp-block-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.resp-block-media { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.resp-block-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.resp-block .feature-list { margin-top: 22px; }
.cert-grid { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cert { background: var(--sand-2); border-radius: 12px; padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.cert strong { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.cert span { font-size: 14.5px; line-height: 1.5; }
@media (max-width: 900px) { .resp-right { grid-template-columns: 1.2fr 1fr; } .cert-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .sc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.upg-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px 64px; align-items: start; }
.upg .upg-title { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.08; max-width: 12ch; position: sticky; top: 120px; }
.upg-word { display: block; background: linear-gradient(90deg, var(--accent) 0%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; transition: opacity .28s var(--ease), transform .28s var(--ease); }
.upg-word.is-out { opacity: 0; transform: translateY(8px); }
.upg-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 40px; }
.upg-listwrap { position: relative; padding-left: 30px; }
.upg-item { position: relative; padding: 6px 0; }
.upg-rail { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; border-radius: 6px; background: rgba(37,36,39,.1); overflow: hidden; }
.upg-rail-fill { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(180deg, #2c4a6e 0%, #6f97c4 100%); border-radius: 6px; transform: scaleY(0); transform-origin: top center; will-change: transform; }
.upg-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.upg-top h3 { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; max-width: 10ch; margin: 0; }
.upg-top img { width: 180px; height: 110px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.upg-item p { margin: 16px 0 0; font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.45; color: var(--ink); max-width: 30ch; }
   /* cijferbalk en best sellers dichter op elkaar */
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section--white { background: var(--white); }
.section--sand { background: var(--sand-2); }
.section--cream { background: var(--cream); }
.section--wash-lime { background: var(--wash-lime); }
.section--wash-orange { background: var(--wash-orange); }
.section--wash-blue { background: var(--wash-blue); }
.section-head { max-width: 680px; }
.section h2 { font-size: clamp(1.85rem, 3.4vw, 2.9rem); }

/* ===========================================================
   OPEN-EAR EXPLAINER
   =========================================================== */
.oe-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.oe-media { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.oe-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feature-list { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.fl-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-wash); border: 1px solid var(--line); }
.fl-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-list h3 { font-size: 18px; margin-bottom: 5px; }
.feature-list p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); max-width: 46ch; }

/* ===========================================================
   PRODUCT CARD + GRID (shared: home teaser, shop, related)
   =========================================================== */
.filter-row { display: flex; gap: 10px; margin: 40px 0 32px; flex-wrap: wrap; }
.chip { border: 1.5px solid var(--line-2); background: var(--cream); color: var(--ink); font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease), transform .3s var(--spring-settle); }
.chip:hover { border-color: var(--ink); }
.chip:active { transform: scale(.95); transition: transform .1s var(--spring-press); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; display: flex; flex-direction: column; transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .28s var(--ease-out); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.product-card.is-hidden { display: none; }
.product-card.is-flagship { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.product-media { position: relative; aspect-ratio: 1/0.9; border-radius: var(--r-md); overflow: hidden; background: #fff; display: grid; place-items: center; }
.product-media > a { position: absolute; inset: 0; z-index: 1; }
.product-media img { width: 84%; height: 84%; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s var(--ease-out); }
.product-card:hover .product-media img { transform: scale(1.05) rotate(-1deg); }
.tag { position: absolute; top: 12px; right: 12px; z-index: 2; font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .01em; }
.tag-sale { background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: #fff; }
.tag-new { background: var(--ink); color: #fff; }
.tag-wear { background: var(--graphite); color: #fff; }
.product-body { padding: 16px 6px 4px; display: flex; flex-direction: column; flex: 1; }
.product-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.product-body h3 { font-size: 19px; }
.product-body h3 a:hover { color: var(--ink); }
.product-spec { font-size: 13px; color: var(--muted); margin: 0 0 13px; line-height: 1.5; }
.product-rating { display: flex; align-items: center; gap: 7px; font-size: 13.5px; margin-bottom: 16px; }
#collectie .product-spec, #collectie .product-rating { display: none; }
.product-rating strong { font-family: var(--font-display); font-weight: 600; }
.rating-count { color: var(--ink); }
.pill-new { font-size: 12px; font-weight: 600; color: #2c4a6e; background: #e6eef7; padding: 4px 10px; border-radius: 999px; }
.product-foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 12px; }
.product-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; min-width: 0; }
.price-now { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.price-was { font-size: 13px; color: var(--ink); text-decoration: line-through; opacity: .7; }
.btn-cart { padding: 10px 20px; font-size: 14px; }

.stars { --pct: 80%; display: inline-block; width: 82px; height: 15px; flex-shrink: 0; background: linear-gradient(90deg, var(--ink) var(--pct), rgba(37,36,39,.18) var(--pct)); -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016.4%2015'%3E%3Cpath%20d='M7.00%200.90%20L8.76%205.47%20L13.66%205.74%20L9.85%208.83%20L11.11%2013.56%20L7.00%2010.90%20L2.89%2013.56%20L4.15%208.83%20L0.34%205.74%20L5.24%205.47%20Z'/%3E%3C/svg%3E") 0 0 / 16.4px 15px repeat-x; mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016.4%2015'%3E%3Cpath%20d='M7.00%200.90%20L8.76%205.47%20L13.66%205.74%20L9.85%208.83%20L11.11%2013.56%20L7.00%2010.90%20L2.89%2013.56%20L4.15%208.83%20L0.34%205.74%20L5.24%205.47%20Z'/%3E%3C/svg%3E") 0 0 / 16.4px 15px repeat-x; }   /* echte sterren (Hears-stijl), deels gevuld via --pct */

/* ===========================================================
   FEATURE BAND (lifestyle banners)
   =========================================================== */
.promo-banner { position: relative; margin-top: -74px; padding-top: 74px; min-height: calc(92vh); max-height: 900px; overflow: hidden; background: var(--ink); }
.promo-track { position: absolute; inset: 0; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; -ms-overflow-style: none; scrollbar-width: none; }
.promo-track::-webkit-scrollbar { display: none; }
/* Hears-layout: tekst linksonder op desktop, gecentreerd onderin op mobiel */
.promo-slide { flex: 0 0 100%; min-width: 0; width: 100%; height: 100%; scroll-snap-align: start; position: relative; display: flex; align-items: flex-end; justify-content: flex-start; }
.promo-banner-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-banner-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,17,.38) 0%, rgba(10,15,17,.06) 34%, rgba(10,15,17,.42) 66%, rgba(10,15,17,.78) 100%); }
.promo-slide .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.promo-banner-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; color: #fff; padding: 0 0 52px; margin: 0 auto; width: 100%; max-width: var(--wide); padding-left: 48px; padding-right: 48px; }
.promo-banner-content h2 { font-size: clamp(2.3rem, 3.9vw, 3.1rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.08; margin: 0; max-width: 22ch; background: linear-gradient(90deg, #a9c1de 0%, #cfdcee 50%, #f2f6fb 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }   /* zelfde blauwtinten als de BEAM-titel, lichter voor op foto */
.promo-banner-content p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.9); max-width: 46ch; margin: 0; }
.promo-cta { padding: 13px 34px; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: .03em; margin-top: 8px; }
.promo-banner-dots { position: absolute; left: 48px; bottom: 24px; z-index: 1; display: flex; gap: 8px; }   /* linksonder, onder de knop; vrij van de vraag-knop */
.promo-banner-dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.5); transition: width .3s var(--spring-settle), background .3s; }
.promo-banner-dots span.is-active { background: #fff; width: 34px; }
/* --- Productdia (Shokz-stijl, licht): man + productuitsnede, tekst ernaast --- */
.promo-slide--product { align-items: center; background: linear-gradient(90deg, #eef3f7 0%, #f8fafc 18%, #e7eef4 34%, #fafbfd 52%, #e9eff5 72%, #f5f8fa 100%); }
.pp-inner { position: relative; z-index: 1; width: 100%; height: 100%; max-width: var(--wide); margin: 0 auto; padding: 96px 48px 56px; display: grid; grid-template-columns: minmax(380px, 47%) 1fr; align-items: center; gap: 36px; }
.pp-content { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; color: var(--ink); }
.pp-tag { display: inline-block; font-size: 15px; font-weight: 500; color: var(--ink); border: 1.5px solid var(--ink); border-radius: 6px; padding: 8px 14px; }
.pp-title-sm { display: block; font-size: .5em; font-weight: 500; letter-spacing: -0.01em; margin-bottom: .18em; }
.pp-title { font-size: clamp(2.7rem, 4.2vw, 3.5rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; margin: 0; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pp-content p { font-size: 17px; line-height: 1.55; color: var(--ink); max-width: 44ch; margin: 0; }
.pp-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.pp-visual { position: relative; height: 100%; min-height: 440px; }
.pp-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 82%; height: 100%; object-fit: cover; object-position: 28% 40%; border-radius: var(--r-xl); }
.pp-product { position: absolute; left: -9%; bottom: -2%; width: 76%; height: auto; filter: drop-shadow(0 34px 44px rgba(15,19,21,.28)); }
.promo-banner.is-light .promo-banner-dots span { background: rgba(37,36,39,.28); }
.promo-banner.is-light .promo-banner-dots span.is-active { background: var(--ink); }
@media (max-width: 760px) {
  .promo-banner { min-height: calc(100svh - 35px); max-height: none; }   /* 35px = aankondigingsbalk */
  .promo-slide { justify-content: center; }
  .promo-banner-content { align-items: center; text-align: center; padding: 0 22px 88px; gap: 14px; }
  .promo-banner-content h2 { font-size: clamp(2.1rem, 9.2vw, 2.9rem); max-width: none; }
  .promo-banner-content p { font-size: 16px; }
  .promo-cta { padding: 13px 30px; }
            .promo-banner-dots { right: auto; left: 22px; bottom: 30px; }
  .promo-slide--product { align-items: stretch; }
  .pp-inner { grid-template-columns: 1fr; gap: 0; padding: 50px 0 0; align-items: start; }
  .pp-visual { order: -1; min-height: 0; height: clamp(220px, 36svh, 340px); }
  .pp-photo { width: 100%; border-radius: 0; object-position: 22% 30%; -webkit-mask-image: linear-gradient(180deg, #000 66%, transparent 100%); mask-image: linear-gradient(180deg, #000 66%, transparent 100%); }
  .pp-product { left: 4%; bottom: -12%; width: 62%; }
  .pp-content { padding: 34px 22px 76px; gap: 12px; }
  .pp-tag { font-size: 14px; padding: 7px 12px; }
  .pp-title { font-size: clamp(1.9rem, 8.4vw, 2.6rem); }
  .pp-title-sm { font-size: .5em; }
  .pp-content p { font-size: 15.5px; }
  .pp-ctas { width: 100%; }
  .pp-ctas .btn { flex: 1 1 0; justify-content: center; padding-left: 14px; padding-right: 14px; }   /* links, weg van de vraag-knop */
}

.feature-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.band-item { overflow: hidden; }
.band-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .7s var(--ease-out); }
.band-item:hover img { transform: scale(1.04); }

/* ===========================================================
   VERGELIJK (compare — now light)
   =========================================================== */
.vergelijk { position: relative; }
.compare-wrap { margin-top: 46px; overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th, .compare td { padding: 17px 20px; text-align: center; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-display); font-weight: 600; vertical-align: middle; color: var(--ink); padding: 22px 20px; }
.compare thead .c-rebone { background: var(--accent-wash); border-top-left-radius: var(--r-md); border-top-right-radius: var(--r-md); }
.compare thead .c-rebone img { margin: 0 auto; display: block; }
.compare tbody th { text-align: left; font-weight: 500; color: var(--ink); font-family: var(--font-body); font-size: 14.5px; }
.compare td[data-c="rebone"] { background: var(--accent-wash); }
.compare tbody tr:last-child td[data-c="rebone"] { border-bottom-left-radius: var(--r-md); border-bottom-right-radius: var(--r-md); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.mk { width: 20px; height: 20px; margin: 0 auto; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.compare .yes .mk { stroke: var(--accent); }
.compare .no .mk { stroke: #b2babc; }
.compare .mid { color: #b08a3e; font-weight: 700; font-size: 18px; }
.compare .na { color: var(--ink); opacity: .45; font-size: 12.5px; }

/* ===========================================================
   REVIEWS
   =========================================================== */
.rs-label { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: var(--sand); color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 14px; display: grid; place-items: center; }

/* ===========================================================
   TECH
   =========================================================== */
.tech-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.spec { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.spec-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--cream); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 14px; }
.spec-ic svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.spec strong { display: block; font-family: var(--font-display); font-size: 16px; margin-bottom: 3px; }
.spec span { font-size: 13px; color: var(--muted); line-height: 1.45; }
.tech-media { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: radial-gradient(80% 80% at 50% 40%, #fff, #e6ecee); }
.tech-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.tech-media figcaption { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(25,29,28,.78); color: #fff; font-size: 12.5px; font-weight: 500; padding: 8px 14px; border-radius: 999px; }
.tech-media figcaption .oe { color: var(--accent-2); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-intro { position: sticky; top: 96px; }
.faq-intro .btn { margin-top: 26px; }
.faq-list { display: flex; flex-direction: column; }

/* ---------- contact form (support page) ---------- */
/* helpcenter (Hears-model): start, onderwerp, artikel; alles op één pagina */
.help-view[hidden] { display: none; }
.help-hero { padding: 64px 0 24px; text-align: center; }
.help-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 26px; }
.help-search { max-width: 680px; margin: 0 auto; position: relative; }
.help-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.help-search input { width: 100%; height: 56px; padding: 0 18px 0 52px; border: 1px solid var(--line-2); border-radius: 8px; font: inherit; font-size: 16px; color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); -webkit-appearance: none; }
.help-search input:focus { outline: none; border-color: #2c4a6e; }
.help-search--small { margin: 0; width: min(100%, 340px); }
.help-search--small input { height: 46px; font-size: 15px; box-shadow: none; }
.help-search--small svg { left: 14px; width: 18px; height: 18px; }
.help-topics { padding: 44px 0 16px; }
.help-topics h2, .help-support h2, .help-results h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 22px; }
.help-results { margin-bottom: 40px; }
.help-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.help-card { display: flex; flex-direction: column; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: #fff; text-decoration: none; color: var(--ink); transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.help-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.help-card-media { aspect-ratio: 4 / 3; background: #fff; overflow: hidden; display: grid; place-items: center; padding: 22px; box-sizing: border-box; }
.help-card-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.help-card-media svg { width: 54%; max-width: 150px; height: auto; aspect-ratio: 1; display: block; }
.help-card-title { padding: 14px 16px 16px; font-weight: 600; font-size: 16px; border-top: 1px solid var(--line); }
.help-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px 0 10px; }
.help-crumbs { display: flex; align-items: center; gap: 12px; font-size: 15px; flex-wrap: wrap; }
.help-crumbs a { color: var(--ink); text-decoration: none; }
.help-crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.help-crumb-home svg { display: block; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.help-crumb-sep, .help-crumb-cur { color: var(--muted); }
.help-h1 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em; margin: 26px 0 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.help-art-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-bottom: 64px; }
.help-art-card { display: block; border: 1px solid var(--line-2); border-radius: 12px; padding: 22px 24px; background: #fff; text-decoration: none; color: var(--ink); transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.help-art-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.help-art-card strong { display: block; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.help-art-card span { display: block; font-size: 15.5px; line-height: 1.55; }
.help-article { max-width: 760px; padding: 24px 0 72px; }
.help-article h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 600; letter-spacing: -0.03em; margin: 0 0 22px; line-height: 1.1; }
.help-article-body p { font-size: 17px; line-height: 1.65; margin: 0 0 16px; }
.help-article-body a { text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.help-rating { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 16px; }
.help-rating > div { display: flex; gap: 22px; }
.help-rate { display: inline-flex; align-items: center; gap: 8px; font: inherit; font-weight: 600; background: none; border: 0; cursor: pointer; color: var(--ink); padding: 4px 0; }
.help-rate svg { fill: var(--ink); stroke: none; }
.help-rate.is-on { color: #2c4a6e; } .help-rate.is-on svg { fill: #2c4a6e; }
.help-more { margin: 18px 0 0; font-size: 15px; }
.help-more a { text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.help-support { padding: 40px 0 72px; }
.help-contact { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 24px; align-items: start; }
.help-contact-intro { border: 1px solid var(--line-2); border-radius: 12px; padding: 26px; background: #fff; }
.help-contact-intro h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.help-contact-intro p { margin: 0 0 14px; font-size: 15px; line-height: 1.6; }
.help-mail { font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.help-contact .contact-card { max-width: none; margin: 0; }
.help-noresult { margin: 0; font-size: 15px; }
.feature-list--cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 32px; margin-top: 8px; }
.feature-list--cols li { margin: 0; }
@media (max-width: 900px) { .feature-list--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .feature-list--cols { grid-template-columns: 1fr; gap: 18px; } }
.contact-card { max-width: 640px; margin: 0 auto; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea { font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--sand-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; resize: none; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 14px; text-align: center; color: var(--ink); min-height: 1.2em; margin: 0; }
.contact-channel { max-width: 640px; margin: 36px auto 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 20px; padding: 20px 26px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--sand-2); }
@media (max-width: 560px) {
  .contact-row { grid-template-columns: 1fr; }
  .contact-channel { flex-direction: column; align-items: stretch; text-align: center; }
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink); display: flex; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mk { position: absolute; right: 4px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); }
.faq-mk::before, .faq-mk::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink); transform: translate(-50%,-50%); transition: transform .25s var(--ease); }
.faq-mk::before { width: 15px; height: 2px; }
.faq-mk::after { width: 2px; height: 15px; }
.faq-item[open] .faq-mk::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow: hidden; padding-right: 30px; }
.faq-a p { margin: 0 0 22px; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.faq-a a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===========================================================
   FINAL CTA (light, warm)
   =========================================================== */
.final-cta { position: relative; background: var(--sand); color: var(--ink); padding: 56px 28px; overflow: hidden; text-align: center; }
.final-pattern { position: absolute; inset: 0; opacity: .05; background-image: var(--oe-pattern); background-size: 60px; }
.final-o { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-52%); z-index: 0; font-family: var(--font-display); font-weight: 500; font-size: min(36vw, 380px); line-height: .8; color: var(--accent); opacity: .06; pointer-events: none; }
.final-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.final-inner .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.final-sub { color: var(--muted); margin: 18px 0 32px; font-size: 16px; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================================================
   FOOTER (single dark anchor)
   =========================================================== */
.site-footer { background: var(--graphite); color: rgba(255,255,255,.8); }
.footer-top { max-width: var(--wide); margin: 0 auto; padding: 72px 28px 52px; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 44px; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.55); max-width: 30ch; margin: 0 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: all .2s; }
.footer-social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.footer-social svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 { font-family: var(--font-body); font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 16px; font-weight: 600; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.78); padding: 4px 0; transition: color .2s; width: fit-content; }
.footer-col a:hover { color: #fff; }
.footer-news p { font-size: 13.5px; color: rgba(255,255,255,.55); margin: 0 0 14px; line-height: 1.5; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; min-width: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 12px 18px; color: #fff; font-size: 14px; font-family: inherit; }
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus { outline: none; border-color: var(--accent-2); background: rgba(255,255,255,.1); }
.news-form .btn { padding: 12px 16px; }
.news-note { min-height: 18px; margin: 10px 0 0; font-size: 13px; color: var(--accent-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); max-width: var(--wide); margin: 0 auto; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: #fff; }

/* ===========================================================
   STICKY MOBILE BUY BAR
   =========================================================== */
.ask { position: fixed; right: 20px; bottom: 20px; z-index: 85; display: flex; align-items: center; gap: 8px; }
.ask-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 13px 20px; border-radius: 999px; box-shadow: var(--shadow-lg); transition: transform .3s var(--spring-settle), padding .25s var(--ease); }
.ask-pill svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ask-pill:hover { transform: translateY(-3px); }
.ask-pill:active { transform: scale(.95); transition: transform .1s var(--spring-press); }
.ask-min { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; padding: 0; box-shadow: var(--shadow-sm); transition: background .2s, transform .2s var(--spring-settle); }
.ask-min svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.ask-min:hover { background: #f3f4f5; }
.ask.is-min .ask-min { display: none; }                      /* ingeklapt: alleen een rond icoon, tikken maakt hem weer groot */
.ask.is-min .ask-pill span { display: none; }
.ask.is-min .ask-pill { padding: 14px; }
.ask.is-min .ask-pill svg { width: 20px; height: 20px; }
@media (max-width: 760px) { .ask-pill span, .ask-pill { font-size: 13px; } .ask-pill { padding: 12px 16px; } .ask { right: 14px; bottom: 14px; transition: bottom .35s var(--spring-settle); } #buybar.is-visible ~ .ask { bottom: 86px; } body.cta-inview .ask { opacity: 0; pointer-events: none; transform: translateY(16px); } .ask { transition: bottom .35s var(--spring-settle), opacity .25s var(--ease), transform .25s var(--ease); } .ask.is-min .ask-pill { padding: 13px; } }

.buybar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border: 1px solid var(--line-2); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 10px 12px; display: none; align-items: center; gap: 12px; transform: translateY(140%) scale(.94); opacity: 0; transition: transform .4s var(--spring-settle), opacity .3s var(--ease); }
.buybar.is-visible { transform: translateY(0) scale(1); opacity: 1; }
.buybar img { width: 46px; height: 46px; object-fit: contain; border-radius: 10px; background: var(--sand-2); mix-blend-mode: multiply; }
.buybar-info { display: flex; flex-direction: column; margin-right: auto; }
.buybar-name { font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.buybar-price { font-size: 16px; font-weight: 600; color: var(--ink); }
.buybar-btn { padding: 13px 18px; font-size: 15px; white-space: nowrap; }

/* ===========================================================
   BREADCRUMB
   =========================================================== */
.breadcrumb { max-width: var(--container); margin: 0 auto; padding: 20px 28px 0; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--accent); font-family: var(--font-display); font-weight: 500; opacity: .9; }
.breadcrumb .cur { color: var(--ink); font-weight: 500; }

/* ===========================================================
   SHOP PAGE
   =========================================================== */
.shop-hero { padding: 46px 0 40px; background: var(--wash-blue); margin-bottom: 8px; }
.shop-hero .section-inner { max-width: var(--container); }
.shop-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); letter-spacing: -0.03em; max-width: 18ch; }
.shop-hero p { font-size: 17px; color: var(--muted); max-width: 56ch; margin: 16px 0 0; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 30px 0 30px; }
.shop-count { font-size: 14px; color: var(--muted); }
.shop-section { padding: 0 0 100px; }

/* ===========================================================
   PRODUCT DETAIL PAGE (PDP)
   =========================================================== */
.pdp { padding: 26px 0 90px; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.pdp-gallery { position: sticky; top: 96px; min-width: 0; }
.pdp-main { position: relative; border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-md); }
.pdp-main .tag { position: absolute; top: 16px; left: 16px; right: auto; z-index: 2; }   /* right:auto — anders rekt het label over de volle breedte */
.pdp-main-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; aspect-ratio: 1/1; -ms-overflow-style: none; scrollbar-width: none; }
.pdp-main-track::-webkit-scrollbar { display: none; }
.pdp-slide { flex: 0 0 100%; min-width: 0; width: 100%; height: 100%; scroll-snap-align: start; display: grid; place-items: center; box-sizing: border-box; padding: 5%; }
.pdp-slide img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.pdp-dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 2; display: flex; gap: 6px; background: rgba(255,255,255,.75); backdrop-filter: blur(6px); padding: 6px 8px; border-radius: 999px; }
.pdp-dot { width: 6px; height: 6px; border-radius: 999px; background: rgba(15,19,21,.25); transition: background .2s, width .2s; cursor: pointer; }
.pdp-dot.is-active { background: var(--ink); width: 16px; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb { flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; border: 1.5px solid var(--line); background: var(--sand-2); cursor: pointer; padding: 0; display: grid; place-items: center; transition: border-color .2s, transform .3s var(--spring-settle); }
.pdp-thumb:active { transform: scale(.92); transition: transform .1s var(--spring-press); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.is-active { border-color: var(--ink); }

.pdp-info { max-width: 520px; }
.pdp-eyebrow { font-family: var(--font-display); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pdp-eyebrow::before { content: "\00D8"; color: var(--accent); font-weight: 500; margin-right: 8px; letter-spacing: 0; }
.pdp-info h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 10px 0 12px; letter-spacing: -0.03em; }
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 18px; }
.pdp-rating a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.pdp-lead { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; }
.pdp-color { margin-bottom: 22px; }
.pdp-color .lbl { font-size: 13px; font-weight: 600; margin-bottom: 10px; display: block; }
.pdp-color .lbl span { color: var(--muted); font-weight: 400; }
.pdp-color .sw { width: 30px; height: 30px; }
.pdp-color .sw.is-selected { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink); }

/* bundle offer (buy 2 → 2nd 50% off) */
.bundle { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.bundle-opt { position: relative; display: block; background: #f3f4f5; border: 2px solid transparent; border-radius: 14px; padding: 20px 20px 18px; cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease); }
.bundle-opt:hover { border-color: rgba(44,74,110,.35); }
.bundle-opt.is-active { background: #fff; border-color: #2c4a6e; cursor: default; }
.bundle-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.bundle-qty { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; line-height: 1.15; }
.bundle-price { text-align: right; white-space: nowrap; }
.bundle-price .was { font-size: 16px; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.bundle-price .was:empty { display: none; }
.bundle-price .now { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.bundle-price .per { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.bundle-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 18px; clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%); white-space: nowrap; }
.bundle-body { display: none; }
.bundle-opt.is-active .bundle-body { display: block; }
.bundle-save { display: inline-block; background: #e6eef7; color: #2c4a6e; font-weight: 700; font-size: 13px; padding: 5px 10px; border-radius: 6px; margin: 12px 0 12px; }
.bundle-intro { margin: 0 0 12px; font-size: 14.5px; line-height: 1.5; }
.bundle-slots { display: flex; flex-direction: column; gap: 10px; }
.bundle-slot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bundle-thumb { width: 60px; height: 60px; border-radius: 10px; background: #f3f4f5; display: grid; place-items: center; flex-shrink: 0; }
.bundle-thumb img { width: 50px; height: 50px; object-fit: contain; }
.bundle-slot.is-free .bundle-thumb { box-shadow: 0 0 0 2px #2c4a6e; }
.bundle-sel { position: relative; display: inline-flex; align-items: center; min-width: 0; }
.bundle-sel select, .bundle-sel.is-static { font: inherit; font-size: 15px; font-weight: 500; color: var(--ink); height: 46px; padding: 0 34px 0 14px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; appearance: none; -webkit-appearance: none; cursor: pointer; max-width: 100%; }
.bundle-sel select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23252427'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 12px center; }
.bundle-sel.has-swatch select { padding-left: 40px; }
.bundle-sel.is-static { display: inline-flex; gap: 10px; align-items: center; cursor: default; padding-right: 14px; }
.bundle-swatch { width: 18px; height: 18px; border-radius: 50%; background: var(--c); border: 1px solid rgba(0,0,0,.14); flex-shrink: 0; }
.bundle-sel.has-swatch .bundle-swatch { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.bundle-free { font-style: normal; color: #fff; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-left: auto; }
.pdp-total { display: flex; align-items: baseline; gap: 10px; }
.pdp-total .t-now { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.pdp-total .t-was { font-size: 15px; color: var(--ink); opacity: .7; text-decoration: line-through; }
.pdp-total .t-save { font-size: 12.5px; font-weight: 600; color: #fff; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); padding: 3px 9px; border-radius: 999px; }
.pdp-delivery { display: flex; align-items: flex-start; gap: 8px; margin: 0 0 2px; font-size: 13.5px; color: var(--ink); }
.pdp-delivery-sub { display: block; font-size: 13px; margin-top: 2px; }
.pdp-delivery strong { color: var(--ink); }
.pdp-delivery svg { flex-shrink: 0; color: #2c4a6e; }
.pdp-usps { list-style: none; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.pdp-usps li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pdp-usps svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.pdp-acc { margin-top: 26px; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc summary { display: flex; align-items: center; gap: 14px; padding: 17px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 500; color: var(--ink); }
.acc summary::-webkit-details-marker { display: none; }
.acc-ic { width: 26px; height: 26px; display: grid; place-items: center; flex-shrink: 0; }
.acc-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.acc-title { flex: 1; }
.acc-chev { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); flex-shrink: 0; }
.acc[open] .acc-chev { transform: rotate(180deg); }
.acc-body { padding: 0 0 18px 40px; font-size: 14.5px; line-height: 1.6; }
.acc-body p { margin: 0 0 10px; }
.acc-body p:last-child { margin-bottom: 0; }
.acc-body a { text-decoration: underline; text-underline-offset: 3px; }
.acc-specs { margin: 0 0 12px; }
.acc-specs > div { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.acc-specs > div:last-child { border-bottom: 0; }
.acc-specs dt { font-weight: 400; }
.acc-specs dd { margin: 0; font-weight: 500; text-align: right; }
.pay-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; color: var(--muted); font-size: 12.5px; }
.pay-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.pay-badges span { font-size: 10px; font-weight: 700; letter-spacing: .03em; color: var(--ink); background: var(--sand-2); border: 1px solid var(--line); border-radius: 5px; padding: 4px 7px; }

/* PDP standalone lifestyle banners (headline baked into the asset) */
.pdp-banners-head { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.pdp-banners-head .eyebrow { justify-content: center; }
.pdp-banner { margin: 0 auto 22px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.pdp-banner:last-child { margin-bottom: 0; }
.pdp-banner img { width: 100%; height: auto; display: block; }

/* spec table + in de doos */
/* specificaties + in de doos (zelfde stijl als het overzicht: verlooptitel, witte kaarten op lichtblauw) */
.specs { padding: 72px 0 80px; background: linear-gradient(226deg, #ffffff 11%, #eef4fb 52%, #eef4fb 77%, #ffffff 105%); }
.specs .section-inner { max-width: var(--wide); }
.specs-row { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: start; }
.specs-card { background: #fff; border-radius: 16px; padding: 30px 32px 26px; }
.specs-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 16px; }
.specs-list { margin: 0; }
.specs-list > div { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specs-list > div:last-child { border-bottom: 0; }
.specs-list dt { font-size: 15px; font-weight: 400; }
.specs-list dd { margin: 0; font-size: 15px; font-weight: 500; text-align: right; }
.specs-box { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.specs-box li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; padding: 12px 14px; background: #eef4fb; border-radius: 12px; }
.specs-ic { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex-shrink: 0; }
.specs-ic svg { width: 20px; height: 20px; fill: none; stroke: #2c4a6e; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ===========================================================
   COMPARE PAGE (model spec matrix)
   =========================================================== */
.cmp-wrap { width: fit-content; max-width: 100%; margin: 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--cream); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.cmp { border-collapse: collapse; width: auto; }
.cmp-col { min-width: 150px; }
.cmp .is-col-hidden { display: none; }
.cmp th, .cmp td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.cmp tbody td { color: var(--ink); font-weight: 500; }
.cmp .cmp-muted { color: var(--ink); opacity: .45; }
.cmp-rowlabel { text-align: left; font-family: var(--font-body); font-weight: 500; color: var(--muted); position: sticky; left: 0; background: var(--cream); z-index: 2; min-width: 168px; }
.cmp-lbl-ic { display: inline-flex; vertical-align: middle; margin-right: 9px; width: 17px; }
.cmp-lbl-ic svg { width: 17px; height: 17px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cmp-corner { vertical-align: bottom; font-family: var(--font-display); color: var(--ink); font-weight: 600; z-index: 3; }
.cmp-corner .oe { color: var(--accent); }
.cmp thead th { vertical-align: top; padding: 20px 16px 18px; border-bottom: 2px solid var(--line-2); }
.cmp-col.is-flag { background: var(--accent-wash); }
.cmp-colhead { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.cmp-colhead:hover .cmp-name { color: var(--ink); }
.cmp-img { width: 84px; height: 84px; border-radius: 12px; background: #fff; display: grid; place-items: center; }
.cmp-img img { width: 84%; height: 84%; object-fit: contain; mix-blend-mode: multiply; }
.cmp-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.cmp-rate { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.cmp-rate .stars { width: 60px; height: 12px; }
.cmp-price { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.cmp-btn { margin-top: 6px; }
.cmp-hint { margin-top: 16px; font-size: 12.5px; color: var(--muted); }

/* compare — model picker */
.cmp-picker { margin-bottom: 26px; }
.cmp-picker-lbl { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.cmp-picker-hint { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 13.5px; }
.cmp-picker-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.cmp-pick { display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px 7px 7px; border: 1.5px solid var(--line-2); border-radius: 999px; background: var(--cream); cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease), transform .3s var(--spring-settle); }
.cmp-pick:active { transform: scale(.95); transition: transform .1s var(--spring-press); }
.cmp-pick:hover { border-color: var(--ink); }
.cmp-pick.is-on { border-color: var(--accent); background: var(--accent-wash); }
.cmp-pick-img { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.cmp-pick-img img { width: 84%; height: 84%; object-fit: contain; mix-blend-mode: multiply; }
.cmp-pick-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); }
.cmp-pick-tick { width: 18px; height: 18px; border-radius: 50%; border: 1.6px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; }
.cmp-pick.is-on .cmp-pick-tick { background: var(--accent); border-color: var(--accent); }
.cmp-pick.is-on .cmp-pick-tick::after { content: ""; width: 5px; height: 9px; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) translateY(-1px); }

/* compare — return-to-product paths */
.cmp-return { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 16px 0 0; padding: 13px 14px 13px 20px; background: var(--accent-wash); border: 1px solid var(--accent-2); border-radius: var(--r-md); flex-wrap: wrap; }
.cmp-return[hidden] { display: none; }
.cmp-return-txt { font-weight: 600; font-size: 14.5px; }
.cmp-bottom-return { text-align: center; margin-top: 34px; }
.cmp-bottom-return[hidden] { display: none; }
.cmp-bottom-txt { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 14px; }

/* product page — compare link */
.pdp-compare { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pdp-compare svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.pdp-compare:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--spring-settle), transform .5s var(--spring-settle); }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .hero-inner { gap: 36px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-news { grid-column: 1 / -1; max-width: 420px; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 34px; padding-bottom: 60px; min-height: 0; }
  .hero-copy { max-width: 620px; }
  .hero-stage { max-width: 460px; margin: 8px auto 0; width: 100%; }
  .oe-grid { grid-template-columns: 1fr; gap: 40px; }
  .oe-media { max-width: 520px; }
  .tech-grid { grid-template-columns: 1fr; gap: 40px; }
  .specs-row { grid-template-columns: 1fr; }
  .specs { padding: 56px 0 60px; }
  .specs-card { padding: 24px 20px 20px; }
  .tech-media { order: -1; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-intro { position: static; }
  .product-grid:not(.product-grid--scroll) { grid-template-columns: 1fr; }
  .pdp-grid { grid-template-columns: 1fr; gap: 34px; }
  .pdp-gallery { position: static; }
  .pdp-info { max-width: none; }
}
@media (max-width: 760px) {
  .section { padding: 52px 0; }
  .menu-toggle { display: flex; }
  .header-cta, .header-account { display: none; }
  .header-actions { margin-left: auto; }
  .main-nav { display: none; }
  /* mobiel menu (Hears-model): witte kaart die van boven inschuift over een gedimde pagina, ronde sluitknop bovenaan */
  .mobile-nav { display: flex; flex-direction: column; position: fixed; inset: 0; height: 100dvh; width: 100%; margin: 0; padding: 0; background: rgba(15,19,21,.55); transform: translateY(-104%); transition: transform .42s var(--spring-settle); z-index: 201; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav.is-dragging { transition: none; }
  .mobile-nav-close { position: sticky; top: 12px; align-self: center; width: 48px; height: 48px; border-radius: 50%; border: 0; background: #fff; color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-md); cursor: pointer; z-index: 2; margin: 12px auto -24px; flex-shrink: 0; }
  .mobile-nav-close svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-nav-panel { background: #fff; margin: 0 12px 12px; border-radius: 18px; padding: 44px 22px 20px; display: flex; flex-direction: column; gap: 26px; min-height: calc(100dvh - 24px); }
  .mobile-nav-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
  .mobile-nav-list a { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; padding: 2px 0; }
  .mobile-nav-list a[aria-current="page"] { color: #2c4a6e; }
  .mobile-nav-deal { background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); -webkit-background-clip: text; background-clip: text; color: transparent !important; }
  .mobile-nav-deal svg { fill: none; stroke: #2c4a6e; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-nav-promo { position: relative; display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 2; color: #fff; text-decoration: none; background: var(--ink); }
  .mobile-nav-promo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 30%; display: block; }
  .mobile-nav-promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,17,0) 45%, rgba(10,15,17,.7) 100%); }
  .mobile-nav-promo span { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; }
  .mobile-nav-promo strong { display: block; font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
  .mobile-nav-promo small { display: block; font-size: 14px; opacity: .92; margin-top: 2px; }
  .mobile-nav-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
  .mobile-nav-account { color: var(--ink); text-decoration: none; }
  .mobile-nav-cart { font: inherit; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; background: none; border: 0; color: var(--ink); padding: 0; cursor: pointer; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(15,19,21,.4); opacity: 0; pointer-events: none; transition: opacity .38s var(--spring-settle); }
  .nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }
  .nav-backdrop.is-dragging { transition: none; }
  .hero h1 .hl { white-space: normal; }
  .hero-inner { padding-top: 22px; padding-bottom: 40px; }
  .hero-usps { gap: 14px 22px; }
  .trust { padding: 16px 0 4px; }
  .trust-inner { margin: 0 16px; padding: 18px 6px; border-radius: 14px; }
  .trust + .collectie { padding-top: 24px; }
  .upg { padding: 16px 0 40px; }
  .collectie:has(+ .upg) { padding-bottom: 28px; }
  .reviews { padding: 56px 0 64px; }
  .final-cta { margin-bottom: 40px; padding: 40px 22px; }
  .usp-band { padding: 18px 0; }
  .usp-band + .reviews { padding-top: 40px; }
  .usp-item { padding: 0 24px; gap: 12px; }
  /* mobiel: Hears-opbouw — kop en knop op wit, kaarten als swipebare slider */
  .resp { padding: 36px 0 56px; }
  .resp-grid { grid-template-columns: 1fr; gap: 28px; }
  .resp-left { min-height: 0; padding: 0; background: none; border-radius: 0; gap: 12px; }
  .resp-left h2 { font-size: clamp(2.3rem, 10vw, 3rem); }
  .resp-left p { font-size: 16.5px; margin-bottom: 6px; }
  .resp-left .btn { background: #fff; color: var(--ink); border: 1px solid var(--line-2); box-shadow: none; }
  .resp { overflow: hidden; }   /* de slider loopt tot de rand zonder dat de pagina zijwaarts schuift */
  .resp-right { display: flex; grid-template-columns: none; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; margin-right: -22px; padding-right: 22px; }
  .resp-right::-webkit-scrollbar { display: none; }
  .resp-card, .resp-card--tall { flex: 0 0 86%; grid-row: auto; min-height: 0; aspect-ratio: 4 / 4.6; border-radius: 16px; scroll-snap-align: start; }
  .resp-card-text strong { font-size: 19px; }
  .resp-card-text span { font-size: 17px; }
  .resp-block { padding: 48px 0; }
  .resp-block-grid { grid-template-columns: 1fr; gap: 26px; }
  .resp-block-grid--flip .resp-block-media { order: -1; }
  .resp-block-media { aspect-ratio: 4 / 3; }
  .cert-grid { grid-template-columns: 1fr; }
  .pdp-tabs-inner { padding: 10px 0 10px 16px; gap: 14px; }
  .help-hero { padding: 40px 0 18px; }
  .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .help-card-media { padding: 14px; }
  .help-card-title { padding: 12px 14px 14px; font-size: 15px; }
  .help-contact { grid-template-columns: 1fr; gap: 16px; }
  .help-support { padding: 32px 0 56px; }
  .help-art-grid { grid-template-columns: 1fr; gap: 12px; padding-bottom: 48px; }
  .help-bar { padding: 18px 0 6px; }
  .help-search--small { width: 100%; }
  .help-article { padding: 16px 0 56px; }
  .tech2-media--img { max-width: 300px; }
  .bundle-opt { padding: 16px 14px 14px; }
  .bundle-qty { font-size: 18px; }
  .bundle-price .now { font-size: 19px; }
  .bundle-price .was { font-size: 14px; margin-right: 4px; }
  .bundle-slot { position: relative; display: grid; grid-template-columns: 52px minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }   /* één rij per artikel, zoals Hears */
  .bundle-thumb { width: 52px; height: 52px; }
  .bundle-thumb img { width: 44px; height: 44px; }
  .bundle-sel { width: 100%; }
  .bundle-sel select, .bundle-sel.is-static { width: 100%; height: 44px; font-size: 14px; padding-left: 10px; padding-right: 28px; }
  .bundle-sel.has-swatch select { padding-left: 34px; }
  .bundle-sel.has-swatch .bundle-swatch { left: 10px; width: 16px; height: 16px; }
  .bundle-slot.no-color .bundle-sel { grid-column: 2 / 4; }   /* model met één kleur: modelkeuze over de volle breedte */
  .bundle-free { position: absolute; left: -6px; top: -9px; margin: 0; padding: 3px 8px; font-size: 11px; z-index: 1; }
  .sc-swatches { gap: 14px; }                                   /* grotere tikdoelen op telefoon */
  .sc-swatch { width: 24px; height: 24px; }
  .pdp-swatches { gap: 14px; }
  .pdp-swatch { width: 36px; height: 36px; }
  .pdp-tabs-nav { padding-right: 16px; }
  .pdp-tabs-name { font-size: 17px; }
  .pdp-tabs-nav { gap: 16px; }
  .pdp-tabs-nav a { font-size: 14.5px; }
  .pdp-page [id] { scroll-margin-top: 120px; }
  .ov, .fit, .dfy { padding: 48px 0 56px; }
  .ov-grid { grid-template-columns: 1fr; gap: 14px; }
  /* bento op telefoon, 1:1 met Shokz: hero breed met tekst links en foto rechts, dan 2 kaarten naast elkaar, een brede kaart, weer 2 */
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 230px 190px 150px 190px; grid-auto-rows: 190px; gap: 10px; }
  .bento-card { padding: 16px 14px; border-radius: 14px; }
  .bento-card p, .bento-label { font-size: 15px; line-height: 1.35; }
  .bento-media--contain { margin: 0; position: absolute; inset: 0; }
  .bento-media--contain img { inset: auto 6% 5% 6%; width: 88%; height: 58%; object-position: center bottom; }   /* foto gecentreerd onder de tekst */
  .bento-card--product { display: block; }
  .bento-card--product .bento-media { order: 0; margin: 0; }
  .bento-card--product p { position: relative; z-index: 1; }
  /* vaste plekken: hero breed, dan 2 naast elkaar, brede kaart, weer 2 */
  .bento > .bento-card--hero { grid-column: 1 / -1; grid-row: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; grid-template-rows: auto 1fr; align-items: start; text-align: left; padding: 18px 16px; }
  .bento-card--hero p { grid-column: 1; grid-row: 1; text-align: left; font-size: 17px; font-weight: 500; margin: 0; }
  .bento-card--hero h3 { grid-column: 1; grid-row: 2; align-self: start; font-size: 19px; margin: 10px 0 0; text-align: left; }
  .bento-card--hero .bento-media--contain { grid-column: 2; grid-row: 1 / 3; position: relative; inset: auto; height: 100%; margin: 0; }
  .bento-card--hero .bento-media--contain img { inset: 0; width: 100%; height: 100%; object-position: center; }
  .bento > :nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento > :nth-child(1) { grid-column: 2; grid-row: 2; }
  .bento > :nth-child(4) { grid-column: 1 / -1; grid-row: 3; }   /* bediening: brede kaart, tekst links, foto rechts */
  .bento > :nth-child(4) .bento-label { max-width: 52%; position: relative; z-index: 1; }
  .bento > :nth-child(4) .bento-media--contain img { inset: 6% 5% 6% auto; width: 44%; height: 88%; object-position: center; }
  .bento > :nth-child(5) { grid-column: 1; grid-row: 4; }
  .bento > :nth-child(6) { grid-column: 2; grid-row: 4; }
  .bento-card--stat .bento-num { position: absolute; right: 14px; bottom: 8px; margin: 0; font-size: 2.4rem; }
  .bento-card--stat .bento-media { top: auto; left: 5%; right: auto; bottom: 5%; width: 46%; height: 44%; }
  .bento-card--stat .bento-media img { object-position: center bottom; }
  .ov-card { min-height: 240px; }
  .ov-stat-value { font-size: 3rem; }
  .fit-row { grid-template-columns: 1fr; gap: 14px; }
  .fit-media { flex-basis: 34%; padding: 12px; }
  .fit-text { padding: 20px 18px 20px 4px; }
  .dfy-grid { grid-template-columns: 1fr; gap: 14px; }
  .dfy-card { min-height: 0; padding: 24px 22px; }
  .dfy-ic { margin-bottom: 18px; }
  .checkout { padding: 20px 0 60px; }
  .checkout-grid { grid-template-columns: 1fr; gap: 14px; }
  .co-summary { order: -1; }
  .co-form, .co-summary { padding: 20px 18px; }
  .co-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .co-pay { grid-template-columns: 1fr 1fr; }
  .buybar-btn { padding: 12px 14px; font-size: 14px; }
  .tech2-hero { min-height: calc(100svh - 35px); max-height: none; align-items: flex-end; }
  .tech2-hero-scrim { background: linear-gradient(180deg, rgba(10,15,17,.2) 0%, rgba(10,15,17,.15) 40%, rgba(10,15,17,.8) 100%); }
  .tech2-hero-content { padding: 90px 22px 44px; }
  .tech2-hero-content h1 { max-width: none; }
  .tech2 { padding: 52px 0; }
  .tech2-title { margin-bottom: 28px; }
  .tech2-block { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
  .tech2-block--flip .tech2-media { order: 0; }
  .tech2-benefits { gap: 14px; }
  .tech2-benefit { padding: 24px 22px; }
  .tp-head { font-size: 17px; padding: 16px 0; }
  /* Over ons op telefoon: compacter, cijfers in een 2x2-raster, mijlpalen als tijdlijn met lijn en stippen */
  .ab-hero { min-height: 50svh; }
  .ab-hero .tech2-hero-content { padding: 90px 22px 40px; }
  .ab-hero .tech2-hero-content h1 { font-size: clamp(1.9rem, 8.4vw, 2.4rem); }
  .ab-intro { padding: 36px 0 12px; }
  .ab-lead { font-size: 1.25rem; line-height: 1.35; margin-bottom: 14px; }
  .ab-sub { font-size: 15.5px; line-height: 1.6; }
  .ab-block { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .ab-block h2 { font-size: 1.5rem; }
  .ab-block .ab-strong { font-size: 16px; }
  .ab-block p { font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
  .ab-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ab-stat { padding: 18px 16px; }
  .ab-stat strong { font-size: 2.1rem; }
  .ab-stat span { font-size: 13px; margin-top: 4px; }
  .ab-stat p { display: none; }
  .ab-timeline { padding-left: 28px; }
  .ab-rail { width: 5px; top: 8px; bottom: 8px; }
  .ab-year { grid-template-columns: 1fr; gap: 8px; padding: 0 0 26px; border-top: 0; }
  .ab-year:last-child { padding-bottom: 0; }
  .ab-year::before { left: -32px; top: 7px; width: 13px; height: 13px; }
  .ab-year h3 { font-size: 1.5rem; }
  .ab-year ul { font-size: 15px; padding-left: 16px; margin-top: 2px; }
  .ab-year li + li { margin-top: 8px; }
  .moments { padding: 52px 0 10px; }
  .moments .moments-title { font-size: clamp(2.3rem, 10vw, 3rem); margin-bottom: 24px; }
  .moments-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; margin-right: -22px; padding-right: 22px; }
  .moments-track::-webkit-scrollbar { display: none; }
  .moment { flex: 0 0 84%; scroll-snap-align: start; }
  .moment-cap { font-size: 19px; }
  body.dark-hero .site-header:not(.scrolled) .main-nav a { color: var(--ink); }   /* uitschuifmenu altijd leesbaar */
  .safe { padding: 56px 0; }
  .safe-text h2 { font-size: 1.75rem; margin-bottom: 18px; }
  .safe-points li { font-size: 16px; }
  .safe-text .safe-strong { font-size: 16.5px; }
  .safe-stat { padding: 20px 20px; }
  .safe-stats .safe-stat--big strong { font-size: 5rem; }
  .shop-head { padding: 36px 0 18px; }
  .shop-acts { padding: 6px 0 40px; }
  .kpill { padding: 12px 18px; font-size: 15px; }
  .shop-section { padding: 26px 0 70px; }
  .shop-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
  .shop-tools { width: 100%; }
  .btn-filter, .shop-sort { flex: 1 1 0; }
  .btn-filter { justify-content: center; }
  .shop-sort select { width: 100%; min-width: 0; }
  .shop-count { text-align: right; }
  .filter-panel { min-width: 0; right: 0; }
  .sc-grid { grid-template-columns: 1fr; gap: 14px; }
  .sc-name { font-size: 22px; }
  .cmp-bar { bottom: 78px; }
  .rv-heading { margin-bottom: 28px; }
  .rv-track { grid-auto-columns: 86%; gap: 14px; }
  .rv-body { padding: 22px 20px; }
  .upg-grid { grid-template-columns: 1fr; gap: 34px; }
  .upg-title { max-width: none; }
  /* mobiel: Hears-maat */
  .upg { padding: 48px 0 56px; }
  .upg-grid { gap: 34px; }
  .upg .upg-title { position: static; max-width: none; font-size: clamp(2.6rem, 11.5vw, 3.4rem); line-height: 1.04; }
  .upg-word { background: linear-gradient(90deg, #2c4a6e 0%, #86a9cf 100%); -webkit-background-clip: text; background-clip: text; }
  .upg-list { gap: 56px; }
  .upg-listwrap { padding-left: 32px; }
  .upg-item { padding: 8px 0; }
  .upg-rail { width: 8px; border-radius: 8px; }
  .upg-rail-fill { border-radius: 8px; }
  .upg-top { align-items: flex-start; gap: 18px; }
  .upg-top h3 { font-size: clamp(2.3rem, 10vw, 3rem); max-width: 8ch; line-height: 1.02; }
  .upg-top img { width: 150px; height: 92px; margin-top: 6px; }
  .upg-item p { font-size: 1.3rem; line-height: 1.4; margin-top: 20px; max-width: none; }
  .trust-stat { padding: 0 6px; }
  .trust-stat strong { font-size: 26px; }
  .trust-stat span { font-size: 12px; margin-top: 5px; }
  .feature-band { display: none; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .buybar { display: flex; }
  .pdp-total { margin-bottom: 4px; }

  /* mobile: teaser rows (home + PDP related) scroll horizontally; full catalog grids stay vertical */
  .filter-row { margin: 24px 0 24px; }
  .product-grid--scroll, .review-grid {
    display: flex; grid-template-columns: none; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 28px;
    margin: 0 -28px; padding: 2px 28px 10px;
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .product-grid--scroll::-webkit-scrollbar, .review-grid::-webkit-scrollbar { display: none; }
  .product-grid--scroll .product-card { flex: 0 0 80%; scroll-snap-align: center; }
  .product-grid--2up .product-card { flex-basis: 47%; }

  /* mobile: comparison table stacks per feature instead of scrolling sideways */
  .compare-wrap { overflow-x: visible; }
  .compare { min-width: 0; width: 100%; }
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr { display: block; width: 100%; }
  .compare tbody tr { padding: 16px 18px; }
  .compare tbody th { display: block; padding: 0 0 12px; border: none; font-size: 14.5px; }
  .compare tbody td { display: inline-flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 5px; width: 33%; padding: 0; border: none; vertical-align: top; text-align: center; }
  .compare tbody td[data-c="rebone"] { background: none; }
  .compare tbody td::before { content: attr(data-label); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); line-height: 1.3; }

  /* mobile: tighter model-compare columns so 2-3 models fit with less scroll */
  .cmp-rowlabel { min-width: 92px; font-size: 12.5px; padding-left: 12px !important; }
  .cmp-col { min-width: 118px; }
  .cmp th, .cmp td { padding: 12px 10px; }
  .cmp-name { font-size: 13px; }
  .cmp-price { font-size: 13px; }

  /* mobile: shorter explainer/tech imagery instead of tall portrait crops */
  .oe-media img { aspect-ratio: 16/10; }
  .tech-media img { aspect-ratio: 16/9; }
}
@media (max-width: 420px) {
  .spec-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; padding: 44px 20px 32px; }
  .footer-col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; }   /* links in twee kolommen: compact */
  .footer-col h4 { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-col a { font-size: 13.5px; padding: 3px 0; }
  .footer-news { display: block; }
  .footer-brand p { margin-bottom: 14px; }
  .hero-cta-row .btn { flex: 1; }
  .bundle-opt { padding: 14px; gap: 10px; }
}

/* ===========================================================
   MOTION PREFERENCES
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ring { display: none; }
  .stage-product, .ambient-chip { animation: none !important; }
  .hero h1 .hl::after { transform: scaleX(1); }
  /* lopende balken blijven altijd lopen, ook met 'Verminder beweging' aan (user) */
  .announce-track, .usp-track { animation-duration: 30s !important; animation-iteration-count: infinite !important; }
  .usp-track { animation-duration: 38s !important; }
}

/* translucent surfaces go frostier/solid instead of relying on blur */
@media (prefers-reduced-transparency: reduce) {
  .site-header.scrolled { background: var(--paper); backdrop-filter: none; }
  .buybar { background: var(--paper); backdrop-filter: none; }
  .pdp-dots { background: var(--paper); backdrop-filter: none; }
  .nav-backdrop { background: rgba(15,19,21,.7); }
}

/* near-solid backgrounds with a defined border instead of low-contrast tints */
@media (prefers-contrast: more) {
  .site-header.scrolled { background: var(--paper); border-bottom: 2px solid var(--ink); backdrop-filter: none; }
  .btn-outline { --btn-bd: var(--ink); }
  .chip { border-width: 2px; }
  .faq-item { border-bottom-width: 2px; }
}

/* ---------- zoeken (overlay vanuit de header) ---------- */
.search-backdrop { position: fixed; inset: 0; background: rgba(15,19,21,.45); z-index: 380; }
.search-backdrop[hidden], .search[hidden] { display: none; }
.search { position: fixed; z-index: 381; left: 50%; top: 18px; transform: translateX(-50%); width: min(680px, calc(100vw - 24px)); max-height: calc(100vh - 36px); background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; }
.search-form { display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 18px; border-bottom: 1px solid var(--line); }
.search-form > svg { flex: none; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.search-form input { flex: 1; min-width: 0; border: 0; outline: 0; font: inherit; font-size: 1.05rem; padding: 12px 0; color: var(--ink); background: transparent; }
.search-form input::-webkit-search-cancel-button { -webkit-appearance: none; }
.search-close { flex: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.search-close:hover { background: rgba(25,29,28,.06); }
.search-close svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.search-results { overflow-y: auto; padding: 8px; -webkit-overflow-scrolling: touch; }
.search-label { margin: 8px 10px 4px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.search-item { display: flex; align-items: center; gap: 14px; padding: 8px 10px; border-radius: 12px; color: var(--ink); text-decoration: none; }
.search-item:hover, .search-item:focus-visible { background: #f2f5f8; }
.search-item img { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 10px; border: 1px solid var(--line); flex: none; }
.search-ico { width: 56px; height: 56px; flex: none; border-radius: 10px; background: #f2f5f8 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c4a6e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M14 3H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z'/><path d='M14 3v6h6M8 13h8M8 17h6'/></svg>") center/24px no-repeat; }
.search-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.search-txt strong { font-weight: 600; font-size: .98rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-txt small { color: var(--muted); font-size: .84rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-price { flex: none; font-weight: 600; font-size: .95rem; }
.search-empty { margin: 14px 12px 12px; color: var(--muted); font-size: .95rem; }
.search-empty a { color: var(--ink); text-decoration: underline; }
@media (max-width: 720px) {
  .search { top: 10px; width: calc(100vw - 16px); max-height: calc(100vh - 20px); border-radius: 16px; }
  .search-form { padding-left: 14px; }
  .search-form input { font-size: 16px; }
  .search-item img, .search-ico { width: 48px; height: 48px; }
}
body.search-open { overflow: hidden; }

/* ---------- accessoirepagina ---------- */
.acc-lead { font-size: 1.02rem; line-height: 1.55; margin: 0 0 16px; }
.acc-deal { background: #eef3f8; border-radius: 14px; padding: 14px 16px; margin: 0 0 18px; }
.acc-deal-tag { display: inline-block; background: linear-gradient(90deg, #1c2733 0%, #2c4a6e 55%, #6f97c4 100%); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: 999px; }
.acc-deal p { margin: 8px 0 0; font-size: .92rem; line-height: 1.5; }
.acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.acc-card { background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 22px; }
.acc-ic { width: 44px; height: 44px; border-radius: 12px; background: #eef3f8; display: grid; place-items: center; margin-bottom: 14px; }
.acc-ic svg { width: 22px; height: 22px; fill: none; stroke: #2c4a6e; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.acc-card h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 600; }
.acc-card p { margin: 0; font-size: .95rem; line-height: 1.5; }
@media (max-width: 760px) { .acc-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; } }
/* ---------- cookiemelding ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 390; display: flex; justify-content: center; }
.cookie[hidden] { display: none; }
.cookie-card { background: #fff; border: 1px solid var(--line-2); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 18px 20px; max-width: 560px; width: 100%; }
.cookie-card strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.cookie-card p { margin: 0 0 14px; font-size: .92rem; line-height: 1.5; }
.cookie-card p a { color: var(--ink); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 760px) { .cookie { left: 10px; right: 10px; bottom: 10px; } .cookie-btns .btn { flex: 1; justify-content: center; } }
