/* ==========================================================================
   Beypilic widget design system
   Brand: Halal frozen food (clean · premium · trustworthy)
   Sub-brands: Beypilic (chicken/beef/veg) · Tok-Yat (dough) · Okyanus (seafood)
   ========================================================================== */

:root {
  /* Core brand palette */
  --bp-primary: #05172C;          /* deep navy — premium, trust */
  --bp-primary-2: #0A2444;         /* lighter navy */
  --bp-accent: #7EB23D;            /* halal-fresh green */
  --bp-accent-2: #6FA02E;
  --bp-accent-soft: #EAF3DA;
  --bp-highlight: #FFBC7D;         /* warm peach (premium accent) */
  --bp-highlight-2: #F89E4A;
  --bp-gold: #D4A24C;              /* premium gold */
  --bp-halal-red: #C8261C;         /* halal-cert red */
  --bp-body: #2A3441;
  --bp-muted: #6B7480;
  --bp-line: #E8E5DF;
  --bp-surface: #FFFFFF;
  --bp-surface-2: #FDF8F3;         /* cream */
  --bp-surface-3: #F4F1EC;
  --bp-shadow-sm: 0 2px 8px rgba(5, 23, 44, 0.06);
  --bp-shadow-md: 0 12px 32px rgba(5, 23, 44, 0.10);
  --bp-shadow-lg: 0 24px 60px rgba(5, 23, 44, 0.14);
  --bp-shadow-glow: 0 0 0 6px rgba(126, 178, 61, 0.18);

  /* Brand tints */
  --bp-brand-beypilic: #C8261C;
  --bp-brand-tokyat: #D4A24C;
  --bp-brand-okyanus: #2A6FA8;

  /* Radii */
  --bp-r-sm: 10px;
  --bp-r-md: 18px;
  --bp-r-lg: 28px;
  --bp-r-full: 999px;

  /* Layout */
  --bp-max: 1240px;
  --bp-gap: 24px;

  /* Typography */
  --bp-font-display: 'Viga', 'Segoe UI', system-ui, sans-serif;
  --bp-font-body: 'PT Sans', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
.bp-section {
  font-family: var(--bp-font-body);
  color: var(--bp-body);
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  /* Defensive: keep absolute / negative-positioned children from causing
     horizontal page-scroll on narrow viewports. */
  overflow-x: clip;
}
.bp-section *,
.bp-section *::before,
.bp-section *::after { box-sizing: border-box; }

/* Fluid images by default — also protects when authors paste raw <img> tags */
.bp-section img,
.bp-section video,
.bp-section iframe { max-width: 100%; }

.bp-section h1,
.bp-section h2,
.bp-section h3,
.bp-section h4 {
  font-family: var(--bp-font-display);
  font-weight: 400;
  color: var(--bp-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
.bp-section h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.bp-section h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.bp-section h3 { font-size: 1.25rem; }
.bp-section p { margin: 0 0 1em; }
.bp-section a { color: var(--bp-accent-2); text-decoration: none; transition: color .18s; }
.bp-section a:hover { color: var(--bp-primary); }

.bp-container { max-width: var(--bp-max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.bp-section--pad { padding: clamp(48px, 7vw, 96px) 0; }
.bp-section--cream { background: var(--bp-surface-2); }
.bp-section--dark { background: var(--bp-primary); color: #E7EAF0; }
.bp-section--dark h2,
.bp-section--dark h3 { color: #fff; }

/* Highlight word inside headings */
.bp-hl { color: var(--bp-accent); position: relative; }
.bp-hl--peach { color: var(--bp-highlight-2); }
.bp-hl--gold { color: var(--bp-gold); }
.bp-hl-line { display: inline-block; }

.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--bp-accent-2);
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 0;
  line-height: 1.2;
}
.bp-eyebrow--gold    { color: var(--bp-gold); }
.bp-eyebrow--red     { color: var(--bp-halal-red); }
/* For sections with dark backgrounds (word-klant, aanbieding, footer) */
.bp-eyebrow--on-dark { color: var(--bp-accent); }
.bp-eyebrow .bp-ico {
  color: currentColor;
  width: 18px;
  height: 18px;
}

/* Mega menu column titles share the eyebrow visual language */
.bp-mega__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--bp-accent-2);
  margin: 0 0 14px;
  line-height: 1.2;
}
.bp-mega__title .bp-ico { color: currentColor; width: 14px; height: 14px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.96rem;
  border: 2px solid transparent;
  border-radius: var(--bp-r-full);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.bp-btn .bp-ico { width: 18px; height: 18px; transition: transform .25s; }
.bp-btn:hover { transform: translateY(-2px); }
.bp-btn:hover .bp-ico--arrow { transform: translateX(3px); }

.bp-btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bp-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(126, 178, 61, 0.35);
}
/* Fill effect: dark navy fills the button from left to right on hover */
.bp-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0A2444;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.3, .8, .3, 1);
  z-index: -1;
}
.bp-btn--primary:hover {
  color: #fff;
  border-color: #7EB23D;
  box-shadow: none;
}
.bp-btn--primary:hover::before { transform: scaleX(1); }

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

.bp-btn--ghost {
  background: transparent;
  color: var(--bp-primary);
  border-color: rgba(5, 23, 44, 0.16);
}
.bp-btn--ghost:hover { border-color: var(--bp-primary); background: rgba(5, 23, 44, 0.04); }

.bp-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.bp-btn--ghost-light:hover { background: #fff; color: var(--bp-primary); }

.bp-btn--pill-icon {
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
}
.bp-btn--pill-icon .bp-ico { width: 22px; height: 22px; }

/* ==========================================================================
   Icons
   ========================================================================== */
.bp-ico { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.bp-ico-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--bp-r-md);
  background: var(--bp-accent-soft);
  color: var(--bp-accent-2);
}
.bp-ico-tile--lg { width: 64px; height: 64px; border-radius: 20px; }
.bp-ico-tile--peach { background: rgba(248, 158, 74, 0.14); color: var(--bp-highlight-2); }
.bp-ico-tile--navy { background: var(--bp-primary); color: var(--bp-accent); }
.bp-ico-tile--gold { background: rgba(212, 162, 76, 0.16); color: var(--bp-gold); }
.bp-ico-tile--red { background: rgba(200, 38, 28, 0.10); color: var(--bp-halal-red); }
.bp-ico-tile .bp-ico { width: 26px; height: 26px; }
.bp-ico-tile--lg .bp-ico { width: 32px; height: 32px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.bp-header {
  position: relative;
  z-index: 100;
  background: transparent;
}
.bp-header__util {
  background: transparent;
  color: var(--bp-primary);
  font-size: 0.82rem;
}
.bp-header__util-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
  gap: 20px;
  background: transparent;
}
.bp-header__util a { color: inherit; }
.bp-header__util a:hover { color: var(--bp-accent-2); }
.bp-header__util-left,
.bp-header__util-right { display: flex; align-items: center; gap: 18px; }
/* Push the left util-group all the way to the right (sits beside util-right) */
.bp-header__util-left { margin-left: auto; }
.bp-header__util-item { display: inline-flex; align-items: center; gap: 8px; }
.bp-header__util .bp-ico { width: 14px; height: 14px; color: var(--bp-accent-2); }
.bp-header__socials { display: flex; gap: 8px; }
.bp-header__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(5, 23, 44, 0.06);
  color: var(--bp-primary);
  transition: background .18s, color .18s;
}
.bp-header__socials a:hover { background: var(--bp-accent); color: var(--bp-primary); }

.bp-header__main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  background: transparent;
}
/* Push nav to the right (sits next to the CTA cluster) */
.bp-header__nav { margin-left: auto; }
/* Logo grows to 80px while negative vertical margin keeps the header
   bar at its original height (logo overflows top/bottom visually). */
.bp-header__logo {
  display: inline-flex;
  align-items: center;
  margin: -15px 0;
}
.bp-header__logo img { display: block; height: 80px; width: auto; }

.bp-header__nav { display: flex; align-items: center; gap: 28px; }
.bp-header__nav-list {
  display: flex; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.bp-header__nav-list > li > a,
.bp-header__nav-list > li > .bp-header__nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: var(--bp-primary);
  font-weight: 700;
  font-family: var(--bp-font-body);
  border-radius: var(--bp-r-full);
  cursor: pointer;
  transition: background .18s, color .18s;
  background: transparent;
  border: 0;
  font-size: 0.95rem;
}
.bp-header__nav-list > li > a:hover,
.bp-header__nav-list > li > .bp-header__nav-trigger:hover,
.bp-header__nav-list > li.is-open > .bp-header__nav-trigger {
  background: var(--bp-accent-soft);
  color: var(--bp-accent-2);
}
.bp-header__nav-list .bp-ico--chevron { transition: transform .2s; width: 14px; height: 14px; }
.bp-header__nav-list > li.is-open .bp-ico--chevron { transform: rotate(180deg); }

.bp-header__cta { display: flex; align-items: center; gap: 12px; }

/* ==========================================================================
   UNIQUE HAMBURGER — three lines morph to X, brand-green accent + pulse dot
   ========================================================================== */
.bp-header__burger {
  --bp-burger-line: var(--bp-primary);
  --bp-burger-accent: var(--bp-accent);
  --bp-burger-bg: var(--bp-surface-3);
  --bp-burger-bg-open: var(--bp-primary);
  --bp-burger-line-open: #FFFFFF;

  display: none;
  position: relative;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  padding: 0;
  border: 0;
  background: var(--bp-burger-bg);
  border-radius: 14px;
  cursor: pointer;
  color: var(--bp-burger-line);
  transition: background .35s cubic-bezier(.4,0,.2,1),
              transform .25s cubic-bezier(.4,0,.2,1),
              box-shadow .25s ease;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.bp-header__burger:hover,
.bp-header__burger:focus-visible {
  background: var(--bp-accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(5, 23, 44, 0.08);
}
.bp-header__burger:focus-visible { outline: 0; box-shadow: var(--bp-shadow-glow); }
.bp-header__burger:active { transform: translateY(0) scale(0.96); }
.bp-header__burger.is-open {
  background: var(--bp-burger-bg-open);
  color: var(--bp-burger-line-open);
}

/* Visually-hidden text label for screen readers */
.bp-burger__label {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* The burger graphic itself — flex stack of three lines */
.bp-burger {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 22px; height: 16px;
}
.bp-burger__line {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center center;
  transition: transform .45s cubic-bezier(.65,.05,.36,1),
              width .35s cubic-bezier(.4,0,.2,1),
              opacity .25s ease,
              background-color .25s ease;
}
.bp-burger__line--top { width: 22px; }
.bp-burger__line--mid {
  width: 16px;
  background: var(--bp-burger-accent);
  align-self: flex-start;
}
.bp-burger__line--bot { width: 19px; }

/* Hover: all lines align to full width — subtle "expand" cue */
.bp-header__burger:hover .bp-burger__line--mid,
.bp-header__burger:focus-visible .bp-burger__line--mid { width: 22px; }
.bp-header__burger:hover .bp-burger__line--bot,
.bp-header__burger:focus-visible .bp-burger__line--bot { width: 22px; }

/* Small accent "live" dot — pulses softly to draw attention on mobile */
.bp-burger__dot {
  position: absolute;
  top: -4px; right: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bp-burger-accent);
  box-shadow: 0 0 0 2px var(--bp-burger-bg);
  transition: background-color .25s ease, box-shadow .25s ease,
              transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  animation: bp-burger-pulse 2.4s ease-in-out infinite;
}
.bp-header__burger.is-open .bp-burger__dot {
  background: var(--bp-highlight);
  box-shadow: 0 0 0 2px var(--bp-burger-bg-open);
  transform: scale(0.6);
  opacity: 0;
  animation: none;
}
@keyframes bp-burger-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--bp-burger-bg), 0 0 0 0 rgba(126, 178, 61, 0.6); }
  50%      { box-shadow: 0 0 0 2px var(--bp-burger-bg), 0 0 0 6px rgba(126, 178, 61, 0); }
}

/* Open state: morph to X with mid line collapsing inward */
.bp-header__burger.is-open .bp-burger { align-items: center; }
.bp-header__burger.is-open .bp-burger__line {
  background: currentColor;
}
.bp-header__burger.is-open .bp-burger__line--top {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
}
.bp-header__burger.is-open .bp-burger__line--mid {
  width: 0;
  opacity: 0;
  transform: scaleX(0);
}
.bp-header__burger.is-open .bp-burger__line--bot {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Reduced motion: drop animations, keep functional morph */
@media (prefers-reduced-motion: reduce) {
  .bp-header__burger,
  .bp-burger__line,
  .bp-burger__dot { transition: none; animation: none; }
}

@media (max-width: 960px) {
  .bp-header__nav,
  .bp-header__cta .bp-btn { display: none; }
  .bp-header__burger { display: inline-flex; }
  /* When the nav is hidden, push the burger to the far right */
  .bp-header__cta { margin-left: auto; }
}
/* Util-bar trims itself on phones — keep only phone number + halal badge */
@media (max-width: 720px) {
  .bp-header__util-left .bp-header__util-item:not(:last-child),
  .bp-header__util-right .bp-header__util-item:nth-child(1),
  .bp-header__socials { display: none; }
  .bp-header__util-inner { gap: 12px; height: 36px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .bp-header__util { display: none; }
}

/* ==========================================================================
   MOBILE DRAWER — white panel matching site, multi-level, no scroll
   Color tokens reused from the site: bp-primary (navy), bp-accent (green),
   bp-surface-2 (cream), brand colours for the 3 merken.
   ========================================================================== */

/* Backdrop */
.bp-drawer {
  position: fixed; inset: 0;
  background: rgba(5, 23, 44, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.bp-drawer.is-open { opacity: 1; pointer-events: auto; }

/* Panel */
.bp-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(94vw, 440px);
  background: #fff;
  color: var(--bp-primary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform .46s cubic-bezier(.22,.85,.2,1);
  box-shadow: -28px 0 70px rgba(5, 23, 44, 0.22);
  outline: 0;
}
.bp-drawer.is-open .bp-drawer__panel { transform: translateX(0); }

/* ---- HEAD ---- */
.bp-drawer__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
}
.bp-drawer__head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.bp-drawer__logo { display: inline-flex; align-items: center; }
.bp-drawer__logo img { height: 36px; width: auto; display: block; }

/* Back button (only visible in sub-level) */
.bp-drawer__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  border: 0;
  background: var(--bp-surface-3);
  border-radius: var(--bp-r-full);
  color: var(--bp-primary);
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s, color .2s, transform .2s;
  animation: bp-drawer-fade-in .32s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__back:hover,
.bp-drawer__back:focus-visible {
  background: var(--bp-accent);
  color: var(--bp-primary);
}
.bp-drawer__back-ico {
  flex-shrink: 0;
  color: currentColor;
  transition: transform .25s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__back:hover .bp-drawer__back-ico,
.bp-drawer__back:focus-visible .bp-drawer__back-ico { transform: translateX(-3px); }
@keyframes bp-drawer-fade-in {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Close button */
.bp-drawer__close {
  width: 42px; height: 42px;
  border: 0;
  background: var(--bp-surface-3);
  color: var(--bp-primary);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .3s;
  -webkit-tap-highlight-color: transparent;
}
.bp-drawer__close:hover,
.bp-drawer__close:focus-visible {
  background: var(--bp-primary);
  color: #fff;
  transform: rotate(90deg);
}
.bp-drawer__close-x { position: relative; width: 14px; height: 14px; display: inline-block; }
.bp-drawer__close-x span {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.bp-drawer__close-x span:first-child { transform: translateY(-50%) rotate(45deg); }
.bp-drawer__close-x span:last-child  { transform: translateY(-50%) rotate(-45deg); }

/* ---- STACK ---- */
.bp-drawer__stack {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 0;
}
.bp-drawer__level {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: transform .44s cubic-bezier(.22,.85,.2,1),
              opacity .35s ease,
              visibility 0s linear .44s;
}
.bp-drawer__level--root { transform: translateX(-40px); }
.bp-drawer__stack[data-active="root"] .bp-drawer__level--root,
.bp-drawer__stack[data-active="producten"] [data-level="producten"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: transform .44s cubic-bezier(.22,.85,.2,1),
              opacity .35s ease,
              visibility 0s linear 0s;
}

/* ---- ROOT LEVEL ---- */
.bp-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp-drawer__item {
  opacity: 0;
  transform: translateX(16px);
  animation: bp-drawer-item-in .5s cubic-bezier(.22,.85,.2,1) forwards;
  animation-delay: calc(.06s + var(--bp-i, 0) * 0.05s);
}
.bp-drawer__stack:not([data-active="root"]) .bp-drawer__item {
  animation: none;
  opacity: 0;
}
@keyframes bp-drawer-item-in {
  to { opacity: 1; transform: translateX(0); }
}

.bp-drawer__row {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 16px;
  color: var(--bp-primary);
  font-family: var(--bp-font-body);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .22s, border-color .22s, transform .18s;
  -webkit-tap-highlight-color: transparent;
  min-height: 60px;
}
/* Accent bar that slides in from left on hover */
.bp-drawer__row::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  background: var(--bp-accent);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: center;
  transition: opacity .25s, transform .25s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__row:hover,
.bp-drawer__row:focus-visible {
  background: var(--bp-surface-2);
  border-color: rgba(126, 178, 61, 0.18);
}
.bp-drawer__row:hover::before,
.bp-drawer__row:focus-visible::before { opacity: 1; transform: scaleY(1); }
.bp-drawer__row:active { transform: scale(0.985); }

/* Icon tile */
.bp-drawer__row-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bp-surface-2);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--bp-primary);
  flex-shrink: 0;
  transition: background .22s, color .22s, transform .28s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__row:hover .bp-drawer__row-ico,
.bp-drawer__row:focus-visible .bp-drawer__row-ico {
  background: #fff;
  color: var(--bp-accent-2);
  transform: rotate(-6deg) scale(1.06);
}

/* Body — label + hint */
.bp-drawer__row-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.bp-drawer__row-label {
  font-family: var(--bp-font-display);
  font-size: 1.18rem;
  color: var(--bp-primary);
  letter-spacing: -0.005em;
}
.bp-drawer__row-hint {
  font-family: var(--bp-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bp-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Tail SVG icon (chevron or arrow) — opacity fades in on hover */
.bp-drawer__row-tail {
  flex-shrink: 0;
  color: var(--bp-muted);
  opacity: 0.5;
  transition: color .22s, opacity .22s, transform .25s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__row:hover .bp-drawer__row-tail,
.bp-drawer__row:focus-visible .bp-drawer__row-tail {
  color: var(--bp-accent-2);
  opacity: 1;
  transform: translateX(3px);
}

/* ---- LEVEL 1 — PRODUCTEN ---- */
.bp-drawer__brands {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bp-drawer__brand {
  display: grid;
  grid-template-columns: 44px 1fr 16px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--bp-surface-2);
  border: 1px solid transparent;
  color: var(--bp-primary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(12px);
  animation: bp-drawer-item-in .5s cubic-bezier(.22,.85,.2,1) forwards;
  animation-delay: calc(.08s + var(--bp-i, 0) * 0.06s);
  transition: background .22s, border-color .22s, transform .18s, box-shadow .22s;
}
.bp-drawer__brand::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: currentColor;
  opacity: 0;
  transition: opacity .2s;
}
.bp-drawer__stack:not([data-active="producten"]) .bp-drawer__brand,
.bp-drawer__stack:not([data-active="producten"]) .bp-drawer__featured,
.bp-drawer__stack:not([data-active="producten"]) .bp-drawer__all {
  animation: none;
  opacity: 0;
}
.bp-drawer__brand:hover,
.bp-drawer__brand:focus-visible {
  background: #fff;
  border-color: rgba(126, 178, 61, 0.28);
  transform: translateY(-1px);
  box-shadow: var(--bp-shadow-sm);
}
.bp-drawer__brand:hover::before,
.bp-drawer__brand:focus-visible::before { opacity: 1; }

.bp-drawer__brand-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bp-drawer__brand--beypilic { color: var(--bp-brand-beypilic); }
.bp-drawer__brand--beypilic .bp-drawer__brand-ico { background: rgba(200, 38, 28, 0.10); }
.bp-drawer__brand--tokyat   { color: var(--bp-brand-tokyat); }
.bp-drawer__brand--tokyat .bp-drawer__brand-ico   { background: rgba(212, 162, 76, 0.14); }
.bp-drawer__brand--okyanus  { color: var(--bp-brand-okyanus); }
.bp-drawer__brand--okyanus .bp-drawer__brand-ico  { background: rgba(42, 111, 168, 0.10); }

.bp-drawer__brand-text { min-width: 0; display: flex; flex-direction: column; gap: 1px; line-height: 1.15; }
.bp-drawer__brand-name {
  font-family: var(--bp-font-display);
  font-size: 1.05rem;
  color: var(--bp-primary);
}
.bp-drawer__brand-tag {
  font-family: var(--bp-font-body);
  font-size: 0.76rem;
  color: var(--bp-muted);
  font-weight: 500;
}

/* Brand arrow — SVG chevron */
.bp-drawer__brand-arrow {
  flex-shrink: 0;
  color: var(--bp-muted);
  opacity: 0.55;
  transition: transform .25s cubic-bezier(.22,.85,.2,1), color .2s, opacity .2s;
}
.bp-drawer__brand:hover .bp-drawer__brand-arrow,
.bp-drawer__brand:focus-visible .bp-drawer__brand-arrow {
  color: var(--bp-accent-2);
  opacity: 1;
  transform: translateX(3px);
}

/* ---- Featured products section ---- */
.bp-drawer__featured {
  opacity: 0;
  transform: translateY(10px);
  animation: bp-drawer-fade-up .5s cubic-bezier(.22,.85,.2,1) forwards;
  animation-delay: 0.32s;
}
@keyframes bp-drawer-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
.bp-drawer__featured-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-family: var(--bp-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bp-muted);
}
.bp-drawer__featured-bar {
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--bp-accent);
  border-radius: 1px;
  flex-shrink: 0;
}
.bp-drawer__products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.bp-drawer__product {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--bp-primary);
  font-family: var(--bp-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, color .18s;
  min-height: 38px;
}
.bp-drawer__product:hover,
.bp-drawer__product:focus-visible {
  background: var(--bp-accent-soft);
  color: var(--bp-accent-2);
}
.bp-drawer__product-arrow {
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .2s, transform .25s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__product:hover .bp-drawer__product-arrow,
.bp-drawer__product:focus-visible .bp-drawer__product-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* "Bekijk alle producten" CTA — navy pill */
.bp-drawer__all {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 11px 18px;
  background: var(--bp-primary);
  color: #fff;
  border-radius: var(--bp-r-full);
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .2s, transform .2s, box-shadow .2s;
  opacity: 0;
  animation: bp-drawer-fade-up .5s cubic-bezier(.22,.85,.2,1) forwards;
  animation-delay: 0.4s;
}
.bp-drawer__all:hover,
.bp-drawer__all:focus-visible {
  background: var(--bp-accent);
  color: var(--bp-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(126, 178, 61, 0.35);
}
.bp-drawer__all-arrow {
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__all:hover .bp-drawer__all-arrow,
.bp-drawer__all:focus-visible .bp-drawer__all-arrow { transform: translateX(3px); }

/* ---- FOOT — phone + CTA ---- */
.bp-drawer__foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--bp-line);
  background: linear-gradient(180deg, #fff 0%, var(--bp-surface-2) 100%);
}
.bp-drawer__phone {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--bp-line);
  color: var(--bp-primary);
  text-decoration: none;
  min-width: 0;
  transition: background .2s, border-color .2s;
}
.bp-drawer__phone:hover,
.bp-drawer__phone:focus-visible {
  background: var(--bp-accent-soft);
  border-color: rgba(126, 178, 61, 0.32);
}
.bp-drawer__phone-ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--bp-accent-soft);
  color: var(--bp-accent-2);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bp-drawer__phone-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.bp-drawer__phone-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--bp-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.bp-drawer__phone-num {
  font-family: var(--bp-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bp-primary);
  font-variant-numeric: tabular-nums;
}

.bp-drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--bp-accent);
  color: var(--bp-primary);
  border-radius: 12px;
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(126, 178, 61, 0.28);
}
.bp-drawer__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  transform: translateX(-150%);
  transition: transform .6s;
}
.bp-drawer__cta:hover,
.bp-drawer__cta:focus-visible {
  background: var(--bp-accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(126, 178, 61, 0.4);
}
.bp-drawer__cta:hover::before,
.bp-drawer__cta:focus-visible::before { transform: translateX(150%); }

.bp-drawer__cta-arrow {
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.22,.85,.2,1);
}
.bp-drawer__cta:hover .bp-drawer__cta-arrow,
.bp-drawer__cta:focus-visible .bp-drawer__cta-arrow { transform: translateX(3px); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .bp-drawer, .bp-drawer__panel, .bp-drawer__level,
  .bp-drawer__close, .bp-drawer__back, .bp-drawer__row,
  .bp-drawer__row-ico, .bp-drawer__row-tail,
  .bp-drawer__brand, .bp-drawer__brand-ico, .bp-drawer__brand-arrow,
  .bp-drawer__product, .bp-drawer__product-arrow,
  .bp-drawer__all, .bp-drawer__cta,
  .bp-drawer__item, .bp-drawer__featured {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Narrow phones ---- */
@media (max-width: 480px) {
  .bp-drawer__panel { width: 100%; box-shadow: none; }
  .bp-drawer__head { padding: 12px 16px; }
  .bp-drawer__level { padding: 16px 16px; }
  .bp-drawer__foot { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
  .bp-drawer__row-label { font-size: 1.08rem; }
  .bp-drawer__phone-label { display: none; }
  .bp-drawer__phone { padding: 7px 10px; }
  .bp-drawer__cta { padding: 10px 14px; font-size: 0.86rem; }
}
/* Short phones (iPhone SE etc.) — ultra compact */
@media (max-width: 480px) and (max-height: 700px) {
  .bp-drawer__head { padding: 9px 14px; }
  .bp-drawer__logo img { height: 30px; }
  .bp-drawer__close { width: 38px; height: 38px; }
  .bp-drawer__level { padding: 10px 14px; gap: 10px; }
  .bp-drawer__items { gap: 2px; }
  .bp-drawer__row { padding: 8px 12px; min-height: 50px; }
  .bp-drawer__row-ico { width: 38px; height: 38px; }
  .bp-drawer__row-label { font-size: 1rem; }
  .bp-drawer__row-hint { display: none; }
  .bp-drawer__brand { padding: 8px 12px; }
  .bp-drawer__brand-ico { width: 38px; height: 38px; }
  .bp-drawer__products { gap: 2px; }
  .bp-drawer__product { padding: 7px 10px; min-height: 34px; font-size: 0.84rem; }
  .bp-drawer__featured-title { display: none; }
  .bp-drawer__all { padding: 9px 14px; font-size: 0.86rem; }
}

/* ==========================================================================
   MEGA MENU — LS Wonen / Beypilic stijl (6 blocks)
   ========================================================================== */
.bp-header__nav-item--mega { position: static; }
.bp-mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--bp-surface);
  border-top: 1px solid var(--bp-line);
  box-shadow: var(--bp-shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 90;
}
.bp-header__nav-item--mega:hover .bp-mega,
.bp-header__nav-item--mega:focus-within .bp-mega,
.bp-header__nav-item--mega.is-open .bp-mega {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.bp-mega__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px 32px;
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 32px 24px 36px;
}
.bp-mega__block { display: flex; flex-direction: column; min-width: 0; }
.bp-mega__block--merken { grid-row: 1 / 3; }
.bp-mega__block--trust { grid-column: 2 / 4; }
.bp-mega__block--cta {
  grid-column: 4 / 6;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-end;
  padding-top: 14px;
}

/* (bp-mega__title styling is defined alongside bp-eyebrow in the Base block) */

/* Brand cards (left column) */
.bp-mega__brands { display: flex; flex-direction: column; gap: 10px; }
.bp-mega__brand-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border-radius: var(--bp-r-md);
  background: var(--bp-surface-2);
  color: var(--bp-primary);
  border: 1px solid transparent;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.bp-mega__brand-card:hover {
  transform: translateY(-2px);
  border-color: var(--bp-accent);
  box-shadow: var(--bp-shadow-sm);
}
.bp-mega__brand-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bp-primary); flex-shrink: 0;
}
.bp-mega__brand-card--beypilic .bp-mega__brand-ico { background: rgba(200,38,28,.10); color: var(--bp-brand-beypilic); }
.bp-mega__brand-card--tokyat .bp-mega__brand-ico   { background: rgba(212,162,76,.14); color: var(--bp-brand-tokyat); }
.bp-mega__brand-card--okyanus .bp-mega__brand-ico  { background: rgba(42,111,168,.10); color: var(--bp-brand-okyanus); }
.bp-mega__brand-name {
  display: block;
  font-family: var(--bp-font-display);
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--bp-primary);
}
.bp-mega__brand-tagline {
  display: block;
  font-size: 0.78rem;
  color: var(--bp-muted);
  margin-top: 2px;
}

/* Plain link lists (Categorieën, Voor wie) */
.bp-mega__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.bp-mega__links a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--bp-body);
  font-size: 0.92rem;
  transition: background .15s, color .15s, padding .15s;
}
.bp-mega__links a:hover {
  background: var(--bp-accent-soft);
  color: var(--bp-accent-2);
  padding-left: 14px;
}
.bp-mega__link-ico {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--bp-surface-2);
  color: var(--bp-accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Chips (Populaire keuzes) */
.bp-mega__chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bp-mega__chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bp-surface-2);
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-full);
  color: var(--bp-primary);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.bp-mega__chip:hover {
  background: var(--bp-accent);
  color: var(--bp-primary);
  border-color: var(--bp-accent);
  transform: translateY(-1px);
}

/* Trust / USP block */
.bp-mega__usps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
}
.bp-mega__usps li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 700;
  color: var(--bp-primary);
  padding: 4px 0;
}
.bp-mega__usp-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bp-accent-soft);
  color: var(--bp-accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* CTA block */
.bp-mega__cta {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

@media (max-width: 1180px) {
  .bp-mega__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .bp-mega__block--trust { grid-column: 2 / 5; }
  .bp-mega__block--cta { grid-column: 2 / 5; }
}
@media (max-width: 960px) { .bp-mega { display: none; } }

/* ==========================================================================
   HERO
   Pulled up under the transparent sticky header so its background bleeds
   behind the util bar and main bar. Padding-top compensates for the header
   so content stays clear of the nav.
   ========================================================================== */
.bp-hero {
  position: relative;
  overflow: hidden;
  background: var(--bp-surface-2);
  /* Header total: util (40px) + main padding (18*2=36) + logo (~50) ≈ 126px.
     We pull the hero up by that amount and add equivalent padding so the
     content keeps the same visual breathing room as before. */
  margin-top: -126px;
  padding: calc(60px + clamp(60px, 9vw, 120px)) 0 clamp(80px, 10vw, 60px);
}
@media (max-width: 960px) {
  .bp-hero {
    /* Mobile header is shorter (no full util layout in same height) */
    margin-top: -110px;
    padding-top: calc(110px + clamp(40px, 8vw, 80px));
  }
}
@media (max-width: 480px) {
  .bp-hero {
    /* Util bar is hidden at this width, only main bar remains (~70px) */
    margin-top: -70px;
    padding-top: calc(70px + clamp(28px, 7vw, 60px));
  }
}
.bp-hero__inner {
  position: relative;
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.bp-hero__text { position: relative; z-index: 2; }
.bp-hero__eyebrow { margin-bottom: 22px; }
.bp-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
}
.bp-hero h1 em {
  font-style: normal;
  color: var(--bp-accent);
}
.bp-hero__sub {
  font-size: 1.12rem;
  color: var(--bp-muted);
  max-width: 540px;
  margin-bottom: 26px;
}
.bp-hero__proofs {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.bp-hero__proofs li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border-radius: var(--bp-r-full);
  box-shadow: var(--bp-shadow-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bp-primary);
}
.bp-hero__proofs .bp-ico { width: 16px; height: 16px; color: var(--bp-accent-2); }
.bp-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual: image/video on top, 3 cards side-by-side at the bottom */
.bp-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bp-hero__visual-main {
  position: relative;
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  box-shadow: var(--bp-shadow-lg);
  background: var(--bp-primary);
}
/* Media sizes to its natural aspect-ratio — container shrinks/grows to fit,
   so the video is shown in full with zero crop and zero letterbox. */
.bp-hero__visual-main img,
.bp-hero__visual-main video,
.bp-hero__visual-media {
  width: 100%;
  height: auto;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .bp-hero__visual-media { opacity: 1; }
  .bp-hero__visual-main video { animation: none !important; }
}

/* Row of cards under the hero image */
.bp-hero__cards {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.bp-hero__card {
  position: static;
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: var(--bp-r-md);
  box-shadow: var(--bp-shadow-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.bp-hero__card-img {
  width: 44px; height: 44px;
  border-radius: 12px; object-fit: cover; flex-shrink: 0;
}
.bp-hero__card-title { display: block; font-weight: 700; color: var(--bp-primary); line-height: 1.15; font-size: 0.9rem; }
.bp-hero__card-sub { display: block; font-size: 0.74rem; color: var(--bp-muted); line-height: 1.25; }
.bp-hero__card--stat .bp-ico-tile {
  width: 44px; height: 44px;
  border-radius: 12px;
}
.bp-hero__card--stat .bp-ico-tile .bp-ico { width: 22px; height: 22px; }
.bp-hero__card-stat-num {
  display: block;
  font-family: var(--bp-font-display);
  font-size: 1.4rem;
  color: var(--bp-primary);
  line-height: 1;
}
.bp-hero__card-stat-label { font-size: 0.74rem; color: var(--bp-muted); }
.bp-hero__card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bp-accent);
  color: #fff;
  padding: 3px 9px;
  border-radius: var(--bp-r-full);
  font-size: 0.66rem; font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .bp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .bp-hero__visual { min-height: 0; }
  .bp-hero__visual-main { min-height: 280px; aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  /* On phones, stack the cards vertically — three pills in a row gets cramped */
  .bp-hero__cards { flex-direction: column; }
}

/* ==========================================================================
   TRUST STRIP — hero-banner style (text + floating UI cards composition)
   ========================================================================== */
.bp-trust {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bp-surface);
  overflow: hidden;
}
.bp-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* LEFT — text */
.bp-trust__text { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.bp-trust__title {
  margin: 4px 0;
  font-family: var(--bp-font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #05172C;
}
.bp-trust__title em {
  font-style: normal;
  color: var(--bp-accent);
}
.bp-trust__lead {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--bp-muted);
}
.bp-trust__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* RIGHT — floating cards stage */
.bp-trust__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 460px;
}
.bp-trust__bg,
.bp-trust__connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bp-trust__bg { z-index: 1; }
.bp-trust__connectors { z-index: 2; }

.bp-trust__card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(5, 23, 44, 0.10), 0 2px 6px rgba(5, 23, 44, 0.04);
  min-width: 200px;
  max-width: 240px;
  opacity: 0;
  transform: translateY(14px);
  animation: bp-trust-pop .55s cubic-bezier(.3, .9, .3, 1.05) forwards;
  animation-delay: var(--bp-trust-delay, 0ms);
  transition: transform .25s ease;
}
.bp-trust__card:hover { transform: translateY(-3px) rotate(-0.3deg); }

@keyframes bp-trust-pop {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Positions in the 480×480 stage (percent-based so it scales) */
.bp-trust__card--top-right    { top: 8%;  right: 0%;   }
.bp-trust__card--top-left     { top: 6%;  left: 0%;    }
.bp-trust__card--mid-right    { top: 42%; right: -6%;  }
.bp-trust__card--mid-left     { top: 44%; left: -6%;   }
.bp-trust__card--bottom-right { bottom: 6%; right: 4%; }
.bp-trust__card--bottom-left  { bottom: 4%; left: 0%;  }

/* Card accent variants */
.bp-trust__card-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  background: var(--bp-accent);
}
.bp-trust__card-ico .bp-ico { width: 20px; height: 20px; }
.bp-trust__card--c-accent .bp-trust__card-ico { background: var(--bp-accent);    }
.bp-trust__card--c-navy   .bp-trust__card-ico { background: #05172C;             }
.bp-trust__card--c-peach  .bp-trust__card-ico { background: var(--bp-highlight-2); }
.bp-trust__card--c-gold   .bp-trust__card-ico { background: var(--bp-gold);      }
.bp-trust__card--c-red    .bp-trust__card-ico { background: var(--bp-halal-red); }

.bp-trust__card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.bp-trust__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
  line-height: 1.2;
}
.bp-trust__card-value {
  font-family: var(--bp-font-display);
  font-size: 1.05rem;
  color: #05172C;
  line-height: 1.1;
}

/* Mock content bars — gives a UI-card feel like in hero-banner.png */
.bp-trust__card-bars {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  padding-left: 12px;
  border-left: 1px solid var(--bp-line);
}
.bp-trust__card-bars span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--bp-surface-3);
}
.bp-trust__card-bars span:nth-child(1) { width: 32px; }
.bp-trust__card-bars span:nth-child(2) { width: 22px; }
.bp-trust__card-bars span:nth-child(3) { width: 28px; background: var(--bp-accent-soft); }
.bp-trust__card:hover .bp-trust__card-bars { display: flex; }

/* Decorative floating elements */
.bp-trust__deco { position: absolute; z-index: 2; pointer-events: none; }
.bp-trust__deco--dot-1 {
  top: 30%;
  left: 18%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bp-accent);
  box-shadow: 0 0 0 6px rgba(126, 178, 61, 0.15);
}
.bp-trust__deco--dot-2 {
  bottom: 22%;
  right: 24%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bp-highlight-2);
  box-shadow: 0 0 0 5px rgba(248, 158, 74, 0.18);
}
.bp-trust__deco--ring {
  top: 18%;
  right: 30%;
  width: 28px; height: 28px;
  border: 2.5px dashed var(--bp-gold);
  border-radius: 50%;
  opacity: 0.7;
  animation: bp-trust-spin 18s linear infinite;
}
@keyframes bp-trust-spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .bp-trust__inner { grid-template-columns: 1fr; }
  .bp-trust__stage { min-height: 380px; }
  .bp-trust__text  { max-width: none; }
  /* Pull mid-cards inside the stage so they don't spill into page-edges */
  .bp-trust__card--mid-right    { right: 0; }
  .bp-trust__card--mid-left     { left: 0; }
}
@media (max-width: 540px) {
  /* On phones the absolute-positioned composition becomes a vertical stack —
     cleaner UX than tiny floating cards overlapping each other. */
  .bp-trust__stage {
    min-height: 0;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }
  .bp-trust__bg,
  .bp-trust__connectors,
  .bp-trust__deco { display: none; }
  .bp-trust__card {
    position: static;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 12px 14px;
  }
  .bp-trust__card-ico { width: 32px; height: 32px; }
  .bp-trust__card-ico .bp-ico { width: 16px; height: 16px; }
}

/* ==========================================================================
   PRODUCTS SHOWCASE — Aanbieding · Seizoen · Onze producten
   ========================================================================== */
.bp-products {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bp-surface-2);
}
.bp-products__section { margin-bottom: clamp(56px, 7vw, 80px); }
.bp-products__section:last-child { margin-bottom: 0; }

.bp-products__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bp-products__head > div { display: flex; flex-direction: column; gap: 10px; }
.bp-products__head h2 { margin: 0; }
.bp-products__head-cta { flex-shrink: 0; }

.bp-products__grid {
  display: grid;
  gap: 18px;
}
.bp-products__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1080px) { .bp-products__grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px)  { .bp-products__grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px)  { .bp-products__grid--4 { grid-template-columns: 1fr; } }

/* ---- Single product card ---- */
.bp-product-card {
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bp-product-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--bp-shadow-md);
}
.bp-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.bp-product-card__link:hover { text-decoration: none; }
.bp-product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bp-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.bp-product-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .45s ease;
}
.bp-product-card:hover .bp-product-card__media img { transform: scale(1.04); }
.bp-product-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.bp-product-card__title {
  margin: 0;
  font-family: var(--bp-font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--bp-primary);
}
.bp-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: var(--bp-accent-2);
  font-weight: 700;
  font-size: 0.88rem;
  transition: color .18s, transform .18s;
}
.bp-product-card:hover .bp-product-card__cta {
  color: var(--bp-primary);
  transform: translateX(3px);
}

/* ---- Seizoen block ---- */
.bp-products__season {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  box-shadow: var(--bp-shadow-sm);
  margin-bottom: clamp(56px, 7vw, 80px);
}
.bp-products__season-media {
  position: relative;
  min-height: 280px;
  background: var(--bp-surface-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bp-products__season-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.bp-products__season-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.bp-products__season-body h2 { margin: 0; }
.bp-products__season-desc { color: var(--bp-muted); font-size: 1.02rem; line-height: 1.6; }
.bp-products__season-body .bp-btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 900px) {
  .bp-products__season { grid-template-columns: 1fr; }
  .bp-products__season-media { min-height: 220px; }
}

/* ---- Foot CTA centered under grid ---- */
.bp-products__foot {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ==========================================================================
   PRODUCT CATEGORIES
   ========================================================================== */
.bp-cats { padding: clamp(64px, 8vw, 100px) 0; background: var(--bp-surface); }
.bp-cats__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.bp-cats__head h2 { max-width: 540px; margin: 12px 0 0; }
.bp-cats__head-actions { display: flex; gap: 12px; flex-shrink: 0; }
.bp-cats__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "hero a b"
    "hero c d";
  gap: 18px;
  min-height: 540px;
}
.bp-cats__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--bp-r-lg);
  background: var(--bp-surface-2);
  display: block;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.bp-cats__tile--hero { grid-area: hero; }
.bp-cats__tile:nth-of-type(2) { grid-area: a; }
.bp-cats__tile:nth-of-type(3) { grid-area: b; }
.bp-cats__tile:nth-of-type(4) { grid-area: c; }
.bp-cats__tile:nth-of-type(5) { grid-area: d; }
.bp-cats__tile img,
.bp-cats__tile video,
.bp-cats__tile-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s;
  z-index: 1;
}
.bp-cats__tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,23,44,0) 35%, rgba(5,23,44,0.7) 100%);
  z-index: 2;
}
.bp-cats__tile:hover img,
.bp-cats__tile:hover video { transform: scale(1.08); }
.bp-cats__tile-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bp-cats__tile-body h3 {
  margin: 0; color: #fff; font-size: 1.3rem;
}
.bp-cats__tile-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: 12px; color: #fff;
  transition: background .25s, transform .35s;
  flex-shrink: 0;
}
.bp-cats__tile:hover .bp-cats__tile-icon {
  background: var(--bp-accent); color: var(--bp-primary);
  transform: rotate(-8deg);
}
.bp-cats__tile-icon .bp-ico { width: 22px; height: 22px; }
.bp-cats__tile--hero .bp-cats__tile-body h3 { font-size: 1.8rem; }
.bp-cats__tile--hero .bp-cats__tile-icon { width: 56px; height: 56px; border-radius: 16px; }
.bp-cats__tile--hero .bp-cats__tile-icon .bp-ico { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .bp-cats__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    grid-template-areas: "hero hero" "a b" "c d";
  }
  .bp-cats__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .bp-cats__grid { grid-template-columns: 1fr; grid-template-rows: 200px repeat(4, 160px); grid-template-areas: "hero" "a" "b" "c" "d"; }
}

/* ==========================================================================
   AANBIEDING (weekly offer)
   ========================================================================== */
.bp-aanbieding {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bp-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bp-aanbieding__inner {
  position: relative; z-index: 2;
  max-width: var(--bp-max); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.bp-aanbieding__text h2 { color: #fff; margin: 18px 0 16px; font-size: clamp(2rem, 4vw, 3rem); }
.bp-aanbieding__text p { color: rgba(255,255,255,.78); margin-bottom: 28px; font-size: 1.04rem; }
.bp-aanbieding__price {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 28px;
}
.bp-aanbieding__price-was {
  text-decoration: line-through;
  color: rgba(255,255,255,.5);
  font-size: 1.15rem;
}
.bp-aanbieding__price-now {
  font-family: var(--bp-font-display);
  font-size: 3rem; line-height: 1;
  color: var(--bp-accent);
}
.bp-aanbieding__visual {
  position: relative;
}
.bp-aanbieding__photo {
  position: relative;
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  box-shadow: var(--bp-shadow-lg);
  background: #fff;
  margin-right: 6%;
  margin-bottom: 12%;
}
/* Image keeps its natural aspect-ratio — fully visible, no cropping */
.bp-aanbieding__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.bp-aanbieding__badge {
  position: absolute; top: 0; right: 6%;
  width: 130px; height: 130px;
  background: var(--bp-accent);
  color: var(--bp-primary);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--bp-font-display); text-align: center;
  box-shadow: 0 16px 30px rgba(126,178,61,.4);
  line-height: 1.05;
  animation: bp-pulse 2.6s ease-in-out infinite;
}
.bp-aanbieding__badge strong { font-size: 1.8rem; display: block; }
.bp-aanbieding__badge span { font-size: 0.8rem; font-family: var(--bp-font-body); font-weight: 700; }
@keyframes bp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 900px) {
  .bp-aanbieding__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .bp-aanbieding__badge { width: 96px; height: 96px; right: 2%; }
  .bp-aanbieding__badge strong { font-size: 1.4rem; }
  .bp-aanbieding__badge span   { font-size: 0.7rem; }
  .bp-aanbieding__price-now    { font-size: 2.4rem; }
}

/* ==========================================================================
   LOGISTIEK
   ========================================================================== */
.bp-logistiek { padding: clamp(64px, 8vw, 100px) 0; background: var(--bp-surface-2); }
.bp-logistiek__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: center;
}
.bp-logistiek__text h2 { margin: 14px 0 18px; max-width: 460px; }
.bp-logistiek__text p { color: var(--bp-muted); margin-bottom: 28px; max-width: 480px; }
.bp-logistiek__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.bp-logistiek__stat {
  background: #fff;
  border-radius: var(--bp-r-md);
  padding: 18px 20px;
  box-shadow: var(--bp-shadow-sm);
}
.bp-logistiek__stat-num {
  display: block;
  font-family: var(--bp-font-display);
  font-size: 1.85rem;
  color: var(--bp-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.bp-logistiek__stat-label { font-size: 0.85rem; color: var(--bp-muted); }

.bp-logistiek__map {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: var(--bp-r-lg);
  box-shadow: var(--bp-shadow-md);
  padding: 24px;
  overflow: hidden;
}
.bp-logistiek__map svg { width: 100%; height: 100%; display: block; }
.bp-logistiek__route-path {
  fill: none;
  stroke: var(--bp-accent);
  stroke-width: 3;
  stroke-linecap: round;
}
.bp-logistiek__pin {
  fill: var(--bp-primary);
}
.bp-logistiek__pin--accent { fill: var(--bp-accent); }
.bp-logistiek__map-label {
  font-family: var(--bp-font-body);
  font-weight: 700;
  fill: var(--bp-primary);
  font-size: 14px;
}

@media (max-width: 900px) { .bp-logistiek__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   OVER ONS
   ========================================================================== */
.bp-over { padding: clamp(64px, 8vw, 100px) 0; background: var(--bp-surface); }
.bp-over__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: center;
}
.bp-over__text h2 { margin: 14px 0 20px; }
.bp-over__text > p { color: var(--bp-muted); margin-bottom: 24px; font-size: 1.05rem; }
.bp-over__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.bp-over__metric {
  background: var(--bp-surface-2);
  border-radius: var(--bp-r-md);
  padding: 22px 18px;
  text-align: center;
}
.bp-over__metric-num {
  display: block;
  font-family: var(--bp-font-display);
  font-size: 2.4rem;
  color: var(--bp-primary);
  line-height: 1;
}
.bp-over__metric-label { font-size: 0.85rem; color: var(--bp-muted); }
.bp-over__metric--accent .bp-over__metric-num { color: var(--bp-accent-2); }
.bp-over__metric--peach .bp-over__metric-num { color: var(--bp-highlight-2); }

.bp-over__visual { position: relative; aspect-ratio: 4 / 5; min-height: 420px; }
.bp-over__visual-img {
  position: absolute; inset: 0;
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  box-shadow: var(--bp-shadow-md);
}
.bp-over__visual-img img { width: 100%; height: 100%; object-fit: cover; }
.bp-over__visual-quote {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--bp-primary); color: #fff;
  padding: 24px 28px;
  border-radius: var(--bp-r-md);
  max-width: 280px;
  box-shadow: var(--bp-shadow-lg);
}
.bp-over__visual-quote-icon {
  position: absolute; top: -16px; left: 24px;
  width: 40px; height: 40px;
  background: var(--bp-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bp-primary);
}
.bp-over__visual-quote p { font-size: 0.92rem; line-height: 1.5; color: #fff; margin: 8px 0 4px; }
.bp-over__visual-quote-author { font-size: 0.82rem; color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .bp-over__inner { grid-template-columns: 1fr; }
  /* Quote-bubble was floating -20px outside its container — pull it back on
     mobile so it doesn't risk clipping or overflow. */
  .bp-over__visual-quote { position: static; max-width: none; margin-top: 18px; }
  .bp-over__visual-quote-icon { top: -20px; }
}

/* ==========================================================================
   FOLDER + NEWSLETTER
   ========================================================================== */
.bp-folder { padding: clamp(64px, 8vw, 100px) 0; background: var(--bp-surface-2); }
.bp-folder__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center;
}
.bp-folder__cover {
  position: relative;
  border-radius: var(--bp-r-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--bp-shadow-lg);
  transform: rotate(-3deg);
  transition: transform .5s;
}
.bp-folder__cover:hover { transform: rotate(0deg); }
.bp-folder__cover img { width: 100%; height: 100%; object-fit: cover; }
.bp-folder__cover-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--bp-halal-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--bp-r-full);
  font-weight: 700;
  font-size: 0.78rem;
}
.bp-folder__text h2 { margin: 14px 0 16px; }
.bp-folder__text > p { color: var(--bp-muted); margin-bottom: 24px; }
.bp-folder__usps {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.bp-folder__usps li {
  display: flex; align-items: center; gap: 10px;
  color: var(--bp-primary); font-weight: 700;
}
.bp-folder__usps .bp-ico-tile { width: 32px; height: 32px; border-radius: 10px; }
.bp-folder__usps .bp-ico-tile .bp-ico { width: 16px; height: 16px; }

.bp-newsletter {
  margin-top: 32px;
  background: #fff;
  border-radius: var(--bp-r-md);
  padding: 24px;
  box-shadow: var(--bp-shadow-sm);
}
.bp-newsletter h3 { margin: 0 0 8px; font-size: 1.15rem; }
.bp-newsletter > p { color: var(--bp-muted); margin-bottom: 16px; font-size: 0.92rem; }
.bp-newsletter__form { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-newsletter__input {
  flex: 1; min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--bp-r-full);
  border: 2px solid var(--bp-line);
  background: var(--bp-surface-2);
  font-family: var(--bp-font-body); font-size: 0.95rem;
  color: var(--bp-primary);
  transition: border-color .2s, box-shadow .2s;
}
.bp-newsletter__input:focus {
  outline: none;
  border-color: var(--bp-accent);
  box-shadow: var(--bp-shadow-glow);
}
.bp-newsletter__msg {
  display: none; margin-top: 12px;
  padding: 12px 16px; background: var(--bp-accent-soft);
  color: var(--bp-accent-2); border-radius: var(--bp-r-md);
  font-weight: 700; font-size: 0.92rem;
}
.bp-newsletter.is-success .bp-newsletter__msg { display: block; }

@media (max-width: 900px) {
  .bp-folder__inner { grid-template-columns: 1fr; gap: 40px; }
  .bp-folder__cover { max-width: 320px; margin: 0 auto; transform: none; }
  .bp-folder__cover:hover { transform: none; }
}

/* ==========================================================================
   WORD KLANT — unique image-driven onboarding card
   Asymmetric 2-column: hero image + overlays (left)  ·  numbered image-steps (right)
   ========================================================================== */
.bp-klant {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--bp-surface-2);
  position: relative;
  overflow: hidden;
}
.bp-klant__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}

/* --- LEFT: photo + floating badge + quote --- */
.bp-klant__visual {
  position: relative;
  min-height: 540px;
}
.bp-klant__photo {
  position: relative;
  height: 100%;
  min-height: 540px;
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  box-shadow: var(--bp-shadow-lg);
}
.bp-klant__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bp-klant__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,23,44,0) 50%, rgba(5,23,44,.4) 100%);
  pointer-events: none;
}

.bp-klant__badge {
  position: absolute;
  top: 24px;
  left: -16px;
  z-index: 3;
  background: var(--bp-accent);
  color: #05172C;
  padding: 14px 22px 16px 20px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(126, 178, 61, .35);
  max-width: 220px;
  transform: rotate(-2deg);
}
.bp-klant__badge-title {
  display: block;
  font-family: var(--bp-font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
}
.bp-klant__badge-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(5, 23, 44, .8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bp-klant__quote {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 3;
  max-width: 280px;
  margin: 0;
  padding: 16px 18px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--bp-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-klant__quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(5,23,44,.15);
  margin-top: -36px;
  margin-bottom: 4px;
  align-self: flex-start;
  flex-shrink: 0;
}
.bp-klant__quote-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.bp-klant__quote blockquote {
  margin: 0;
  font-family: var(--bp-font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #05172C;
  font-weight: 700;
}
.bp-klant__quote figcaption {
  font-size: 0.78rem;
  color: var(--bp-muted);
  font-weight: 700;
}

/* --- RIGHT: content + numbered image-steps + CTAs + contact --- */
.bp-klant__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px 0;
}
.bp-klant__content h2 {
  margin: 6px 0 4px;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: #05172C;
}
.bp-klant__content h2 em {
  font-style: normal;
  color: var(--bp-accent);
}
.bp-klant__lead {
  color: var(--bp-muted);
  max-width: 540px;
  font-size: 1.04rem;
  margin: 0 0 8px;
}

.bp-klant__steps {
  list-style: none;
  margin: 12px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: bpklant;
}
.bp-klant__step {
  display: grid;
  grid-template-columns: 48px 80px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-md);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bp-klant__step:hover {
  transform: translateX(4px);
  border-color: var(--bp-accent);
  box-shadow: var(--bp-shadow-sm);
}
.bp-klant__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(126, 178, 61, .14);
  color: var(--bp-accent-2);
  font-family: var(--bp-font-display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.bp-klant__step-thumb {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bp-surface-2);
}
.bp-klant__step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bp-klant__step-text h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #05172C;
  font-family: var(--bp-font-display);
}
.bp-klant__step-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--bp-muted);
  line-height: 1.45;
}

.bp-klant__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.bp-klant__contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-md);
  margin-top: 12px;
}
.bp-klant__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #05172C;
  text-decoration: none;
  font-size: 0.95rem;
}
.bp-klant__contact-item--call { color: var(--bp-accent-2); }
.bp-klant__contact-item:not(.bp-klant__contact-item--static):hover { color: var(--bp-accent-2); }
.bp-klant__contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-muted);
}
.bp-klant__contact-item strong {
  font-family: var(--bp-font-body);
  font-weight: 700;
  color: inherit;
}

@media (max-width: 960px) {
  .bp-klant__inner { grid-template-columns: 1fr; }
  .bp-klant__visual { min-height: 380px; }
  .bp-klant__photo { min-height: 380px; }
  .bp-klant__badge { left: 12px; }
  .bp-klant__quote { right: 12px; max-width: 240px; }
}
@media (max-width: 540px) {
  .bp-klant__step { grid-template-columns: 40px 64px 1fr; gap: 12px; padding: 12px; }
  .bp-klant__step-num { width: 40px; height: 40px; font-size: 1rem; }
  .bp-klant__step-thumb { width: 64px; height: 64px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.bp-faq { padding: clamp(64px, 8vw, 100px) 0; background: var(--bp-surface); }

/* Two-column layout: FAQs left, image + USPs + CTAs right */
.bp-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.bp-faq__main { min-width: 0; }

.bp-faq__head { text-align: left; max-width: 640px; margin: 0 0 32px; }
.bp-faq__head h2 { margin: 14px 0 12px; }
.bp-faq__head p { color: var(--bp-muted); }
.bp-faq__list { max-width: none; margin: 0; display: flex; flex-direction: column; gap: 12px; }

/* Right side panel */
.bp-faq__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}
.bp-faq__side-image {
  position: relative;
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--bp-shadow-md);
}
.bp-faq__side-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bp-faq__side-usps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-faq__side-usp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bp-surface-2);
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-md);
  font-weight: 700;
  color: #05172C;
  font-size: 0.92rem;
}
.bp-faq__side-usp .bp-ico-tile {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}
.bp-faq__side-usp .bp-ico-tile .bp-ico { width: 18px; height: 18px; }
.bp-faq__side-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.bp-faq__side-ctas .bp-btn { justify-content: center; }

@media (max-width: 960px) {
  .bp-faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .bp-faq__side { position: static; }
}
.bp-faq__item {
  background: var(--bp-surface-2);
  border-radius: var(--bp-r-md);
  border: 1px solid transparent;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.bp-faq__item.is-open { border-color: var(--bp-accent); box-shadow: var(--bp-shadow-sm); background: #fff; }
.bp-faq__q {
  width: 100%;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--bp-font-body);
  font-weight: 700; font-size: 1rem;
  color: var(--bp-primary);
  text-align: left;
}
.bp-faq__q-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--bp-primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s, background .25s, color .25s;
}
.bp-faq__q-icon .bp-ico { width: 18px; height: 18px; transition: opacity .25s; }
.bp-faq__item.is-open .bp-faq__q-icon {
  background: var(--bp-accent);
  color: var(--bp-primary);
  transform: rotate(135deg);
}
.bp-faq__a {
  height: 0; overflow: hidden;
}
.bp-faq__a-inner {
  padding: 0 22px 22px;
  color: var(--bp-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bp-footer {
  background: #FFFFFF;
  color: var(--bp-muted);
  padding: 64px 0 0;
  font-size: 0.92rem;
  border-top: 1px solid var(--bp-line);
}
.bp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bp-line);
}
.bp-footer__brand-block img { display: block; height: 44px; margin-bottom: 18px; }
.bp-footer__brand-block p {
  color: var(--bp-muted);
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}
.bp-footer__nap {
  display: flex; flex-direction: column; gap: 8px;
  font-style: normal;
  font-size: 0.9rem;
}
.bp-footer__nap a,
.bp-footer__nap span { color: #2A3441; }
.bp-footer__nap a:hover { color: var(--bp-accent-2); }
.bp-footer__nap-row { display: inline-flex; align-items: center; gap: 8px; }
.bp-footer__nap-row .bp-ico { width: 16px; height: 16px; color: var(--bp-accent-2); }
.bp-footer__col h4 {
  color: #05172C;
  font-family: var(--bp-font-display);
  font-size: 1rem;
  margin: 0 0 18px;
}
.bp-footer__col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.bp-footer__col a {
  color: var(--bp-muted);
  transition: color .18s, padding .18s;
  display: inline-block;
}
.bp-footer__col a:hover { color: var(--bp-accent-2); padding-left: 4px; }

.bp-footer__certs {
  display: flex; flex-direction: column; gap: 12px;
}
.bp-footer__cert {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bp-surface-2);
  border: 1px solid var(--bp-line);
  border-radius: 10px;
}
.bp-footer__cert .bp-ico-tile {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(126,178,61,.14);
  color: var(--bp-accent-2);
}
.bp-footer__cert .bp-ico-tile .bp-ico { width: 18px; height: 18px; }
.bp-footer__cert-title { display: block; font-weight: 700; color: #05172C; font-size: 0.92rem; }
.bp-footer__cert-sub   { display: block; font-size: 0.78rem; color: var(--bp-muted); }

.bp-footer__bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--bp-muted);
}
.bp-footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.bp-footer__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bp-surface-2);
  color: #05172C;
  border: 1px solid var(--bp-line);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.bp-footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.bp-footer__bottom a:hover { color: var(--bp-accent-2); }
.bp-footer__socials a:hover {
  background: var(--bp-accent);
  color: #fff;
  border-color: var(--bp-accent);
  transform: translateY(-2px);
}

@media (max-width: 1080px) { .bp-footer__top { grid-template-columns: 1.4fr 1fr 1fr; } .bp-footer__col--certs { grid-column: 1 / -1; } }
@media (max-width: 720px) { .bp-footer__top { grid-template-columns: 1fr 1fr; } .bp-footer__brand-block { grid-column: 1 / -1; } }

/* ==========================================================================
   GLOBAL STICKY FOOTER CTA — expandable bottom bar
   Logo + phone + Doe de test + WhatsApp, collapsible
   ========================================================================== */
.bp-sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 40px);
  padding-bottom: env(safe-area-inset-bottom);
  /* Hidden until scrolled past the hero — JS adds .is-visible */
  opacity: 0;
  transform: translateY(140%);
  transition: opacity .35s ease, transform .45s cubic-bezier(.3,.8,.3,1);
}
.bp-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.bp-sticky-cta > * { pointer-events: auto; }

.bp-sticky-cta__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-full);
  padding: 8px;
  box-shadow: 0 16px 40px rgba(5, 23, 44, 0.18);
  max-width: 760px;
  overflow: hidden;
  transition: max-width .4s cubic-bezier(.3,.8,.3,1),
              padding .3s ease,
              opacity .25s ease,
              border-color .25s ease;
}
.bp-sticky-cta__brand {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
}
.bp-sticky-cta__brand img {
  height: 32px;
  width: auto;
  display: block;
}

.bp-sticky-cta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--bp-r-full);
  text-decoration: none;
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bp-primary);
  white-space: nowrap;
  transition: background .15s, color .15s, transform .15s;
}
.bp-sticky-cta__item .bp-ico { width: 18px; height: 18px; }
.bp-sticky-cta__item:hover { transform: translateY(-1px); }

.bp-sticky-cta__phone:hover {
  background: var(--bp-surface-2);
  color: var(--bp-primary);
}

.bp-sticky-cta__test {
  background: var(--bp-accent);
  color: #fff;
  box-shadow: 0 6px 14px rgba(126, 178, 61, 0.35);
}
.bp-sticky-cta__test:hover {
  background: var(--bp-accent-2);
  color: #fff;
  box-shadow: 0 8px 18px rgba(126, 178, 61, 0.45);
}
.bp-sticky-cta__test .bp-ico { transition: transform .25s; }
.bp-sticky-cta__test:hover .bp-ico { transform: translateX(2px); }

.bp-sticky-cta__wa {
  background: #25D366;
  color: #fff;
}
.bp-sticky-cta__wa:hover {
  background: #1faa53;
  color: #fff;
}

.bp-sticky-cta__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bp-line);
  background: #fff;
  color: var(--bp-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(5, 23, 44, 0.18);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.bp-sticky-cta__toggle:hover {
  background: var(--bp-primary);
  color: #fff;
}
.bp-sticky-cta__toggle .bp-ico {
  width: 20px;
  height: 20px;
  transition: transform .35s cubic-bezier(.3,.8,.3,1);
}

/* Collapsed state — bar slides shut, only the toggle stays */
.bp-sticky-cta[data-state="closed"] .bp-sticky-cta__bar {
  max-width: 0;
  padding: 0;
  opacity: 0;
  border-color: transparent;
  pointer-events: none;
}
.bp-sticky-cta[data-state="closed"] .bp-sticky-cta__toggle .bp-ico {
  transform: rotate(180deg);
}

/* Mobile: hide secondary text labels, stretch bar */
@media (max-width: 720px) {
  .bp-sticky-cta { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .bp-sticky-cta.is-visible { transform: translateY(0); }
  .bp-sticky-cta { transform: translateY(140%); }
  .bp-sticky-cta__bar { flex: 1; max-width: none; padding: 6px; gap: 4px; }
  .bp-sticky-cta__brand { padding: 0 4px; }
  .bp-sticky-cta__brand img { height: 26px; }
  .bp-sticky-cta__item { padding: 8px 12px; font-size: 0.85rem; }
  .bp-sticky-cta__phone span,
  .bp-sticky-cta__wa span { display: none; }
}
/* Very narrow (iPhone SE / 320px) — drop logo entirely, keep just 3 actions */
@media (max-width: 380px) {
  .bp-sticky-cta { left: 8px; right: 8px; gap: 6px; }
  .bp-sticky-cta__brand { display: none; }
  .bp-sticky-cta__item { padding: 8px 10px; font-size: 0.8rem; }
  .bp-sticky-cta__phone span { display: none; }
  .bp-sticky-cta__toggle { width: 40px; height: 40px; }
}

/* ==========================================================================
   PROSE  (bp-prose widget)  — kop + WYSIWYG body
   ========================================================================== */
.bp-prose-section { padding: clamp(32px, 5vw, 64px) 0; background: transparent; }
.bp-prose-section--surface { background: var(--bp-surface); }
.bp-prose-section--cream   { background: var(--bp-surface-2); }
.bp-prose-section--navy    {
  background: #05172C;
  color: rgba(255,255,255,.85);
}
.bp-prose-section--navy .bp-prose__heading,
.bp-prose-section--navy .bp-prose__body strong { color: #fff; }
.bp-prose-section--navy .bp-prose__body a { color: var(--bp-accent); }

.bp-prose-section--center .bp-prose { margin-left: auto; margin-right: auto; text-align: center; }
.bp-prose-section--center .bp-eyebrow { justify-content: center; }

.bp-prose { display: flex; flex-direction: column; gap: 14px; }
.bp-prose--narrow    { max-width: 720px; }
.bp-prose--contained { max-width: var(--bp-max); }
.bp-prose--full      { max-width: none; }

.bp-prose__heading {
  font-family: var(--bp-font-display);
  color: #05172C;
  line-height: 1.15;
  margin: 0;
}
.bp-prose__heading .bp-hl { color: var(--bp-accent); font-style: normal; }

.bp-prose__body {
  font-family: var(--bp-font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--bp-body);
}
.bp-prose__body > *:first-child { margin-top: 0; }
.bp-prose__body > *:last-child  { margin-bottom: 0; }
.bp-prose__body p,
.bp-prose__body ul,
.bp-prose__body ol { margin: 0 0 1em; }
.bp-prose__body ul,
.bp-prose__body ol { padding-left: 1.4em; }
.bp-prose__body li { margin-bottom: 0.4em; }
.bp-prose__body a:not(.bp-btn) {
  color: var(--bp-accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bp-prose__body a:not(.bp-btn):hover { color: #05172C; }
.bp-prose__body strong { color: #05172C; }
.bp-prose__body h2,
.bp-prose__body h3 {
  font-family: var(--bp-font-display);
  color: #05172C;
  margin: 1.4em 0 0.5em;
}

/* ==========================================================================
   IMAGE  (bp-image widget)
   ========================================================================== */
.bp-image { margin: 0; display: block; }
.bp-image--center { margin-left: auto; margin-right: auto; text-align: center; }
.bp-image--right  { margin-left: auto; text-align: right; }
.bp-image__frame {
  display: inline-block;
  overflow: hidden;
  line-height: 0;
  max-width: 100%;
}
.bp-image--rounded         .bp-image__frame { border-radius: var(--bp-r-md); }
.bp-image--rounded-shadow  .bp-image__frame { border-radius: var(--bp-r-lg); box-shadow: var(--bp-shadow-md); }
.bp-image__frame img       { display: block; max-width: 100%; height: auto; }
.bp-image--fit-cover   .bp-image__frame { aspect-ratio: 4/3; }
.bp-image--fit-cover   .bp-image__frame img { width: 100%; height: 100%; object-fit: cover; }
.bp-image--fit-contain .bp-image__frame { aspect-ratio: 4/3; background: var(--bp-surface-2); display: flex; align-items: center; justify-content: center; padding: 12px; }
.bp-image--fit-contain .bp-image__frame img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.bp-image figcaption {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--bp-muted);
}

/* ==========================================================================
   FORM  (bp-form widget + CF7 styling via class hooks)
   ========================================================================== */
.bp-form-section { padding: clamp(40px, 6vw, 72px) 0; }
.bp-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.bp-form-section--with-map .bp-form-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.bp-form-wrapper { max-width: 640px; }
.bp-form-section--with-map .bp-form-wrapper { max-width: none; }
.bp-form-wrapper__heading { font-family: var(--bp-font-display); color: #05172C; margin: 10px 0 8px; }
.bp-form-wrapper__intro   { color: var(--bp-muted); margin-bottom: 24px; line-height: 1.6; }

/* Google Maps sidebar */
.bp-form-map {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 24px;
}
.bp-form-map__head { display: flex; flex-direction: column; gap: 6px; }
.bp-form-map__title {
  font-family: var(--bp-font-display);
  font-size: 1.4rem;
  color: #05172C;
  margin: 4px 0 0;
}
.bp-form-map__address {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.95rem;
}
.bp-form-map__frame {
  border-radius: var(--bp-r-lg);
  overflow: hidden;
  box-shadow: var(--bp-shadow-md);
  background: var(--bp-surface-2);
}
.bp-form-map__frame iframe { display: block; width: 100%; height: 100%; }
.bp-form-map__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-r-full);
  color: #05172C;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.bp-form-map__open:hover {
  background: var(--bp-accent);
  border-color: var(--bp-accent);
  color: #fff;
  transform: translateY(-1px);
}
.bp-form-map__open .bp-ico { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .bp-form-section--with-map .bp-form-grid { grid-template-columns: 1fr; }
  .bp-form-map { position: static; }
}

.bp-form { display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.bp-form__row { display: flex; flex-direction: column; gap: 6px; }
.bp-form__row--submit { margin-top: 8px; }
.bp-form__label { font-weight: 700; color: #05172C; font-size: 0.92rem; }
.bp-form__req   { color: var(--bp-halal-red); }
.bp-form__input,
.wpcf7-form-control:not(.wpcf7-submit) {
  padding: 14px 18px;
  border-radius: var(--bp-r-md);
  border: 2px solid var(--bp-line);
  background: #fff;
  font-family: var(--bp-font-body);
  font-size: 1rem;
  color: #05172C;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.bp-form__input:focus,
.wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--bp-accent);
  box-shadow: var(--bp-shadow-glow);
}
textarea.bp-form__input,
.wpcf7-form-control.wpcf7-textarea { min-height: 140px; resize: vertical; }

/* CF7 response and validation states */
.wpcf7 .wpcf7-response-output { margin: 18px 0 0; padding: 14px 16px; border-radius: var(--bp-r-md); }
.wpcf7-not-valid-tip { color: var(--bp-halal-red); font-size: 0.82rem; margin-top: 4px; }

/* ==========================================================================
   NAP helper (used by mega menu data)
   ========================================================================== */
.bp-nap { font-style: normal; display: flex; flex-direction: column; gap: 4px; }
.bp-nap__name { font-weight: 700; color: var(--bp-primary); }

/* ==========================================================================
   HARDENING — bump specificity so Elementor / theme defaults can't override
   ========================================================================== */

/* Buttons — re-declare with higher specificity inside Elementor widget chrome */
.elementor a.bp-btn,
.bp-section a.bp-btn,
a.bp-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--bp-font-body);
  font-weight: 700;
  font-size: 0.96rem;
  border: 2px solid transparent;
  border-radius: var(--bp-r-full);
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
}
.elementor a.bp-btn--primary,
.bp-section a.bp-btn--primary,
a.bp-btn--primary,
.bp-btn--primary {
  background: var(--bp-accent) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(126, 178, 61, 0.35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.elementor a.bp-btn--primary:hover,
.bp-section a.bp-btn--primary:hover,
a.bp-btn--primary:hover,
.bp-btn--primary:hover {
  /* background stays green; the ::before navy panel fills over it */
  color: #fff !important;
  border-color: #7EB23D !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
.elementor a.bp-btn--dark,
.bp-section a.bp-btn--dark,
a.bp-btn--dark,
.bp-btn--dark {
  background: var(--bp-primary) !important;
  color: #fff !important;
}
.elementor a.bp-btn--dark:hover,
.bp-section a.bp-btn--dark:hover,
a.bp-btn--dark:hover {
  background: var(--bp-primary-2) !important;
  color: #fff !important;
}
.elementor a.bp-btn--ghost,
.bp-section a.bp-btn--ghost,
a.bp-btn--ghost,
.bp-btn--ghost {
  background: transparent !important;
  color: var(--bp-primary) !important;
  border-color: rgba(5, 23, 44, 0.16) !important;
}
.elementor a.bp-btn--ghost-light,
.bp-section a.bp-btn--ghost-light,
a.bp-btn--ghost-light,
.bp-btn--ghost-light {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Trust strip row — force grid against any reset */
.bp-section .bp-trust__row,
.bp-trust__row { display: grid !important; }

.bp-section .bp-cats__grid,
.bp-cats__grid {
  display: grid !important;
}

/* Product card media — fixed aspect-ratio container, but image CONTAINED
   so the full product is visible (no cropping). */
.bp-section .bp-product-card__media,
.bp-product-card__media {
  position: relative !important;
  aspect-ratio: 4 / 3;
  overflow: hidden !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.bp-section .bp-product-card__media img,
.bp-product-card__media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Season-block media — same: show the full image */
.bp-section .bp-products__season-media,
.bp-products__season-media {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.bp-section .bp-products__season-media img,
.bp-products__season-media img {
  position: static !important;
  inset: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.bp-section .bp-products__grid,
.bp-products__grid { display: grid !important; }

/* Hero/Aanbieding visual children should not stretch arbitrarily */
.bp-section .bp-hero__visual,
.bp-section .bp-aanbieding__visual { position: relative !important; }

/* Strip Elementor widget chrome that adds unwanted padding */
.elementor-widget-bp-header > .elementor-widget-container,
.elementor-widget-bp-footer > .elementor-widget-container,
.elementor-widget-bp-hero > .elementor-widget-container,
.elementor-widget-bp-trust-strip > .elementor-widget-container,
.elementor-widget-bp-three-brand > .elementor-widget-container,
.elementor-widget-bp-product-categories > .elementor-widget-container,
.elementor-widget-bp-aanbieding > .elementor-widget-container,
.elementor-widget-bp-logistiek > .elementor-widget-container,
.elementor-widget-bp-over-ons > .elementor-widget-container,
.elementor-widget-bp-folder-newsletter > .elementor-widget-container,
.elementor-widget-bp-word-klant > .elementor-widget-container,
.elementor-widget-bp-faq > .elementor-widget-container,
.elementor-widget-bp-mega-menu > .elementor-widget-container {
  padding: 0 !important;
}

/* ==========================================================================
   RESPONSIVE PATCH — added during full responsive audit
   Fixes & enhancements applied after the original stylesheet was authored.
   Order: container, hero, header, drawer/burger, mega-menu, products, forms,
          safe-area, sticky-cta interaction with drawer.
   ========================================================================== */

/* --- Global guards --------------------------------------------------------- */
html, body { overflow-x: hidden; }                 /* defensive against accidental overflow */
img, video, svg { max-width: 100%; height: auto; } /* every visual stays inside its column */
body { -webkit-text-size-adjust: 100%; }           /* iOS Safari rotation font-bump fix */

/* --- Container parity (mega-menu used hardcoded padding) ------------------- */
.bp-mega__grid { padding: 32px clamp(16px, 4vw, 32px) 36px; }

/* --- Header — shrink logo on smaller screens so burger doesn't crowd ------- */
@media (max-width: 720px) {
  .bp-header__logo img { height: 56px; }
  .bp-header__main { gap: 12px; padding: 12px 0; }
}
@media (max-width: 480px) {
  .bp-header__logo img { height: 48px; }
  .bp-header__logo { margin: -8px 0; }
}
@media (max-width: 380px) {
  .bp-header__logo img { height: 42px; }
}

/* --- Hero — recalibrate header offset for new compact header heights ------- */
@media (max-width: 720px) {
  .bp-hero { margin-top: -96px; padding-top: calc(96px + clamp(32px, 7vw, 64px)); }
}
@media (max-width: 480px) {
  .bp-hero { margin-top: -64px; padding-top: calc(64px + clamp(24px, 6vw, 48px)); }
}

/* --- Drawer — full-screen on phones, prevent body-scroll jump ------------- */
@media (max-width: 480px) {
  .bp-drawer__panel { width: 100%; padding: 20px; }
  .bp-drawer__nav a { padding: 16px; font-size: 1.1rem; min-height: 48px; }
}
/* Drawer open suppresses the sticky CTA so they don't fight for taps.
   .bp-drawer-open is set on <body> by initHeader() in bp-animations.js. */
body.bp-drawer-open .bp-sticky-cta {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(140%) !important;
}

/* --- Burger touch-target on iOS / older Android -------------------------- */
@media (hover: none) and (pointer: coarse) {
  .bp-header__burger { width: 48px; height: 48px; }
}

/* --- Buttons & links — guarantee 44px tap area on mobile ------------------ */
@media (max-width: 720px) {
  .bp-btn { min-height: 44px; padding: 12px 18px; }
}

/* --- Forms — prevent iOS auto-zoom on focus (any input <16px triggers it) - */
input[type="text"], input[type="email"], input[type="tel"],
input[type="url"], input[type="search"], input[type="number"],
input[type="password"], select, textarea {
  font-size: max(16px, 1rem);
}
@media (max-width: 720px) {
  input, select, textarea { min-height: 44px; }
}

/* --- Tables — horizontal scroll instead of layout break on narrow screens -- */
.bp-prose__body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}
.bp-prose__body th,
.bp-prose__body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--bp-line);
  text-align: left;
  white-space: nowrap;
}
.bp-prose__body th { font-weight: 700; color: var(--bp-primary); background: var(--bp-surface-2); }
@media (max-width: 480px) {
  .bp-prose__body th, .bp-prose__body td { padding: 8px 10px; font-size: 0.92rem; }
}

/* --- Typography — fluid scale for prose body ------------------------------ */
@media (max-width: 540px) {
  .bp-prose__body { font-size: 1rem; line-height: 1.65; }
  .bp-prose__body h3 { font-size: 1.2rem; margin-top: 1.4em; }
}

/* --- Hero proofs — wrap to two rows on tight phones, not overflow --------- */
@media (max-width: 380px) {
  .bp-hero__proofs li { font-size: 0.82rem; padding: 7px 12px; }
  .bp-hero__ctas .bp-btn { width: 100%; justify-content: center; }
}

/* --- Sticky CTA — leave room above safe-area on iOS PWAs ------------------ */
.bp-sticky-cta {
  bottom: max(20px, env(safe-area-inset-bottom));
}
@media (max-width: 720px) {
  /* Push page bottom so sticky CTA never covers final content */
  .bp-footer { padding-bottom: 88px; }
}

/* --- Focus visibility — make keyboard navigation obvious everywhere ------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--bp-accent);
  outline-offset: 2px;
  border-radius: var(--bp-r-sm);
}
.bp-header__burger:focus-visible,
.bp-btn:focus-visible { outline-offset: 3px; }

/* --- Tap highlight cleanup (default iOS blue flash) ----------------------- */
a, button { -webkit-tap-highlight-color: rgba(126, 178, 61, 0.15); }

/* --- Prevent flexbox children from pushing layout wider than viewport ----- */
.bp-section > *,
.bp-container > * { min-width: 0; }
