/* Floris Kroketten, gedeelde stijl voor productpagina's */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:root {
  --bg-page: #faf6ee;
  --bg-paper: #fdfaf3;
  --ink: #131210;
  --ink-soft: #4a4540;
  --ink-mute: #7a736b;
  --gold: #c9a23a;
  --gold-2: #a37f1c;
  --gold-dark: #6b5210;
  --cream: #fdfaf3;
  --line: rgba(22, 19, 16, 0.10);
  --line-strong: rgba(22, 19, 16, 0.22);
  --shadow-soft: 0 4px 14px rgba(40, 25, 10, 0.06), 0 12px 32px rgba(40, 25, 10, 0.05);
  --shadow-card: 0 1px 2px rgba(20, 15, 10, 0.04), 0 2px 8px rgba(20, 15, 10, 0.05);
  --maxw: 1100px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--bg-page);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.45  0 0 0 0 0.30  0 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
    radial-gradient(180% 100% at 50% 0%, #fdfaf3 0%, #f8f1e3 60%, #f1e8d4 100%);
  background-repeat: repeat, no-repeat;
  background-size: 280px 280px, 100% 100%;
  background-attachment: fixed, fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Top bar */
.topbar {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.topbar .brand-link {
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  perspective: 1200px;
}
.topbar .brand-link.with-logo { padding: 4px 0; }
.topbar .brand-plaque {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 70px;
  border-radius: 12px;
  background: #1a1a18;
  border: 1px solid #1a1a18;
  padding: 6px 12px;
  position: relative;
  box-shadow:
    0 2px 0 var(--gold-2),
    0 4px 0 #0d0d0c,
    0 8px 16px rgba(40, 25, 0, 0.32);
  transform-origin: 50% 50%;
  animation: brand-swing-mini 6s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.2,.7,.2,1.4), box-shadow .35s ease, filter .35s ease;
  will-change: transform;
}
.topbar .brand-plaque::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 12px;
  box-shadow:
    inset 2px 0 0 rgba(201, 162, 58, 0.35),
    inset -2px 0 0 rgba(201, 162, 58, 0.35);
  pointer-events: none;
}
.topbar .brand-plaque img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes brand-swing-mini {
  0%, 100% { transform: rotateY(-6deg) rotateX(2deg); }
  50%      { transform: rotateY(6deg)  rotateX(2deg) translateY(-2px); }
}
.topbar .brand-link:hover .brand-plaque {
  animation-play-state: paused;
  transform: rotateY(0deg) rotateX(0deg) translateY(-2px) scale(1.04);
  filter: brightness(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .topbar .brand-plaque { animation: none; }
}
@media (max-width: 520px) {
  .topbar .brand-plaque { width: 120px; height: 56px; padding: 4px 10px; }
}
.topbar nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin-left: 22px;
}
.topbar nav a:hover { color: var(--gold-2); }

/* Crumb */
.crumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--gold-2); }
.crumb span { color: var(--ink); font-weight: 600; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 2px;
  background: var(--ink);
}

/* Hero */
.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(27px, 3.9vw, 43px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 520px;
}
.product-visual {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(80% 80% at 30% 30%, #d9a96a 0%, #8a5a25 100%);
}
.product-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Buttons (compact set) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease;
}
.btn-primary {
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.10);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold-2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.10), 0 8px 16px rgba(40, 25, 0, 0.16);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line-strong);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.btn-ghost:hover {
  transform: translateY(-1px);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* Specs strip */
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-specs > div {
  text-align: left;
  border-right: 1px dashed var(--line);
  padding-right: 12px;
}
.product-specs > div:last-child { border-right: 0; }
.product-specs strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.product-specs span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Content body */
.content { margin-bottom: 56px; }
.content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(21px, 2.5vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 48px 0 14px;
}
.content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  margin: 24px 0 8px;
}
.content p { margin: 0 0 14px; font-size: 16px; }
.content ul { padding-left: 22px; margin: 0 0 18px; }
.content li { margin-bottom: 6px; }
.content a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.content a:hover { color: var(--ink); }
.content strong { color: var(--ink); }

ul.features { list-style: none; padding: 0; }
ul.features li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
ul.features li::before {
  content: "✓";
  color: var(--gold-2);
  font-weight: 900;
  margin-right: 10px;
}

/* Callout block */
.callout {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 32px;
  border-radius: 12px;
  margin: 36px 0;
}
.callout h3 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--gold);
}
.callout p { color: rgba(247,239,224,0.8); margin: 0 0 16px; font-size: 15px; }

/* FAQ */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--gold-2); }
.faq-item[open] summary { color: var(--gold-2); }
.faq-item p { padding: 8px 0 4px; margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Related */
.related h2 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 28px);
  margin: 0 0 22px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.related-card {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-card);
}
.related-card:hover {
  transform: