/* ============================================================
   Bouwsteenwinkel — premium design system
   Strict palette: navy / yellow / cream / white / gray
   Type: Nunito (body+UI) · Fraunces (editorial display moments)
   ============================================================ */

:root {
  /* Color */
  --navy:        #1B2A4E;
  --navy-2:      #243760;
  --navy-3:     #36487A;
  --navy-deep:   #0F1A36;
  --navy-ink:    #0A1226;

  --yellow:      #FFB81C;
  --yellow-2:    #F5AC0F;
  --yellow-soft: #FFE9A8;

  --cream:       #FFF8E1;
  --cream-2:     #FBEFC4;
  --cream-3:     #F4E5B5;

  --white:       #FFFFFF;
  --off:         #FBFAF7;     /* near-white warm */
  --gray-line:   #E5E7EB;
  --gray-2:      #EFEFF2;
  --gray-3:      #DCDFE5;
  --gray-soft:   #F5F5F7;

  --text:        #1B2A4E;
  --text-2:      #4A5475;
  --text-muted:  #6C7589;
  --text-subtle: #9098AB;

  --success:     #2F8C46;
  --danger:      #B73327;

  /* Type */
  --sans: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Rubik', 'Nunito', system-ui, sans-serif;

  /* Layout */
  --maxw: 1400px;
  --maxw-narrow: 1200px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow (used sparingly) */
  --sh-1: 0 1px 0 rgba(27,42,78,0.04), 0 1px 2px rgba(27,42,78,0.04);
  --sh-2: 0 8px 20px -12px rgba(27,42,78,0.18);
  --sh-3: 0 24px 40px -20px rgba(27,42,78,0.25);
  --sh-deep: 0 32px 60px -28px rgba(15,26,54,0.5);
  /* Hover-lift: dichte close-shadow + diepere ambient shadow → kaart "komt naar voren". */
  --sh-lift: 0 4px 8px -2px rgba(27,42,78,0.08), 0 12px 28px -6px rgba(27,42,78,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--yellow); color: var(--navy); }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

/* =========================================================
   Type
   ========================================================= */
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; }
.display-italic { font-family: var(--display); font-style: italic; font-weight: 600; }

h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 800; letter-spacing: -0.015em; }
h1 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 700;
}
h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.018em;
  line-height: 1.06;
  font-weight: 700;
}
h3 { font-size: 22px; line-height: 1.25; }
h4 { font-size: 16px; }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--yellow);
}
.eyebrow.no-line::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--yellow); }
.eyebrow.on-dark::before { background: var(--yellow); }

.serif { font-family: var(--display); font-weight: 500; }
.italic { font-style: italic; }

.muted { color: var(--text-muted); }
.lede { font-size: 18px; line-height: 1.6; color: var(--text-2); max-width: 540px; }

/* yellow highlight underline */
.hl {
  background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%);
  padding: 0 4px;
  white-space: nowrap;
}
.hl.thick {
  background: linear-gradient(transparent 56%, var(--yellow) 56%, var(--yellow) 94%, transparent 94%);
}

/* yellow circle underline accent */
.circle-accent {
  position: relative;
  display: inline-block;
}
.circle-accent::after {
  content: '';
  position: absolute;
  inset: -8% -6% -8% -6%;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-3deg) scaleX(1.05);
}

/* =========================================================
   Layout
   ========================================================= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 32px; }

.section { padding: 112px 0; position: relative; }
.section.tight { padding: 72px 0; }
.section.dense { padding: 56px 0; }
.section.cream-bg { background: var(--cream); }
.section.off-bg   { background: var(--off); }
.section.navy-bg  { background: var(--navy); color: rgba(255,255,255,0.7); }
.section.navy-bg h1, .section.navy-bg h2, .section.navy-bg h3 { color: var(--white); }
.section.gray-bg  { background: var(--gray-soft); }

.divider { height: 1px; background: var(--gray-line); border: 0; margin: 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  padding: 17px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 8px 16px -8px rgba(15,26,54,0.4); }

.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-2); box-shadow: 0 8px 16px -8px rgba(255,184,28,0.4); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); padding: 15.5px 24.5px; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--gray-line); }
.btn-ghost:hover { border-color: var(--navy); }

.btn-ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); padding: 15.5px 24.5px; }
.btn-ghost-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* Gevulde witte secundaire knop voor donkere/foto-achtergronden (naast btn-yellow).
   Erft de basis-box (zelfde hoogte/padding/radius/gewicht als btn-yellow), randloos.
   Op LICHTE achtergronden blijft .btn-outline (navy rand) de secundaire keuze. */
.btn-secondary-on-dark { background: #fff; color: var(--navy); }
.btn-secondary-on-dark:hover { background: #F2F4F7; color: var(--navy); transform: translateY(-1px); }

.btn-lg { padding: 20px 32px; font-size: 16px; }
.btn-sm { padding: 11px 16px; font-size: 13px; }

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.5,.5,.2,1.2);
}
.btn:hover .arrow { transform: translateX(5px); }

/* Underlined text-link */
.linkish {
  color: var(--navy);
  font-weight: 700;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}
.linkish:hover { background-size: 0 1.5px; background-position: 100% 100%; }

/* =========================================================
   Header
   ========================================================= */
.usp-bar { background: var(--navy); color: var(--white); min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 600; line-height: 1.4; padding: 11px 24px; margin: 0; }
.usp-bar ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center; }
.usp-bar li { display: flex; align-items: center; gap: 10px; position: relative; }
.usp-bar li + li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.35); margin-right: 18px; margin-left: -10px; }
.usp-bar svg.check { color: var(--yellow); flex-shrink: 0; }
.usp-bar strong { font-weight: 800; }

.main-header { background: var(--white); border-bottom: 1px solid var(--gray-line); padding: 18px 0; position: sticky; top: 0; z-index: 60; }
.header-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }

.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 56px; height: 56px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; color: var(--navy); }
.logo-name .accent { color: var(--yellow); }
.logo-tagline { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--navy); opacity: 0.6; margin-top: 6px; }

/* Search with category prefix dropdown */
.search { position: relative; width: 100%; max-width: 680px; justify-self: center; display: flex; align-items: center; }
.search-input-wrap { position: relative; width: 100%; }
.search input {
  width: 100%;
  height: 52px;
  padding: 0 110px 0 50px;
  border: 1.5px solid var(--gray-line);
  border-radius: 12px;
  background: var(--gray-soft);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.search input::placeholder { color: var(--text-muted); }
.search input:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 4px rgba(27,42,78,0.06); }
.search .icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--navy); pointer-events: none; opacity: 0.6; }
.search .search-btn { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: var(--navy); color: var(--white); padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; transition: background 0.15s; }
.search .search-btn:hover { background: var(--navy-deep); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; color: var(--navy); transition: background 0.15s; position: relative; font-size: 13px; font-weight: 700; }
.icon-btn:hover { background: var(--gray-soft); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn .icon-label { display: inline-block; }
.icon-btn .chev { width: 12px; height: 12px; opacity: 0.6; }
.cart-count { position: absolute; top: 4px; right: 4px; background: var(--yellow); color: var(--navy); font-size: 10.5px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 9px; padding: 0 5px; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.cart-icon-btn { width: 44px; height: 44px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--navy); transition: background 0.15s; position: relative; }
.cart-icon-btn:hover { background: var(--gray-soft); }
.cart-icon-btn svg { width: 22px; height: 22px; }

.cta-header { background: var(--navy); color: var(--white); font-weight: 800; font-size: 14.5px; padding: 13px 22px; border-radius: 10px; display: inline-flex; align-items: center; gap: 10px; transition: background 0.15s; margin-left: 8px; }
.cta-header:hover { background: var(--navy-deep); }
.cta-header .arrow { transition: transform 0.2s; }
.cta-header:hover .arrow { transform: translateX(3px); }

/* Nav */
.nav-bar { background: var(--white); border-bottom: 1px solid var(--gray-line); position: relative; z-index: 50; }
.nav-bar .wrap { display: flex; align-items: center; min-height: 52px; gap: 4px; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; }
.nav-list a { display: inline-flex; align-items: center; gap: 6px; padding: 16px 14px; font-size: 14.5px; font-weight: 700; color: var(--navy); position: relative; transition: color 0.15s; border-radius: 8px; }
.nav-list a:hover { background: var(--gray-soft); }
.nav-list a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2.5px; background: var(--yellow); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease-out; }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-meta { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.nav-meta a { color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--navy); }
.menu-toggle:hover { background: var(--gray-soft); }

/* =========================================================
   Set card (premium)
   ========================================================= */
.set-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0; /* laat de kaart krimpen in grid/flex i.p.v. uit te zetten op de img-breedte (400px) → geen overflow op smal scherm */
  transition: transform 0.3s cubic-bezier(.4,.8,.3,1.2), border-color 0.2s, box-shadow 0.3s;
}
.set-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); text-decoration: none; }
.set-card:hover .sc-imgwrap img { transform: scale(1.04); }

/* (Pagina-specifieke catalogus-kaart-CSS — .set-card .img/.img-bg, .set-num,
   .ribbon, .fav-btn, .set-info/.set-meta/.set-name/.set-foot/.set-price/.set-age,
   .quick-rent — is verwijderd. Alle kaarten gebruiken nu het gedeelde
   .set-card / .sc-* component, gedefinieerd bij de set-card-stijlen verderop.) */

/* =========================================================
   Footer
   ========================================================= */
/* Herbruikbare NAVY kreet-/statement-strook (component: rd01-statement-strip.php).
   Zelfde navy + hoogte-orde als de statistiekenband zodat ze als familie ogen. */
.statement-strip { background: var(--navy); padding: 36px 0; text-align: center; }
.statement-strip .statement-eyebrow { display: block; width: 32px; height: 3px; margin: 0 auto 14px; background: var(--yellow); border-radius: 2px; }
.statement-strip .statement-kreet { margin: 0 0 8px; color: #fff; font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 3vw, 26px); letter-spacing: 0.04em; line-height: 1.15; }
.statement-strip .statement-kreet .hl-y { color: #F7A823; }
.statement-strip .statement-sub { margin: 0 auto; max-width: 640px; color: rgba(255,255,255,0.75); font-size: 16px; font-weight: 500; line-height: 1.5; }
@media (max-width: 700px) { .statement-strip { padding: 30px 0; } .statement-strip .statement-sub { font-size: 15px; } }

footer {
  background: var(--navy-deep);
  border-top: 3px solid #F7A823;
  color: rgba(255,255,255,0.68);
  padding: 88px 0 32px;
  font-size: 14px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 30%, var(--brand-coral, #B73327) 70%, var(--brand-coral, #B73327) 100%);
  opacity: 0.85;
}
footer .top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(5, minmax(0, 1fr));
  gap: 48px 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer .brand { max-width: 320px; }
footer h4 {
  color: var(--white);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
footer h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul li { line-height: 1.45; }
footer a {
  color: rgba(255,255,255,0.72);
  transition: color 0.15s ease;
  text-decoration: none;
}
footer a:hover { color: var(--yellow); text-decoration: none; }
footer .logo .logo-name { color: var(--white); }
footer .logo .logo-tagline { color: rgba(255,255,255,0.45); }
footer .desc { font-size: 14px; margin-top: 14px; line-height: 1.65; color: rgba(255,255,255,0.6); }

/* Contact column — phone prominent, hours muted */
footer .contact-col .phone {
  display: inline-block;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
footer .contact-col .phone:hover { color: var(--yellow); }
footer .contact-col .hours { color: rgba(255,255,255,0.5); font-size: 13px; }
footer .contact-col .address { color: rgba(255,255,255,0.72); font-style: normal; line-height: 1.5; }
footer .contact-col .kvk { color: rgba(255,255,255,0.42); font-size: 12.5px; letter-spacing: 0.02em; }

/* Payment chips (legacy, behouden) */
footer .pay-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
footer .pay-chip { background: var(--white); color: var(--navy); font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em; padding: 7px 11px; border-radius: 6px; }

/* Bottom bar */
footer .bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}
footer .bottom > div:first-child { max-width: 680px; }
footer .bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer .bottom .links a { color: rgba(255,255,255,0.55); font-size: 12.5px; }
footer .bottom .links a:hover { color: var(--white); }

/* Social icons */
footer .social { display: flex; gap: 10px; margin-top: 22px; }
footer .social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.72);
  transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.18s;
}
footer .social a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

/* Responsive: 6-kolom → 3-kolom op tablet → stack op mobile */
@media (max-width: 1100px) {
  footer .top {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
  }
  footer .brand { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 760px) {
  footer { padding: 56px 0 28px; }
  footer .top { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 36px; }
  footer .brand { grid-column: 1 / -1; }
  footer .bottom { padding-top: 24px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  footer .top { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   Floating cart pill (when items added)
   ========================================================= */
.floating-cart {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--sh-deep);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(.4,.8,.3,1.2);
  font-size: 14px;
  font-weight: 700;
}
.floating-cart.show { transform: translateY(0); }
/* Floating cart-pill alleen op mobile, op desktop staat de cart-CTA al in de header */
@media (min-width: 901px) { .floating-cart { display: none !important; } }
.floating-cart .meta { display: flex; flex-direction: column; gap: 1px; }
.floating-cart .meta .lbl { font-size: 11.5px; color: rgba(255,255,255,0.6); font-weight: 600; }
.floating-cart .go { background: var(--yellow); color: var(--navy); padding: 12px 20px; border-radius: var(--r-pill); font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s; }
.floating-cart .go:hover { background: var(--yellow-2); text-decoration: none; }
.floating-cart .go .arrow { transition: transform 0.2s; }
.floating-cart .go:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Trust pills
   ========================================================= */
.trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.t-num { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.t-lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.t-stars { display: inline-flex; gap: 1px; color: var(--yellow); margin-bottom: 2px; }
.t-stars svg { width: 14px; height: 14px; }
.t-sep { width: 1px; height: 36px; background: var(--gray-line); }

/* =========================================================
   Section head (default for content sections)
   ========================================================= */
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.sec-head .left { max-width: 640px; display: flex; flex-direction: column; gap: 14px; }
.sec-head .left p { color: var(--text-2); font-size: 16px; max-width: 480px; line-height: 1.55; }
.sec-head .right { display: flex; gap: 14px; align-items: center; }
.sec-head .right a { color: var(--navy); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; padding: 10px 4px; }
.sec-head .right a .arrow { transition: transform 0.2s; }
.sec-head .right a:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Grids
   ========================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }

/* =========================================================
   Forms
   ========================================================= */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--text-2); font-weight: 700; }
.field input, .field select, .field textarea {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-line);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,42,78,0.08);
}

/* Radio cards */
.radio-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--gray-line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.radio-card:hover { border-color: var(--text-muted); }
.radio-card.active { border-color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); }
.radio-card input { display: none; }
.radio-dot { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--gray-3); flex-shrink: 0; display: grid; place-items: center; }
.radio-card.active .radio-dot { border-color: var(--navy); }
.radio-card.active .radio-dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--navy); }
.radio-content { flex: 1; }
.radio-title { font-weight: 800; font-size: 15px; color: var(--navy); }
.radio-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.radio-price { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--navy); }

/* =========================================================
   Breadcrumb
   ========================================================= */
.crumb { font-size: 13px; color: var(--text-muted); padding: 28px 0 8px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumb a { color: var(--text-muted); transition: color 0.15s; }
.crumb a:hover { color: var(--navy); }
.crumb .sep { opacity: 0.5; }
.crumb .here { color: var(--navy); font-weight: 700; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .header-grid { gap: 20px; }
  .icon-label { display: none !important; }
  .cta-header { padding: 13px 16px; }
}
@media (max-width: 960px) {
  .usp-bar { font-size: 12.5px; }
  .usp-bar ul { gap: 14px; }
  .usp-bar li + li::before { margin-right: 8px; margin-left: -8px; }
  .logo-tagline { display: none; }
  .logo-name { font-size: 20px; }
  .logo-mark { width: 44px; height: 44px; }
  .search input { height: 46px; }
  .section { padding: 80px 0; }
}
@media (max-width: 720px) {
  .usp-bar { display: none; }
  .wrap { padding: 0 20px; }
  .header-grid { grid-template-columns: auto 1fr auto; gap: 12px; }
  .search { display: none; }
  .nav-list { display: none; }
  .menu-toggle { display: inline-flex; }
  /* Blauwe "Huur een set"-button verbergen op mobiel — CTA zit al in het menu/de hero. */
  .cta-header { display: none; }
  /* Tweede regel: telefoon weg, verzend-USP volle breedte gecentreerd. */
  .nav-meta { margin-left: 0; width: 100%; justify-content: center; gap: 0; text-align: center; }
  .nav-meta a { display: none; }
  .section { padding: 64px 0; }
  .sec-head { margin-bottom: 32px; }
  .floating-cart { right: 16px; bottom: 16px; }
}

/* ============================================================
   FAQ-accordion (herbruikbaar: productpagina, hoe-werkt-huren, enz.)
   Eigen crème sectievlak met losse witte kaarten.
   ============================================================ */
.faq-section { padding: 64px 0; background: var(--cream); }
.faq-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.faq-eyebrow { display: inline-block; width: 32px; height: 3px; border-radius: 2px; background: var(--yellow); margin-bottom: 14px; }
.faq-title { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 0; line-height: 1.2; }
.faq-sub { margin: 8px 0 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.5; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20,37,76,0.06), 0 4px 12px rgba(20,37,76,0.08);
  transition: box-shadow 0.2s ease;
}
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 44px; padding: 18px 20px;
  font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--navy);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0; width: 10px; height: 10px;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(45deg); transition: transform 0.2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(225deg); }
.faq-a { padding: 0 20px 18px; }
.faq-a p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.7; }
.faq-a a { color: var(--navy); font-weight: 700; text-decoration: underline; }
@media (hover: hover) {
  .faq-item:hover { box-shadow: 0 4px 8px rgba(20,37,76,0.08), 0 12px 28px rgba(20,37,76,0.14); }
}
@media (max-width: 760px) {
  .faq-list, .faq-head { padding-left: 16px; padding-right: 16px; }
}

/* ============================================================
   GEDEELD, CANONIEK set-kaart-component (rd01-set-card.php).
   Eén stijl voor catalogus, homepage-scroller én Vergelijkbare sets.
   Chrome (border 1px, radius --r-md, hover −6px) komt van .set-card
   hierboven; hieronder de inhoud + opties (.sc-fav, .sc-avail, .sc-soldout).
   ============================================================ */
.sc-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; cursor: pointer; }
.sc-imgwrap { position: relative; aspect-ratio: 4 / 3; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 10px; overflow: hidden; }
.sc-imgwrap img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform 0.4s cubic-bezier(.4,.8,.3,1.2); }
/* Pills linksboven: setnummer + optioneel Nieuw/Uitverhuurd, gestapeld. */
.sc-tags { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.sc-model { background: rgba(255,255,255,0.92); color: var(--navy); padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; letter-spacing: 0.02em; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.sc-new { background: var(--yellow); color: var(--navy); padding: 4px 9px; border-radius: var(--r-pill); font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.sc-soldout { background: #C2660F; color: #fff; padding: 4px 9px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; }
/* Favoriet-hartje rechtsboven (optie show_favorite). */
.sc-fav { position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gray-line); background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; color: var(--text-muted); cursor: pointer; box-shadow: 0 1px 3px rgba(20,37,76,0.12); transition: color 0.15s, transform 0.15s; }
.sc-fav:hover { transform: scale(1.08); }
.sc-fav.is-on { color: var(--danger, #c02e2e); }
.sc-body { display: flex; flex-direction: column; flex: 1; padding: 14px 16px 16px; }
.sc-eyebrow { font-size: 11.5px; color: var(--text-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.sc-name { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--navy); margin: 3px 0 0; line-height: 1.3; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 8px; }
.sc-price { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--navy); }
.sc-per { font-family: var(--sans); font-size: 12px; color: var(--text-muted); font-weight: 600; margin-left: 1px; }
.sc-age { font-size: 12px; font-weight: 700; color: var(--text-2); background: #EEF1F5; padding: 3px 9px; border-radius: var(--r-pill); }
.sc-avail { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; color: #2F8C46; }

/* ====================================================================
   "Huren"-knop op de set-kaart (rd01-set-card.php) + centrale keuze-modal
   (rd01-rent-modal.php). De periodeselector-styling (.duration / .dur-*)
   staat hier centraal zodat de productpagina én de kaart-modal exact
   hetzelfde component tonen.
   ==================================================================== */
.sc-rent {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: auto;
  border: 0; border-radius: 0;
  padding: 13px 16px;
  font-family: var(--sans); font-weight: 800; font-size: 14px;
  background: var(--yellow); color: var(--navy);
  cursor: pointer; transition: background 0.15s ease;
}
.sc-rent:hover { background: var(--yellow-2); }
.sc-rent .arrow { transition: transform 0.15s ease; }
.sc-rent:hover .arrow { transform: translateX(3px); }
/* Uitverhuurde kaart: geen dode knop, maar een link naar de productpagina. */
.sc-rent.is-soldout { background: #EEF1F5; color: var(--navy); cursor: pointer; text-decoration: none; }
.sc-rent.is-soldout:hover { background: #E2E6EC; }

/* Periodeselector — gedeeld component (voorheen inline in page-set.php). */
.duration { margin-top: 14px; background: var(--white); border: 1px solid var(--gray-line); border-radius: var(--r-md); padding: 16px 16px 14px; }
.duration-label { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.duration-label .ttl { font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.duration-label .dur-total { margin-left: auto; font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.dur-opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.dur-opt { position: relative; display: flex; align-items: center; justify-content: center; min-height: 48px; border: 1.5px solid var(--gray-line); background: var(--white); border-radius: 10px; padding: 10px 6px; cursor: pointer; font-family: var(--sans); color: var(--navy); transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s; min-width: 0; }
.dur-opt:hover { border-color: var(--navy); }
.dur-opt:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.dur-opt.active { background: #14254C; border-color: #14254C; color: var(--white); box-shadow: 0 2px 8px rgba(20,37,76,0.20); }
.dur-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); line-height: 1; white-space: nowrap; border: 2px solid var(--white); box-shadow: 0 1px 4px rgba(20,37,76,0.22); }
.dur-opt-wk { font-size: 14.5px; font-weight: 800; letter-spacing: -0.01em; }

/* Keuze-modal */
.rentm { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity 0.2s ease, visibility 0.2s ease; }
.rentm.is-open { visibility: visible; opacity: 1; }
.rentm-overlay { position: absolute; inset: 0; background: rgba(15,26,54,0.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.rentm-dialog { position: relative; z-index: 1; width: 100%; max-width: 580px; max-height: calc(100vh - 48px); overflow-y: auto; background: var(--white); border-radius: 16px; box-shadow: 0 20px 60px rgba(15,26,54,0.35); padding: 30px; transform: translateY(8px); transition: transform 0.2s ease; }
.rentm.is-open .rentm-dialog { transform: translateY(0); }
.rentm-dialog:focus { outline: none; }
.rentm-x { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 0; background: #EEF1F5; color: var(--navy); border-radius: 50%; cursor: pointer; }
.rentm-x:hover { background: #E2E6EC; }
.rentm-head { display: flex; gap: 14px; align-items: center; padding-right: 36px; }
.rentm-img { width: 84px; height: 84px; object-fit: contain; background: var(--white); border: 1px solid var(--gray-line); border-radius: 10px; flex-shrink: 0; padding: 5px; }
.rentm-eyebrow { font-size: 11.5px; color: var(--text-muted); font-weight: 800; letter-spacing: 0.04em; }
.rentm-title { font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.2; margin: 2px 0 0; }
.rentm-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.rentm-add { width: 100%; }
.rentm-details { text-align: center; font-size: 13.5px; font-weight: 700; color: var(--navy); text-decoration: none; }
.rentm-details:hover { text-decoration: underline; }
.rentm-toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(12px); z-index: 1100; background: #14254C; color: #fff; font-size: 13.5px; font-weight: 700; padding: 12px 18px; border-radius: 12px; box-shadow: 0 8px 24px rgba(15,26,54,0.35); opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; max-width: calc(100vw - 32px); }
.rentm-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
/* Periodeselector in de modal: extra ruimte boven de knoppenrij zodat de
   "Meest gekozen"-badge die boven de knop uitsteekt volledig zichtbaar is. */
.rentm .dur-opts { margin-top: 18px; }
/* Til de knop mét de badge boven zijn buren, zodat de uitstekende badge niet
   achter een naastliggende knop verdwijnt (geldt ook op de productpagina). */
.dur-opt:has(.dur-badge) { z-index: 2; }
/* Desktop: periodeknoppen + totaal + titel iets ruimer (mobiel blijft compact). */
@media (min-width: 481px) {
  .rentm-dialog { padding: 32px; }
  .rentm-title { font-size: 21px; }
  .rentm .dur-opt { min-height: 54px; }
  .rentm .dur-opt-wk { font-size: 15.5px; }
  .rentm .dur-total { font-size: 17px; }
}

/* Mobiel: periodeknoppen 2×2; modal als bottom-sheet. */
@media (max-width: 480px) {
  .duration { padding: 14px 14px 13px; }
  .dur-opts { grid-template-columns: repeat(2, 1fr); gap: 20px 8px; }
  .rentm { padding: 0; align-items: flex-end; }
  .rentm-dialog { max-width: 100%; max-height: 92vh; border-radius: 18px 18px 0 0; transform: translateY(100%); padding: 20px 18px calc(20px + env(safe-area-inset-bottom)); }
  .rentm.is-open .rentm-dialog { transform: translateY(0); }
}

/* ============================================================
   Social proof — gedeelde badges + reviewquotes (productpagina +
   homepage). Render: includes/rd01-social-proof-render.php.
   ============================================================ */
.social-proof { background: var(--white); padding: 64px 0; }
.sp-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.sp-eyebrow { display: inline-block; width: 32px; height: 3px; border-radius: 2px; background: var(--yellow); margin-bottom: 14px; }
.sp-title { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 0; line-height: 1.2; }
.sp-sub { margin: 8px 0 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.5; }
.sp-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sp-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; background: var(--white); border-radius: 12px; padding: 22px 18px; border: 1px solid rgba(20,37,76,0.06); box-shadow: 0 1px 3px rgba(20,37,76,0.08), 0 6px 16px rgba(20,37,76,0.10); text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.sp-badge-logo { height: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.sp-logo-text { font-family: var(--display); font-size: 14px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.sp-badge-score { font-family: var(--display); font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.sp-badge-score .sp-star { color: #F7A823; }
.sp-badge-sub { font-size: 13px; font-weight: 700; color: var(--text-2); }
.sp-badge-note { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.sp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.sp-quote { margin: 0; background: var(--white); border-radius: 12px; padding: 20px; border: 1px solid rgba(20,37,76,0.06); box-shadow: 0 1px 3px rgba(20,37,76,0.08), 0 6px 16px rgba(20,37,76,0.10); display: flex; flex-direction: column; gap: 10px; }
.sp-quote-stars { color: #F7A823; font-size: 15px; letter-spacing: 1px; line-height: 1; }
.sp-quote-text { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.sp-quote-meta { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.sp-allreviews { margin-top: 24px; text-align: center; }
.sp-allreviews a { font-weight: 800; font-size: 14px; color: var(--navy); text-decoration: none; }
.sp-allreviews a:hover { text-decoration: underline; }
@media (hover: hover) { .sp-badge:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(20,37,76,0.08), 0 12px 28px rgba(20,37,76,0.14); } }
@media (max-width: 760px) { .sp-badges, .sp-quotes { grid-template-columns: 1fr; } }

/* Persstrip "BEKEND VAN" (homepage) */
.press-strip { margin-top: 40px; text-align: center; }
.press-strip .as-seen { display: block; font-size: 11.5px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px; }
.press-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 40px; }
.press-logo { height: 30px; display: inline-flex; align-items: center; filter: grayscale(1); opacity: 0.6; transition: filter 0.2s ease, opacity 0.2s ease; }
.press-logo img { height: 100%; width: auto; display: block; }
.press-logo-text { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--navy); white-space: nowrap; letter-spacing: -0.01em; }
a.press-logo:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 560px) { .press-logos { gap: 16px 28px; } .press-logo { height: 26px; } }
