@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Nunito:wght@400;600;700&display=swap');

:root {
  --bg: #fffdf9;
  --fg: #3a372f;
  --primary: #5d705b;
  --primary-fg: #fbfbf7;
  --secondary: #a4643c;
  --accent: #f3e7d9;
  --muted-fg: #787268;
  --border: #ebe3d8;
  --surface: #fffefb;
  --shadow-soft: 0 8px 24px -14px rgba(127, 155, 130, 0.18);
  --shadow-float: 0 20px 48px -26px rgba(215, 169, 127, 0.22);
}

* { box-sizing: border-box; }

html { scroll-padding-top: 6rem; }

body {
  margin: 0;
  font-family: 'Nunito', 'Trebuchet MS', sans-serif;
  color: var(--fg);
  background:
    radial-gradient(1100px 700px at -10% -20%, rgba(232, 196, 164, 0.2), transparent 48%),
    radial-gradient(900px 600px at 120% 20%, rgba(168, 194, 171, 0.18), transparent 46%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23a)' opacity='0.85'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Fraunces', Georgia, serif;
}

/* ─── STICKY HEADER ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(235, 227, 216, 0.82);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(12px);
}

.navbar {
  padding: 0.95rem 0;
  background: transparent;
}

.navbar-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: auto;
  height: 2.5rem;
  max-width: 9.5rem;
  display: block;
  object-fit: contain;
}

.navbar-brand:hover { color: var(--secondary); }

.navbar-toggler { border-color: rgba(93, 112, 82, 0.28); }
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(93, 112, 82, 0.2); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44,44,36,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--fg);
  font-weight: 600;
  margin: 0 0.7rem;
  padding: 0.4rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: all 300ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.language-switcher {
  margin-top: 0.65rem;
}

.language-toggle {
  min-height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 140, 93, 0.55);
  background: rgba(255, 255, 255, 0.7);
  color: #5e5549;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  box-shadow: var(--shadow-soft);
}

.language-toggle:hover,
.language-toggle:focus {
  border-color: var(--secondary);
  color: var(--secondary);
  background: #fff;
}

.language-switcher .dropdown-menu {
  min-width: 11.5rem;
  border: 1px solid rgba(222, 216, 207, 0.9);
  border-radius: 0.95rem;
  box-shadow: var(--shadow-soft);
  padding: 0.42rem;
}

.language-switcher .dropdown-item {
  border-radius: 0.65rem;
  font-size: 0.92rem;
  padding: 0.5rem 0.65rem;
}

.language-switcher .dropdown-item.active,
.language-switcher .dropdown-item:active {
  background: rgba(193, 140, 93, 0.15);
  color: #5e5549;
}

.language-switcher .dropdown-item.disabled {
  color: #9a978f;
}

.notice-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(235, 227, 216, 0.82);
  border-bottom: 1px solid rgba(235, 227, 216, 0.82);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(249, 243, 236, 0.88));
}

.notice-strip p {
  margin: 0;
  padding: 0.85rem 0;
  color: #5d5b52;
  font-size: 0.98rem;
  line-height: 1.55;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
}

@media (min-width: 576px) {
  .notice-strip p {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .language-switcher {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

.notice-strip strong {
  color: var(--fg);
  font-weight: 700;
}

.notice-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.12);
  color: var(--primary);
}

.notice-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── LAYOUT ─── */

main {
  padding-top: 0;
  padding-bottom: 0;
}

main > section {
  margin-bottom: 3.5rem;
}

main > .hero-bleed,
main > .faq-section-bleed {
  margin-bottom: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section-head .h2,
.section-head h2 {
  margin-bottom: 0.5rem;
}

.availability-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 216, 207, 0.8);
  color: var(--muted-fg);
  font-size: 0.98rem;
  line-height: 1.65;
}

.availability-note strong {
  color: var(--fg);
}

/* Full-bleed hero direct onder de header (main heeft geen boven-padding) */
main.container > .hero-bleed:first-child {
  margin-top: 0;
}

/* Eerste subpagina-header zonder extra witruimte bovenaan */
main.container > .page-hero:first-child {
  margin-top: 0;
}

/* ─── PAGE HERO (full-bleed subpage header) ─── */

.page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.75rem 0 3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(760px 340px at 12% 18%, rgba(232, 196, 164, 0.16), transparent 58%),
    radial-gradient(700px 320px at 88% 20%, rgba(168, 194, 171, 0.12), transparent 55%),
    linear-gradient(180deg, #fff8f0 0%, #fbf2e8 48%, #fffdf9 100%);
}

.page-hero--flush {
  margin-bottom: 2.5rem;
  padding-bottom: 2.4rem;
}

.page-hero h1 {
  margin-bottom: 0.6rem;
}

.page-hero .muted {
  max-width: 42rem;
}

/* ─── HERO (homepage full-bleed) ─── */

.hero-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(760px 340px at 12% 18%, rgba(232, 196, 164, 0.2), transparent 58%),
    radial-gradient(700px 320px at 88% 20%, rgba(168, 194, 171, 0.14), transparent 55%),
    linear-gradient(180deg, #fff8f0 0%, #fbf1e6 48%, #fffcf8 100%);
}

.hero-bleed > .container {
  position: relative;
  z-index: 1;
}

/* ─── IMAGES ─── */

.hero-image,
.media-blob,
.media-arch {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-float);
}

.hero-image,
.media-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  border: 4px solid #fff;
  aspect-ratio: 1 / 1;
}

.hero-image {
  max-height: 480px;
  object-position: center 58%;
}

.media-arch {
  border-radius: 220px 220px 26px 26px;
  border: 4px solid #fff;
  aspect-ratio: 3 / 4;
  max-height: 420px;
  margin-inline: auto;
}

.media-loop {
  background: #f6f0e7;
}

.media-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.media-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 220px 220px 26px 26px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-float);
  background: rgba(255, 255, 255, 0.72);
}

.media-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.media-slider__slide {
  min-width: 100%;
}

.media-slider__slide img {
  width: 100%;
  aspect-ratio: 4 / 4;
  display: block;
  object-fit: cover;
}

.media-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.media-slider__arrow {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(199, 173, 147, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #8e6b51;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.media-slider__arrow:hover,
.media-slider__arrow:focus {
  background: #fff;
  color: #b77c4e;
  transform: translateY(-1px);
}

.media-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.media-slider__dot {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 999px;
  background: rgba(199, 173, 147, 0.38);
  padding: 0;
  transition: transform 180ms ease, background 180ms ease;
}

.media-slider__dot.is-active {
  background: var(--primary);
  transform: scale(1.12);
}

/* ─── CARDS (unified) ─── */

.section-card {
  background: var(--surface);
  border: 1px solid rgba(235, 227, 216, 0.78);
  box-shadow: var(--shadow-soft);
  border-radius: 1.6rem;
  backdrop-filter: blur(4px);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(93, 112, 82, 0.15);
}

.cta-panel {
  background: linear-gradient(140deg, rgba(243, 231, 217, 0.42), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(235, 227, 216, 0.78);
  box-shadow: var(--shadow-soft);
  border-radius: 1.6rem;
  backdrop-filter: blur(4px);
}

/* ─── TRUST STRIP ─── */

.trust-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(235, 227, 216, 0.82);
  border-bottom: 1px solid rgba(235, 227, 216, 0.82);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(248, 242, 234, 0.88));
  margin-bottom: 3.5rem;
}

.trust-item {
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border-right: 1px solid rgba(222, 216, 207, 0.6);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--fg);
  display: block;
}

.trust-item span:last-child {
  font-size: 0.82rem;
  color: var(--muted-fg);
}

.trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.12);
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.trust-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── FEATURE ICON (card icon) ─── */

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(93, 112, 82, 0.14), rgba(193, 140, 93, 0.12));
  color: var(--primary);
}

.feature-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── CHECK ITEMS (CTA panel list) ─── */

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

.check-dot {
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.05rem;
}

/* ─── AVAILABILITY NOTE ─── */

.availability-note {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(222, 216, 207, 0.7);
  margin-top: 0.25rem;
}

.availability-note strong {
  color: var(--fg);
}

/* ─── PILLS & BADGES ─── */

.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  background: #f4eadf;
  color: #726657;
  font-weight: 700;
  font-size: 0.84rem;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 3rem;
  padding-block: 0.55rem;
  padding-inline: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
  transition: all 300ms ease;
}

.btn-brand {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-soft);
}

.btn-brand:hover,
.btn-brand:focus {
  background: #708a73;
  border-color: #708a73;
  color: var(--primary-fg);
  transform: scale(1.03);
  box-shadow: 0 12px 28px -16px rgba(127, 155, 130, 0.35);
}

.btn-outline-brand {
  border: 2px solid #c58f63;
  color: #b77c4e;
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: #c58f63;
  color: #fff;
  border-color: #c58f63;
  transform: scale(1.03);
}

/* ─── FEATURE LIST ─── */

.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted-fg);
  line-height: 1.85;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.variant-card {
  background: rgba(254, 254, 250, 0.78);
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.35rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.variant-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 1.05rem;
  box-shadow: var(--shadow-soft);
  background: var(--surface);
  padding: 0.75rem;
}

.variant-card h3 {
  margin: 0.9rem 0 0.25rem;
  font-size: 1.1rem;
}

.variant-card p {
  margin: 0;
  color: var(--muted-fg);
}

/* ─── COLOR PICKER (Product Page) ─── */

.color-picker-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, rgba(243, 231, 217, 0.42), rgba(250, 244, 236, 0.92));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.color-picker-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.color-preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.15s ease-in-out;
}

.color-swatches {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.color-swatch-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid transparent;
  outline: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
  position: relative;
}

.color-swatch-btn:focus-visible,
.media-slider__arrow:focus-visible,
.media-slider__dot:focus-visible,
.navbar-toggler:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #a4643c;
  outline-offset: 3px;
}

.color-swatch-btn:hover {
  transform: scale(1.1);
}

.color-swatch-btn.active {
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 24px -6px rgba(93, 112, 82, 0.3);
}

.color-swatch-btn.active::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(93, 112, 82, 0.4);
}

.color-details {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(222, 216, 207, 0.6);
  box-shadow: var(--shadow-soft);
}

.color-cta {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(222, 216, 207, 0.6);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.color-cta p {
  margin-bottom: 1rem !important;
}

.color-cta .d-flex {
  margin-top: 0.9rem;
}

/* ─── SPEC GRID (product page) ─── */

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
}

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

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.spec-icon {
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(93, 112, 82, 0.13), rgba(193, 140, 93, 0.1));
  color: var(--primary);
  margin-top: 0.15rem;
}

.spec-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-item strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.1rem;
}

.spec-item span {
  font-size: 0.85rem;
  color: var(--muted-fg);
  line-height: 1.45;
}


.faq-accordion .accordion-item {
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-section-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #fdf9f4, #fffdfb);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  box-shadow: none;
  padding: 1.1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(230, 220, 205, 0.35);
  color: var(--fg);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.18rem rgba(93, 112, 82, 0.16);
}

.faq-accordion .accordion-body {
  padding: 1.1rem 1.25rem 1.25rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ─── TYPOGRAPHY ─── */

.display-4, .display-5, .display-6, .h3, .h4 {
  letter-spacing: 0.01em;
}

.muted {
  color: var(--muted-fg);
  line-height: 1.7;
}

a { color: #4f5f46; }
a:hover { color: #c18c5d; }

.contact-hero-copy {
  max-width: 42rem;
}

.mini-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.mini-trust-card {
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(254, 254, 250, 0.86);
  border: 1px solid rgba(222, 216, 207, 0.75);
  box-shadow: var(--shadow-soft);
}

.mini-trust-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
  color: var(--fg);
}

.mini-trust-card span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.45;
}

.contact-layout {
  align-items: start;
}

.lead-form-card,
.contact-detail-card,
.purchase-card {
  background: var(--surface);
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.lead-form-card,
.contact-detail-card {
  padding: 1.5rem;
}

.lead-form-card h2,
.contact-detail-card h2,
.purchase-card h3 {
  margin-bottom: 0.75rem;
}

.lead-form-card .form-label {
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.lead-form-card .form-control,
.lead-form-card .form-select {
  min-height: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(193, 140, 93, 0.35);
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg);
  box-shadow: none;
}

.lead-form-card textarea.form-control {
  min-height: 8.5rem;
  resize: vertical;
}

.lead-form-card .form-control:focus,
.lead-form-card .form-select:focus {
  border-color: rgba(93, 112, 82, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(93, 112, 82, 0.12);
}

.contact-meta-list,
.inline-check-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-meta-list li,
.inline-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted-fg);
  line-height: 1.55;
}

.meta-bullet {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.quick-action-card {
  padding: 1.35rem;
  height: 100%;
}

.quick-action-card h3 {
  margin-bottom: 0.45rem;
}

.quick-action-card p {
  margin-bottom: 1rem;
}

.support-note {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.purchase-card {
  padding: 1.35rem;
  height: 100%;
}

.purchase-card p:last-child {
  margin-bottom: 0;
}

.section-note {
  font-size: 0.92rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ─── FOOTER ─── */

.site-footer {
  border-top: 1px solid rgba(222, 216, 207, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(243, 231, 217, 0.34));
}

.site-footer.mt-5 {
  margin-top: 0 !important;
}

.footer-ecosystem {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 216, 207, 0.65);
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.footer-ecosystem a {
  font-weight: 700;
  text-decoration: none;
}

.footer-ecosystem a:hover {
  text-decoration: underline;
}

.footer-links a {
  text-decoration: none;
  color: #4f5f46;
}

.footer-links a:hover { color: #c18c5d; }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #4f5f46;
  line-height: 1.35;
}

.contact-link:hover { color: #c18c5d; }

.contact-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.1);
  color: var(--primary);
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(222, 216, 207, 0.8);
  }

  .nav-link {
    margin: 0;
    padding: 0.55rem 0;
  }

  .page-hero {
    padding: 2.4rem 0 1.75rem;
  }

  .content-block {
    padding: 1.5rem;
  }

  main > section {
    margin-bottom: 2.5rem;
  }

  main > .hero-bleed,
  main > .faq-section-bleed {
    margin-bottom: 0;
  }

  .page-hero--flush {
    padding-bottom: 0.65rem;
  }

  .mini-trust-grid,
  .purchase-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   V3 ADDITIONS : prijs, twee paden, koop-pagina, trust-detail
   ══════════════════════════════════════════════════════════ */

/* ─── HERO VIDEO ─── */

video.hero-image {
  background: #f6f0e7;
}

/* ─── PRICE TAG ─── */

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.25rem 0 1rem;
}

.price-tag .price-from {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-tag .price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.price-tag .price-note {
  font-size: 0.85rem;
  color: var(--muted-fg);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-fg);
}

.hero-trust li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.15);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
}

/* ─── TWEE PADEN (thuis vs zorg) ─── */

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.path-card {
  display: flex;
  flex-direction: column;
  padding: 1.85rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(235, 227, 216, 0.85);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
  height: 100%;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(93, 112, 82, 0.16);
}

.path-card--home {
  background: linear-gradient(150deg, rgba(243, 231, 217, 0.55), rgba(255, 255, 255, 0.96));
}

.path-card--care {
  background: linear-gradient(150deg, rgba(168, 194, 171, 0.16), rgba(255, 255, 255, 0.96));
}

.path-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(93, 112, 82, 0.14), rgba(193, 140, 93, 0.12));
  color: var(--primary);
  margin-bottom: 1rem;
}

.path-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-card h3 {
  margin-bottom: 0.6rem;
}

.path-card ul {
  list-style: none;
  margin: 0.5rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.path-card ul li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--muted-fg);
  font-size: 0.94rem;
  line-height: 1.5;
}

.path-card ul li::before {
  content: '·';
  color: var(--primary);
  font-weight: 800;
}

.path-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ─── DEMO VIDEO SECTIE ─── */

.demo-video {
  width: 100%;
  display: block;
  border-radius: 1.6rem;
  border: 4px solid #fff;
  box-shadow: var(--shadow-float);
  background: #f6f0e7;
  object-fit: cover;
}

/* ─── KOOP / PRICING ─── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.85rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(235, 227, 216, 0.85);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.pricing-card--featured {
  border-color: rgba(127, 155, 130, 0.5);
  box-shadow: var(--shadow-float);
  position: relative;
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.pricing-card .price-tag {
  margin: 0.4rem 0 1.1rem;
}

.clean-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.clean-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--muted-fg);
  font-size: 0.94rem;
  line-height: 1.5;
}

.clean-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex: 0 0 auto;
}

.pricing-card .btn {
  margin-top: auto;
}

/* ─── PROCES / HOE WERKT HET ─── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.process-card {
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(235, 227, 216, 0.8);
  background: rgba(254, 254, 250, 0.8);
  box-shadow: var(--shadow-soft);
}

.process-card__num {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.13);
  color: var(--primary);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.process-card h3 {
  margin-bottom: 0.4rem;
}

.process-card p {
  margin: 0;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ─── TRUST DETAIL (levering / retour / garantie) ─── */

.trust-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.trust-detail-card {
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(235, 227, 216, 0.8);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-detail-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(93, 112, 82, 0.13), rgba(193, 140, 93, 0.1));
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.trust-detail-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-detail-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.trust-detail-card p {
  margin: 0;
  color: var(--muted-fg);
  font-size: 0.94rem;
  line-height: 1.6;
}

.order-model-picker {
  max-width: 24rem;
  margin-bottom: 1.25rem;
}

.order-model-picker label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.form-privacy-note {
  color: var(--muted-fg);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0.9rem 0 0;
}

.audience-card {
  display: flex;
  flex-direction: column;
}

.audience-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── ORDER FORM (koop-pagina) ─── */

.order-summary {
  background: rgba(243, 231, 217, 0.35);
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.2rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-summary strong {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--fg);
}

.order-color-swatches {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.order-color-swatches .color-swatch-btn {
  width: 2.5rem;
  height: 2.5rem;
}

/* ─── RESPONSIVE (v3) ─── */

@media (max-width: 991.98px) {
  .pricing-grid,
  .process-grid,
  .trust-detail-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ─────────────────────────────────────────────
   V4 : CONVERSIE: 3 FORMULES
   ───────────────────────────────────────────── */

/* Prijs-hint in de header */
.header-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 155, 130, 0.1);
  border: 1px solid rgba(127, 155, 130, 0.28);
  color: var(--fg);
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
}
.header-price strong { font-family: 'Fraunces', Georgia, serif; font-size: 1rem; color: var(--primary); }
.header-price .from { color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.66rem; }

/* Formule-grid */
.formule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}
@media (max-width: 991.98px) { .formule-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

.formule-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.formule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }

.formule-card--featured {
  border-color: var(--primary);
  box-shadow: 0 24px 60px -30px rgba(127, 155, 130, 0.5);
}
@media (min-width: 992px) { .formule-card--featured { transform: scale(1.035); } .formule-card--featured:hover { transform: scale(1.035) translateY(-4px); } }

.formule-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

.formule-card__name { font-size: 1.5rem; margin: 0.2rem 0 0.15rem; }
.formule-card__tagline { color: var(--muted-fg); font-size: 0.92rem; min-height: 2.6rem; margin-bottom: 1rem; }

.formule-card__price { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.25rem; }
.formule-card__price .amount { font-family: 'Fraunces', Georgia, serif; font-size: 2.35rem; font-weight: 700; color: var(--fg); line-height: 1; }
.formule-card__price .from { color: var(--muted-fg); font-size: 0.8rem; }
.formule-card__vat { color: var(--muted-fg); font-size: 0.78rem; margin-bottom: 1.2rem; }

.formule-card__list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.formule-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; }
.formule-card__list li.no { color: var(--muted-fg); }
.formule-card__list .ic { flex: 0 0 1.1rem; width: 1.1rem; height: 1.1rem; margin-top: 0.12rem; }
.formule-card__list .ic.yes { color: var(--primary); }
.formule-card__list .ic.no { color: #c9beb0; }

.formule-card__cta { margin-top: auto; }
.formule-card__cta .btn { width: 100%; }
.formule-card__cta--split { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.55rem; }
.formule-card__cta--split .btn { width: auto; white-space: nowrap; }

/* Vergelijkingstabel */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 34rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.compare-table th, .compare-table td { padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-family: 'Fraunces', Georgia, serif; font-size: 1.05rem; background: rgba(127, 155, 130, 0.08); }
.compare-table thead th.feat { background: rgba(127, 155, 130, 0.16); }
.compare-table tbody th { text-align: left; font-weight: 600; font-family: 'Nunito', sans-serif; }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }
.compare-table .yes { color: var(--primary); font-weight: 700; }
.compare-table .no { color: #c9beb0; }
.compare-table .price-row td, .compare-table .price-row th { font-weight: 700; background: rgba(243, 231, 217, 0.4); }

/* ─────────────────────────────────────────────
   V4 : ACCESSOIRES / TOEBEHOREN
   ───────────────────────────────────────────── */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}
.acc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
  text-decoration: none;
  color: inherit;
}
.acc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); color: inherit; }
.acc-card__link { display: flex; flex: 1; flex-direction: column; color: inherit; text-decoration: none; }
.acc-card__link:hover { color: inherit; }
.acc-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--accent);
  overflow: hidden;
}
.acc-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acc-card__badge {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: rgba(58,55,47,0.82); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem; border-radius: 999px;
}
.acc-card__body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.acc-card__name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; line-height: 1.25; }
.acc-card__price { margin-top: auto; }
.acc-card__price .amount { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.15rem; color: var(--fg); }
.acc-card__price .soon { color: var(--muted-fg); font-size: 0.85rem; font-style: italic; }
.acc-card__soldout .acc-card__media img { filter: grayscale(0.7); opacity: 0.75; }
.acc-loading { color: var(--muted-fg); padding: 2rem 0; text-align: center; }

.back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.accessory-gallery__main {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: var(--accent);
}

.accessory-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.accessory-gallery__thumb {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.8rem;
  background: var(--accent);
}

.accessory-gallery__thumb.is-selected,
.accessory-gallery__thumb:focus-visible { border-color: var(--primary); }
.accessory-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.accessory-detail__price { display: flex; align-items: baseline; gap: 0.65rem; }
.accessory-detail__compare { color: var(--muted-fg); text-decoration: line-through; }
.accessory-option { margin: 0 0 1.15rem; padding: 0; border: 0; }
.accessory-option legend { float: none; margin-bottom: 0.55rem; font-size: 0.95rem; font-weight: 700; }
.accessory-option__values { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.accessory-option__value {
  min-height: 2.55rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--fg);
  font-weight: 700;
}
.accessory-option__value:hover { border-color: var(--primary); }
.accessory-option__value.is-selected { border-color: var(--primary); background: var(--primary); color: #fff; }
.accessory-option__value:disabled { opacity: 0.45; cursor: not-allowed; }
.accessory-detail__sku { margin: -0.2rem 0 0.7rem; color: var(--muted-fg); font-size: 0.82rem; }
.accessory-detail__availability { margin: 0 0 1rem; color: var(--primary); font-weight: 700; }
.accessory-detail__availability.is-unavailable { color: #a14f42; }

/* Hero-baseline (kleine toelichting onder de hero) */
.hero-baseline { font-size: 0.86rem; max-width: 34rem; line-height: 1.5; }

/* ─────────────────────────────────────────────
   V5 : WINKELMANDJE
   ───────────────────────────────────────────── */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 112, 91, 0.35);
  background: rgba(255, 255, 255, 0.7);
  color: var(--fg);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}
.cart-toggle:hover { border-color: var(--secondary); background: #fff; }
.cart-toggle svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-toggle__count {
  position: absolute; top: -0.35rem; right: -0.35rem;
  min-width: 1.15rem; height: 1.15rem; padding: 0 0.3rem;
  border-radius: 999px; background: var(--secondary); color: #fff;
  font-size: 0.7rem; font-weight: 700; line-height: 1.15rem; text-align: center;
}
.cart-toggle__count.is-empty { display: none; }

.cart-drawer { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
.cart-drawer__overlay {
  position: absolute; inset: 0; background: rgba(40, 38, 32, 0.42);
  opacity: 0; transition: opacity 260ms ease;
}
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(26rem, 92vw);
  background: var(--surface);
  box-shadow: -20px 0 48px -24px rgba(40, 38, 32, 0.4);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 300ms ease;
}
body.cart-open .cart-drawer { pointer-events: auto; }
body.cart-open .cart-drawer__overlay { opacity: 1; }
body.cart-open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.25rem; border-bottom: 1px solid var(--border);
}
.cart-drawer__close {
  border: 0; background: none; font-size: 1.6rem; line-height: 1;
  color: var(--muted-fg); cursor: pointer;
}
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 0.75rem 1.25rem; }
.cart-empty { color: var(--muted-fg); text-align: center; padding: 2.5rem 0; }

.cart-item { display: flex; gap: 0.85rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.cart-item__media {
  flex: 0 0 3.75rem; width: 3.75rem; height: 3.75rem;
  border-radius: 12px; overflow: hidden; background: var(--accent);
}
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 700; font-size: 0.94rem; }
.cart-item__meta { font-weight: 400; color: var(--muted-fg); font-size: 0.85rem; }
.cart-item__price { color: var(--secondary); font-weight: 700; font-size: 0.9rem; margin: 0.15rem 0 0.4rem; }
.cart-item__qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-item__qty button {
  width: 1.65rem; height: 1.65rem; border-radius: 8px;
  border: 1px solid var(--border); background: #fff; cursor: pointer; line-height: 1;
}
.cart-item__remove {
  width: auto !important; height: auto !important; border: 0 !important; background: none !important;
  color: var(--muted-fg); font-size: 0.8rem; text-decoration: underline; margin-left: auto; padding: 0;
}
.cart-drawer__foot { padding: 1rem 1.25rem 1.25rem; border-top: 1px solid var(--border); }
.cart-drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.35rem; }
.cart-drawer__total strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; }
.cart-drawer__note { color: var(--muted-fg); font-size: 0.78rem; margin: 0 0 0.85rem; }

/* Afreken-overzicht (bestelpagina) */
.checkout-line { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
.checkout-line__price { color: var(--secondary); font-weight: 700; white-space: nowrap; }
.checkout-remove { border: 0; background: none; color: var(--muted-fg); font-size: 0.78rem; text-decoration: underline; cursor: pointer; padding: 0; margin-left: 0.4rem; }
.checkout-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.85rem; margin-top: 0.35rem; }
.checkout-total strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; }
