@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --primary-color: #a95f3d;
  --primary-hover: #814128;
  --primary-soft: #ead1c2;
  --tan: #d8b689;
  --secondary: #566443;
  --secondary-soft: #dfe6d5;
  --cream: #fffaf4;
  --cream-deep: #f6eee3;
  --background-white: #ffffff;
  --card-background: #ffffff;
  --text-dark: #302a27;
  --text-soft: #716660;
  --border: rgba(91, 67, 52, 0.14);
  --shadow-soft: 0 16px 45px rgba(78, 53, 39, 0.10);
  --shadow-card: 0 12px 30px rgba(78, 53, 39, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(234, 209, 194, .35), transparent 28rem),
    var(--cream);
  color: var(--text-dark);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  line-height: 1.6;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--primary-color); }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 250, 244, .92);
  box-shadow: 0 6px 28px rgba(71, 50, 38, .05);
  backdrop-filter: blur(16px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  text-decoration: none;
}
.logo img { width: 62px; height: 62px; border-radius: 50%; }
.logo-copy { display: grid; line-height: 1.1; }
.logo-copy strong {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-color);
  font-size: 1.65rem;
}
.logo-copy small { margin-top: 5px; color: var(--text-soft); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
nav a {
  position: relative;
  padding: 12px 0;
  color: var(--text-dark);
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform .25s ease;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.menu-toggle .bar { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--text-dark); transition: .25s ease; }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main { min-height: 70vh; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  max-width: 1320px;
  min-height: 580px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}
.hero-copy { position: relative; z-index: 2; max-width: 700px; }
.eyebrow { margin: 0 0 10px; color: var(--secondary); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero h1, .section-heading h2, .modal h2, #winkelwagen h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.025em;
}
.hero h1 { margin: 0; font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: .98; }
.hero h1 em { color: var(--primary-color); font-weight: 600; }
.hero-text { max-width: 620px; margin: 28px 0; color: var(--text-soft); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.hero-button, .cta-button, button[type="submit"], #bestelform #confirmOrderBtn, #confirmation-modal button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-color);
  box-shadow: 0 8px 20px rgba(169, 95, 61, .22);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.hero-button:hover, .cta-button:hover, button[type="submit"]:hover, #bestelform #confirmOrderBtn:hover, #confirmation-modal button:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 25px rgba(129, 65, 40, .24);
  transform: translateY(-2px);
}
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; color: var(--text-soft); font-size: .88rem; }
.hero-points span { white-space: nowrap; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 390px; }
.hero-visual img { position: relative; z-index: 2; width: min(82%, 390px); border: 10px solid rgba(255,255,255,.75); border-radius: 50%; box-shadow: 0 28px 60px rgba(70, 49, 36, .18); transform: rotate(3deg); }
.hero-blob { position: absolute; width: 90%; aspect-ratio: 1; border-radius: 48% 52% 62% 38% / 42% 45% 55% 58%; background: var(--secondary-soft); transform: rotate(-8deg); }
.hero-note { position: absolute; z-index: 3; right: 2%; bottom: 12%; padding: 13px 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,255,255,.91); box-shadow: var(--shadow-card); color: var(--primary-color); font-family: 'Playfair Display', Georgia, serif; font-style: italic; }

#product-section { padding: 78px clamp(20px, 5vw, 72px) 92px; background: rgba(255,255,255,.5); scroll-margin-top: 95px; }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .modal h2, #winkelwagen h2 { margin: 0 0 12px; color: var(--primary-color); font-size: clamp(2.15rem, 4vw, 3.7rem); line-height: 1.1; }
.section-heading > p:last-child { margin: 0; color: var(--text-soft); }
.section-heading.compact { margin-bottom: 28px; }
.section-heading.compact h2 { font-size: 2.45rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.koekje {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 385px;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--background-white);
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.koekje:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(78, 53, 39, .14); }
.koekje > img {
  width: 100%;
  height: 220px;
  margin: 0 0 18px;
  border-radius: 20px;
  object-fit: cover;
  background: var(--cream-deep);
  transition: transform .35s ease;
}
.koekje:hover > img { transform: scale(1.025); }
.koekje > strong { min-height: 52px; padding: 0 7px; font-size: 1.05rem; line-height: 1.35; }
.koekje .prijs { margin: 8px 0 16px; padding: 0 7px; color: var(--primary-color); font-size: 1.15rem; font-weight: 700; }
.koekje .button-container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10px; width: 100%; margin-top: auto; }
.koekje button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.koekje button:hover { background: var(--primary-hover); transform: translateY(-1px); }
.koekje .info-btn { border-color: var(--border); background: var(--cream); color: var(--text-dark); }
.koekje .info-btn:hover { background: var(--cream-deep); }
.koekje button:disabled { background: #d9d2cd; color: #857d78; cursor: not-allowed; transform: none; }
.uitverkocht-tekst { padding: 0 7px; }
.niet-beschikbaar-tekst { color: #a33f3f; }

.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1180px; margin: 0 auto; padding: 70px clamp(20px, 5vw, 72px); gap: 22px; }
.service-strip article { display: flex; align-items: center; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,.65); }
.service-icon { display: grid; place-items: center; width: 47px; height: 47px; flex: 0 0 47px; border-radius: 50%; background: var(--secondary-soft); color: var(--secondary); font-weight: 700; }
.service-strip strong, .service-strip small { display: block; }
.service-strip small { margin-top: 3px; color: var(--text-soft); }

#overlay { position: fixed; inset: 0; z-index: 999; display: none; background: rgba(43, 33, 28, .58); backdrop-filter: blur(4px); }
.modal {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 1000;
  display: none;
  width: min(92%, 520px);
  max-height: min(88vh, 760px);
  padding: 32px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 26px;
  background: var(--card-background);
  box-shadow: 0 28px 80px rgba(31, 22, 18, .30);
  text-align: center;
  transform: translate(-50%, -50%);
}
.modal h2 { padding: 0 25px; font-size: 2.25rem; }
.modal p { line-height: 1.7; }
.modal .close-btn { position: absolute; top: 14px; right: 16px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 0; border-radius: 50%; background: var(--cream); color: var(--text-soft); font-size: 26px; cursor: pointer; }
.modal .close-btn:hover { background: var(--cream-deep); color: var(--text-dark); }
.modal > img, #info-modal img { width: min(100%, 240px); max-width: 240px; height: 210px; margin: 8px auto 20px; border-radius: var(--radius-md); object-fit: cover; }
#info-modal .info-details { padding: 18px; border-radius: var(--radius-md); background: var(--cream); text-align: left; }
#info-modal .info-details p { margin: 5px 0; }
#info-modal .info-details p:nth-of-type(2), #info-modal .info-details p:nth-of-type(4) { margin-bottom: 18px; color: var(--text-soft); font-style: normal; }
#formPrijsInfo { margin: 4px 0 20px; padding: 14px; border-radius: 14px; background: var(--cream); color: var(--primary-color); font-size: 1.05rem; font-weight: 700; }
.modal-actions { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px; margin-top: 18px; }
#bestelform label, #klantForm label { display: block; margin: 13px 0 6px; color: var(--text-dark); font-size: .88rem; font-weight: 700; text-align: left; }
#bestelform label small, #klantForm label small { color: var(--text-soft); font-weight: 500; }
input, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  background: #fff;
  color: var(--text-dark);
  transition: border .2s ease, box-shadow .2s ease;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(169,95,61,.11); }
.close-btn-style { min-height: 50px; padding: 12px 18px; border: 1px solid var(--border); border-radius: 999px; background: var(--cream); color: var(--text-dark); font-weight: 700; cursor: pointer; }
.close-btn-style:hover { background: var(--cream-deep); }

#floating-cart-btn {
  position: fixed;
  right: clamp(14px, 2.5vw, 34px);
  bottom: clamp(14px, 2.5vw, 34px);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 20px;
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  background: var(--secondary-soft);
  box-shadow: 0 14px 35px rgba(97, 49, 29, .18);
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
#floating-cart-btn:hover { background: #d2dcc4; transform: translateY(-3px); }
.cart-label { font-size: .9rem; }
.cart-counter { position: absolute; top: -6px; right: -4px; display: grid; place-items: center; width: 25px; height: 25px; border: 2px solid white; border-radius: 50%; background: var(--primary-color); color: white; font-size: 12px; font-weight: 700; }

#winkelwagen, #klantgegevens { display: none; max-width: 760px; margin: 40px auto 80px; padding: clamp(22px, 5vw, 42px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card-background); box-shadow: var(--shadow-soft); }
#winkelwagen h2 { text-align: center; }
.winkelwagen-item { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto auto; align-items: center; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--border); }
#winkelwagen img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; }
.winkelwagen-item-details { min-width: 0; text-align: left; }
.winkelwagen-item-details small { color: var(--text-soft); }
.winkelwagen-item-prijs { font-weight: 700; white-space: nowrap; }
.winkelwagen-acties { display: flex; gap: 7px; }
.winkelwagen-acties button { display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; }
.winkelwagen-acties .aanpas-btn { background: var(--cream-deep); color: var(--text-dark); font-size: 15px; }
.winkelwagen-acties .verwijder-btn { background: #a84c43; color: white; font-size: 22px; }
#winkelwagen-totaal-container { margin-top: 24px; padding-top: 18px; text-align: right; }
#winkelwagen-totaal { color: var(--primary-color); font-size: 1.35rem; font-weight: 700; }
#placeOrderBtn { display: flex; width: fit-content; margin: 28px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 2fr; gap: 15px; }
.postcode-row { grid-template-columns: .8fr 1.4fr; }
#klantForm button[type="submit"] { width: 100%; margin-top: 24px; }
.verzend-info { margin: 8px 0 0; color: var(--text-soft); font-size: .86rem; font-style: normal; }
#klantgegevens .verzend-info { margin-top: 18px; text-align: center; }
.feedback { display: none; margin-top: 15px; padding: 12px; border-radius: 10px; text-align: center; }
.feedback.success { background: #dcebd8; color: #315a2a; }
.feedback.error { background: #f5dddd; color: #7a2d2d; }
.feedback.success-toast { position: fixed; top: 20px; left: 50%; z-index: 2000; padding: 10px 20px; border-radius: 999px; background: var(--secondary); color: white; box-shadow: var(--shadow-card); transform: translateX(-50%); }
.confirmation-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--secondary-soft); color: var(--secondary); font-size: 30px; font-weight: 700; }

footer { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 34px 20px; border-top: 1px solid var(--border); background: var(--cream-deep); color: var(--text-soft); text-align: left; }
footer img { width: 58px; height: 58px; border-radius: 50%; }
footer p { margin: 0; }
footer strong { color: var(--primary-color); font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; }
footer a { margin-left: 30px; font-weight: 600; }

#loader-overlay { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; background: rgba(255,250,244,.97); }
.loader-brand { display: grid; justify-items: center; gap: 12px; color: var(--text-soft); font-size: .88rem; }
.loader-brand img { width: 78px; height: 78px; border-radius: 50%; }
.loader { width: 34px; height: 34px; border: 3px solid var(--primary-soft); border-top-color: var(--primary-color); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
button:disabled { opacity: .72; cursor: not-allowed; }
:focus-visible { outline: 3px solid rgba(86,100,67,.45); outline-offset: 3px; }

@media (max-width: 900px) {
  header { min-height: 76px; }
  .logo img { width: 54px; height: 54px; }
  .logo-copy small { display: none; }
  .menu-toggle { display: block; }
  nav ul { position: absolute; top: calc(100% + 1px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--border); border-radius: 0 0 20px 20px; background: rgba(255,250,244,.98); box-shadow: var(--shadow-card); }
  nav ul.active { display: flex; }
  nav a { display: block; padding: 13px 15px; border-radius: 10px; }
  nav a:hover { background: var(--cream-deep); }
  nav a::after { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 55px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-text { margin-right: auto; margin-left: auto; }
  .hero-points { justify-content: center; }
  .hero-visual { min-height: 330px; }
  .hero-visual img { width: min(70%, 330px); }
  .service-strip { grid-template-columns: 1fr; max-width: 650px; }
}

@media (max-width: 620px) {
  header { padding: 8px 16px; }
  .logo-copy strong { font-size: 1.35rem; }
  .hero { padding-right: 20px; padding-left: 20px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-points { display: grid; gap: 7px; }
  .hero-visual { min-height: 280px; }
  #product-section { padding: 62px 16px 70px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .koekje { min-height: 310px; padding: 9px; border-radius: 20px; }
  .koekje > img { height: 150px; margin-bottom: 13px; border-radius: 15px; }
  .koekje > strong { min-height: 48px; padding: 0 4px; font-size: .91rem; }
  .koekje .prijs { padding: 0 4px; font-size: 1rem; }
  .koekje .button-container { grid-template-columns: 1fr; gap: 7px; }
  .koekje button { min-height: 40px; padding: 8px; font-size: .85rem; }
  .service-strip { padding: 50px 16px; }
  .modal { width: calc(100% - 24px); padding: 24px 18px; border-radius: 22px; }
  .modal h2 { font-size: 1.9rem; }
  .modal-actions { grid-template-columns: 1fr; }
  #floating-cart-btn { width: 56px; height: 56px; min-height: 56px; padding: 0; justify-content: center; }
  .cart-label { display: none; }
  #winkelwagen, #klantgegevens { margin: 24px 12px 70px; padding: 22px 16px; }
  .winkelwagen-item { grid-template-columns: 54px minmax(0, 1fr) auto; gap: 10px; }
  #winkelwagen img { width: 54px; height: 54px; }
  .winkelwagen-item-prijs { grid-column: 2; }
  .winkelwagen-acties { grid-column: 3; grid-row: 1 / span 2; flex-direction: column; }
  .form-row, .postcode-row { grid-template-columns: 1fr; gap: 0; }
  footer { flex-direction: column; gap: 10px; text-align: center; }
  footer a { margin-left: 0; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .koekje > img { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Compacte productvensters op laptop en desktop */
.product-modal-layout {
  display: block;
}

.modal-product-visual img {
  display: block;
  width: min(100%, 240px);
  max-width: 240px;
  height: 210px;
  margin: 8px auto 20px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

@media (min-width: 901px) {
  #bestelform,
  #info-modal {
    width: min(90vw, 780px);
    max-height: min(86vh, 650px);
    padding: 26px 30px 30px;
  }

  #bestelform h2,
  #info-modal h2 {
    margin: 0 0 18px;
    font-size: 2rem;
    line-height: 1.08;
  }

  .product-modal-layout {
    display: grid;
    grid-template-columns: minmax(220px, .85fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 28px;
    text-align: left;
  }

  .modal-product-visual img,
  #info-modal .modal-product-visual img {
    width: 100%;
    max-width: none;
    height: 300px;
    margin: 0;
  }

  #bestelform .modal-product-content {
    min-width: 0;
  }

  #formPrijsInfo {
    margin: 0 0 12px;
    padding: 11px 13px;
    font-size: 1rem;
    line-height: 1.35;
  }

  #bestelform label {
    margin: 9px 0 4px;
  }

  #bestelform input {
    min-height: 44px;
    padding: 9px 12px;
  }

  #bestelform .modal-actions {
    margin-top: 15px;
  }

  #info-modal .product-modal-layout {
    align-items: stretch;   /* tekstvlak even hoog als de foto */
  }
  #info-modal .info-details {
    height: 300px;          /* gelijk aan de foto-hoogte */
    max-height: 300px;
    overflow-y: auto;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* tekst bovenaan */
  }
  #info-modal .info-details > :first-child {
    margin-top: 0;          /* geen loze ruimte boven "Omschrijving" */
  }

  #info-modal .info-details p:nth-of-type(2),
  #info-modal .info-details p:nth-of-type(4) {
    margin-bottom: 13px;
  }
}

/* --- Voorraad ("Nog X beschikbaar") --- */
.voorraad-tekst {
  font-size: 0.82em;
  font-weight: 700;
  color: var(--secondary);
  background: var(--secondary-soft);
  border-radius: 999px;
  padding: 2px 12px;
  margin: 0 0 10px 0;
}
.voorraad-hint {
  color: var(--secondary);
  font-weight: 600;
  font-style: italic;
}

/* ============================================================
   Etalage (uitgelichte producten) + categorie-secties
   ============================================================ */
.etalage { margin: 0 0 38px; }
.etalage-kop { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.etalage-kop .ster { font-size: 1.3rem; color: var(--tan); }
.etalage-kop h2 { margin: 0; font-size: 1.5rem; color: var(--primary-hover); font-family: 'Baloo 2', sans-serif; }
.etalage-kop .lijn { flex: 1; height: 2px; background: linear-gradient(90deg, var(--tan), transparent); border-radius: 2px; }
.etalage-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.etalage-grid.solo { grid-template-columns: 1fr; }
@media (max-width: 720px) { .etalage-grid { grid-template-columns: 1fr; } }
.etalage-groot { position: relative; border-radius: 22px; overflow: hidden; min-height: 300px; color: #fff; display: flex; align-items: flex-end; box-shadow: 0 16px 40px rgba(78,53,39,.22); cursor: pointer; }
.etalage-groot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.etalage-groot .waas { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(40,22,10,.82) 0%, rgba(40,22,10,.15) 55%, transparent 100%); }
.etalage-groot .inhoud { position: relative; padding: 24px 22px; width: 100%; }
.etalage-groot .tagline { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--tan); font-weight: 800; margin-bottom: 6px; }
.etalage-groot h3 { margin: 0 0 12px; font-size: 1.7rem; font-family: 'Baloo 2', sans-serif; }
.etalage-groot .prijsknop { display: flex; align-items: center; gap: 14px; }
.etalage-groot .prijs { font-size: 1.3rem; font-weight: 800; }
.etalage-groot .bestel-btn { border: 0; background: #fff; color: var(--primary-hover); font-weight: 800; padding: 10px 22px; border-radius: 999px; cursor: pointer; }
.etalage-klein { display: flex; flex-direction: column; gap: 18px; }
.etalage-kaartje { position: relative; border-radius: 18px; overflow: hidden; flex: 1; min-height: 140px; color: #fff; display: flex; align-items: flex-end; box-shadow: 0 10px 26px rgba(78,53,39,.16); cursor: pointer; }
.etalage-kaartje img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.etalage-kaartje .waas { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(40,22,10,.8), transparent 65%); }
.etalage-kaartje .inhoud { position: relative; padding: 14px 15px; }
.etalage-kaartje h4 { margin: 0 0 4px; font-size: 1.1rem; font-family: 'Baloo 2', sans-serif; }
.etalage-kaartje .prijs { font-weight: 800; }
.etalage-kaartje .prijsknop-klein { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.etalage-kaartje .prijsknop-klein .bestel-btn { border: 0; background: #fff; color: var(--primary-hover); font-weight: 800; padding: 6px 14px; border-radius: 999px; cursor: pointer; font-size: .82rem; }
.etalage-kaartje .prijsknop-klein .bestel-btn:hover { background: var(--cream-deep); }

.categorie-titel { font-family: 'Baloo 2', sans-serif; color: var(--primary-hover); font-size: 1.3rem; margin: 30px 0 14px; display: flex; align-items: center; gap: 12px; width: 100%; }
.categorie-titel .cat-lijn { flex: 1; height: 1px; background: rgba(91,67,52,.16); }
.categorie-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; width: 100%; }


/* Productfoto in de lijst is klikbaar (opent infovenster) */
.kaart-foto-klik { cursor: pointer; transition: opacity .15s ease; }
.kaart-foto-klik:hover { opacity: .9; }