/* =========================================================
   FUSE DRINKS — stylesheet
   Fel · energiek · fris. Licht blauw hoofdvibe.
   ========================================================= */
:root {
  --cream: #fbf6ef;
  --cream-deep: #f5ece0;
  --cloud: #f3ebe0;
  --mist: #ece3d6;
  --silver: #a89b8c;
  --peach: #e6a57e;
  --peach-light: #f3c9ad;
  --peach-deep: #d4885f;
  --blush: #f0d5c4;
  --gold: #c9a15f;
  --gold-light: #e0c48f;
  --ink: #3a2e26;
  --ink-soft: #5a4a3e;
  --navy: #6b5849;
  --white: #ffffff;
  --sky-deep: #c9885f;
  --yellow: #d4a373;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --max: 1200px;
  --ease: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* Logo */
.logo { display: inline-flex; flex-direction: column; line-height: 0.85; }
.logo .mark { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.04em; display: inline-flex; align-items: center; }
.logo .mark .spark-u { position: relative; display: inline-block; }
.logo .mark .spark-u::after { content: ''; position: absolute; top: 1px; left: 50%; width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; transform: translateX(-50%); }
.logo .sub { font-family: var(--font-body); font-weight: 700; font-size: 0.58rem; letter-spacing: 0.44em; color: var(--sky-deep); margin-top: 4px; padding-left: 2px; }
.footer .logo .sub { color: var(--sky-light); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 999px; font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; cursor: pointer; border: none; transition: transform 0.15s var(--ease), box-shadow 0.15s ease; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.01em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 6px 0 rgba(13,34,51,0.25); }
.btn-primary:hover { box-shadow: 0 9px 0 rgba(13,34,51,0.25); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 rgba(180,140,0,0.35); }
.btn-yellow:hover { box-shadow: 0 9px 0 rgba(180,140,0,0.35); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: 0 6px 0 rgba(0,0,0,0.12); }
.btn-white:hover { box-shadow: 0 9px 0 rgba(0,0,0,0.12); }
.btn-sm { padding: 11px 20px; font-size: 0.8rem; box-shadow: 0 4px 0 rgba(13,34,51,0.2); }
.btn-sm:hover { box-shadow: 0 6px 0 rgba(13,34,51,0.2); }

/* Header */
.header { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 3px solid var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); transition: color 0.15s ease; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--sky-deep); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: var(--yellow); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.cart-btn { position: relative; background: var(--sky); border: 2px solid var(--ink); cursor: pointer; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; display: flex; align-items: center; gap: 8px; color: var(--ink); padding: 9px 18px; border-radius: 999px; }
.cart-count { background: var(--ink); color: var(--white); font-size: 10px; font-weight: 800; min-width: 19px; height: 19px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; }
.mobile-menu { display: none; padding: 6px 0 20px; }
.mobile-menu a { display: block; padding: 14px 0; font-weight: 800; text-transform: uppercase; font-size: 1rem; border-bottom: 2px solid #eee; color: var(--ink); }
.mobile-menu.open { display: block; }
@media (max-width: 880px) { .nav-links { display: none; } .burger { display: flex; } }

/* Hero */
.hero { position: relative; background: radial-gradient(circle at 85% 15%, rgba(56,182,255,0.08), transparent 45%), var(--cream); color: var(--ink); overflow: hidden; padding: 80px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; background: var(--yellow); color: var(--ink); padding: 8px 18px; border-radius: 999px; margin-bottom: 24px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(3.4rem, 10vw, 7.5rem); line-height: 0.86; letter-spacing: 0.005em; text-transform: uppercase; margin-bottom: 26px; color: var(--ink); }
.hero h1 .yellow { color: var(--sky-deep); }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 3px var(--white); }
.hero .alc { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 1.6rem; color: var(--sky-deep); margin-bottom: 26px; letter-spacing: 0.02em; }
.hero .alc::before, .hero .alc::after { content: ''; width: 40px; height: 3px; background: var(--ink); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 40ch; margin-bottom: 34px; font-weight: 500; color: var(--navy); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cans { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.can { position: absolute; width: 168px; height: 400px; border-radius: 30px; border: 4px solid var(--ink); box-shadow: 10px 14px 0 rgba(13,34,51,0.3); display: flex; flex-direction: column; overflow: hidden; }
.can .can-top { height: 60px; background: rgba(255,255,255,0.9); border-bottom: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; }
.can .can-top .lid { width: 60%; height: 10px; background: rgba(13,34,51,0.2); border-radius: 999px; }
.can .can-mid { flex: 1; display: flex; align-items: center; justify-content: center; }
.can .can-word { font-family: var(--font-display); font-size: 1.9rem; color: var(--white); writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; letter-spacing: 0.06em; text-shadow: 0 2px 0 rgba(0,0,0,0.15); }
.can-1 { background: var(--mango); transform: rotate(-11deg) translateX(-56px); z-index: 1; }
.can-2 { background: var(--lime); transform: rotate(9deg) translateX(56px); z-index: 2; }
.can-2 .can-word { color: var(--ink); text-shadow: none; }
.bubble { position: absolute; border-radius: 50%; background: rgba(56,182,255,0.25); animation: rise 5s ease-in-out infinite; }
@keyframes rise { 0%,100% { transform: translateY(0); opacity: 0.3; } 50% { transform: translateY(-30px); opacity: 0.9; } }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } .hero-cans { height: 400px; margin-top: 20px; } }

/* Marquee */
.marquee { background: var(--ink); color: var(--white); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: scroll 20s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 22px; }
.marquee-track span.y { color: var(--yellow); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 90px 0; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.eyebrow { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky-deep); display: block; margin-bottom: 14px; }
.section h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 0.94; text-transform: uppercase; letter-spacing: 0.01em; }
.section .intro { font-size: 1.1rem; color: var(--navy); margin-top: 20px; max-width: 54ch; font-weight: 500; }
.section-sky { background: var(--cloud); color: var(--ink); }
.section-sky .eyebrow { color: var(--sky-deep); }
.section-sky .intro { color: var(--navy); }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product { background: var(--white); border: 3px solid var(--ink); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.15s var(--ease), box-shadow 0.15s ease; position: relative; }
.product:hover { transform: translateY(-6px); box-shadow: 10px 14px 0 var(--ink); }
.product-visual { height: 260px; display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 3px solid var(--ink); }
.mini-can { width: 100px; height: 220px; border-radius: 18px; border: 3px solid var(--ink); display: flex; flex-direction: column; overflow: hidden; box-shadow: 6px 8px 0 rgba(13,34,51,0.2); }
.mini-can .mc-top { height: 34px; background: rgba(255,255,255,0.85); border-bottom: 2px solid var(--ink); }
.mini-can .mc-body { flex: 1; display: flex; align-items: center; justify-content: center; }
.mini-can .mc-word { font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: 0.05em; color: var(--white); text-shadow: 0 1px 0 rgba(0,0,0,0.2); }
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-body h3 { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.01em; }
.product-body .notes { font-size: 0.9rem; color: var(--navy); flex: 1; font-weight: 500; }
.product-body .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.product-body .price { font-family: var(--font-display); font-size: 1.5rem; }
.tag-test { position: absolute; top: 16px; right: 16px; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--ink); padding: 5px 12px; border-radius: 999px; z-index: 2; }

/* Values */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.value-card { background: var(--white); border: 3px solid var(--ink); border-radius: 22px; padding: 32px 28px; box-shadow: 6px 8px 0 var(--ink); }
.value-card .v-badge { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 18px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 8px; }
.value-card p { font-size: 0.93rem; color: var(--navy); font-weight: 500; }

/* Swatches */
.swatch-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.swatch { border-radius: 22px; padding: 40px 20px; text-align: center; border: 3px solid var(--ink); color: var(--white); box-shadow: 6px 8px 0 var(--ink); transition: transform 0.15s var(--ease); }
.swatch:hover { transform: translateY(-5px); }
.swatch h4 { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 4px; }
.swatch span { font-size: 0.82rem; font-weight: 600; opacity: 0.92; }
@media (max-width: 760px) { .swatch-row { grid-template-columns: 1fr 1fr; } }

/* CTA */
.cta { background: var(--ink); color: var(--white); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.5rem); text-transform: uppercase; line-height: 0.94; margin-bottom: 20px; }
.cta h2 .y { color: var(--yellow); }
.cta p { max-width: 44ch; margin: 0 auto 34px; color: rgba(255,255,255,0.8); font-size: 1.1rem; font-weight: 500; }

/* Cart */
.cart-overlay { position: fixed; inset: 0; background: rgba(13,34,51,0.5); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 300; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(440px, 92vw); height: 100%; background: var(--white); border-left: 4px solid var(--ink); transform: translateX(100%); transition: transform 0.3s var(--ease); z-index: 301; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 26px; border-bottom: 3px solid var(--ink); background: var(--sky); }
.cart-header h3 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; color: var(--ink); }
.cart-close { background: none; border: none; font-size: 1.7rem; cursor: pointer; line-height: 1; color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 26px; display: flex; flex-direction: column; gap: 18px; }
.cart-empty { color: var(--navy); text-align: center; margin-top: 48px; font-size: 0.98rem; font-weight: 500; line-height: 1.7; }
.cart-item { display: flex; gap: 15px; align-items: center; border-bottom: 2px solid #eee; padding-bottom: 16px; }
.cart-item .ci-visual { width: 42px; height: 60px; border-radius: 8px; border: 2px solid var(--ink); flex-shrink: 0; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info h4 { font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.01em; }
.cart-item .ci-info .ci-price { font-size: 0.82rem; color: var(--navy); font-weight: 600; }
.cart-item .ci-qty { display: flex; align-items: center; gap: 10px; }
.cart-item .ci-qty button { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink); background: var(--white); cursor: pointer; font-weight: 800; }
.cart-footer { padding: 24px 26px; border-top: 3px solid var(--ink); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 16px; }
.cart-footer .btn { width: 100%; justify-content: center; }
.cart-note { font-size: 0.72rem; color: var(--navy); text-align: center; margin-top: 12px; font-weight: 500; }

/* Footer */
.footer { background: var(--ink); color: var(--white); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .logo .mark { color: var(--white); }
.footer-tagline { max-width: 30ch; color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-top: 16px; font-weight: 500; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; font-weight: 800; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.75); font-size: 0.92rem; font-weight: 500; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Page hero */
.page-hero { background: var(--cream); color: var(--ink); padding: 70px 0 60px; border-bottom: 4px solid var(--ink); }
.page-hero .eyebrow { color: var(--sky-deep); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 5.5rem); text-transform: uppercase; line-height: 0.9; margin-bottom: 18px; color: var(--ink); }
.page-hero p { font-size: 1.15rem; max-width: 52ch; font-weight: 500; color: var(--navy); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .field label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); font-weight: 800; margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border: 3px solid var(--ink); border-radius: 12px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; background: var(--white); color: var(--ink); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sky-deep); outline: none; }
.contact-side .c-item { padding: 20px 0; border-bottom: 2px solid #eee; }
.contact-side .c-item:first-child { padding-top: 0; }
.contact-side .c-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky-deep); font-weight: 800; margin-bottom: 6px; }
.contact-side .c-value { font-size: 1.05rem; font-weight: 500; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* =========================================================
   Logo badge (rond demo-logo)
   ========================================================= */
.logo-badge {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--aqua), transparent 55%), linear-gradient(160deg, var(--sky-light), var(--sky) 55%, var(--sky-deep));
  border: 6px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 8px 10px 0 rgba(13,34,51,0.25);
  flex-shrink: 0;
}
.logo-badge .lb-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 2px 0 var(--ink), 2px 0 0 var(--ink), 0 -2px 0 var(--ink), -2px 0 0 var(--ink);
  position: relative;
}
.logo-badge .lb-mark .spark {
  position: absolute;
  top: -14px; right: -2px;
  width: 3px; height: 16px;
  background: var(--yellow);
  border-radius: 2px;
  transform: rotate(12deg);
}
.logo-badge .lb-mark .spark::before {
  content: '';
  position: absolute;
  top: -8px; left: -1px;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.logo-badge .lb-sub {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--ink);
  margin-top: 4px;
  padding-left: 3px;
}
.logo-badge .lb-bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.85); }
.logo-badge .lb-bubble.b1 { width: 10px; height: 10px; bottom: 22px; left: 26px; }
.logo-badge .lb-bubble.b2 { width: 6px; height: 6px; bottom: 12px; left: 40px; }
.logo-badge .lb-bubble.b3 { width: 10px; height: 10px; bottom: 22px; right: 26px; }

/* =========================================================
   Echt logo (afbeelding, transparante achtergrond)
   ========================================================= */
.logo-img { display: inline-flex; align-items: center; }
.logo-img img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(13,34,51,0.15));
}

.hero-logo-img {
  height: 150px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 14px rgba(13,34,51,0.28));
}

.footer-logo-img {
  height: 78px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .hero-logo-img { height: 100px; }
  .logo-img img { height: 36px; }
}

/* =========================================================
   HERO V2 — filmisch, logo spat eruit
   ========================================================= */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, #ffffff 0%, var(--cream) 60%, #f3ece1 100%);
}
.hero-glow {
  position: absolute;
  top: 26%; left: 50%;
  width: 720px; height: 420px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 40%, rgba(159,224,0,0.22), transparent 55%),
    radial-gradient(circle at 70% 45%, rgba(255,93,143,0.20), transparent 55%),
    radial-gradient(circle at 50% 60%, rgba(255,140,26,0.18), transparent 55%),
    radial-gradient(circle at 55% 35%, rgba(155,93,229,0.18), transparent 55%);
  filter: blur(46px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.75; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}

.hero-bubbles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bubbles span {
  position: absolute;
  bottom: -50px;
  left: var(--x);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: rgba(56,182,255,0.18);
  border: 1px solid rgba(56,182,255,0.25);
  animation: bubbleUp var(--dur, 8s) linear infinite;
  animation-delay: var(--d, 0s);
}
@keyframes bubbleUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-100vh) translateX(24px); opacity: 0; }
}

.hero-v2-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-hero-logo {
  width: min(560px, 82vw);
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 14px 34px rgba(13,34,51,0.22));
}
.hero-v2 .hero-tag { margin-bottom: 24px; }
.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-v2-title .thin {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.01em;
  color: var(--sky-deep);
  text-transform: none;
  margin-top: 12px;
}
.hero-v2-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 48ch;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 36px;
}
.hero-v2-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-outline { background: transparent; color: var(--ink); border: 3px solid var(--ink); box-shadow: 0 6px 0 rgba(13,34,51,0.15); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver, #9a9a9a);
  font-weight: 700;
}
.scroll-line { width: 2px; height: 40px; background: linear-gradient(var(--ink), transparent); animation: scrollNudge 1.8s ease-in-out infinite; }
@keyframes scrollNudge { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* Reveal-animatie bij laden */
.reveal { opacity: 0; transform: translateY(24px); animation: revealIn 0.8s var(--ease) forwards; }
.reveal-1 { animation-delay: 0.15s; }
.reveal-2 { animation-delay: 0.3s; }
.reveal-3 { animation-delay: 0.45s; }
.reveal-4 { animation-delay: 0.6s; }
.reveal-5 { animation-delay: 0.9s; }
.hero-hero-logo.reveal { transform: translateY(30px) scale(0.94); animation: revealLogo 1s var(--ease) forwards; }
@keyframes revealIn { to { opacity: 1; transform: translateY(0); } }
@keyframes revealLogo { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Scroll reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-on-scroll.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   SHOWCASE (smaakkaarten met blik)
   ========================================================= */
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.showcase-card {
  border-radius: 20px;
  border: 1px solid var(--mist, #e5e0d8);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px -12px rgba(13,34,51,0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  display: block;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -14px rgba(13,34,51,0.28); }
.sc-can { height: 250px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(180deg, #fbfaf7, #f4efe6); }
.sc-can::before { content: ""; position: absolute; width: 104px; height: 210px; border-radius: 18px 18px 12px 12px; background: linear-gradient(150deg, var(--cl) 0%, var(--c) 55%, var(--c) 100%); box-shadow: 0 18px 34px -14px var(--c), inset -8px 0 16px -8px rgba(0,0,0,0.15); }
.sc-can::after { content: ""; position: absolute; width: 104px; height: 210px; border-radius: 18px 18px 12px 12px; background: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 40%); }
.sc-can-top { position: absolute; top: 34px; width: 42px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 999px; z-index: 2; }
.sc-word { font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; color: var(--t); writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: 0.08em; z-index: 2; }
.sc-info { padding: 22px; text-align: center; border-top: 1px solid var(--mist, #e5e0d8); }
.sc-info h3 { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.01em; }
.sc-info p { font-size: 0.82rem; color: var(--silver, #9a9a9a); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 860px) { .showcase-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   FEATURE SPLIT (met groot blik)
   ========================================================= */
.feature-split { background: var(--cloud); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { margin-top: 30px; display: flex; flex-direction: column; gap: 24px; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; }
.fr-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ink); flex-shrink: 0; margin-top: 4px; }
.feature-row h4 { font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 4px; }
.feature-row p { font-size: 0.95rem; color: var(--navy); font-weight: 500; }

.feature-visual { display: flex; align-items: center; justify-content: center; }
.big-can {
  width: 210px; height: 460px;
  background: linear-gradient(150deg, var(--mango), #ff7a00);
  border: 4px solid var(--ink);
  border-radius: 42px;
  position: relative;
  box-shadow: 14px 18px 0 rgba(13,34,51,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: rotate(-6deg);
}
.bc-top { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 64%; height: 14px; background: rgba(255,255,255,0.4); border-radius: 999px; }
.bc-label { text-align: center; color: #fff; z-index: 2; }
.bc-label span { font-family: var(--font-display); font-size: 2.6rem; text-transform: uppercase; display: block; text-shadow: 0 2px 0 rgba(0,0,0,0.2); }
.bc-label small { font-family: var(--font-body); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.14em; display: block; margin-top: 6px; }
.bc-label em { font-family: var(--font-body); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.1em; font-style: normal; display: block; margin-top: 14px; opacity: 0.85; }
.bc-shine { position: absolute; top: 0; left: 20%; width: 26%; height: 100%; background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent); }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; gap: 40px; } .feature-visual { order: -1; } .big-can { transform: rotate(-4deg) scale(0.86); } }

/* CTA bubbels positie */
.cta { position: relative; overflow: hidden; }
.cta .wrap { position: relative; z-index: 2; }
.cta .hero-bubbles span { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }

/* Motion off */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-hero-logo.reveal, .reveal-on-scroll { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-glow, .scroll-line, .hero-bubbles span { animation: none !important; }
}

/* =========================================================
   HERO SPLIT met echte blik-render
   ========================================================= */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}
.hero-split-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-split-text .hero-hero-logo { width: min(440px, 78vw); margin-bottom: 24px; }
.hero-split-text .hero-v2-title { text-align: left; }
.hero-split-text .hero-v2-title .accent { color: var(--sky-deep); }
.hero-split-text .hero-v2-lead { text-align: left; margin-left: 0; }
.hero-split-text .hero-v2-actions { justify-content: flex-start; }

.hero-split-can {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-split-can img {
  height: 620px;
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(13,34,51,0.25));
  animation: canFloat 5s ease-in-out infinite;
}
@keyframes canFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split-text { align-items: center; text-align: center; }
  .hero-split-text .hero-v2-title, .hero-split-text .hero-v2-lead { text-align: center; }
  .hero-split-text .hero-v2-actions { justify-content: center; }
  .hero-split-can img { height: 420px; }
  .hero-split-can { order: -1; }
}

/* Feature sectie: echte blik ipv css-can */
.feature-can-img {
  height: 520px;
  width: auto;
  filter: drop-shadow(0 24px 44px rgba(13,34,51,0.22));
  animation: canFloat 6s ease-in-out infinite;
}
@media (max-width: 860px) { .feature-can-img { height: 400px; } }

/* =========================================================
   Interactief 3D-draaiblik (swing, geen volle 360 vanwege 1 foto)
   ========================================================= */
.can-3d-stage {
  perspective: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.can-3d-stage:active { cursor: grabbing; }
.can-3d-stage-sm { perspective: 900px; }

.can-3d {
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateY(0deg) rotateX(0deg);
  animation: canSwing 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(13,34,51,0.25));
}
.can-3d-stage.dragging .can-3d { animation-play-state: paused; }

@keyframes canSwing {
  0%, 100% { transform: rotateY(-14deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(14deg) rotateX(-2deg) translateY(-14px); }
}

.can-drag-hint {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver, #9a9a9a);
  font-weight: 700;
}
.can-drag-hint::before { content: '↔ '; }

@media (prefers-reduced-motion: reduce) {
  .can-3d { animation: none !important; }
}

/* =========================================================
   Foto-overlays voor smaken (optioneel, val terug op CSS-blik)
   Zet gewoon een PNG met TRANSPARANTE achtergrond in assets/
   met de juiste bestandsnaam, en hij verschijnt automatisch.
   ========================================================= */
.sc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: none;
  z-index: 3;
  filter: drop-shadow(0 14px 22px rgba(13,34,51,0.22));
  padding: 14px;
}
.mc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: none;
  z-index: 3;
  filter: drop-shadow(0 10px 16px rgba(13,34,51,0.22));
}
.mini-can { position: relative; }

/* =========================================================
   18+ Leeftijdscheck
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate-card {
  background: var(--cream);
  border-radius: 26px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.age-gate-card img { height: 90px; width: auto; margin: 0 auto 22px; display: block; }
.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.05;
}
.age-gate-card p { font-size: 0.95rem; color: var(--navy); font-weight: 500; margin-bottom: 28px; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate-note { font-size: 0.7rem; color: var(--silver, #9a9a9a); margin-top: 20px; letter-spacing: 0.02em; }
.age-gate-no {
  background: var(--white);
  color: var(--navy);
  padding: 20px 32px;
  text-align: center;
}
.age-gate-no h2 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 2px solid var(--mist, #e6e0d6);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  color: var(--sky-deep);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding-top: 14px; }
.faq-answer p { font-size: 0.95rem; color: var(--navy); font-weight: 500; max-width: 68ch; }
.faq-answer a { color: var(--sky-deep); font-weight: 700; text-decoration: underline; }

/* =========================================================
   Social proof / testimonials
   ========================================================= */
.section-alt2 { background: var(--cloud); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 12px 30px -16px rgba(13,34,51,0.2);
}
.testi-stars { color: var(--mango); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 0.98rem; color: var(--ink); font-weight: 600; line-height: 1.5; margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 10px; }
.testi-name { font-size: 0.8rem; color: var(--silver, #9a9a9a); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.testi-note { text-align: center; margin-top: 32px; font-size: 0.82rem; color: var(--silver, #9a9a9a); font-style: italic; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Nieuwsbrief
   ========================================================= */
.newsletter-section { background: var(--cloud); }
.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 52px 48px;
  box-shadow: 0 20px 50px -24px rgba(13,34,51,0.28);
}
.newsletter-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); text-transform: uppercase; line-height: 0.98; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); font-weight: 800; }
.newsletter-form input { padding: 16px 18px; border: 3px solid var(--ink); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; font-weight: 500; }
.newsletter-form input:focus { border-color: var(--sky-deep); outline: none; }
.newsletter-form .btn { justify-content: center; margin-top: 4px; }
.newsletter-note { font-size: 0.72rem; color: var(--silver, #9a9a9a); margin-top: 4px; }
@media (max-width: 800px) { .newsletter-box { grid-template-columns: 1fr; gap: 28px; padding: 36px 26px; } }

/* =========================================================
   Voedingswaarde-tabel
   ========================================================= */
.nutrition-table { max-width: 560px; border: 3px solid var(--ink); border-radius: 18px; overflow: hidden; margin-top: 8px; }
.nutri-row { display: flex; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--mist, #e6e0d6); font-weight: 500; }
.nutri-row:last-child { border-bottom: none; }
.nutri-row span:last-child { font-weight: 700; }
.nutri-head { background: var(--ink); color: var(--white); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; }
.nutri-head span { font-weight: 400 !important; }
.nutri-note { font-size: 0.82rem; color: var(--silver, #9a9a9a); font-style: italic; margin-top: 16px; }

/* =========================================================
   Cookie-melding
   ========================================================= */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { margin: 0; max-width: 60ch; }
.cookie-bar a { color: var(--yellow); text-decoration: underline; }
.cookie-bar .btn { padding: 10px 22px; font-size: 0.82rem; }

/* =========================================================
   Product foto's (echte renders)
   ========================================================= */
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-photo {
  height: 300px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  mix-blend-mode: multiply;
}
.product-visual { background: var(--cream); padding: 20px 0; }
@media (max-width: 860px) { .product-grid-3 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* peach kleur-token */
:root { --peach: #e8a87c; }

/* =========================================================
   MOBIEL — grondige optimalisatie
   ========================================================= */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }

  /* Hero: logo en blik netjes gestapeld, niet te groot */
  .hero-v2 { min-height: auto; padding: 40px 0 50px; }
  .hero-split { display: flex; flex-direction: column; text-align: center; gap: 10px; min-height: auto; }
  .hero-split-text { align-items: center; text-align: center; order: 2; }
  .hero-split-can { order: 1; }
  .hero-hero-logo, .hero-split-text .hero-hero-logo { width: min(300px, 72vw); margin-bottom: 18px; }
  .hero-split-can .can-3d, .hero-split-can img { height: 340px; }
  .hero-v2-title { font-size: clamp(2.2rem, 11vw, 3.2rem); text-align: center; }
  .hero-v2-lead { font-size: 1.02rem; text-align: center; }
  .hero-v2-actions { justify-content: center; width: 100%; }
  .hero-v2-actions .btn { flex: 1; justify-content: center; min-width: 0; }

  /* Secties: minder padding */
  .section { padding: 52px 0; }
  .section h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .section-head { margin-bottom: 30px; }
  .page-hero { padding: 44px 0 34px; }
  .page-hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }

  /* Value cards: 1 kolom */
  .value-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Knoppen: groot genoeg voor vingers */
  .btn { padding: 14px 24px; }
  .btn-lg { padding: 16px 28px; font-size: 0.95rem; }

  /* Marquee iets kleiner */
  .marquee-track span { font-size: 1.1rem; margin: 0 16px; }

  /* Newsletter box netjes stapelen */
  .newsletter-box { grid-template-columns: 1fr; gap: 24px; padding: 30px 22px; }
  .newsletter-text h2 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* CTA */
  .cta { padding: 60px 0; }
  .cta h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* Footer: netjes gestapeld */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; align-items: center; }

  /* Product foto's */
  .product-photo { height: 260px; }

  /* Cart drawer full-ish width */
  .cart-drawer { width: 100vw; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Header iets compacter */
  .nav { height: 66px; }
  .logo-img img { height: 40px; }

  /* Mobiel menu netjes */
  .mobile-menu.open { padding: 8px 0 16px; }
  .mobile-menu a { padding: 15px 4px; font-size: 1.05rem; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-v2-actions { flex-direction: column; }
  .hero-v2-actions .btn { width: 100%; }
  .hero-split-can .can-3d, .hero-split-can img { height: 290px; }
  .marquee-track span { font-size: 1rem; }
}

/* Zorg dat niks horizontaal overloopt op mobiel */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .hero-glow { width: 380px; height: 300px; }
}


/* =========================================================
   VERFIJNDE STIJL — premium White Peach x Jasmine
   ========================================================= */
body { background: var(--cream); color: var(--ink); letter-spacing: 0.01em; }

/* Hero titel elegant */
.hero-v2-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6rem) !important;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink);
}
.hero-v2-title .accent {
  font-style: italic;
  color: var(--peach-deep);
  font-weight: 500;
}
.hero-tag {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  padding: 9px 20px;
}
.hero-v2-lead { color: var(--ink-soft); font-weight: 400; font-size: clamp(1.05rem, 2vw, 1.25rem); }

/* Buttons verfijnd */
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: none; border: 1px solid var(--ink); border-radius: 2px; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; font-weight: 600; }
.btn-primary:hover { background: var(--peach-deep); border-color: var(--peach-deep); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); border-radius: 2px; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; font-weight: 600; box-shadow: none; }
.btn-outline:hover { background: var(--gold); color: var(--cream); transform: translateY(-2px); }
.btn-yellow { background: var(--gold); color: var(--cream); box-shadow: none; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.btn-yellow:hover { background: var(--peach-deep); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; }

/* Section koppen elegant */
.section h2, .page-hero h1, .cta h2, .newsletter-text h2 {
  font-family: var(--font-serif) !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  line-height: 1.05 !important;
}
.eyebrow { color: var(--gold); letter-spacing: 0.24em; font-weight: 600; }
.section .intro, .page-hero p { color: var(--ink-soft); }

/* Hero achtergrond zachter, warmer */
.hero-v2 { background: radial-gradient(ellipse 70% 60% at 50% 35%, #ffffff 0%, var(--cream) 55%, var(--cream-deep) 100%); }
.hero-glow {
  background:
    radial-gradient(circle at 40% 40%, rgba(230,165,126,0.20), transparent 60%),
    radial-gradient(circle at 60% 50%, rgba(240,213,196,0.24), transparent 60%);
}

/* Marquee verfijnd — niet zwart maar warm */
.marquee { background: var(--ink); color: var(--cream); }
.marquee-track span { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; text-transform: none; letter-spacing: 0.02em; }
.marquee-track span.y { color: var(--gold); font-style: normal; }

/* Value cards verfijnd */
.value-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 4px;
  box-shadow: 0 20px 40px -28px rgba(58,46,38,0.35);
}
.value-card .v-badge {
  background: transparent !important;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.value-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.4rem; text-transform: none; letter-spacing: 0; }
.value-card p { color: var(--ink-soft); }

/* Header verfijnd */
.header { background: rgba(251,246,239,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--mist); }
.nav-links a { color: var(--ink-soft); font-weight: 500; text-transform: none; letter-spacing: 0.04em; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--peach-deep); }
.nav-links a.active::after { background: var(--gold); }
.cart-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.cart-btn:hover { background: var(--gold); color: var(--cream); }
.cart-count { background: var(--peach-deep); }

/* Product cards verfijnd */
.product { background: var(--white); border: 1px solid var(--mist); border-radius: 4px; box-shadow: 0 24px 48px -32px rgba(58,46,38,0.4); }
.product:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -30px rgba(58,46,38,0.45); border-color: var(--peach-light); }
.product-body h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; text-transform: none; }
.product-body .price { font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; color: var(--peach-deep); }
.product-body .notes { color: var(--ink-soft); }
.tag-test { background: var(--gold); color: var(--cream); border-radius: 2px; }
.product-visual { border-bottom: 1px solid var(--mist); }

/* CTA verfijnd — warm ipv zwart */
.cta { background: var(--ink); }
.cta h2 { color: var(--cream); }
.cta h2 .y { color: var(--gold); font-style: italic; }
.cta p { color: rgba(251,246,239,0.75); }

/* Newsletter verfijnd */
.newsletter-section { background: var(--cloud); }
.newsletter-box { border-radius: 6px; border: 1px solid var(--mist); box-shadow: 0 30px 60px -40px rgba(58,46,38,0.4); }
.newsletter-form input { border: 1px solid var(--mist); border-radius: 2px; }
.newsletter-form input:focus { border-color: var(--gold); }

/* Footer verfijnd */
.footer { background: var(--ink); }
.footer-tagline { color: rgba(251,246,239,0.6); }
.footer-col h4 { color: var(--gold); letter-spacing: 0.16em; }
.footer-col a { color: rgba(251,246,239,0.72); }
.footer-col a:hover { color: var(--cream); }

/* Page hero verfijnd */
.page-hero { background: linear-gradient(170deg, var(--cream) 0%, var(--cream-deep) 100%); border-bottom: 1px solid var(--mist); }
.page-hero h1 { color: var(--ink); }

/* FAQ verfijnd */
.faq-item summary { font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem; text-transform: none; letter-spacing: 0; }
.faq-item summary::after { color: var(--gold); }
.faq-answer a { color: var(--peach-deep); }

/* Cart drawer verfijnd */
.cart-header { background: var(--cream); border-bottom: 1px solid var(--mist); }
.cart-header h3 { font-family: var(--font-serif); font-weight: 600; text-transform: none; color: var(--ink); }
.cart-drawer { border-left: 1px solid var(--mist); }
.cart-total { font-family: var(--font-serif); text-transform: none; }

/* Can float subtieler */
.can-3d { filter: drop-shadow(0 30px 50px rgba(58,46,38,0.22)); }

/* Contact verfijnd */
.contact-form input, .contact-form textarea { border: 1px solid var(--mist); border-radius: 2px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
