/* =========================================================================
   NLKEU — een merk van Blik-It VOF
   Design system + single page styles

   Kleurlogica:
   - Achtergrond = het blauwgroene biljartlaken uit de productfoto
   - Accenten    = de Nederlandse driekleur (officiële vlagkleuren)
   - Details     = goud (de ringen) en staal (de RVS-eindstukken)
   ========================================================================= */

/* ---------------------------------------------------------------- TOKENS */
:root {
  /* Biljartlaken */
  --cloth-950: #041D24;
  --cloth-900: #06303A;
  --cloth-800: #0A4553;
  --cloth-700: #0C556A;
  --cloth-600: #0F6D86;
  --cloth-accent: #16A0BE;

  /* Papier / licht */
  --paper: #F8F6F2;
  --paper-2: #EFEAE1;
  --paper-3: #E2DACD;

  /* Nederlandse vlag — officiële kleuren */
  --nl-red: #AE1C28;
  --nl-white: #FFFFFF;
  --nl-blue: #21468B;

  /* Materialen */
  --gold: #D0A63C;
  --gold-soft: #E8C97A;
  --wood: #B5711F;
  --steel-100: #F2F5F7;
  --steel-300: #C6D2D8;
  --steel-500: #8CA0A9;

  /* Tekst */
  --ink: #0A1418;
  --ink-soft: #46565E;
  --on-dark: #E9F2F5;
  --on-dark-soft: rgba(233, 242, 245, .72);
  --on-dark-faint: rgba(233, 242, 245, .42);

  /* Layout */
  --shell: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 68px;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Schaduw */
  --shadow-sm: 0 2px 8px rgba(4, 29, 36, .12);
  --shadow-md: 0 12px 32px rgba(4, 29, 36, .18);
  --shadow-lg: 0 28px 64px rgba(4, 29, 36, .32);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.7rem + 4.4vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.1vw, 3rem); }
h3 { font-size: clamp(1.1rem, 1.02rem + .38vw, 1.3rem); letter-spacing: -.012em; }
.h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

/* --------------------------------------------------------- HULPKLASSEN */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4.5rem, 3rem + 7vw, 8.5rem); }

.section--dark {
  background: var(--cloth-900);
  color: var(--on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--nl-white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  background: var(--nl-red);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus-visible { top: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.small { font-size: .875rem; }

.lead {
  font-size: clamp(1.08rem, 1rem + .42vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.section--dark .lead { color: var(--on-dark-soft); }

.section-label {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--nl-red);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-label::before {
  content: "";
  width: 26px; height: 3px;
  background: currentColor;
  border-radius: 2px;
}
.section--dark .section-label { color: var(--gold-soft); }

.section-head { max-width: 46ch; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .section-label { justify-content: center; }

/* Zichtbare markering voor nog in te vullen bedrijfsgegevens */
.todo {
  color: var(--gold-soft);
  border-bottom: 1px dashed currentColor;
}

/* ---------------------------------------------------------------- KNOPPEN */
.btn {
  --btn-bg: var(--nl-red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid transparent;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--nl-red); }
.btn--primary:hover { background: #C42430; }

.btn--ghost {
  background: transparent;
  color: var(--nl-white);
  border-color: rgba(255, 255, 255, .4);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

.btn--sm { padding: .6rem 1.2rem; font-size: .88rem; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.08rem; }

/* ---------------------------------------------------------------- HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(4, 29, 36, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .09);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--nl-white);
  margin-right: auto;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.022em;
}

.site-nav { display: none; }
.site-nav ul { display: flex; gap: clamp(1rem, 2.2vw, 2rem); }
.site-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  text-decoration: none;
  padding-block: .4rem;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.site-nav a:hover { color: #fff; border-bottom-color: var(--nl-red); }

.site-header__cta { display: none; }

.nav-toggle {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  inset: var(--header-h) 0 auto 0;
  background: rgba(4, 29, 36, .98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1rem var(--gutter) 1.75rem;
}
.mobile-nav ul { display: grid; gap: .25rem; }
.mobile-nav a {
  display: block;
  padding: .85rem .25rem;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav__cta {
  margin-top: .9rem;
  text-align: center;
  background: var(--nl-red);
  border-radius: 100px;
  border-bottom: 0 !important;
}

@media (min-width: 900px) {
  .site-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------------------------------------------------------------- HERO */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 4rem) clamp(4rem, 9vw, 7rem);
  background: var(--cloth-700);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}

/* De foto wordt via JS als background-image gezet (data-bg).
   Ontbreekt het bestand, dan blijft deze laag-verloop staan
   en oogt de hero nog steeds af. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--cloth-700);
  background-image:
    radial-gradient(120% 90% at 78% 22%, var(--cloth-accent) 0%, transparent 58%),
    radial-gradient(100% 80% at 12% 88%, var(--cloth-600) 0%, transparent 62%);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero__media.has-image {
  background-image: var(--hero-img);
  background-position: 62% center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(4, 29, 36, .93) 0%, rgba(4, 29, 36, .78) 42%, rgba(4, 29, 36, .18) 72%, rgba(4, 29, 36, .05) 100%),
    linear-gradient(to top, rgba(4, 29, 36, .75), transparent 42%);
}

.hero__inner { max-width: 44rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.4rem;
  padding: .48rem 1.05rem .48rem .6rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--on-dark);
}
.eyebrow__flag {
  width: 22px; height: 15px;
  flex: none;
  border-radius: 3px;
  background: linear-gradient(
    to bottom,
    var(--nl-red) 0 33.33%,
    var(--nl-white) 33.33% 66.66%,
    var(--nl-blue) 66.66% 100%
  );
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
}

.hero__title {
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(4, 29, 36, .5);
}
.hero__title em {
  display: inline-block;
  font-style: normal;
  position: relative;
  background: linear-gradient(100deg, var(--gold-soft), var(--gold) 55%, #B98C21);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.06rem, .98rem + .5vw, 1.32rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.75rem;
}

.hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .875rem;
  color: rgba(255, 255, 255, .8);
}
.hero__usps li {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__usps li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.75rem;
  translate: -50% 0;
  width: 26px; height: 44px;
  border: 2px solid rgba(255, 255, 255, .38);
  border-radius: 100px;
  display: none;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  translate: -50% 0;
  width: 4px; height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: scrollHint 1.9s var(--ease) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55%      { transform: translateY(14px); opacity: .15; }
}
@media (min-width: 900px) and (min-height: 700px) {
  .hero__scroll { display: block; }
}

/* ---------------------------------------------------------------- VERHAAL */
.story { background: var(--paper); }

.story__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.story__sig {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--paper-3);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.story__sig-mark {
  width: 34px; height: 22px;
  border-radius: 3px;
  flex: none;
  background: linear-gradient(
    to bottom,
    var(--nl-red) 0 33.33%,
    var(--nl-white) 33.33% 66.66%,
    var(--nl-blue) 66.66% 100%
  );
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
}

.story__figure { margin: 0; }
.story__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-color: var(--cloth-700);
  background-image:
    radial-gradient(85% 60% at 50% 35%, var(--cloth-accent) 0%, transparent 70%),
    linear-gradient(160deg, var(--cloth-600), var(--cloth-900));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.story__img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--nl-red) 0 33.33%,
    var(--nl-white) 33.33% 66.66%,
    var(--nl-blue) 66.66% 100%
  );
}
.story__figure figcaption {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--ink-soft);
}

@media (min-width: 880px) {
  .story__grid { grid-template-columns: 1.05fr .95fr; }
}

/* ---------------------------------------------------------------- FEATURES */
.features {
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(22, 160, 190, .16), transparent 60%),
    var(--cloth-900);
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.feature-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(208, 166, 60, .4);
}
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p {
  color: var(--on-dark-soft);
  font-size: .96rem;
  margin: 0;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--gold-soft);
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card__icon--steel   { color: var(--steel-300); }
.feature-card__icon--carbon  { color: #7E8C93; }
.feature-card__icon--gold    { color: var(--gold); }
.feature-card__icon--leather { color: var(--wood); }

@media (min-width: 760px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-card--wide { grid-column: span 2; }
}
@media (min-width: 760px) and (max-width: 1059px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-column: span 2; }
}

/* ---------------------------------------------------------------- DETAILS */
.details { background: var(--paper-2); }

.detail-row {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  text-align: center;
}

/* De foto's brengen hun eigen gouden ring mee — die van de fotograaf.
   Een tweede ring in CSS zou er een dubbele rand van maken, dus die zit
   hier niet. Het verloop hieronder is uitsluitend de terugval voor het
   geval een foto ontbreekt. */
.detail-card__ring {
  position: relative;
  width: min(250px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.detail-card__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 7px solid var(--gold);
  background:
    radial-gradient(70% 70% at 40% 30%, var(--cloth-accent), var(--cloth-800));
  z-index: 0;
}
.detail-card__ring img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.detail-card__ring img.is-missing { opacity: 0; }

.detail-card h3 { margin-bottom: .35rem; }
.detail-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ---------------------------------------------------------------- BESTELLEN */
.buy {
  background:
    radial-gradient(75% 60% at 15% 10%, rgba(22, 160, 190, .2), transparent 60%),
    var(--cloth-950);
}

.buy__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.buy__panel {
  padding: clamp(1.6rem, 4vw, 2.75rem);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.buy__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--nl-red) 0 33.33%,
    var(--nl-white) 33.33% 66.66%,
    var(--nl-blue) 66.66% 100%
  );
}
.buy__intro { color: var(--on-dark-soft); }

.buy__widget { margin-block: 1.75rem; min-height: 120px; }

.buy__loading {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 2rem 0;
  color: var(--on-dark-faint);
  font-size: .9rem;
}
.spinner {
  width: 20px; height: 20px;
  flex: none;
  border: 2px solid rgba(255, 255, 255, .2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.buy__fallback {
  margin-block: 1.75rem;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  color: var(--on-dark-soft);
  font-size: .95rem;
}
.buy__fallback .btn { margin-block: .35rem; }

.buy__note {
  margin-block: 1.25rem;
  padding: .9rem 1.1rem;
  background: rgba(255, 255, 255, .05);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
}
.buy__note strong { color: #fff; font-weight: 600; }

.buy__trust {
  display: grid;
  gap: .6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .875rem;
  color: var(--on-dark-soft);
}
.buy__trust li {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.buy__trust li::before {
  content: "";
  width: 16px; height: 16px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 100% no-repeat;
}

/* Ecwid-widget bijsturen zodat hij bij het donkere paneel past */
.buy__widget .ecsp,
.buy__widget .ec-store { color: var(--on-dark); }
.buy__widget .ecwid-productBrowser-price,
.buy__widget .ec-price-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
}
.buy__widget .form-control__button,
.buy__widget .ec-form button {
  border-radius: 100px !important;
}

.buy__specs { padding-top: .5rem; }

.spec-list { margin: 1.5rem 0 0; }
.spec-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.spec-list > div:first-child { border-top: 1px solid rgba(255, 255, 255, .1); }
.spec-list dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.spec-list dd {
  margin: 0;
  font-weight: 500;
  color: var(--on-dark);
  text-align: right;
}

@media (min-width: 900px) {
  .buy__grid { grid-template-columns: 1.1fr .9fr; }
}

/* ---------------------------------------------------------------- BELGIË */
.belgium {
  background: var(--paper);
  position: relative;
}
.belgium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    to right,
    #000 0 33.33%,
    #FAE042 33.33% 66.66%,
    #ED2939 66.66% 100%
  );
}

.belgium__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.belgium__text p { color: var(--ink-soft); max-width: 42ch; }

.notify {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.notify__row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.notify input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: .95rem 1.1rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: 100px;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.notify input[type="email"]:focus {
  border-color: var(--cloth-600);
  background: #fff;
}
.notify__row .btn { flex: 0 0 auto; }

.notify__consent {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.notify__consent input { margin-top: .18rem; flex: none; accent-color: var(--nl-red); }

.notify__status {
  margin: .9rem 0 0;
  font-size: .88rem;
  font-weight: 500;
  min-height: 1.3em;
}
.notify__status[data-state="ok"]    { color: #1C7A3E; }
.notify__status[data-state="error"] { color: var(--nl-red); }

@media (min-width: 880px) {
  .belgium__inner { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------- FAQ */
.faq { background: var(--cloth-900); }
.faq__inner { max-width: 56rem; margin-inline: auto; }

.faq__list {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, .96rem + .3vw, 1.18rem);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  transition: color .18s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background:
    linear-gradient(currentColor 0 0) center / 10px 1.5px no-repeat,
    linear-gradient(currentColor 0 0) center / 1.5px 10px no-repeat;
  transition: transform .28s var(--ease), border-color .18s var(--ease);
}
.faq__item summary:hover { color: var(--gold-soft); }
.faq__item[open] summary::after {
  transform: rotate(135deg);
  border-color: var(--gold);
}

.faq__answer {
  padding: 0 0 1.5rem;
  max-width: 62ch;
  color: var(--on-dark-soft);
  font-size: .97rem;
}
.faq__answer a { color: var(--gold-soft); }

/* ---------------------------------------------------------------- SLOT */
.closing {
  padding-block: clamp(4rem, 3rem + 5vw, 6.5rem);
  background: linear-gradient(135deg, var(--cloth-800), var(--cloth-600));
  color: #fff;
  text-align: center;
  position: relative;
}
.closing::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--nl-red) 0 33.33%,
    var(--nl-white) 33.33% 66.66%,
    var(--nl-blue) 66.66% 100%
  );
}
.closing h2 { color: #fff; }
.closing__inner p {
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
}

/* ---------------------------------------------------------------- FOOTER */
.site-footer {
  background: var(--cloth-950);
  color: var(--on-dark-soft);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: .9rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__brand p { margin-top: 1rem; max-width: 26ch; }
.brand--footer { margin-right: 0; }

.site-footer h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer__list { display: grid; gap: .55rem; }
.site-footer address.site-footer__list { font-style: normal; }
.site-footer__list a {
  color: var(--on-dark-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.site-footer__list a:hover { color: #fff; border-bottom-color: var(--gold); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: .82rem;
  color: var(--on-dark-faint);
}
.site-footer__bottom p { margin: 0; }
.site-footer__flag { display: flex; gap: 3px; }
.site-footer__flag span {
  width: 16px; height: 10px;
  border-radius: 2px;
}
.site-footer__flag span:nth-child(1) { background: var(--nl-red); }
.site-footer__flag span:nth-child(2) { background: #fff; }
.site-footer__flag span:nth-child(3) { background: var(--nl-blue); }

/* ---------------------------------------------------------------- REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- PRINT */
@media print {
  .site-header, .mobile-nav, .hero__scroll, .ec-cart-widget, .notify { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .hero, .closing, .site-footer { background: #fff !important; color: #000 !important; }
  .section--dark h1, .section--dark h2, .section--dark h3,
  .hero__title, .closing h2 { color: #000 !important; }
}
