/* ============================================================
   Maker-World — stijl
   Kleuren en lettertypes staan bovenaan zodat ze makkelijk
   aan te passen zijn.
   ============================================================ */

:root {
  /* Kleuren */
  --bg-dark:     #232220;
  --bg-darker:   #1a1918;
  --bg-light:    #faf9f7;
  --bg-cream:    #f2efe9;
  --text-light:  #f5f3ef;
  --text-dark:   #2b2926;
  --muted-light: #c3bcb1;
  --muted-mid:   #9a948a;  /* leesbaar grijs op donkere achtergrond */
  --muted-dark:  #6f6a63;
  --accent:      #a8895f;  /* warme goud/taupe accentkleur (op donker) */
  --accent-dark: #85663f;  /* donkerder goud, leesbaar als tekst op licht */
  --accent-soft: #c9ad86;
  --border:      #e5e1da;
  --star:        #c8a24a;

  /* Lettertypes */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---- Basis ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  /* subtiele papier-textuur zodat de achtergrond minder vlak oogt */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.4px;
}

a { color: inherit; text-decoration: none; }

/* Klein accentlabel boven een kop */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
/* Op donkere achtergronden juist de lichtere accentkleur (beter leesbaar) */
.hero .eyebrow,
.page-banner .eyebrow,
.cta-band .eyebrow,
.newsletter .eyebrow,
.section-dark .eyebrow { color: var(--accent); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
}

/* ---- Knoppen ---- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }

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

.btn-light {
  background: transparent;
  border: 1px solid rgba(245,243,239,0.5);
  color: var(--text-light);
}
.btn-light:hover { background: var(--text-light); color: var(--text-dark); border-color: var(--text-light); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 100%;
  padding: 12px 20px;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ============================================================
   Navigatiebalk
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 25, 24, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* Alleen op de homepage: bovenaan doorzichtig over de hero, daarna vast */
.site-header.home:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  transition: padding 0.3s ease;
}
.site-header.scrolled .nav { padding-top: 15px; padding-bottom: 15px; }
.logo {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.82;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; border-bottom-color: var(--accent); }

.nav-icons { display: flex; gap: 16px; align-items: center; }
.icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); opacity: 0.82; padding: 4px;
  display: inline-flex; transition: opacity 0.2s;
}
.icon-btn:hover { opacity: 1; }
.icon-btn svg { width: 20px; height: 20px; }
.nav-toggle { display: none; }  /* alleen zichtbaar op smalle schermen */

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
  position: relative;
  color: var(--text-light);
  padding: 210px 0 140px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(38,36,33,0.92) 0%, rgba(20,19,17,0.93) 100%),
    url("afbeeldingen/web/sfeer-hero.jpg") center/cover no-repeat;
}
/* zachte, langzaam bewegende gloed voor wat leven in de hero */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 74% 32%, rgba(168,137,95,0.22), transparent 46%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: 0.5;  transform: translate(-2%, 1%)  scale(1); }
  to   { opacity: 1;    transform: translate(2%, -1%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
}
/* subtiel patroon voor wat diepte, zodat het minder "plat" oogt */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 78% 25%, rgba(168,137,95,0.22), transparent 42%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 46px 46px, 46px 46px;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 740px; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-grid .hero-content { max-width: none; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; display: block; border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(201,173,134,0.55); border-radius: 4px; pointer-events: none;
}
.hero h1 {
  font-size: 4.3rem;
  font-weight: 500;
  margin-bottom: 26px;
}
.hero p {
  color: var(--muted-light);
  font-size: 1.06rem;
  margin-bottom: 18px;
  max-width: 640px;
}
.hero .hero-actions { margin-top: 26px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Paginabalk (bovenaan de losse pagina's)
   ============================================================ */
.page-banner {
  position: relative;
  color: var(--text-light);
  padding: 180px 0 70px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(38,36,33,0.90) 0%, rgba(20,19,17,0.92) 100%),
    url("afbeeldingen/web/sfeer-hero.jpg") center/cover no-repeat;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(168,137,95,0.20), transparent 55%);
  pointer-events: none;
}
.page-banner h1 { position: relative; font-size: 3.2rem; margin-bottom: 10px; }
.page-banner .crumb {
  position: relative;
  color: var(--muted-light);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.page-banner .crumb a:hover { color: var(--accent-soft); }

/* ============================================================
   Sectie-basis
   ============================================================ */
.section { padding: 100px 0; }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--bg-dark); color: var(--text-light); }

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.row {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.section-head h2 { font-size: 2.7rem; }
.section-head .lead { color: var(--muted-dark); margin-top: 10px; max-width: 560px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.link-more { color: var(--accent-dark); font-size: 0.92rem; font-weight: 600; white-space: nowrap; }
.link-more:hover { color: var(--text-dark); }

/* ============================================================
   Vertrouwensbalk
   ============================================================ */
.trust-bar {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 0;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 26px; height: 26px; color: var(--accent); flex: 0 0 auto; }
.trust-item b { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; display: block; color: var(--text-dark); }
.trust-item span { font-size: 0.8rem; color: var(--muted-dark); }

/* ============================================================
   Nieuwsbrief
   ============================================================ */
.newsletter {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 84px 0;
}
.newsletter h2 { font-size: 2.5rem; margin-bottom: 12px; }
.newsletter p { color: var(--muted-light); max-width: 520px; margin: 0 auto 26px; }
.newsletter form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem;
}
.newsletter input::placeholder { color: var(--muted-light); }
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter .form-note { color: var(--muted-mid); margin-top: 12px; font-size: 0.8rem; }

/* ============================================================
   Drie pijlers
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.pillar-icon {
  width: 46px; height: 46px; color: var(--accent); margin-bottom: 20px;
}
.pillar h3 { font-size: 1.75rem; margin-bottom: 14px; color: var(--text-dark); }
.pillar h3::after {
  content: ""; display: block; width: 44px; height: 2px;
  background: var(--accent); margin-top: 14px;
}
.pillar p { color: var(--muted-dark); font-size: 0.98rem; }
.section-dark .pillar h3 { color: var(--text-light); }
.section-dark .pillar p { color: var(--muted-light); }

/* ============================================================
   Producten
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.product-card {
  background: #fff;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
  transform: translateY(-5px);
}
.product-image {
  display: block;
  height: 230px;
  background: var(--tile, #efece7);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.product-card h4 a:hover { color: var(--accent-dark); }
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.product-image.placeholder::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-dark);
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.product-card h4 { font-size: 1.4rem; margin-bottom: 4px; }
.stars { color: var(--star); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 8px; }
.stars .empty { color: #d8d2c8; }
.price { color: var(--accent-dark); font-weight: 500; font-size: 1.05rem; margin-bottom: 16px; }
/* subtiele doorgestreepte adviesprijs (Gingko-producten) */
.adviesprijs { font-size: 0.8rem; color: var(--muted-dark); margin-bottom: 2px; }
.product-card .price { margin-bottom: 16px; }
.pd-info .adviesprijs { margin-bottom: 4px; }

/* ============================================================
   Productpagina (detail)
   ============================================================ */
.crumb-light { font-size: 0.85rem; color: var(--muted-dark); margin-bottom: 32px; }
.crumb-light a:hover { color: var(--accent); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pd-main {
  aspect-ratio: 1 / 1;
  background: #efece7;
  overflow: hidden;
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-main.placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-dark); font-size: 0.72rem;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 76px; height: 76px; padding: 0;
  border: 1px solid var(--border); background: none;
  cursor: pointer; overflow: hidden;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--accent); }

.pd-info h1 { font-size: 2.8rem; margin: 6px 0 14px; }
.pd-price {
  font-family: var(--font-head); font-size: 1.6rem;
  color: var(--accent-dark); margin-bottom: 24px;
}
.pd-desc { color: var(--muted-dark); margin-bottom: 26px; }
.pd-desc p { margin-bottom: 12px; }
.pd-note { font-size: 0.85rem; color: var(--muted-dark); margin-top: 16px; }

/* ============================================================
   Blog-artikel (detailpagina)
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; }
.article .tag { color: var(--accent-dark); }
.article h1 { font-size: 2.9rem; line-height: 1.12; margin: 6px 0 10px; }
.article .meta {
  color: var(--muted-dark); font-size: 0.82rem;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 26px;
}
.article-lead { margin-bottom: 34px; overflow: hidden; border-radius: 4px; }
.article-lead img { width: 100%; display: block; }
.article h2 {
  font-size: 1.75rem; margin: 36px 0 12px; color: var(--text-dark);
}
.article p {
  color: #3f3b36; font-weight: 400; line-height: 1.85; margin-bottom: 16px;
}
.article .terug { margin-top: 36px; }

/* ============================================================
   Maatwerk-galerij
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efece7;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff; font-size: 0.82rem; letter-spacing: 0.3px;
  padding: 22px 14px 12px;
}

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-card { cursor: pointer; }
.blog-image {
  display: block;
  height: 250px;
  background: var(--tile, #2f2f2f);
  margin-bottom: 20px;
  overflow: hidden;
  transition: opacity 0.25s;
}
.blog-card h4 a:hover { color: var(--accent-dark); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card:hover .blog-image { opacity: 0.9; }
.tag {
  display: block;
  font-size: 0.7rem; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 8px; font-weight: 600;
}
.blog-card h4 { font-size: 1.5rem; margin-bottom: 8px; }
.blog-card .excerpt { color: var(--muted-dark); font-size: 0.95rem; }

/* ============================================================
   CTA-band
   ============================================================ */
.cta-band {
  background:
    linear-gradient(135deg, rgba(35,34,32,0.80) 0%, rgba(20,19,17,0.86) 100%),
    url("afbeeldingen/web/sfeer-cta.jpg") center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 100px 0;
  position: relative;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168,137,95,0.16), transparent 60%);
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2 { font-size: 2.8rem; margin-bottom: 16px; }
.cta-band p { color: var(--muted-light); max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   Over ons / proces
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split .media {
  height: 420px; background: linear-gradient(135deg, #3a352e, #26231f);
  overflow: hidden;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split h2 { font-size: 2.6rem; margin-bottom: 18px; }
.split p { color: var(--muted-dark); margin-bottom: 16px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step .num {
  font-family: var(--font-head); font-size: 2.6rem; color: var(--accent); line-height: 1;
  margin-bottom: 12px; display: block;
}
.step h4 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted-dark); font-size: 0.95rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.9rem; margin-bottom: 18px; }
.contact-info .row { margin-bottom: 18px; }
.contact-info .row span {
  display: block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 0.8rem; letter-spacing: 0.5px;
  color: var(--muted-dark); margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); background: #fff;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted-dark); margin-top: 6px; }
.form-fout {
  background: #fbeaea; border: 1px solid #e3b7b7; color: #9a3b3b;
  padding: 12px 16px; margin-bottom: 18px; font-size: 0.9rem; border-radius: 3px;
}
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 22px; }
.form-check input { width: auto; margin-top: 3px; flex: 0 0 auto; }
.form-check label { font-size: 0.9rem; color: var(--muted-dark); line-height: 1.5; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--bg-darker); color: var(--muted-light); padding-top: 70px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 54px;
}
.site-footer .logo { color: var(--text-light); display: block; margin-bottom: 14px; }
.site-footer p { font-size: 0.92rem; max-width: 340px; }
.site-footer h5 {
  color: var(--text-light); font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; text-align: center; font-size: 0.82rem; color: var(--muted-mid);
}

/* ============================================================
   Beweging: hover-zoom op foto's + in-beeld-glijden bij scrollen
   ============================================================ */
.product-image img, .blog-image img { transition: transform 0.6s ease; }
.product-card:hover .product-image img,
.blog-card:hover .blog-image img { transform: scale(1.06); }

/* Scroll-onthulling — alleen actief als JS draait; anders is alles gewoon zichtbaar */
.js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   RSC-actiepagina
   ============================================================ */
.rsc-groot {
  display: block;
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-soft);
  margin: 8px 0 14px;
}
@media (max-width: 620px) { .rsc-groot { font-size: 4.2rem; } }

/* Poster: hoe start ik mijn eigen bedrijf */
.poster-start {
  color: var(--text-light);
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #2c2a27 0%, #1b1a18 100%);
}
.poster-titel { font-size: 3.6rem; line-height: 1.08; margin-bottom: 6px; }
.poster-sub { color: var(--muted-light); font-size: 1.05rem; letter-spacing: 0.5px; margin-bottom: 34px; }
.poster-fotos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 38px;
}
.poster-fotos img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; display: block;
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}
.poster-start p { max-width: 640px; margin: 0 auto 14px; color: var(--muted-light); font-size: 1.06rem; }
.poster-start .lead-groot { color: var(--text-light); font-size: 1.25rem; font-style: italic; }
.poster-credit {
  margin-top: 36px; font-family: var(--font-body);
  letter-spacing: 2.5px; text-transform: uppercase;
  font-size: 0.85rem; color: var(--accent-soft);
}
@media (max-width: 720px) { .poster-fotos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .poster-titel { font-size: 2.4rem; } }

/* Onderzoeksposter-onderdelen */
.poster-merk {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 600;
  letter-spacing: 1px; color: var(--accent-soft); margin-bottom: 20px;
}
.poster-proces {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 18px; flex-wrap: wrap; margin: 38px 0;
}
.poster-proces figure { margin: 0; width: 210px; max-width: 42vw; }
.poster-proces img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; display: block;
  box-shadow: 0 14px 30px rgba(0,0,0,0.32);
}
.poster-proces figcaption {
  margin-top: 10px; font-size: 0.85rem; color: var(--muted-light); letter-spacing: 0.5px;
}
.poster-proces .pijl { align-self: center; color: var(--accent); font-size: 1.9rem; line-height: 1; }
.poster-rsc {
  max-width: 640px; margin: 6px auto 0; padding: 16px 24px;
  border: 1px solid rgba(201,173,134,0.4); border-radius: 4px;
  background: rgba(168,137,95,0.10); color: var(--text-light); font-size: 0.98rem;
}
.poster-rsc strong { color: var(--accent-soft); }
@media (max-width: 620px) {
  .poster-proces { flex-direction: column; align-items: center; gap: 10px; }
  .poster-proces figure { width: 220px; max-width: 78vw; }
  .poster-proces .pijl { transform: rotate(90deg); }
}

/* ============================================================
   Winkelwagen
   ============================================================ */
/* Aantal-bolletje op het winkelwagen-icoon */
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--accent); color: #fff;
  font-size: 0.64rem; font-family: var(--font-body); font-weight: 600;
  border-radius: 9px; display: none; align-items: center; justify-content: center;
  line-height: 1;
}

/* Bevestigings-melding (toast) */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
  background: var(--bg-darker); color: var(--text-light);
  padding: 13px 22px; border-radius: 4px; font-size: 0.9rem;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  opacity: 0; transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2000; max-width: 90%;
}
.toast.in { opacity: 1; transform: translate(-50%, 0); }

/* Winkelmandje-pagina */
.mand-lijst { margin-bottom: 30px; }
.mand-item {
  display: grid; grid-template-columns: 90px 1fr auto 100px 34px;
  gap: 20px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.mand-foto { width: 90px; height: 90px; overflow: hidden; background: #efece7; }
.mand-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mand-info h4 { font-size: 1.25rem; margin-bottom: 4px; }
.mand-prijs { color: var(--muted-dark); font-size: 0.9rem; }
.mand-aantal { display: flex; align-items: center; gap: 12px; }
.mand-aantal span { min-width: 20px; text-align: center; }
.mand-aantal button {
  width: 30px; height: 30px; border: 1px solid var(--border); background: #fff;
  cursor: pointer; font-size: 1.1rem; line-height: 1; color: var(--text-dark);
}
.mand-aantal button:hover { border-color: var(--accent); color: var(--accent-dark); }
.mand-regel { font-family: var(--font-head); font-size: 1.25rem; color: var(--accent-dark); text-align: right; }
.mand-verwijder { background: none; border: none; font-size: 1.5rem; color: var(--muted-dark); cursor: pointer; line-height: 1; }
.mand-verwijder:hover { color: #9a3b3b; }
.mand-samenvatting { max-width: 360px; margin-left: auto; }
.mand-totaal { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.1rem; margin-bottom: 18px; padding-top: 8px; }
.mand-totaal strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--text-dark); }
.mand-samenvatting .btn { width: 100%; }
#afrekenen[disabled] { opacity: 0.5; cursor: not-allowed; }
.mand-note { font-size: 0.85rem; color: var(--muted-dark); margin: 16px 0; }
.mand-note a { color: var(--accent-dark); }
.mand-samenvatting .link-more { display: inline-block; margin-top: 4px; }
.mand-leeg { color: var(--muted-dark); font-size: 1.05rem; margin-bottom: 22px; }

@media (max-width: 620px) {
  .mand-item { grid-template-columns: 64px 1fr 34px; column-gap: 14px; row-gap: 10px; }
  .mand-foto { width: 64px; height: 64px; }
  .mand-aantal { grid-column: 2; }
  .mand-regel { grid-column: 1 / 3; grid-row: 3; text-align: left; }
  .mand-verwijder { grid-column: 3; grid-row: 1; align-self: start; }
  .mand-samenvatting { max-width: none; }
}

/* ============================================================
   Responsive (telefoon / tablet)
   ============================================================ */
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { max-width: 420px; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-darker);
    padding: 8px 28px 18px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a {
    display: block; padding: 15px 0; opacity: 0.92;
    border-bottom: none;
  }
  .nav-links a.active { border-bottom: none; color: var(--accent-soft); }
  .hero h1 { font-size: 3rem; }
  .hero { padding: 150px 0 100px; }
  .page-banner { padding: 140px 0 56px; }
  .page-banner h1 { font-size: 2.4rem; }
  .pillars { grid-template-columns: 1fr; gap: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split .media { height: 280px; }
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-head.row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .newsletter form { flex-direction: column; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .trust-inner { grid-template-columns: 1fr; }
}
