
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('assets/fonts/archivo-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
}


.mf-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 54px;
  padding: 0 clamp(16px, 2.5vw, 32px);
  background: rgba(20, 20, 20, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  animation: mfHeaderIn .6s var(--ease-out, ease-out) both;
  animation-delay: var(--mf-enter-delay, 0s);
}

@keyframes mfHeaderIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.mf-nav {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.mf-nav__left { display: flex; align-items: center; }

.mf-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  list-style: none;
}

.mf-nav__links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s ease;
}

.mf-nav__links a:hover { color: #fff; }
.mf-nav__links a.active { color: var(--accent); }
.mf-nav__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }


.mf-nav__about { position: relative; }
.mf-nav__about-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  transition: color .2s ease;
}
.mf-nav__about:hover .mf-nav__about-btn,
.mf-nav__about.open .mf-nav__about-btn { color: #fff; }
.mf-nav__about-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }


.mf-nav__about::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 18px;
}


.mf-nav__about-panel {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(20, 20, 20, .55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .3s ease, visibility .4s;
}
.mf-nav__about:hover .mf-nav__about-panel,
.mf-nav__about.open .mf-nav__about-panel {
  max-height: 360px;
  opacity: 1;
  visibility: visible;
}

.mf-nav__about-grid {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px clamp(16px, 4vw, 48px) 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.mf-nav__about-card {
  position: relative;
  display: block;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: transform .45s ease, opacity .45s ease;
}
.mf-nav__about:hover .mf-nav__about-card,
.mf-nav__about.open .mf-nav__about-card { opacity: 1; transform: translateY(0); }
.mf-nav__about-card:nth-child(2) { transition-delay: .05s; }
.mf-nav__about-card:nth-child(3) { transition-delay: .1s; }

.mf-nav__about-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
}
.mf-nav__about-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}
.mf-nav__about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.mf-nav__about-card:hover .mf-nav__about-card-img img { transform: scale(1.05); }

.mf-nav__about-card-naam {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  text-align: left;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .55);
  transition: color .2s ease;
}
.mf-nav__about-card:hover .mf-nav__about-card-naam { color: #fff; }
.mf-nav__about-card.active .mf-nav__about-card-naam { color: var(--accent); }

.mf-nav__logo { display: block; justify-self: center; }
.mf-nav__logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.mf-nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.mf-nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.mf-nav__cart svg { display: block; }
.mf-nav__cart:hover { background: rgba(104,204,255,0.12); color: var(--accent); }

.mf-nav__cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-display);
}

.mf-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background .2s;
}
.mf-nav__burger:hover { background: rgba(104,204,255,0.12); }
.mf-nav__burger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.mf-nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mf-nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mf-nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .mf-nav__links { display: none; }
  .mf-nav__burger { display: flex; }
  .mf-header { padding: 0 16px; }
}


.mf-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 88px 40px 48px;
  transition: right .4s cubic-bezier(0.65, 0, 0.35, 1);
}
.mf-drawer.open { right: 0; }

.mf-drawer__close {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.mf-drawer__close:hover { background: rgba(255,255,255,0.08); color: #fff; }

.mf-drawer__nav { display: flex; flex-direction: column; }

.mf-drawer__nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 5vw, 34px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s ease, padding-left .2s ease;
  line-height: 1.1;
}
.mf-drawer__nav a:last-child { border-bottom: none; }
.mf-drawer__nav a:hover { color: #fff; padding-left: 6px; }
.mf-drawer__nav a.active { color: var(--accent); }


.mf-drawer__about-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 5vw, 34px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 14px 0;
  line-height: 1.1;
  transition: color .2s ease;
}
.mf-drawer__about-btn svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s ease; }
.mf-drawer__about.open .mf-drawer__about-btn { color: #fff; }
.mf-drawer__about.open .mf-drawer__about-btn svg { transform: rotate(180deg); }

.mf-drawer__about-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}
.mf-drawer__about.open .mf-drawer__about-menu { grid-template-rows: 1fr; }
.mf-drawer__about-inner { overflow: hidden; }
.mf-drawer__about-inner a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 3.4vw, 21px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color .2s ease, padding-left .2s ease;
  line-height: 1.1;
}
.mf-drawer__about-inner a:hover { color: #fff; padding-left: 24px; }
.mf-drawer__about-inner a.active { color: var(--accent); }

.mf-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mf-drawer__overlay.open { opacity: 1; pointer-events: all; }

@media (prefers-reduced-motion: reduce) {
  .mf-header { animation: none; }
}



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

:root {
  --bg:       #191919;
  --accent:   #68ccff;
  --white:    #ffffff;
  --muted:    #aaaaaa;
  --card-bg:  #242424;
  --w65:      rgba(255, 255, 255, .65);
  --w35:      rgba(255, 255, 255, .35);
  --w12:      rgba(255, 255, 255, .12);
  --font-head: 'Archivo', 'Montserrat', system-ui, sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-display: 'Archivo', 'Montserrat', system-ui, sans-serif;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
}

html { scroll-behavior: smooth; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .02em;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}


.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--white);
  margin-bottom: 2rem;
}


.mf-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mf-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.4);
}

.mf-overlay {
  position: absolute;
  inset: 0;
}

.mf-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mf-quote {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-style: italic;
  color: #151515;
  line-height: 1.55;
  font-weight: 800;
  max-width: 520px;
  margin-bottom: 28px;
  margin-top: -120px;
}

.mf-question {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  margin-top: 200px;
}


.mf-start-center {
  justify-content: center;
  gap: 22px;
}

.mf-eyebrow {
  font-size: clamp(.85rem, 2.4vw, 1.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  max-width: 480px;
}

.mf-start {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}

.mf-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mf-clock-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
}

.mf-clock-time {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.mf-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* .mf-btn wordt gestyled door het buttonsysteem onderaan dit bestand. */

@media (max-width: 767px) {
  .mf-hero { min-height: 100svh; height: 100svh; }
  .mf-hero-img { object-position: center top; }
}


.event-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.event-content h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.event-content p {
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--muted);
}

.event-countdown {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.event-countdown small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
  color: var(--white);
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
}

.event-location p { margin: 0; color: var(--muted); }

.event-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn.primary { background: var(--accent); color: var(--white); }
.btn.secondary { border: 2px solid var(--accent); color: var(--white); }
.btn:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .event-block {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 24px;
  }
  .event-content { display: flex; flex-direction: column; align-items: center; }
  .event-meta { flex-direction: column; gap: 12px; }
  .event-buttons { justify-content: center; }
  .event-countdown { font-size: 2.4rem; }
  .event-content h2 { font-size: 1.55rem; text-transform: none; line-height: 1.2; }
}


.mf-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mf-choice-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--accent);
  text-decoration: none;
}

.mf-choice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.mf-choice-card:hover img { transform: scale(1.06); }

.mf-choice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.2));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mf-choice-top { color: #9edfff; font-weight: 700; font-size: 14px; }

.mf-choice-overlay h2 {
  font-family: var(--font-head);
  margin: 4px 0 0;
  color: var(--white);
  font-size: 34px;
}

@media (max-width: 900px) {
  .mf-choice-grid { grid-template-columns: 1fr; }
  .mf-choice-card { min-height: 300px; }
  .mf-choice-overlay { justify-content: center; text-align: center; }
  .mf-choice-overlay h2 { font-size: 1.8rem; line-height: 1.2; width: 100%; }
}


.ig-feed { width: 100%; }

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

.ig-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ig-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.ig-logo { display: flex; align-items: center; gap: 6px; }
.ig-logo svg { width: 18px; height: 18px; flex-shrink: 0; }
.ig-logo-name { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.ig-date { font-size: 10px; color: #888; letter-spacing: .03em; }

.ig-carousel { position: relative; overflow: hidden; background: #000; width: 100%; }

.ig-track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}

.ig-track img {
  min-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.ig-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: var(--white);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .2s;
}

.ig-btn:hover { background: rgba(0,0,0,.82); }
.ig-prev { left: 8px; }
.ig-next { right: 8px; }

.ig-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
}

.ig-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .2s; }
.ig-dot.on { background: var(--white); }

.ig-card-footer {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ig-first-line {
  font-size: 12px;
  color: #ddd;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-full-caption {
  font-size: 11px;
  color: #aaa;
  line-height: 1.55;
  display: none;
  margin-top: 2px;
  white-space: pre-line;
}

.ig-full-caption.open { display: block; }

.ig-toggle {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  letter-spacing: .04em;
  text-align: left;
  margin-top: 2px;
}

.ig-insta-link {
  font-size: 10px;
  color: var(--w65);
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.ig-insta-link:hover { color: #aaa; }
.ig-insta-link svg { width: 14px; height: 14px; }

@media (max-width: 700px) { .ig-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .ig-grid { grid-template-columns: 1fr; } }


.mf-slider-wrap {
  padding-top: 60px;
  padding-bottom: 80px;
}

.reveal-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.mf-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.mf-arrow {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.mf-arrow:hover { background: var(--accent); color: var(--bg); }
.mf-arrow:disabled { opacity: .35; cursor: not-allowed; }

.mf-track {
  position: relative;
  height: 560px;
  overflow: hidden;
  perspective: 1000px;
}

.mf-product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  aspect-ratio: 3 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--accent);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  color: inherit;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition:
    transform .65s cubic-bezier(.22,.61,.36,1),
    opacity .65s cubic-bezier(.22,.61,.36,1),
    filter .65s cubic-bezier(.22,.61,.36,1);
}

.mf-track.no-anim .mf-product { transition: none !important; }

.mf-product img {
  width: 100%;
  height: calc(100% - 52px);
  object-fit: cover;
  display: block;
}

.mf-product h4 {
  margin: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  font-family: var(--font-head);
  font-size: 15px;
  text-align: center;
  padding: 0 10px;
  background: rgba(0,0,0,.2);
}

.mf-left  { transform: translate3d(-185%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); z-index: 1; }
.mf-active { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 1; filter: blur(0); z-index: 3; }
.mf-right { transform: translate3d(85%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); z-index: 1; }

.mf-track.anim-next .mf-left   { transform: translate3d(-285%, -50%, 0) scale(.62); opacity: 0; filter: blur(2px); }
.mf-track.anim-next .mf-active { transform: translate3d(-185%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); }
.mf-track.anim-next .mf-right  { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 1; filter: blur(0); z-index: 4; }

.mf-track.anim-prev .mf-right  { transform: translate3d(185%, -50%, 0) scale(.62); opacity: 0; filter: blur(2px); }
.mf-track.anim-prev .mf-active { transform: translate3d(85%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); }
.mf-track.anim-prev .mf-left   { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 1; filter: blur(0); z-index: 4; }

@media (max-width: 767px) {
  .mf-slider-wrap { padding: 0 12px 60px; }
  .reveal-title { font-size: 1.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mf-track { height: 360px; }
  .mf-product { width: 170px; height: 320px; border-radius: 4px; }
  .mf-product img { height: calc(100% - 44px); }
  .mf-left  { transform: translate3d(-215%, -50%, 0) scale(.7); }
  .mf-right { transform: translate3d(125%, -50%, 0) scale(.7); }
  .mf-track.anim-next .mf-active { transform: translate3d(-215%, -50%, 0) scale(.7); }
  .mf-track.anim-prev .mf-active { transform: translate3d(125%, -50%, 0) scale(.7); }
}


.newsletter {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 4px;
}

.newsletter h2 {
  font-family: var(--font-head);
  margin-bottom: 12px;
  color: #0369a1; 
  font-size: 1.6rem;
}

.newsletter p {
  margin-bottom: 24px;
  color: #555;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-form input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  color: #0369a1; 
  background-color: var(--white);
  opacity: 1;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #0369a1;
}

.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #0369a1;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

.newsletter-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 4px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .15s ease, opacity .15s ease;
}

.newsletter-form button:hover { transform: translateY(-2px); opacity: .9; }

.newsletter-image {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-image img { width: 100%; height: 100%; object-fit: cover; }

.newsletter-feedback {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-feedback.is-success {
  display: block;
  background: rgba(0,171,255,0.12);
  border: 1px solid rgba(0,171,255,0.45);
  color: #007fc0;
}

.newsletter-feedback.is-error {
  display: block;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.35);
  color: #b91c1c;
}

.newsletter-form .hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; padding: 40px 24px; }
}





html.tb-anim, .tb-anim body { background: var(--bg); }

.tb-anim .tb-hero__img { animation: tbHeroSettle 1.1s cubic-bezier(.2, .6, .2, 1) both; }
@keyframes tbHeroSettle { from { transform: scale(1.15); } to { transform: scale(1); } }


.tb-row {
  display: grid;
  grid-template-columns: 100fr 0fr 0fr 0fr;
  gap: 0;
  height: 100vh;
  width: 100%;                     
  overflow: hidden;                
  background: var(--bg);
  transition:
    grid-template-columns .78s cubic-bezier(.65, 0, .35, 1),
    gap .78s cubic-bezier(.65, 0, .35, 1);
}
.tb-row.is-compact {
  
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 12px;
}


.tb-hero {
  position: relative;
  min-width: 0;                    
  height: 100%;
  overflow: hidden;
  background: var(--bg);
}

.tb-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1) brightness(1);
  transition:
    object-position .78s cubic-bezier(.65, 0, .35, 1),
    filter .78s cubic-bezier(.65, 0, .35, 1);
}
.tb-row.is-compact .tb-hero__img {
  object-position: top;            
  filter: saturate(.9) brightness(.7);
}

.tb-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .45) 100%);
  transition: background .78s cubic-bezier(.65, 0, .35, 1);
}
.tb-row.is-compact .tb-hero__shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .60) 100%);
}

.tb-hero__inner {
  position: absolute;
  left: 50%;
  bottom: 50%;
  z-index: 2;
  color: var(--white);
  text-align: center;
  transform: translate(-50%, 50%);
  transition:
    left .78s cubic-bezier(.65, 0, .35, 1),
    bottom .78s cubic-bezier(.65, 0, .35, 1),
    transform .78s cubic-bezier(.65, 0, .35, 1);
}
.tb-row.is-compact .tb-hero__inner {
  left: 6%;
  bottom: 8%;
  text-align: left;
  transform: translate(0, 0);
}

.tb-hero__kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  color: var(--accent);
  margin: 0 0 10px;
  opacity: 0;
  transition: opacity .5s ease;
}
.tb-row.is-compact .tb-hero__kicker { opacity: 1; }

.tb-hero__title {
  font-family: 'Archivo', var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 4.6vw, 30px);
  letter-spacing: .02em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  transform: scale(1.06);
  transition:
    font-size .78s cubic-bezier(.65, 0, .35, 1),
    letter-spacing .78s cubic-bezier(.65, 0, .35, 1),
    transform .78s cubic-bezier(.65, 0, .35, 1),
    margin .78s cubic-bezier(.65, 0, .35, 1);
}
.tb-row.is-compact .tb-hero__title {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  letter-spacing: .01em;
  transform: scale(1);
  margin: 0 0 14px;
}
.tb-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
  color: var(--white);
  opacity: 0;
  transition: opacity .5s ease, margin .78s cubic-bezier(.65, 0, .35, 1);
}
.tb-row.is-compact .tb-hero__sub { opacity: .92; margin: 0; }


.tb-card {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background: #202020 center / cover no-repeat;
}
.tb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .5));
}
.tb-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.05;
  margin: 0;
  
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tb-card--course  { background-image: url('assets/fotos/cursus.webp?v=2'); }
.tb-card--clothing { background-image: url('assets/fotos/kleding.webp?v=2'); }
.tb-card--tools   { background-image: url('assets/fotos/trainingstools.webp?v=2'); }

.tb-card--tools { transition: transform .3s ease, box-shadow .3s ease; }
.tb-card--tools:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}
/* "Binnenkort beschikbaar": niet de hele kaart dimmen (dan dooft het label mee),
   maar de foto donkerder maken via de overlay. Het label blijft vol accentkleur. */
.tb-card--soon { cursor: default; }
.tb-card--soon::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .72) 100%);
}
.tb-card--soon .tb-card__title { opacity: .8; }
.tb-card--soon::after {
  content: "Binnenkort beschikbaar";
  position: absolute;
  top: 84px;
  right: 16px;
  z-index: 3;                      /* boven de donkere filter */
  font-size: .68rem;
  letter-spacing: .05em;
  background: var(--accent);
  color: #191919;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 5px;

  writing-mode: horizontal-tb;
  white-space: nowrap;
}


.tb-anim .tb-card.is-out { opacity: 0; transform: translateX(120%); }
.tb-card.is-revealing { transition: transform .56s ease-out, opacity .56s ease-out; }


@media (max-width: 720px) {
  /* Mobiel: het hele hero-blok vult exact het scherm.
     De grote foto pakt 50% van de hoogte (3fr), de 3 kaarten samen de andere 50%
     (3 × 1fr). Geen gap en geen padding, dus geen ruimte aan de zijkanten.  */
  .tb-row {
    grid-template-columns: 1fr;
    grid-template-rows: 100fr 0fr 0fr 0fr;
    width: auto;
    margin-left: 0;
    padding: 0;
    gap: 0;
    height: 100vh;
    height: 100dvh;
    transition: grid-template-rows .78s cubic-bezier(.65, 0, .35, 1);
  }
  .tb-row.is-compact {
    grid-template-columns: 1fr;
    grid-template-rows: 3fr 1fr 1fr 1fr;   /* 3/6 = 50% hero, 50% kaarten */
    gap: 0;
    padding: 0;
    height: 100vh;
    height: 100dvh;
  }
  /* min-height:0 én geen verticale padding op de kaart: allebei vormen anders
     een ondergrens waardoor de 0fr-startstand van de intro-animatie niet
     volledig dichtklapt. De onderruimte komt van de marge op de titel. */
  .tb-hero,
  .tb-card { min-height: 0; }
  .tb-hero,
  .tb-row.is-compact .tb-hero { height: 100%; }
  .tb-row.is-compact .tb-hero__title { font-size: clamp(1.8rem, 6.4vw, 2.4rem); }
  .tb-row.is-compact .tb-hero__sub { font-size: .95rem; opacity: .92; }
  .tb-card { height: 100%; align-items: flex-start; padding: 0 20px; }
  .tb-card__title { writing-mode: horizontal-tb; transform: none; white-space: normal; font-size: 1.35rem; margin: 0 0 18px; }
  .tb-card--soon::after { writing-mode: horizontal-tb; top: 14px; right: 16px; padding: 5px 9px; font-size: .62rem; }
  .tb-hero__inner, .tb-hero__title, .tb-hero__sub { transition: none; }
  .tb-anim .tb-card.is-out { transform: translateY(60px); }
}


@media (prefers-reduced-motion: reduce) {
  .tb-row { transition: none; }
  .tb-row .tb-hero__img,
  .tb-row .tb-hero__shade,
  .tb-row .tb-hero__inner,
  .tb-row .tb-hero__title,
  .tb-row .tb-hero__kicker,
  .tb-row .tb-hero__sub { transition: none; }
  .tb-anim .tb-card.is-out { opacity: 1; transform: none; }
  .tb-anim body, .tb-anim .tb-hero__img { animation: none; }
}


.reveal-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.reveal-title {
  grid-column: 1 / -1;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  overflow: hidden;
  color: var(--white);
}

.reveal-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-title span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  position: sticky;
  top: 120px;
  height: 70vh;
}

.reveal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.reveal-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reveal-item {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  color: var(--muted);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item.final {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

@media (max-width: 900px) {
  .reveal-section { grid-template-columns: 1fr; gap: 32px; }
  .reveal-image { position: relative; height: 300px; top: 0; }
}


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


.book-hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 13vh, 150px) 5vw clamp(48px, 8vh, 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 60px);
  background: var(--bg);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.book-hero__eyebrow {
  position: relative;
  z-index: 3;
  margin: 0;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: bookHeroInfo 0.8s ease-out 0.1s forwards;
}


.book-hero__stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  min-height: clamp(360px, 56vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-hero__type {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.14);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  animation: bookHeroType 0.8s ease-out forwards;
}

.book-hero__type span { display: block; }

.book-hero__media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
  opacity: 0;
  animation: bookHeroBook 0.7s ease-out 0.3s forwards;
}

.book-hero__info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  opacity: 0;
  animation: bookHeroInfo 0.8s ease-out 0.6s forwards;
}

.book-hero__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 30rem;
}

.book-hero__cta {
  background: var(--accent);
  color: var(--white);
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
  display: inline-block;
}

.book-hero__cta:hover { transform: translateY(-2px); }

@keyframes bookHeroType {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bookHeroBook {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes bookHeroInfo {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .book-hero { padding: clamp(88px, 12vh, 120px) 1.5rem clamp(40px, 7vh, 64px); }
  .book-hero__stage { min-height: clamp(300px, 48vh, 460px); }
  .book-hero__type {
    font-size: clamp(58px, 17vw, 108px);
    white-space: normal;
  }
  .book-hero__media img { max-width: 60vw; }
  .book-hero__sub { max-width: 100%; }
  .book-hero__cta { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .book-hero__eyebrow,
  .book-hero__type,
  .book-hero__media,
  .book-hero__media img,
  .book-hero__info {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s ease, transform .3s ease;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 6px;
}

.review-excerpt {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.review-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--white);
  margin: 0;
}

.review-title {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
  font-weight: 600;
}

.review-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.review-date {
  font-size: 0.8rem;
  color: var(--w65);
  margin: 0;
  margin-top: auto;
  padding-top: 8px;
}

.review-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity .2s;
}

.review-link:hover { opacity: 0.8; }

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


#cp-root {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#cp-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

#cp-title {
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  will-change: opacity, transform;
}

#cp-hero-img {
  position: absolute;
  z-index: 1;
  width: 35%;
  max-width: 420px;
  min-width: 180px;
  object-fit: cover;
  bottom: 47%;
  left: 50%;
  transform: translateX(-50%);
  will-change: opacity, transform;
  pointer-events: none;
}

#cp-card {
  position: absolute;
  z-index: 3;
  width: 88%;
  max-width: 860px;
  display: flex;
  align-items: center;
  gap: 48px;
  opacity: 0;
  will-change: opacity, transform;
}

#cp-card-img {
  width: 42%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

#cp-card-text { color: var(--white); flex: 1; }

#cp-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

#cp-card-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}

#cp-card-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

#cp-card-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, color .2s;
}

#cp-card-btn:hover { background: rgba(255,255,255,0.85); color: #111; }

@media (max-width: 640px) {
  #cp-card { flex-direction: column; gap: 14px; width: 92%; padding: 20px 0 32px; }
  #cp-card-img { width: 100%; max-height: 38vh; aspect-ratio: unset; }
  #cp-card-text { text-align: center; }
  #cp-hero-img { width: 55%; max-width: none; bottom: 49%; }
  #cp-card-heading { font-size: clamp(1.2rem, 5.5vw, 1.8rem); margin-bottom: 10px; }
  #cp-card-body { font-size: 0.85rem; margin-bottom: 18px; line-height: 1.6; }
  #cp-title { font-size: clamp(2.6rem, 10vw, 10rem); }
}


.ev2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.ev2-nav { display: flex; gap: 10px; }
.ev2-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #3a3a3a;
  background: var(--card-bg);
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .1s;
}
.ev2-arrow:hover { border-color: var(--accent); color: var(--accent); }
.ev2-arrow:active { transform: scale(.94); }
.ev2-arrow:disabled { opacity: .3; cursor: default; }

.ev2-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  
  /* overflow-x:auto maakt overflow-y óók auto, dus deze strook knipt.
     Boven de kaart moet daarom meer speling staan dan de hover-lift (6px),
     anders wordt de bovenrand er recht afgesneden. */
  padding-top: 14px;
  padding-bottom: 32px;
  padding-left: max(24px, calc((100% - 1100px) / 2 + 24px));
  padding-right: max(24px, calc((100% - 1100px) / 2 + 24px));
}
.ev2-track::-webkit-scrollbar { display: none; }

.ev2-card:last-child { margin-right: 40px; }

.ev2-empty {
  min-width: 300px;
  padding: 60px 24px;
  color: #888;
}

.ev2-card {
  position: relative;
  flex: 0 0 30%;
  min-width: 360px;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #202020 center center / cover no-repeat;
  transition: transform .3s var(--ease-out);
}
.ev2-card:hover { transform: translateY(-6px); }

.ev2-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,.05) 72%);
}
.ev2-card--past .ev2-card__scrim {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 45%, rgba(0,0,0,.35) 100%);
}

.ev2-card__info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
.ev2-card__status {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(104, 204, 255, .12);
  border: 1px solid rgba(104, 204, 255, .35);
  padding: 5px 11px;
  border-radius: 999px;
}
.ev2-card__status.is-past {
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}
.ev2-card__date {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}
.ev2-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.08;
  color: #fff;
  margin: 0;
}
.ev2-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ev2-card__btn {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #08222e;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease;
}
.ev2-card__btn span { transition: transform .25s ease; }
.ev2-card__btn:hover { transform: translateY(-2px); }
.ev2-card__btn:hover span { transform: translateX(4px); }

@media (max-width: 1024px) {
  .ev2-card { flex-basis: 44%; max-width: none; }
}
@media (max-width: 768px) {
  .ev2-card { flex-basis: 82%; min-width: 0; }
}


.collab {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.collab__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.05;
  max-width: 640px;
  margin: 14px 0 0;
}

.collab__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 640px;
  margin: 20px 0 0;
}

.collab__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.collab__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.collab__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--accent);
}

.collab__item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  margin: 10px 0 0;
}

.collab__item-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 8px 0 0;
}

.collab__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
  transition: border-color .25s ease, color .25s ease;
}
.collab__cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.collab__arrow {
  transition: transform .25s ease;
}
.collab__cta:hover .collab__arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .collab__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .collab__grid { grid-template-columns: 1fr; }
}


.mf-growth {
  background: #000;
  padding: clamp(120px, 20vh, 240px) 24px clamp(48px, 7vh, 90px);
}

.mf-growth__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.mf-growth__lottie {
  width: 100%;
  max-width: 340px;
  justify-self: center;
}

.mf-growth__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mf-growth__headline {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(28px, 4vw, 44px);
  color: rgba(255,255,255,0.92);
  line-height: .95;
  margin: 0;
}

.mf-growth__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

@media (max-width: 720px) {
  .mf-growth__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mf-growth__lottie {
    max-width: 200px;
    justify-self: center;
  }
  .mf-growth__body {
    max-width: 100%;
  }
}

.mf-reveal {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .7s ease, transform .7s ease;
}

.mf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .mf-reveal, .mf-reveal.is-visible { opacity: 1; transform: none; transition: none; }
}


.contact-anchor { scroll-margin-top: 120px; }

.contact-feedback {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.contact-feedback.is-success {
  display: block;
  background: rgba(104,204,255,0.12);
  border: 1px solid rgba(104,204,255,0.4);
  color: #9bdcff;
}

.contact-feedback.is-error {
  display: block;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
}


.mf-contact {
  padding: clamp(72px, 10vh, 120px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mf-contact__inner {
  max-width: 560px;
  margin: 0 auto;
}


.mf-contact__inner--split {
  max-width: 960px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.mf-contact__info {
  padding: clamp(8px, 1vw, 12px) 0;
}

.mf-contact__info-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.mf-contact__info-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0 0 28px;
}

.mf-contact__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mf-contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mf-contact__item-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.mf-contact__item-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

a.mf-contact__item-value {
  transition: color .2s ease;
}

a.mf-contact__item-value:hover {
  color: var(--accent);
}

.mf-contact__socials {
  display: flex;
  gap: 14px;
}

.mf-contact__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s ease, border-color .2s ease;
}

.mf-contact__socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 720px) {
  .mf-contact__inner--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Mobiel staan de contactgegevens onder elkaar i.p.v. naast het formulier;
     dan oogt gecentreerd rustiger dan links uitgelijnd. */
  .mf-contact__info { text-align: center; }
  .mf-contact__item { align-items: center; }
  .mf-contact__socials { justify-content: center; }
}

.mf-contact__card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
}

.mf-contact__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.mf-contact__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0 0 24px;
}

.mf-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mf-contact__form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mf-contact__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mf-contact__group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.mf-contact__group input,
.mf-contact__group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: none;
}

.mf-contact__group input::placeholder,
.mf-contact__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.mf-contact__group input:focus,
.mf-contact__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(104, 204, 255, 0.1);
}

.mf-contact__submit {
  width: 100%;
  background: var(--accent);
  color: #191919;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.mf-contact__submit:hover { transform: translateY(-2px); opacity: .9; }

.mf-contact__status {
  font-size: 13px;
  line-height: 1.5;
  min-height: 0;
}
.mf-contact__status.succes { color: #6ee7a8; }
.mf-contact__status.fout   { color: #fca5a5; }


.mf-about-mom {
  padding: 120px 20px 70px;
}

.mf-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.mf-title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.08;
  color: var(--white);
}

.mf-intro {
  margin: 0 0 40px;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.mf-intro strong { color: var(--white); }

.mf-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 60px;
}

.mf-photo {
  border: 1px solid var(--accent);
  border-radius: 4px;
  overflow: hidden;
}

.mf-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.mf-quote {
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  align-items: center;
  background: var(--card-bg);
}

.mf-quote p {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  color: #e2e8f0;
  font-weight: 600;
  font-style: italic;
}


.mf-timeline-section {
  margin-bottom: 60px;
}

.mf-subtitle {
  margin: 0 0 28px;
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--white);
}

.mf-timeline {
  border-left: 3px solid rgba(104, 204, 255, 0.35);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mf-time-item {
  position: relative;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 16px 18px;
  background: var(--card-bg);
  transition: border-color .3s, transform .3s;
}

.mf-time-item:hover {
  border-color: rgba(104,204,255,0.8);
  transform: translateX(4px);
}

.mf-time-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(104, 204, 255, 0.15);
}

.mf-time-item span {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mf-time-item p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 15px;
}


.mf-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.mf-gallery .mf-photo { min-height: 260px; }


.mf-cta {
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  background: var(--card-bg);
  margin-bottom: 0;
}

.mf-cta h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 30px;
}

.mf-cta p { margin: 0 0 20px; color: #cbd5e1; }


.mf-about-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.mf-about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mf-about-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 900px) {
  .mf-hero-grid { grid-template-columns: 1fr; }
  .mf-gallery { grid-template-columns: 1fr; }
  .mf-quote p { font-size: 18px; }
  .mf-cta { padding: 28px 20px; }
}


.shop-hero {
  text-align: center;
  padding: 140px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.shop-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.shop-leeg {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.shop-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s ease;
}


.shop-card--uitverkocht {
  opacity: 0.6;
}

.shop-card-foto-wrap {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #1a1a1a;
}

.shop-card-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.shop-card-foto--tweede {
  opacity: 0;
  transition: opacity .4s ease;
}


.shop-card-foto-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-foto-placeholder svg {
  width: 48px;
  height: 48px;
  color: #333;
}

.shop-badge-uitverkocht {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.shop-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
}

.shop-card-tekst {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: opacity .25s ease;
}


.shop-card-naam {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  margin: 0;
}

.shop-card-prijs {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin: 0;
  white-space: nowrap;
}
.shop-card-vanaf {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-right: 2px;
}


.shop-card-acties {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}


.shop-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.shop-card-icon svg { display: block; }

.shop-card-icon--bekijk {
  background: var(--accent);
  color: #191919;
  border: 1px solid var(--accent);
}


.shop-card-icon--cart {
  background: rgba(0,0,0,0.35);
  color: var(--accent);
  border: 1px solid var(--accent);
}


/* Hover-effecten van de productkaart — alleen bij een échte aanwijzer.
   Op touch zorgde dit voor dubbel tikken: de eerste tik toonde de
   hover-stand, pas de tweede opende het product. Gekoppeld aan (hover:hover)
   i.p.v. aan een schermbreedte, want ook tablets zijn touch. */
@media (hover: hover) and (pointer: fine) {
  .shop-card:hover { border-color: rgba(104,204,255,0.3); }
  .shop-card:hover .shop-card-foto--tweede { opacity: 1; }
  .shop-card:hover .shop-card-tekst { opacity: 0; }
  .shop-card:hover .shop-card-acties { opacity: 1; pointer-events: all; }
  .shop-card-icon--bekijk:hover { opacity: 0.88; }
  .shop-card-icon--cart:hover { background: var(--accent); color: #191919; }
}

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .shop-card-acties { display: none; }
}

@media (max-width: 520px) {
  .shop-grid { grid-template-columns: 1fr; }
}


.pdp {
  padding-top: 100px;
  padding-bottom: 64px;
  
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: 0;
}

.pdp-inner {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}


.pdp-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}

.pdp-titel {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--white);
  margin: 0 0 14px;
}

.pdp-prijs {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pdp-prijs .pdp-vanaf {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-right: -4px;
}
.pdp-prijs .pdp-oud {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9em;
}
.pdp-prijs .pdp-korting-badge {
  background: var(--accent);
  color: #191919;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.pdp-prijs--nvt { color: var(--muted); font-weight: 500; }

.pdp-omschrijving {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 30px;
  max-width: 48ch;
}
.pdp-omschrijving p { margin: 0 0 12px; }
.pdp-omschrijving p:last-child { margin-bottom: 0; }


.pdp-varianten { margin-bottom: 30px; }
.pdp-varianten-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.pdp-variant-opties { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-variant {
  min-width: 52px;
  height: 44px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.pdp-variant:hover { border-color: rgba(104,204,255,0.5); color: var(--white); }
.pdp-variant.active {
  border-color: var(--accent);
  background: rgba(104,204,255,0.12);
  color: var(--accent);
}
.pdp-variant.is-uitverkocht {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.pdp-variant.is-uitverkocht:hover {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
}


.pdp-koop {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 14px;
}
.pdp-aantal {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.pdp-aantal button {
  width: 42px;
  height: 52px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s;
}
.pdp-aantal button:hover { background: rgba(255,255,255,0.06); }
.pdp-aantal input {
  width: 44px;
  height: 52px;
  background: none;
  border: none;
  color: var(--white);
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  -moz-appearance: textfield;
}
.pdp-aantal input::-webkit-outer-spin-button,
.pdp-aantal input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-aantal input:focus { outline: none; }

.pdp-cart-btn {
  flex: 1;
  height: 52px;
  background: var(--accent);
  color: #191919;
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.pdp-cart-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.pdp-feedback {
  font-size: 0.88rem;
  color: var(--accent);
  min-height: 20px;
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity .2s;
}
.pdp-feedback.zichtbaar { opacity: 1; }
.pdp-feedback.is-fout { color: #ff6b6b; }


.pdp-varianten--vereist .pdp-variant:not(.is-uitverkocht) {
  border-color: #ff6b6b;
  animation: pdp-variant-shake 0.4s ease;
}
@keyframes pdp-variant-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.pdp-uitverkocht {
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 14px;
}

.pdp-trust {
  list-style: none;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-trust li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.pdp-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}


.pdp-gallerij { position: relative; }
.pdp-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pdp-track::-webkit-scrollbar { display: none; }
.pdp-slide {
  flex: 0 0 72%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}
.pdp-track.is-single .pdp-slide { flex-basis: 100%; }
.pdp-track:not(.is-single)::after {
  content: '';
  flex: 0 0 28%;
}
.pdp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.pdp-slide-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.pdp-slide-placeholder svg { width: 64px; height: 64px; color: #333; }

.pdp-next {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #191919;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform .2s, opacity .2s;
  z-index: 3;
}
.pdp-next:hover { transform: translateY(-50%) scale(1.06); }
.pdp-next[hidden] { display: none; }
.pdp-next svg { width: 22px; height: 22px; }

.pdp-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  width: 72%;
}
.pdp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.pdp-dot.active { background: var(--accent); width: 20px; border-radius: 6px; }


.pdp-details { border-top: 1px solid rgba(255,255,255,0.08); }
.pdp-details-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.pdp-details-titel {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 44px 0 8px;
  margin: 0;
  align-self: start;
}
.pdp-acc { border-bottom: 1px solid rgba(255,255,255,0.1); }
.pdp-acc-head {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.pdp-acc-head svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.pdp-acc.open .pdp-acc-head svg { transform: rotate(180deg); }
.pdp-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease-out);
}
.pdp-acc-body-inner {
  padding: 0 0 24px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
}
.pdp-acc-body-inner .pdp-meta-rij {
  display: flex;
  gap: 12px;
  padding: 3px 0;
}
.pdp-acc-body-inner .pdp-meta-rij span:first-child {
  min-width: 120px;
  color: rgba(255,255,255,0.5);
}
.pdp-acc-body-inner .pdp-meta-rij span:last-child { color: var(--white); }


.pdp-acc-review-titel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-review-samenvatting {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.pdp-review-aantal { color: rgba(255,255,255,0.45); }


.pdp-review-sterren,
.pdp-reviews-sterren,
.pdp-review-sterren--mini { display: inline-flex; gap: 2px; }
.pdp-ster {
  width: 15px; height: 15px;
  fill: rgba(255,255,255,0.18);
}
.pdp-ster.is-vol { fill: var(--accent); }
.pdp-review-sterren--mini .pdp-ster { width: 13px; height: 13px; }


.pdp-reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pdp-reviews-score { display: flex; align-items: center; gap: 14px; }
.pdp-reviews-cijfer {
  font-family: var(--font-head);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--white);
}
.pdp-reviews-score-rechts { display: flex; flex-direction: column; gap: 4px; }
.pdp-reviews-score-rechts .pdp-ster { width: 17px; height: 17px; }
.pdp-reviews-totaal { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.pdp-review-schrijf-knop {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.pdp-review-schrijf-knop:hover {
  border-color: var(--accent);
  background: rgba(104,204,255,0.08);
}


.pdp-reviews-lijst { display: flex; flex-direction: column; }
.pdp-review-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pdp-review-item:last-child { border-bottom: none; }
.pdp-review-item-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.pdp-review-datum { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.pdp-review-mening {
  margin: 0 0 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.pdp-review-tekst {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}
.pdp-review-foto {
  display: inline-block;
  margin-bottom: 10px;
}
.pdp-review-foto img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.pdp-review-item-voet {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pdp-review-naam {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.pdp-review-variant {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  padding: 3px 9px;
  border-radius: 20px;
}

/* Reactie van Mighty Fit onder een review */
.pdp-review-antwoord {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(104,204,255,0.05);
  border-radius: 0 8px 8px 0;
}
.pdp-review-antwoord-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.pdp-review-antwoord-naam {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}
.pdp-review-antwoord-tekst {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.65;
}


.pdp-review-form {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.pdp-review-form-titel {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 18px;
}
.pdp-review-veld { margin-bottom: 16px; }
.pdp-review-veld label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 7px;
}
.pdp-review-verplicht { color: var(--accent); }
.pdp-review-veld input[type="text"],
.pdp-review-veld input[type="email"],
.pdp-review-select,
.pdp-review-veld textarea {
  width: 100%;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 13px;
  transition: border-color .2s;
}
.pdp-review-veld input:focus,
.pdp-review-select:focus,
.pdp-review-veld textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.pdp-review-veld textarea { resize: vertical; min-height: 90px; }
.pdp-review-veld input[type="file"] {
  width: 100%;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.pdp-review-veld input[type="file"]::file-selector-button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  border-radius: 6px;
  padding: 7px 12px;
  margin-right: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
}
.pdp-review-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}


.pdp-review-sterkiezer { display: inline-flex; gap: 4px; }
.pdp-ster-knop {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  line-height: 0;
}
.pdp-ster-knop svg {
  width: 26px; height: 26px;
  fill: rgba(255,255,255,0.18);
  transition: fill .15s;
}
.pdp-ster-knop.is-vol svg { fill: var(--accent); }

.pdp-review-form-acties {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.pdp-review-verstuur {
  background: var(--accent);
  color: #191919;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  cursor: pointer;
  transition: opacity .2s;
}
.pdp-review-verstuur:hover { opacity: 0.9; }
.pdp-review-verstuur:disabled { opacity: 0.6; cursor: default; }
.pdp-review-annuleer {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
}
.pdp-review-annuleer:hover { color: var(--white); }
.pdp-review-feedback {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.pdp-review-feedback.is-fout { color: #ff8080; }
.pdp-review-bedankt {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: rgba(104,204,255,0.1);
  border: 1px solid rgba(104,204,255,0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .pdp-review-form { padding: 18px; }
  .pdp-reviews-top { flex-direction: column; align-items: flex-start; }
}


.product-in-winkelmand {
  height: 48px;
  background: var(--accent);
  color: #191919;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity .2s, transform .2s;
}
.product-in-winkelmand:hover { opacity: 0.85; transform: translateY(-1px); }


.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.product-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.product-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-sluit {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lightbox-sluit:hover { background: rgba(255,255,255,0.2); }


@media (max-width: 900px) {
  .pdp {
    padding-top: 90px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .pdp-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-info { position: static; order: 2; }
  .pdp-gallerij { order: 1; }
  .pdp-slide { flex-basis: 100%; }
  .pdp-dots { width: 100%; }
  .pdp-details-inner { grid-template-columns: 1fr; gap: 0; }
  .pdp-details-titel { padding: 28px 0 4px; }
}

@media (max-width: 480px) {
  .pdp-koop { flex-wrap: wrap; }
  .pdp-cart-btn { flex-basis: 100%; }
  .pdp-aantal { width: 100%; justify-content: center; }
}


.product-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 104px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}
.product-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-breadcrumb a:hover { color: var(--accent); }
.product-breadcrumb span { color: rgba(255, 255, 255, 0.3); }

.wagen-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.wagen-titel {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 32px;
  text-transform: uppercase;
}


.wagen-leeg {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 24px;
  color: var(--muted);
  text-align: center;
}

.wagen-leeg svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.wagen-leeg p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.wagen-verder-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: 8px;
  transition: opacity .2s;
}

.wagen-verder-btn:hover { opacity: 0.85; }


.wagen-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
}

.wagen-item:last-child { border-bottom: none; }

.wagen-item-foto {
  width: 90px;
  height: 90px;
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.wagen-item-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wagen-item-foto-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wagen-item-foto-placeholder svg {
  width: 28px;
  height: 28px;
  color: #333;
}

.wagen-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wagen-item-naam {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}

.wagen-item-variant {
  font-size: 0.78rem;
  color: var(--accent);
  margin: 2px 0 0;
}

.wagen-item-stukprijs {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.wagen-item-acties {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.wagen-item-aantal {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
}

.wagen-aantal-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wagen-aantal-btn:hover { background: rgba(255,255,255,0.06); }

.wagen-item-aantal span {
  min-width: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--white);
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  line-height: 32px;
}

.wagen-verwijder-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color .2s, background .2s;
}

.wagen-verwijder-btn svg { width: 16px; height: 16px; }
.wagen-verwijder-btn:hover { color: var(--red); background: rgba(248,113,113,0.08); }

.wagen-item-subtotaal {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}


.wagen-samenvatting {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 28px;
  position: sticky;
  top: 100px;
  flex-direction: column;
  gap: 12px;
}

.wagen-samenvatting h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.wagen-som-rijen {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}

.wagen-som-rij {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
}

.wagen-som-totaal {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 4px;
}

.wagen-btw-note {
  font-size: 0.75rem;
  color: var(--w65);
  margin: 0;
  text-align: center;
}

.wagen-afrekenen-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s, transform .2s;
  margin-top: 4px;
}

.wagen-afrekenen-btn svg { width: 16px; height: 16px; }
.wagen-afrekenen-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.wagen-door-winkelen {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color .2s;
  margin-top: 4px;
}

.wagen-door-winkelen svg { width: 14px; height: 14px; }
.wagen-door-winkelen:hover { color: var(--white); }


@media (max-width: 900px) {
  .wagen-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wagen-samenvatting { position: static; }
}

@media (max-width: 580px) {
  .wagen-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }
  .wagen-item-subtotaal {
    grid-column: 2;
    text-align: left;
  }
  .wagen-item-foto {
    width: 70px;
    height: 70px;
    grid-row: span 2;
  }
}


.checkout-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.checkout-titel {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}


.checkout-stappen {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 0;
}

.checkout-stap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.stap-nr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a2a2a;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
  flex-shrink: 0;
}

.stap-label {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color .3s;
  white-space: nowrap;
}

.checkout-stap.active .stap-nr {
  background: var(--accent);
  color: #000;
}

.checkout-stap.active .stap-label { color: var(--white); }

.checkout-stap.klaar .stap-nr {
  background: rgba(104,204,255,0.2);
  color: var(--accent);
}

.checkout-stap.klaar .stap-nr::before { content: '✓'; }
.checkout-stap.klaar .stap-nr { font-size: 0; }
.checkout-stap.klaar .stap-nr::before { font-size: 0.8rem; }

.checkout-stap-lijn {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
  margin: 0 12px;
  min-width: 20px;
}


.checkout-sectie-titel {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.co-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.co-form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.co-form-group input,
.co-form-group select {
  padding: 12px 14px;
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 6px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
}

.co-form-group input:focus,
.co-form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(104,204,255,0.1);
}

.co-form-group input::placeholder { color: #444; }

.co-form-group input.co-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.1);
}

.co-error-msg {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--red);
  line-height: 1.3;
}

.co-notice--fout {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid var(--red);
  color: #fca5a5;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.co-form-group select option { background: var(--card-bg); }


.checkout-volgende-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  margin-top: 8px;
  transition: opacity .2s, transform .2s;
}

.checkout-volgende-btn svg { width: 16px; height: 16px; }
.checkout-volgende-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.checkout-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.checkout-terug-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: transparent;
  color: var(--muted);
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}

.checkout-terug-btn svg { width: 14px; height: 14px; }
.checkout-terug-btn:hover { border-color: var(--accent); color: var(--white); }

.checkout-betalen-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity .2s, transform .2s;
}

.checkout-betalen-btn svg { width: 16px; height: 16px; }
.checkout-betalen-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.checkout-betalen-btn:disabled {
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}
.checkout-betalen-btn:disabled:hover { opacity: 1; transform: none; }


.verzend-opties {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.verzend-optie {
  cursor: pointer;
}

.verzend-optie input[type="radio"] { display: none; }

.verzend-optie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--card-bg);
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  transition: border-color .2s, background .2s;
}

.verzend-optie input:checked + .verzend-optie-inner {
  border-color: var(--accent);
  background: rgba(104,204,255,0.05);
}

.verzend-optie-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.verzend-optie-info svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.verzend-naam {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 2px;
}

.verzend-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.verzend-prijs {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  white-space: nowrap;
}


.betaal-opties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.betaal-optie { cursor: pointer; }
.betaal-optie input[type="radio"] { display: none; }

.betaal-optie-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--card-bg);
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}

.betaal-optie input:checked + .betaal-optie-inner {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(104,204,255,0.05);
}

.betaal-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  padding: 5px 7px;
  flex-shrink: 0;
}

.betaal-logo {
  height: 18px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  display: block;
}

.betaal-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}


.mf-betaalmethoden {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mf-betaalmethoden--paneel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mf-betaalmethoden--product {
  margin-top: 10px;
  max-width: 280px;
}
.mf-betaalmethode {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  height: 34px;
  padding: 5px 6px;
}
.mf-betaalmethode img {
  max-height: 19px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}


.betaal-logo[src="assets/logos/pay-bancontact.png"] { height: 25px; }
.mf-betaalmethode img[src="assets/logos/pay-bancontact.png"] { max-height: 25px; }


.checkout-akkoord {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--card-bg);
  border-radius: 6px;
  border: 1px solid #2a2a2a;
}

.akkoord-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.akkoord-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.akkoord-label.co-error-label { color: var(--red); }

/* Tweede, optionele keuze onder de voorwaarden (signeren van het boek).
   Krijgt een scheidingslijn zodat het niet als juridische regel leest. */
.akkoord-label--extra {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #2a2a2a;
  color: rgba(255, 255, 255, .78);
}
.akkoord-label--extra strong { color: var(--accent); font-weight: 700; }

.co-link {
  color: var(--accent);
  text-decoration: none;
}

.co-link:hover { text-decoration: underline; }


.checkout-overzicht {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.checkout-overzicht-titel {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-item-foto {
  position: relative;
  width: 56px;
  height: 56px;
  background: #1a1a1a;
  border-radius: 6px;
  overflow: visible;
  flex-shrink: 0;
}

.checkout-item-foto img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.checkout-item-aantal {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-info p {
  font-size: 0.875rem;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}

.checkout-item-prijs {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.checkout-som {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-som-rij {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
}

.checkout-som-totaal {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 10px;
  border-top: 1px solid #2a2a2a;
  margin-top: 4px;
}

.checkout-btw {
  font-size: 0.75rem;
  color: var(--w65);
  margin: 4px 0 0;
  text-align: right;
}


@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .checkout-overzicht {
    position: static;
    order: -1;
  }
  .betaal-opties { grid-template-columns: 1fr; }
  .co-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .checkout-stap-lijn { min-width: 10px; margin: 0 6px; }
  .stap-label { display: none; }
  .checkout-nav-btns { flex-direction: column; }
  .checkout-terug-btn { justify-content: center; }
}


.bevestiging-wrap {
  max-width: 600px;
  margin: 120px auto 80px;
  padding: 0 24px;
}

.bevestiging-card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bevestiging-card--succes { border-color: rgba(74,222,128,0.3); }
.bevestiging-card--fout   { border-color: rgba(248,113,113,0.3); }

.bevestiging-icoon {
  width: 72px;
  height: 72px;
  background: rgba(74,222,128,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.bevestiging-icoon svg { width: 36px; height: 36px; color: #4ade80; }
.bevestiging-icoon--fout { background: rgba(248,113,113,0.1); }
.bevestiging-icoon--fout svg { color: var(--red); }

.bevestiging-card h1 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
}

.bevestiging-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.bevestiging-card p strong { color: var(--white); }

.bevestiging-ref {
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 8px 0;
}

.bevestiging-ref strong { color: var(--accent); }

.bevestiging-btns {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.bevestiging-btn {
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: opacity .2s;
}

.bevestiging-btn:hover { opacity: 0.85; }

.bevestiging-btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid #333;
}

.bevestiging-btn--ghost:hover { color: var(--white); border-color: var(--accent); opacity: 1; }


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-kaart {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-kaart:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.blog-kaart-foto-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}

.blog-kaart-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.blog-kaart:hover .blog-kaart-foto { transform: scale(1.04); }

.blog-kaart-foto-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.blog-kaart-foto-placeholder svg { width: 48px; height: 48px; }

.blog-kaart-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-kaart-datum {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-kaart-titel {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-kaart-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.blog-kaart-link {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}


.blog-detail-hero-wrap {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  margin-top: 90px;
}

.blog-detail-hero {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.blog-detail-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.blog-terug {
  display: inline-block;
  color: var(--muted);
  font-size: .82rem;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
}

.blog-terug:hover { color: var(--white); }

.blog-detail-meta {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.blog-detail-titel {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 40px;
}

.blog-blok-tekst {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.85;
  margin-bottom: 24px;
}


.blog-blok-tekst * { color: inherit !important; }
.blog-blok-tekst a,
.blog-blok-tekst a * { color: var(--accent) !important; }

.blog-blok-kop {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--white);
  margin: 40px 0 16px;
  line-height: 1.2;
}

.blog-blok-img { margin: 32px 0; }

.blog-blok-img img,
.blog-blok-img-foto img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.blog-blok-bijschrift {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}

.blog-blok-img-links,
.blog-blok-img-rechts {
  display: flex;
  gap: 28px;
  margin: 32px 0;
  align-items: flex-start;
}

.blog-blok-img-rechts { flex-direction: row-reverse; }

.blog-blok-img-links .blog-blok-img-foto,
.blog-blok-img-rechts .blog-blok-img-foto { flex: 0 0 44%; }

.blog-blok-img-side-text {
  flex: 1;
  font-size: .95rem;
  color: #cccccc;
  line-height: 1.75;
}


.blog-blok-duo {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  align-items: flex-start;
}
.blog-blok-duo-cel { flex: 1; min-width: 0; margin: 0; }
.blog-blok-duo-cel img { width: 100%; border-radius: 6px; display: block; }
@media (max-width: 600px) {
  .blog-blok-duo { flex-direction: column; }
}

.blog-blok-citaat {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(104,204,255,0.06);
  border-radius: 0 8px 8px 0;
}
.blog-blok-citaat-tekst {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 8px;
}
.blog-blok-citaat-auteur {
  display: block;
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-style: normal;
}

.blog-detail-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #222;
}

@media (max-width: 600px) {
  .blog-blok-img-links,
  .blog-blok-img-rechts { flex-direction: column; }
  .blog-detail-hero-wrap { margin-top: 80px; }
}





[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.shop-card--uitverkocht[data-reveal].is-visible { opacity: 0.6; }


.mf-btn:active, .ev-btn:active, .shop-card-btn:active,
.mf-contact__submit:active, .newsletter-form button:active,
.wagen-afrekenen-btn:active, .product-in-winkelmand:active,
.bevestiging-btn:active, .co-btn-volgende:active {
  transform: scale(.97);
}


.mf-pagehero {
  padding: 150px 24px 64px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mf-pagehero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.mf-pagehero__eyebrow .ref { color: var(--accent); }
.mf-pagehero h1 {
  font-size: clamp(40px, 8vw, 72px);
  text-transform: uppercase;
  line-height: .95;
}
.mf-pagehero__sub {
  margin: 20px auto 0;
  max-width: 52ch;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  font-size: 17px;
}


.mf-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding: 14px 24px;
  list-style: none;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}
.mf-trust li, .mf-trust span { display: flex; align-items: center; gap: 8px; }
.mf-trust li::before, .mf-trust span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.mf-trust--product {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 22px;
}


.tjb-statements {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(70px, 12vh, 130px) 24px;
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 12vh, 120px);
}
.tjb-state:not(.tjb-state--finale) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 60px);
}
.tjb-state__text { min-width: 0; }
.tjb-state h2 {
  font-size: clamp(34px, 6.5vw, 66px);
  text-transform: uppercase;
  line-height: .98;
  margin-bottom: 16px;
}
.tjb-state p {
  max-width: 58ch;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  font-size: 17px;
}
.tjb-state:not(.tjb-state--finale) p { margin-bottom: 0; }
.tjb-state--finale { text-align: left; padding-top: 8px; }
.tjb-state--finale h2 { font-size: clamp(38px, 7.5vw, 80px); }
.tjb-state--finale h2 .accent { color: var(--accent); }
.tjb-state--finale p { margin-bottom: 28px; }


.mf-eventteaser {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.mf-eventteaser__bg {
  position: absolute;
  inset: 0;
  background: #202020 center/cover no-repeat;
  filter: saturate(.7) brightness(.8);
}
.mf-eventteaser__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.15) 100%);
}
.mf-eventteaser__content {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.mf-eventteaser__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.mf-eventteaser h3 {
  font-size: clamp(24px, 4vw, 38px);
  text-transform: uppercase;
  line-height: 1;
}
.mf-eventteaser__meta {
  margin-top: 8px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}


.event-concepts {
  padding: clamp(80px, 12vh, 140px) 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-top: 1px solid var(--w12);
  background: var(--bg);
}
.event-concepts-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.event-concepts-head {
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: -16px;
}
.event-concepts-head__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-concepts-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.event-concepts-more:hover {
  background: var(--accent);
  color: #08222e;
  transform: translateY(-2px);
}
.event-concepts-more .arrow { display: inline-block; transition: transform .25s ease; }
.event-concepts-more:hover .arrow { transform: translateX(4px); }
.event-concepts-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.event-concepts-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  color: #fff;
}


.ev-past-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 24px;
}
.ev-past {
  background: var(--card-bg);
  border: 1px solid var(--w12);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ev-past__photo {
  width: 100%;
  height: 210px;
  background: #202020 center center / cover no-repeat;
}
.ev-past__body { padding: 24px 26px 28px; }
.ev-past__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted); 
  margin-bottom: 10px;
}
.ev-past__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 10px;
}
.ev-past__meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.ev-past__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
}
@media (max-width: 720px) {
  .ev-past-grid { grid-template-columns: 1fr; }
}


.ev1 {
  width: 100%;
  position: relative;
  height: 360px;
  overflow: hidden;
}
.ev1__photo {
  position: absolute;
  inset: 0;
  background: url('assets/fotos/train-je-body.webp?v=2') center center / cover no-repeat;
}
.ev1__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.15) 100%);
}
.ev1__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 32px 36px;
  gap: 24px;
}
.ev1__left { display: flex; flex-direction: column; gap: 8px; }
.ev1__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ev1__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.0;
  margin: 0;
}
.ev1__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}
.ev1__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.ev1__meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: right;
  line-height: 1.6;
}
.ev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #191919;
  background: var(--accent);
  padding: 12px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: opacity .2s ease, transform .2s ease;
}
.ev-btn:hover { opacity: .88; transform: translateY(-1px); }
.ev-btn .arrow { display: inline-block; transition: transform .25s ease; }
.ev-btn:hover .arrow { transform: translateX(4px); }
.ev3 .ev-btn, .ev4 .ev-btn { align-self: flex-start; }


.ev3 {
  width: 100%;
  height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  border-top: 1px solid var(--w12);
  border-bottom: 1px solid var(--w12);
}
.ev3__photo {
  background: url('assets/fotos/train-je-body.webp?v=2') center center / cover no-repeat;
  position: relative;
}
.ev3__text {
  background: #0d0d0d;
  border-left: 2px solid var(--accent);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ev3__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.ev3__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 12px;
}
.ev3__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.ev3__bottom { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.ev3__meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w65);
  line-height: 1.6;
}


.ev4 {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-top: 1px solid var(--w12);
  border-bottom: 1px solid var(--w12);
  background: #0d0d0d;
}
.ev4__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/fotos/train-je-body.webp?v=2') center center / cover no-repeat;
}
.ev4__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(13,13,13,0.94) 0%,
    rgba(13,13,13,0.85) 32%,
    rgba(0,0,0,0.5) 66%,
    rgba(0,0,0,0.32) 100%);
}
.ev4__left {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.ev4__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ev4__countdown {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.ev4__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ev4__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  color: #fff;
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}
.ev4__unit-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w65);
}
.ev4__sep {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--accent);
  line-height: 1.15;
  padding-bottom: 14px;
}
.ev4__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 4px;
}
.ev4__meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.ev4__right {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.ev4__desc {
  position: absolute;
  bottom: 32px;
  left: 20px;
  right: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .ev1 { height: 300px; }
  .ev1__content { flex-direction: column; align-items: flex-start; padding: 24px; }
  .ev1__right { align-items: flex-start; }
  .ev3 { grid-template-columns: 1fr; height: auto; }
  .ev3__photo { height: 180px; }
  .ev4 { grid-template-columns: 1fr; height: auto; }
  .ev4__bg-overlay {
    background: linear-gradient(to bottom,
      rgba(13,13,13,0.92) 0%,
      rgba(13,13,13,0.78) 55%,
      rgba(0,0,0,0.45) 100%);
  }
  .ev4__left { padding: 28px 24px; }
  .ev4__right { height: 180px; }
  .ev4__desc { display: none; }
}


.mf-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s ease;
}
.mf-featured:hover { border-color: rgba(104,204,255,.35); }
.mf-featured__foto {
  min-height: 280px;
  background: #202020 center/cover no-repeat;
}
.mf-featured__tekst {
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.mf-featured__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.mf-featured__tekst h2 {
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  line-height: 1.05;
}
.mf-featured__tekst p { color: rgba(255,255,255,.65); font-weight: 300; }
.mf-featured__link {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.mf-featured:hover .mf-featured__link { color: var(--accent); }
@media (max-width: 760px) { .mf-featured { grid-template-columns: 1fr; } }


.mf-pijlers {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 640px;
}
.mf-pijler { display: flex; gap: 18px; align-items: baseline; }
.mf-pijler__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .08em;
  flex: none;
}
.mf-pijler__tekst { color: rgba(255,255,255,.65); font-weight: 300; }
.mf-pijler__tekst strong { color: #fff; font-weight: 600; }


.mf-sample {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 760px;
}
.mf-sample__stap { display: grid; grid-template-columns: 110px 1fr; gap: 18px; }
.mf-sample__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
}
.mf-sample__stap p { color: rgba(255,255,255,.8); font-weight: 300; }
.mf-sample__stap .vers {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 1.55;
}
.mf-sample__stap .vers-ref {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
@media (max-width: 560px) { .mf-sample__stap { grid-template-columns: 1fr; gap: 6px; } }


.mf-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.mf-fact { background: var(--bg); padding: 22px 22px 24px; }
.mf-fact__waarde {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.mf-fact__label { font-size: 13.5px; color: rgba(255,255,255,.55); font-weight: 300; }


.mf-reviews {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: start;
}
.mf-reviews__kolom { display: flex; flex-direction: column; gap: 20px; }
.mf-review {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 26px 26px 24px;
  margin: 0;
  transition: border-color .25s ease;
  scroll-margin-top: 96px;
}
.mf-review:hover { border-color: rgba(104,204,255,.3); }
.mf-review__quote {
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
}
.mf-review--groot { padding: clamp(28px, 4vw, 44px); }
.mf-review--groot .mf-review__quote { font-size: clamp(17px, 2vw, 21px); }
.mf-review footer {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.mf-review__foto {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(104,204,255,.35), rgba(104,204,255,.08));
  border: 1px solid rgba(255,255,255,.12);
}
.mf-review__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mf-review__persoon {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mf-review__naam {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mf-review__rol { font-size: 12.5px; color: rgba(255,255,255,.5); }
.mf-review__meer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: gap .2s ease, opacity .2s ease;
}
.mf-review__meer .arrow { display: inline-block; transition: transform .25s ease; }
.mf-review__meer:hover { opacity: .85; }
.mf-review__meer:hover .arrow { transform: translateX(4px); }
@media (max-width: 820px) { .mf-reviews { grid-template-columns: 1fr; } }


.mf-faq { max-width: 680px; display: flex; flex-direction: column; }
.mf-faq details { border-bottom: 1px solid rgba(255,255,255,.1); }
.mf-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.mf-faq summary::-webkit-details-marker { display: none; }
.mf-faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  transition: transform .25s var(--ease-out);
}
.mf-faq details[open] summary::after { transform: rotate(45deg); }
.mf-faq summary:hover { color: var(--accent); }
.mf-faq details p {
  padding: 0 2px 22px;
  max-width: 60ch;
  color: rgba(255,255,255,.6);
  font-weight: 300;
}

/* Smooth open/dicht. Het paneel wordt door main.js om het antwoord heen
   gezet — zonder JS blijft <details> gewoon native werken. */
.mf-faq__panel {
  height: 0;
  overflow: hidden;
  transition: height var(--faq-duur, .42s) var(--ease-out);
}
.mf-faq details[open] > .mf-faq__panel { height: auto; }

@media (prefers-reduced-motion: reduce) {
  .mf-faq__panel { transition: none; }
}

/* Gecentreerde variant — voor gebruik binnen de missie-sectie */
.mf-faq--center { margin: 0 auto; }
.mf-faq--center summary { justify-content: center; text-align: center; }
.mf-faq--center details p { margin: 0 auto; text-align: center; }


a.shop-card { text-decoration: none; color: inherit; }


@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .mf-btn:active, .ev-btn:active, .shop-card-btn:active,
  .mf-contact__submit:active, .newsletter-form button:active,
  .wagen-afrekenen-btn:active, .product-in-winkelmand:active,
  .bevestiging-btn:active, .co-btn-volgende:active { transform: none; }
}


.tjb-state__icon {
  display: block;
  flex-shrink: 0;
  color: var(--accent);
}
.tjb-state__icon svg {
  width: clamp(40px, 6vw, 56px);
  height: clamp(40px, 6vw, 56px);
  display: block;
}
@media (max-width: 600px) {
  .tjb-state__icon svg { width: 36px; height: 36px; }
}


.nl2 {
  position: relative;
  background: #141414;
  padding: clamp(120px, 15vh, 400px) 5vw;
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
}


.nl2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}


.nl2__layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 3vh, 28px);
  transition: opacity 0.45s ease;
}

.nl2__layer--success {
  opacity: 0;
}

.nl2__row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.nl2__track {
  display: flex;
  flex: none;
  gap: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
  will-change: transform;
}

.nl2__row--left .nl2__track {
  animation: nl2Marquee 60s linear infinite;
}

.nl2__row--right .nl2__track {
  animation: nl2Marquee 60s linear infinite reverse;
}

.nl2__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.05);
}

.nl2__chip svg {
  width: clamp(15px, 1.6vw, 20px);
  height: clamp(15px, 1.6vw, 20px);
  flex: none;
  color: rgba(104, 204, 255, 0.28);
}

@keyframes nl2Marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .nl2__row--left .nl2__track,
  .nl2__row--right .nl2__track {
    animation: none;
  }
}

.nl2__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.nl2__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 600;
}

.nl2__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
}

.nl2__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 32px;
  max-width: 520px;
}

.nl2__form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.nl2__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nl2__input {
  flex: 1 1 200px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.nl2__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.nl2__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

.nl2__btn {
  flex: 0 0 auto;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px 30px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}

.nl2__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}


.nl2__input--error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}


.nl2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nl2__btn--done {
  background: #22c55e;
  color: #062b13;
  cursor: default;
  animation: nl2BtnPop 0.45s var(--ease-out);
}

.nl2__btn--done:hover {
  filter: none;
  transform: none;
}

@keyframes nl2BtnPop {
  0%   { transform: scale(0.9); }
  55%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}


.nl2__layer--expect .nl2__track {
  transition: translate 0.5s cubic-bezier(0.5, 0, 0.9, 0); 
}
.nl2__layer--success .nl2__track {
  transition: translate 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}


.nl2__layer--success .nl2__row--left .nl2__track  { translate: 90% 0; }
.nl2__layer--success .nl2__row--right .nl2__track { translate: -90% 0; }


.nl2__bg--warp .nl2__layer--expect { opacity: 0; }
.nl2__bg--warp .nl2__layer--success { opacity: 1; }
.nl2__bg--warp .nl2__layer--expect .nl2__row--left .nl2__track  { translate: -90% 0; }
.nl2__bg--warp .nl2__layer--expect .nl2__row--right .nl2__track { translate: 90% 0; }
.nl2__bg--warp .nl2__layer--success .nl2__track { translate: 0 0; }


.nl2__layer--success .nl2__chip {
  color: rgba(255, 255, 255, 0.12);
}
.nl2__layer--success .nl2__chip svg {
  color: #22c55e;
}

@media (prefers-reduced-motion: reduce) {
  .nl2__layer,
  .nl2__layer--expect .nl2__track,
  .nl2__layer--success .nl2__track {
    transition: none;
  }
}


.nl2__confirm {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  animation: nl2ConfirmIn 0.5s var(--ease-out) both;
}

.nl2__confirm--error {
  color: #f87171;
}

.nl2__confirm-mail {
  color: #22c55e;
  font-weight: 600;
  word-break: break-word;
}

.nl2__resend {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nl2__resend:hover { filter: brightness(1.1); }
.nl2__resend:disabled { color: rgba(255, 255, 255, 0.4); cursor: default; text-decoration: none; }

@keyframes nl2ConfirmIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .nl2__form {
    flex-direction: column;
  }
  .nl2__input,
  .nl2__btn {
    width: 100%;
    flex: 1 1 auto;
  }
}



.mf-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  padding: 14px 18px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.4;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mf-toast.is-visible { opacity: 1; transform: translateY(0); }
.mf-toast__icon { color: var(--accent); flex-shrink: 0; display: inline-flex; }
.mf-toast strong { font-weight: 700; }
@media (max-width: 480px) {
  .mf-toast { right: 16px; left: 16px; bottom: 16px; max-width: none; }
}


.shop-variant-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.shop-variant-overlay.is-open { opacity: 1; pointer-events: auto; }
.shop-variant-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 26px 24px 24px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(14px);
  transition: transform 0.25s ease;
}
.shop-variant-overlay.is-open .shop-variant-modal { transform: translateY(0); }
.shop-variant-sluit {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  padding: 6px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.shop-variant-sluit:hover { color: var(--white); }
.shop-variant-titel {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 4px;
}
.shop-variant-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 18px;
}
.shop-variant-opties { display: flex; flex-direction: column; gap: 10px; }
.shop-variant-optie {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.shop-variant-optie:hover { border-color: var(--accent); background: rgba(104, 204, 255, 0.08); }
.shop-variant-optie img,
.shop-variant-optie-nofoto {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}
.shop-variant-optie-naam { flex: 1; font-weight: 600; }
.shop-variant-optie-prijs { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.shop-variant-optie.is-uitverkocht {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.shop-variant-optie.is-uitverkocht:hover { border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.03); }

.site-footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(26px, 3.5vw, 38px) clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
}
.site-footer__nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover { color: var(--accent); }

.site-footer__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__socials { display: flex; gap: 6px; }

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.site-footer__social svg { width: 22px; height: 22px; }
.site-footer__social:hover {
  color: var(--accent);
  background: rgba(104, 204, 255, 0.12);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    padding: 32px 20px;
  }
  .site-footer__nav {
    justify-content: center;
    gap: 12px 22px;
  }
  .site-footer__right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .site-footer__socials { gap: 4px; }
  .site-footer__copy { white-space: normal; }
}


.mf-textpage {
  background: var(--bg);
  color: var(--white);
  padding: clamp(110px, 15vh, 180px) clamp(20px, 3vw, 48px) clamp(80px, 12vh, 140px);
}
.mf-textpage__inner {
  max-width: 900px;
  margin: 0 auto;
}
.mf-textpage__eyebrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.mf-textpage__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
  font-size: clamp(48px, 8.5vw, 88px);
  margin: 0 0 clamp(30px, 4vw, 48px);
}
.mf-textpage__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 clamp(30px, 4vw, 44px);
}
.mf-textpage__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(23px, 2.6vw, 30px);
  letter-spacing: -0.005em;
  margin: clamp(38px, 5vw, 56px) 0 16px;
}
.mf-textpage__body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
  margin: 0 0 20px;
}
.mf-textpage__body a { color: var(--accent); text-decoration: none; }
.mf-textpage__body a:hover { text-decoration: underline; }


.mf-story {
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}


.mf-story-hero {
  text-align: center;
  padding: clamp(120px, 16vh, 200px) 24px clamp(60px, 8vh, 100px);
}
.mf-story-hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.mf-story-hero__naam {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 22px;
}
.mf-story-hero__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}


.mf-story-verhaal {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.mf-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(80px, 12vh, 160px);
}

.mf-story-block--reversed .mf-story-block__image { order: 2; }
.mf-story-block--reversed .mf-story-block__text { order: 1; }

.mf-story-block__image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: clamp(350px, 45vw, 520px);
}
.mf-story-block__image img {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
  will-change: transform;
}

.mf-story-block__headline {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
}
.mf-story-block__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0;
}


.mf-story-block__text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out, ease-out), transform .7s var(--ease-out, ease-out);
}
.mf-story-block__text.visible {
  opacity: 1;
  transform: translateY(0);
}


.mf-story-cta {
  max-width: 1080px;
  margin: 0 auto clamp(80px, 10vh, 120px);
  padding: clamp(56px, 8vh, 96px) 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.mf-story-cta__tekst {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px;
}
.mf-story-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 12px 24px;
  transition: color .2s ease, border-color .2s ease;
}
.mf-story-cta__btn span { transition: transform .2s ease; }
.mf-story-cta__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.mf-story-cta__btn:hover span { transform: translateX(4px); }


@media (max-width: 720px) {
  .mf-story-block {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: clamp(56px, 9vh, 96px);
  }
  .mf-story-block__image,
  .mf-story-block--reversed .mf-story-block__image { order: 0; }
  .mf-story-block__text,
  .mf-story-block--reversed .mf-story-block__text { order: 1; }
  .mf-story-block__image { height: 260px; }
}


.mf-missie {
  position: relative;
  padding: clamp(120px, 16vh, 200px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg);
  transition: background-color 0.3s ease;
}
.mf-missie__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vh, 160px);
}
.mf-missie__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--accent);
  text-align: center;
  margin: 0 0 18px;
}
.mf-missie__title {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  font-size: clamp(30px, 5vw, 56px);
  color: #fff;
  text-align: center;
  margin: 0 0 32px;
}
.mf-missie__phase {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.mf-missie__phase.visible {
  opacity: 1;
  transform: translateY(0);
}
.mf-missie__phase--grond {
  opacity: 1;
  transform: none;
}
.mf-missie__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 22px;
}
.mf-missie__body:last-child { margin-bottom: 0; }
.mf-missie__body em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}
.mf-missie__pull {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.15;
  font-size: clamp(22px, 3.4vw, 38px);
  color: #fff;
  text-align: center;
  margin: 40px auto;
  max-width: 640px;
}
.mf-missie__finale {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.15;
  font-size: clamp(24px, 4vw, 46px);
  color: var(--accent);
  text-align: center;
  margin: 0 auto;
  max-width: 680px;
}
.mf-missie__image-wrap {
  position: relative;
  height: clamp(250px, 35vw, 420px);
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 28px;
}
.mf-missie__image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}


.mf-legal {
  background: var(--bg);
  color: var(--white);
  padding: clamp(110px, 15vh, 180px) clamp(20px, 3vw, 48px) clamp(80px, 12vh, 140px);
}
.mf-legal__inner { max-width: 1200px; margin: 0 auto; }
.mf-legal__eyebrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.mf-legal__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
  font-size: clamp(48px, 8.5vw, 88px);
  margin: 0 0 clamp(34px, 5vw, 52px);
}
.mf-legal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(34px, 5vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}
.mf-legal__tab {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.mf-legal__tab:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.mf-legal__tab.is-active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.mf-legal__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.mf-legal__sidebar {
  position: sticky;
  top: 84px;
}
.mf-legal__sidebar-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}
.mf-legal__sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.mf-legal__sidebar-nav a {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 14px;
  margin-left: -16px;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.mf-legal__sidebar-nav a:hover { color: var(--white); }
.mf-legal__sidebar-nav a.is-active {
  color: var(--white);
  border-left-color: var(--accent);
}

.mf-legal__doc { display: none; }
.mf-legal__doc.is-active { display: block; padding-bottom: 45vh; }
.mf-legal__updated {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 clamp(24px, 4vw, 36px);
}
.mf-legal__section { margin-bottom: clamp(30px, 4vw, 44px); scroll-margin-top: 84px; }
.mf-legal__section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.005em;
  margin: 0 0 14px;
}
.mf-legal__section p,
.mf-legal__section li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
  margin: 0 0 14px;
}
.mf-legal__section ul { margin: 0 0 14px; padding-left: 22px; }
.mf-legal__section li { margin-bottom: 7px; }
.mf-legal__section a { color: var(--accent); text-decoration: none; }
.mf-legal__section a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .mf-legal__body { grid-template-columns: 1fr; gap: 28px; }
  .mf-legal__sidebar { position: static; top: auto; }
  .mf-legal__sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .mf-legal__sidebar-nav a {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
  .mf-legal__sidebar-nav a.is-active { border-left: none; color: var(--accent); }
}


.mf-inkijk {
  background: var(--bg);
  padding: clamp(80px, 12vh, 140px) 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mf-inkijk__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vh, 56px);
}

.mf-inkijk__tekst {
  text-align: center;
  max-width: 560px;
}

.mf-inkijk__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.mf-inkijk__titel {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 36px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
}

.mf-inkijk__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

.mf-inkijk__boek-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mf-inkijk__boek {
  width: 100%;
}

.mf-inkijk__pagina {
  background: #fff;
}

.mf-inkijk__pagina img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.mf-inkijk__boek-wrap .stf__parent {
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  border-radius: 4px;
}

.mf-inkijk__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mf-inkijk__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}

.mf-inkijk__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(104,204,255,0.08);
}

.mf-inkijk__paginering {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  min-width: 40px;
  text-align: center;
}

.mf-inkijk__btn-bestel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #191919;
  background: var(--accent);
  padding: 13px 26px;
  border-radius: 6px;
  transition: opacity .2s ease, transform .2s ease;
}

.mf-inkijk__btn-bestel:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.mf-inkijk__btn-bestel .arrow {
  display: inline-block;
  transition: transform .25s ease;
}

.mf-inkijk__btn-bestel:hover .arrow {
  transform: translateX(4px);
}

.mf-inkijk__cta {
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════════════
   BUTTONSYSTEEM — één systeem voor de hele site
   ──────────────────────────────────────────────────────────────────────
   PRIMARY   = accent gevuld   (referentie: nieuwsbrief-knop  .nl2__btn)
   SECONDARY = outline         (referentie: "Bekijk meer blogs")
   Losse links en de terug-knopjes bij blogs houden hun eigen stijl.
   UITZONDERING: .half__cta (2 knoppen homepage-hero) blijft ongewijzigd.
   Dit blok staat bewust onderaan, zodat het de oudere losse
   buttonregels hierboven overschrijft.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --btn-radius:  10px;                            /* één radius voor alles */
  --btn-pad-y:   14px;
  --btn-pad-x:   28px;
  --btn-size:    .92rem;
  --btn-track:   .06em;
  --btn-lift:    -3px;                            /* hoogte hover-lift     */
  --btn-dur:     .5s;                             /* duur hover-lift       */
  --btn-ease:    cubic-bezier(.22, 1, .36, 1);    /* smooth uitlopend      */
  --btn-glow-dur: .55s;                           /* duur "zonsopkomst"    */

  /* De "zonsopkomst" op hover van een primary button.
     Bewust in px i.p.v. %: zo houdt de gloed dezelfde ronde vorm op een
     smalle én op een volle-breedte knop. Het middelpunt ligt ruim ónder de
     knop, waardoor je alleen de bovenste ronding van de ellips ziet. */
  --btn-glow-color: 135, 234, 255;                /* #87EAFF               */
  --btn-glow-bg: radial-gradient(
    88px 78px at 50% calc(100% + 36px),
    rgb(var(--btn-glow-color))        0%,
    rgb(var(--btn-glow-color))       34%,
    rgba(var(--btn-glow-color), .55) 52%,
    rgba(var(--btn-glow-color), .22) 66%,
    rgba(var(--btn-glow-color), 0)   80%
  );
}

/* ── Gedeelde basis ─────────────────────────────────────────────────── */
.ev-btn,
.mf-btn,
.nl2__btn,
.book-btn,
.book-hero__cta,
.ev2-card__btn,
.mf-contact__submit,
.mf-inkijk__btn-bestel,
.pdp-cart-btn,
.wagen-verder-btn,
.wagen-afrekenen-btn,
.checkout-volgende-btn,
.checkout-betalen-btn,
.bevestiging-btn,
.mf-story-cta__btn,
.checkout-terug-btn,
.event-concepts-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  font-family: var(--font-display);
  font-size: var(--btn-size);
  font-weight: 700;
  letter-spacing: var(--btn-track);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  position: relative;
  isolation: isolate;                   /* houdt de glow onder de tekst */
}

/* ── PRIMARY ────────────────────────────────────────────────────────── */
.ev-btn,
.mf-btn,
.nl2__btn,
.book-btn,
.book-hero__cta,
.ev2-card__btn,
.mf-contact__submit,
.mf-inkijk__btn-bestel,
.pdp-cart-btn,
.wagen-verder-btn,
.wagen-afrekenen-btn,
.checkout-volgende-btn,
.checkout-betalen-btn,
.bevestiging-btn {
  background: var(--accent);
  color: #101010;
  border: none;
  transition: transform var(--btn-dur) var(--btn-ease);
}

/* De "zonsopkomst": witte gradient die vanaf de onderkant opkomt.
   Ligt op z-index -1, dus onder de tekst maar boven de accentkleur. */
.ev-btn::after,
.mf-btn::after,
.nl2__btn::after,
.book-btn::after,
.book-hero__cta::after,
.ev2-card__btn::after,
.mf-contact__submit::after,
.mf-inkijk__btn-bestel::after,
.pdp-cart-btn::after,
.wagen-verder-btn::after,
.wagen-afrekenen-btn::after,
.checkout-volgende-btn::after,
.checkout-betalen-btn::after,
.bevestiging-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: var(--btn-glow-bg);
  transition: opacity var(--btn-glow-dur) var(--btn-ease);
}

/* Hover: knop blijft dezelfde kleur, alleen de gradient komt op + lift. */
.ev-btn:hover,
.mf-btn:hover,
.nl2__btn:hover,
.book-btn:hover,
.book-hero__cta:hover,
.ev2-card__btn:hover,
.mf-contact__submit:hover,
.mf-inkijk__btn-bestel:hover,
.pdp-cart-btn:hover,
.wagen-verder-btn:hover,
.wagen-afrekenen-btn:hover,
.checkout-volgende-btn:hover,
.checkout-betalen-btn:hover,
.bevestiging-btn:hover {
  transform: translateY(var(--btn-lift));
  opacity: 1;
  filter: none;
}

.ev-btn:hover::after,
.mf-btn:hover::after,
.nl2__btn:hover::after,
.book-btn:hover::after,
.book-hero__cta:hover::after,
.ev2-card__btn:hover::after,
.mf-contact__submit:hover::after,
.mf-inkijk__btn-bestel:hover::after,
.pdp-cart-btn:hover::after,
.wagen-verder-btn:hover::after,
.wagen-afrekenen-btn:hover::after,
.checkout-volgende-btn:hover::after,
.checkout-betalen-btn:hover::after,
.bevestiging-btn:hover::after { opacity: 1; }

/* ── SECONDARY ──────────────────────────────────────────────────────── */
.mf-story-cta__btn,
.checkout-terug-btn,
.bevestiging-btn--ghost,
.event-concepts-more {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  /* 1px minder padding, zodat de rand de knop niet 2px hoger maakt
     dan een primary die ernaast staat */
  padding: calc(var(--btn-pad-y) - 1px) calc(var(--btn-pad-x) - 1px);
  transition: color .25s var(--btn-ease),
              border-color .25s var(--btn-ease),
              background .25s var(--btn-ease);
}
.mf-story-cta__btn::after,
.checkout-terug-btn::after,
.bevestiging-btn--ghost::after,
.event-concepts-more::after { display: none; }

.mf-story-cta__btn:hover,
.checkout-terug-btn:hover,
.bevestiging-btn--ghost:hover,
.event-concepts-more:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(104, 204, 255, .07);
  transform: none;
  opacity: 1;
}

/* ── Pijltjes blijven doen wat ze deden ─────────────────────────────── */
.mf-btn .arrow,
.nl2__btn .arrow,
.book-btn .arrow,
.book-hero__cta .arrow,
.ev2-card__btn span,
.mf-inkijk__btn-bestel .arrow,
.mf-story-cta__btn span,
.ev-btn .arrow,
.event-concepts-more .arrow {
  display: inline-block;
  transition: transform .3s var(--btn-ease);
}
.mf-btn:hover .arrow,
.nl2__btn:hover .arrow,
.book-btn:hover .arrow,
.book-hero__cta:hover .arrow,
.ev2-card__btn:hover span,
.mf-inkijk__btn-bestel:hover .arrow,
.mf-story-cta__btn:hover span,
.ev-btn:hover .arrow,
.event-concepts-more:hover .arrow { transform: translateX(4px); }

/* ── Uitzonderingen op breedte / vorm die moeten blijven ────────────── */
.mf-contact__submit,
.wagen-afrekenen-btn,
.checkout-volgende-btn { width: 100%; }
.pdp-cart-btn        { flex: 1; height: 54px; }   /* gelijk aan de aantal-stepper */
.checkout-betalen-btn { flex: 1; }
.checkout-terug-btn   { flex-shrink: 0; }

/* ── Disabled ───────────────────────────────────────────────────────── */
.checkout-betalen-btn:disabled {
  background: #2a2a2a;
  color: rgba(255, 255, 255, .4);
  cursor: not-allowed;
  transform: none;
}
.checkout-betalen-btn:disabled:hover { transform: none; }
.checkout-betalen-btn:disabled::after { opacity: 0 !important; }

/* Nieuwsbrief-successtand houdt zijn eigen groene stijl */
.nl2__btn--done         { background: #22c55e; color: #062b13; cursor: default; }
.nl2__btn--done:hover   { transform: none; }
.nl2__btn--done::after  { display: none; }

/* ── Focus ──────────────────────────────────────────────────────────── */
.ev-btn:focus-visible,
.mf-btn:focus-visible,
.nl2__btn:focus-visible,
.book-btn:focus-visible,
.book-hero__cta:focus-visible,
.ev2-card__btn:focus-visible,
.mf-contact__submit:focus-visible,
.mf-inkijk__btn-bestel:focus-visible,
.pdp-cart-btn:focus-visible,
.wagen-verder-btn:focus-visible,
.wagen-afrekenen-btn:focus-visible,
.checkout-volgende-btn:focus-visible,
.checkout-betalen-btn:focus-visible,
.bevestiging-btn:focus-visible,
.mf-story-cta__btn:focus-visible,
.checkout-terug-btn:focus-visible,
.event-concepts-more:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Klik-feedback ──────────────────────────────────────────────────── */
.ev-btn:active,
.mf-btn:active,
.nl2__btn:active,
.book-btn:active,
.book-hero__cta:active,
.ev2-card__btn:active,
.mf-contact__submit:active,
.mf-inkijk__btn-bestel:active,
.pdp-cart-btn:active,
.wagen-verder-btn:active,
.wagen-afrekenen-btn:active,
.checkout-volgende-btn:active,
.checkout-betalen-btn:active,
.bevestiging-btn:active { transform: translateY(-1px) scale(.985); }

/* ── Touch: geen hangende hover-stand op mobiel ─────────────────────── */
@media (hover: none) {
  .ev-btn:hover,
  .mf-btn:hover,
  .nl2__btn:hover,
  .book-btn:hover,
  .book-hero__cta:hover,
  .ev2-card__btn:hover,
  .mf-contact__submit:hover,
  .mf-inkijk__btn-bestel:hover,
  .pdp-cart-btn:hover,
  .wagen-verder-btn:hover,
  .wagen-afrekenen-btn:hover,
  .checkout-volgende-btn:hover,
  .checkout-betalen-btn:hover,
  .bevestiging-btn:hover { transform: none; }
  .ev-btn:hover::after,
  .mf-btn:hover::after,
  .nl2__btn:hover::after,
  .book-btn:hover::after,
  .book-hero__cta:hover::after,
  .ev2-card__btn:hover::after,
  .mf-contact__submit:hover::after,
  .mf-inkijk__btn-bestel:hover::after,
  .pdp-cart-btn:hover::after,
  .wagen-verder-btn:hover::after,
  .wagen-afrekenen-btn:hover::after,
  .checkout-volgende-btn:hover::after,
  .checkout-betalen-btn:hover::after,
  .bevestiging-btn:hover::after { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ev-btn, .mf-btn, .nl2__btn, .book-btn, .book-hero__cta, .ev2-card__btn,
  .mf-contact__submit, .mf-inkijk__btn-bestel, .pdp-cart-btn,
  .wagen-verder-btn, .wagen-afrekenen-btn, .checkout-volgende-btn,
  .checkout-betalen-btn, .bevestiging-btn,
  .mf-story-cta__btn, .checkout-terug-btn, .event-concepts-more { transition: none; }
  .ev-btn:hover, .mf-btn:hover, .nl2__btn:hover, .book-btn:hover, .book-hero__cta:hover,
  .ev2-card__btn:hover, .mf-contact__submit:hover, .mf-inkijk__btn-bestel:hover,
  .pdp-cart-btn:hover, .wagen-verder-btn:hover, .wagen-afrekenen-btn:hover,
  .checkout-volgende-btn:hover, .checkout-betalen-btn:hover,
  .bevestiging-btn:hover { transform: none; }
}

@media (max-width: 600px) {
  .nl2__btn { width: 100%; flex: 1 1 auto; }
}

/* ── Generieke .btn / .btn.primary / .btn.secondary in hetzelfde systeem ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  font-family: var(--font-display);
  font-size: var(--btn-size);
  font-weight: 700;
  letter-spacing: var(--btn-track);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  background: var(--accent);
  color: #101010;
  border: none;
  transition: transform var(--btn-dur) var(--btn-ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: var(--btn-glow-bg);
  transition: opacity var(--btn-glow-dur) var(--btn-ease);
}
.btn:hover { transform: translateY(var(--btn-lift)); }
.btn:hover::after { opacity: 1; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: calc(var(--btn-pad-y) - 1px) calc(var(--btn-pad-x) - 1px);
  transition: color .25s var(--btn-ease),
              border-color .25s var(--btn-ease),
              background .25s var(--btn-ease);
}
.btn.secondary::after { display: none; }
.btn.secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(104, 204, 255, .07);
  transform: none;
}

@media (hover: none) {
  .btn:hover { transform: none; }
  .btn:hover::after { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
