/*
Theme Name: AURA
Theme URI: https://workmed.nl
Author: Workmed
Description: AURA — Stijlvolle borstprotheses, lingerie en badmode. WooCommerce theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: aura
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:       #F5F0EA;
  --blush:       #E8D9CE;
  --sand:        #C4956A;
  --forest:      #2D4A3E;
  --ink:         #1A1A1A;
  --mid:         #6B6157;
  --light:       #F9F6F2;
  --white:       #FFFFFF;
  --green:       #2D6A4F;
  --green-light: #EAF4EE;
  --red:         #C0392B;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
select { font-family: inherit; }

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sand); }

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announcement {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 20px;
  flex-shrink: 0;
}
.ann-sep { opacity: .7; margin: 0 20px; }

/* ===========================
   HEADER / NAV
=========================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--blush);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-logo span { color: var(--sand); }

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 72px;
}
.nav-links > li { display: flex; align-items: center; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px; right: 18px;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links > li > a:hover,
.nav-links > li.mega-open > a,
.nav-links > li > a.active { color: var(--ink); }
.nav-links > li > a:hover::after,
.nav-links > li.mega-open > a::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links .sale-link > a { color: #B5392A !important; }
.nav-links .sale-link > a:hover { color: #8a2015 !important; }
.nav-links .chevron {
  width: 10px; height: 10px;
  fill: none; stroke: currentColor; stroke-width: 2;
  transition: transform .2s; flex-shrink: 0;
}
.nav-links li.mega-open .chevron { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions a {
  font-size: 13px; letter-spacing: .5px; color: var(--mid);
  display: flex; align-items: center; gap: 6px;
}
.nav-actions a:hover { color: var(--ink); }
.cart-btn {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 12px !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s !important;
}
.cart-btn:hover { background: var(--forest) !important; }

/* ===========================
   MEGA MENU
=========================== */
.mega-menu {
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--sand);
  box-shadow: 0 20px 60px rgba(26,26,26,.13);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s .22s;
  z-index: 99;
}
.mega-menu.active {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s 0s;
}
.mega-inner {
  max-width: 1400px; margin: 0 auto; padding: 40px 40px 0;
  display: grid; grid-template-columns: repeat(3, 1fr) 260px; gap: 40px;
}
.mega-inner--2col { grid-template-columns: repeat(2, 1fr) 260px; }
.mega-col h4 {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand); font-weight: 600; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--blush);
}
.mega-col ul { display: flex; flex-direction: column; gap: 2px; }
.mega-col ul li a {
  display: block; padding: 7px 0; font-size: 13.5px; color: var(--mid);
  transition: color .15s, padding-left .15s;
}
.mega-col ul li a:hover { color: var(--ink); padding-left: 6px; }
.mega-col ul li a small { display: block; font-size: 11px; color: var(--sand); margin-top: 1px; }
.mega-col-img { position: relative; overflow: hidden; }
.mega-col-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  display: block; transition: transform .4s ease;
}
.mega-col-img:hover img { transform: scale(1.04); }
.mega-col-img figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,26,.55));
  padding: 24px 16px 14px; color: var(--white); font-size: 12px; letter-spacing: .5px;
}
.mega-col-img figcaption strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; margin-bottom: 4px;
}
.mega-footer {
  max-width: 1400px; margin: 28px auto 0; padding: 14px 40px;
  border-top: 1px solid var(--blush); display: flex; gap: 24px;
}
.mega-footer a {
  font-size: 12px; letter-spacing: .5px; color: var(--mid);
  display: flex; align-items: center; gap: 6px;
}
.mega-footer a:hover { color: var(--sand); }
.mega-footer a svg { flex-shrink: 0; }

/* ===========================
   MOBILE NAV DRAWER
=========================== */
.mob-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: 8px;
}
.mob-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .28s; }
.mob-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,.52); z-index: 299;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s .3s;
}
.mob-overlay.open { opacity: 1; visibility: visible; transition: opacity .3s; }
.mob-drawer {
  position: fixed; top: 0; right: 0; width: 82%; max-width: 340px; height: 100%;
  background: var(--white); z-index: 300;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.mob-drawer.open { transform: translateX(0); }
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px; flex-shrink: 0; border-bottom: 1px solid var(--blush);
}
.mob-drawer-close { background: none; border: none; cursor: pointer; color: var(--mid); padding: 6px; }
.mob-drawer-body { flex: 1; overflow-y: auto; }
.mob-acc-item { border-bottom: 1px solid var(--blush); }
.mob-acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink);
  text-align: left; gap: 12px;
}
.mob-chev { width: 12px; height: 8px; flex-shrink: 0; transition: transform .22s; }
.mob-acc-trigger.open .mob-chev { transform: rotate(180deg); }
.mob-acc-panel {
  display: none; flex-direction: column; background: var(--light); padding: 4px 20px 12px;
}
.mob-acc-panel.open { display: flex; }
.mob-acc-panel a { padding: 11px 0; font-size: 14px; color: var(--mid); border-bottom: 1px solid var(--blush); display: block; }
.mob-acc-panel a:last-child { border-bottom: none; }
.mob-acc-all { color: var(--sand) !important; font-weight: 500; }
.mob-link { display: block; padding: 17px 20px; font-size: 15px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--blush); }
.mob-link--sale { color: #B5392A; }
.mob-drawer-foot { padding: 20px; border-top: 1px solid var(--blush); flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
.mob-drawer-foot > a { font-size: 14px; color: var(--mid); }
.mob-foot-contact { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--blush); }
.mob-foot-contact span { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--sand); margin-bottom: 4px; }
.mob-foot-contact a { font-size: 17px; font-weight: 500; color: var(--ink); }

/* Mobile cart icon */
.mob-cart-icon {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; position: relative; color: var(--ink);
}
.mob-cart-badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sand); color: var(--white);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  background: var(--ink); color: var(--white);
  padding: 16px 36px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
  transition: background .2s, transform .2s; display: inline-block;
}
.btn-primary:hover { background: var(--forest); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink); font-size: 13px; letter-spacing: .5px;
  padding-bottom: 2px; border-bottom: 1px solid var(--ink);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--sand); border-color: var(--sand); }
.btn-light {
  display: inline-block; border: 1px solid rgba(255,255,255,.4); color: var(--white);
  padding: 16px 36px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; transition: all .2s;
}
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-group { display: flex; gap: 16px; align-items: center; }

/* ===========================
   SECTION HELPERS
=========================== */
.section-header { text-align: center; padding: 80px 40px 48px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sand); font-weight: 500; margin-bottom: 16px;
}
.section-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sand); font-weight: 600; margin-bottom: 18px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 42px;
  font-weight: 600; line-height: 1.2; color: var(--ink);
  max-width: 520px; margin: 0 auto 20px;
}
.section-title em { font-style: italic; color: var(--sand); }
.section-sub {
  font-size: 15px; color: var(--mid); max-width: 480px;
  margin: 0 auto; line-height: 1.7; font-weight: 300;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--ink); color: var(--white);
  padding: 80px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 40px;
}
.footer-brand .nav-logo { color: var(--white); font-size: 22px; margin-bottom: 20px; display: block; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; max-width: 260px; font-weight: 300; margin-bottom: 32px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.6); transition: all .2s;
}
.social-link:hover { background: var(--sand); border-color: var(--sand); color: var(--white); }
.footer-col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; font-weight: 500; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.payment-icons { display: flex; gap: 10px; align-items: center; }
.pay-icon { background: rgba(255,255,255,.08); padding: 6px 12px; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .5px; border-radius: 2px; }

/* ===========================
   HOMEPAGE — HERO
=========================== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  height: calc(100vh - 112px); overflow: hidden;
}
.hero-visual { position: relative; overflow: hidden; }
.hero-visual img { height: 100%; object-position: top center; transition: transform 8s ease; }
.hero-visual:hover img { transform: scale(1.04); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(245,240,234,.2));
}
.hero-badge {
  position: absolute; top: 40px; left: 40px;
  background: var(--sand); color: var(--white);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; font-weight: 500;
}
.hero-content {
  background: var(--cream); display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(32px,6vh,80px) 80px clamp(32px,6vh,80px) 72px;
  overflow: hidden;
}
.hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 24px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,4.5vw,58px); line-height: 1.1; font-weight: 600; color: var(--ink); margin-bottom: clamp(16px,2.5vh,28px); }
.hero-title em { font-style: italic; color: var(--forest); }
.hero-sub { font-size: 15px; color: var(--mid); line-height: 1.7; max-width: 380px; margin-bottom: clamp(24px,4vh,48px); font-weight: 300; }
.hero-scroll { margin-top: clamp(24px,4vh,64px); display: flex; align-items: center; gap: 12px; color: var(--mid); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll::before { content: ''; display: block; width: 40px; height: 1px; background: var(--mid); }

/* ===========================
   HOMEPAGE — FEEL BAR
=========================== */
.feel-bar {
  background: var(--forest); padding: 22px 40px;
  display: flex; justify-content: center; gap: 60px; align-items: center;
}
.feel-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.feel-icon {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.feel-text strong { display: block; font-size: 13px; font-weight: 500; letter-spacing: .5px; }
.feel-text span { font-size: 11px; opacity: .65; letter-spacing: .5px; }

/* ===========================
   HOMEPAGE — CATEGORIES
=========================== */
.categories {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px 100px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.cat-card { position: relative; overflow: hidden; cursor: pointer; }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-img { height: 520px; transition: transform .7s ease; object-position: top; }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.7) 0%, rgba(26,26,26,.1) 50%, transparent 100%); }
.cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; color: var(--white); }
.cat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; opacity: .8; margin-bottom: 10px; font-weight: 500; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.cat-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; transition: border-color .2s;
}
.cat-cta:hover { border-color: var(--white); }
.cat-cta svg { width: 16px; height: 16px; }

/* ===========================
   HOMEPAGE — EDITORIAL
=========================== */
.editorial { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; overflow: hidden; }
.editorial-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 96px 80px 80px; }
.editorial-title { font-family: 'Playfair Display', serif; font-size: 46px; line-height: 1.15; font-weight: 600; color: var(--ink); margin-bottom: 28px; }
.editorial-title em { font-style: italic; color: var(--forest); }
.editorial-text { font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 420px; margin-bottom: 40px; font-weight: 300; }
.editorial-visual { position: relative; overflow: hidden; }
.editorial-visual img { height: 100%; object-position: top; transition: transform 6s ease; }
.editorial-visual:hover img { transform: scale(1.04); }
.editorial-tag { position: absolute; bottom: 40px; right: 40px; background: var(--white); padding: 20px 28px; text-align: center; }
.editorial-tag strong { display: block; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--ink); }
.editorial-tag span { font-size: 11px; color: var(--mid); letter-spacing: 1px; text-transform: uppercase; }

/* ===========================
   HOMEPAGE — PRODUCT MOSAIC
=========================== */
.mosaic-section { padding: 0 0 100px; }
.mosaic {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px; gap: 16px;
}
.mosaic-card { position: relative; overflow: hidden; cursor: pointer; }
.mosaic-card--tall { grid-row: span 2; }
.mosaic-card img { height: 100%; transition: transform .6s ease; }
.mosaic-card:hover img { transform: scale(1.05); }
.mosaic-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(to top, rgba(26,26,26,.6) 0%, transparent 100%);
  color: var(--white);
}
.mosaic-caption h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.mosaic-caption p { font-size: 12px; opacity: .8; letter-spacing: .5px; }
.mosaic-price { position: absolute; top: 20px; right: 20px; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 500; padding: 6px 12px; letter-spacing: .5px; }

/* ===========================
   HOMEPAGE — LIFESTYLE STRIP
=========================== */
.lifestyle {
  background: var(--ink); padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.lifestyle-visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 200px; gap: 12px; }
.lifestyle-visual img:first-child { grid-row: span 2; height: 100%; }
.lifestyle-visual img { height: 100%; }
.lifestyle-content { color: var(--white); }
.lifestyle-content .section-eyebrow { text-align: left; color: var(--sand); }
.lifestyle-title { font-family: 'Playfair Display', serif; font-size: 48px; line-height: 1.15; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.lifestyle-title em { font-style: italic; color: var(--sand); }
.lifestyle-text { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; max-width: 420px; margin-bottom: 48px; font-weight: 300; }

/* ===========================
   HOMEPAGE — USP STRIP
=========================== */
.usp-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--blush); }
.usp-item { padding: 48px 40px; border-right: 1px solid var(--blush); text-align: center; }
.usp-item:last-child { border-right: none; }
.usp-icon { font-size: 28px; margin-bottom: 16px; }
.usp-item h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.usp-item p { font-size: 13px; color: var(--mid); line-height: 1.6; font-weight: 300; }

/* ===========================
   HOMEPAGE — TESTIMONIALS
=========================== */
.testimonials { background: var(--light); padding: 100px 40px; }
.testimonial-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: var(--white); padding: 40px 36px; border-bottom: 3px solid var(--sand); }
.stars { color: var(--sand); font-size: 16px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 24px; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--mid); flex-shrink: 0; }
.testimonial-meta div strong { display: block; font-size: 14px; font-weight: 500; }
.testimonial-meta div span { font-size: 12px; color: var(--mid); }

/* ===========================
   HOMEPAGE — BRANDS
=========================== */
.brands-section { padding: 70px 40px; border-top: 1px solid var(--blush); border-bottom: 1px solid var(--blush); }
.brands-eyebrow { text-align: center; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); margin-bottom: 40px; font-weight: 500; }
.brands-logos { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.brand-pill { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blush); transition: color .2s; cursor: pointer; }
.brand-pill:hover { color: var(--ink); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter { background: var(--forest); padding: 100px 40px; text-align: center; }
.newsletter-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 20px; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.newsletter h2 em { font-style: italic; color: var(--sand); }
.newsletter p { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 48px; font-weight: 300; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; }
.newsletter-form input { flex: 1; padding: 18px 24px; border: none; background: rgba(255,255,255,.1); color: var(--white); font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button { background: var(--sand); color: var(--white); border: none; padding: 18px 32px; font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background .2s; }
.newsletter-form button:hover { background: #b8845a; }
.newsletter-privacy { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.35); }

/* ===========================
   ONS VERHAAL — STORY HERO
=========================== */
.story-hero { position: relative; height: 620px; overflow: hidden; }
.story-hero img { height: 100%; object-position: center 30%; }
.story-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,26,.62) 0%, rgba(26,26,26,.28) 55%, transparent 100%); }
.story-hero-content { position: absolute; top: 50%; left: clamp(40px,7vw,112px); transform: translateY(-50%); max-width: 560px; }
.story-hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 20px; }
.story-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(42px,5.5vw,72px); font-weight: 600; color: var(--white); line-height: 1.08; margin-bottom: 24px; }
.story-hero-title em { font-style: italic; color: var(--sand); }
.story-hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 440px; }

/* Numbers strip */
.numbers-strip { background: var(--ink); padding: 60px 40px; }
.numbers-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.number-item .num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; }
.number-item .num em { font-style: normal; font-size: 32px; color: var(--sand); }
.number-item p { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 10px; font-weight: 500; }

/* Intro strip */
.intro-strip { background: var(--cream); padding: 80px clamp(40px,7vw,112px); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-strip-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--sand); font-weight: 600; margin-bottom: 24px; }
.intro-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px,3.2vw,46px); font-weight: 600; line-height: 1.18; color: var(--ink); margin-bottom: 28px; }
.intro-strip h2 em { font-style: italic; color: var(--sand); }
.intro-strip p { font-size: 15.5px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 18px; }
.intro-strip-visual { position: relative; }
.intro-strip-visual img { aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.intro-badge { position: absolute; bottom: -28px; left: -28px; width: 110px; height: 110px; background: var(--sand); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); text-align: center; padding: 16px; }
.intro-badge strong { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; line-height: 1; }
.intro-badge span { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; opacity: .85; margin-top: 4px; }

/* Founder */
.founder { padding: 100px clamp(40px,7vw,112px); display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; background: var(--white); max-width: 1400px; margin: 0 auto; }
.founder-visual { position: relative; }
.founder-visual img { aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
.founder-visual-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(26,26,26,.6)); padding: 40px 24px 20px; color: var(--white); }
.founder-visual-caption strong { display: block; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; }
.founder-visual-caption span { font-size: 12px; opacity: .75; }
.founder-content { padding-top: 8px; }
.founder-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,42px); font-weight: 600; line-height: 1.18; color: var(--ink); margin-bottom: 32px; }
.founder-content h2 em { font-style: italic; color: var(--sand); }
.founder-content p { font-size: 15.5px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
.founder-quote { margin: 36px 0; padding: 28px 32px; border-left: 3px solid var(--sand); background: var(--cream); }
.founder-quote p { font-family: 'Playfair Display', serif; font-size: 19px; font-style: italic; color: var(--ink); line-height: 1.6; font-weight: 400; margin: 0; }
.founder-quote cite { display: block; margin-top: 14px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--sand); font-style: normal; font-weight: 500; }

/* Manifesto */
.manifesto { background: var(--forest); padding: 100px clamp(40px,7vw,112px); text-align: center; position: relative; overflow: hidden; }
.manifesto::before { content: '"'; position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', serif; font-size: 280px; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }
.manifesto-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 32px; }
.manifesto h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,54px); font-weight: 600; line-height: 1.3; color: var(--white); max-width: 820px; margin: 0 auto 40px; }
.manifesto h2 em { font-style: italic; color: var(--sand); }
.manifesto-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; max-width: 920px; margin: 0 auto; }
.manifesto-pillar-icon { width: 48px; height: 48px; margin: 0 auto 16px; border: 1px solid rgba(196,149,106,.4); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.manifesto-pillar h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.manifesto-pillar p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.7; }

/* Values grid */
.values { padding: 100px clamp(40px,7vw,112px); background: var(--light); }
.values-header { max-width: 580px; margin-bottom: 64px; }
.values-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,40px); font-weight: 600; line-height: 1.2; color: var(--ink); }
.values-header h2 em { font-style: italic; color: var(--sand); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.value-card { background: var(--white); padding: 48px 36px 44px; position: relative; overflow: hidden; transition: transform .3s; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sand); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.value-card:hover { transform: translateY(-4px); }
.value-card:hover::before { transform: scaleX(1); }
.value-number { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--blush); line-height: 1; margin-bottom: 20px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.value-card p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; }

/* Timeline */
.timeline-section { padding: 100px clamp(40px,7vw,112px); background: var(--white); }
.timeline-header { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.timeline-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,42px); font-weight: 600; color: var(--ink); line-height: 1.2; }
.timeline-header h2 em { font-style: italic; color: var(--sand); }
.timeline-header p { margin-top: 16px; font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.7; }
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--blush); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 64px; align-items: center; }
.timeline-item.right .timeline-text { order: 2; text-align: left; }
.timeline-item.right .timeline-visual { order: 1; }
.timeline-item.left .timeline-text { order: 1; text-align: right; }
.timeline-item.left .timeline-visual { order: 2; }
.timeline-text { position: relative; }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--blush); line-height: 1; margin-bottom: 12px; }
.timeline-text h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.timeline-text p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.timeline-text::after { content: ''; position: absolute; top: 18px; width: 11px; height: 11px; background: var(--sand); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--sand); }
.timeline-item.left .timeline-text::after { right: -90px; }
.timeline-item.right .timeline-text::after { left: -90px; }
.timeline-visual img { aspect-ratio: 4/3; object-fit: cover; }

/* Team */
.team-section { padding: 100px clamp(40px,7vw,112px); background: var(--cream); }
.team-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 40px; }
.team-header div { max-width: 500px; }
.team-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,40px); font-weight: 600; color: var(--ink); line-height: 1.2; }
.team-header h2 em { font-style: italic; color: var(--sand); }
.team-header p { margin-top: 14px; font-size: 14.5px; color: var(--mid); font-weight: 300; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { position: relative; overflow: hidden; }
.team-card img { aspect-ratio: 3/4; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.team-card:hover img { transform: scale(1.04); }
.team-card-info { padding: 18px 0 8px; }
.team-card-info strong { display: block; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.team-card-info span { font-size: 12px; letter-spacing: .5px; color: var(--sand); text-transform: uppercase; }
.team-card-info p { margin-top: 8px; font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.65; }

/* Press */
.press-section { background: var(--white); padding: 80px clamp(40px,7vw,112px); border-top: 1px solid var(--blush); border-bottom: 1px solid var(--blush); }
.press-label { text-align: center; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); font-weight: 500; margin-bottom: 48px; }
.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.press-card { background: var(--light); padding: 40px 36px; }
.press-card-pub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sand); font-weight: 600; margin-bottom: 16px; }
.press-card q { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.55; display: block; margin-bottom: 20px; }
.press-card-date { font-size: 12px; color: var(--mid); font-weight: 300; }

/* Store section */
.store-section { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.store-visual { position: relative; overflow: hidden; }
.store-visual img { height: 100%; min-height: 560px; object-position: center; }
.store-content { background: var(--cream); padding: 80px clamp(40px,5vw,80px); display: flex; flex-direction: column; justify-content: center; }
.store-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,40px); font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 20px; }
.store-content h2 em { font-style: italic; color: var(--sand); }
.store-content p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.store-details { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.store-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mid); }
.store-detail svg { color: var(--sand); flex-shrink: 0; }

/* ===========================
   SERVICE PAGE
=========================== */
.service-hero { background: var(--forest); padding: 80px clamp(40px,7vw,112px) 72px; position: relative; overflow: hidden; }
.service-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 480px; height: 480px; border-radius: 50%; background: rgba(196,149,106,.08); pointer-events: none; }
.service-hero-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; z-index: 1; }
.service-hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(196,149,106,.85); font-weight: 500; margin-bottom: 20px; }
.service-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,4.5vw,60px); font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.service-hero h1 em { font-style: italic; color: var(--sand); }
.service-hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7); max-width: 520px; line-height: 1.75; }
.hero-trust-badges { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.trust-badge-row { display: flex; gap: 14px; }
.trust-badge { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); padding: 14px 18px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 13px; white-space: nowrap; transition: background .2s; }
.trust-badge strong { display: block; font-size: 13px; color: var(--white); }
.trust-badge span { display: block; font-size: 11px; color: rgba(255,255,255,.55); margin-top: 1px; }

/* Trust strip */
.trust-strip { background: var(--green-light); border-bottom: 1px solid rgba(45,106,79,.12); padding: 0 clamp(40px,7vw,112px); }
.trust-strip-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); }
.trust-item { padding: 22px 20px; display: flex; align-items: center; gap: 12px; border-right: 1px solid rgba(45,106,79,.1); }
.trust-item:last-child { border-right: none; }
.trust-item-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-item-icon svg { color: var(--white); }
.trust-item-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--forest); }
.trust-item-text span { font-size: 12px; color: var(--mid); }

/* Anchor nav */
.anchor-nav { background: var(--white); border-bottom: 1px solid var(--blush); position: sticky; top: 72px; z-index: 80; }
.anchor-nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(40px,7vw,112px); display: flex; gap: 0; overflow-x: auto; }
.anchor-nav-inner::-webkit-scrollbar { display: none; }
.anchor-link { padding: 16px 20px; font-size: 12.5px; letter-spacing: .5px; color: var(--mid); white-space: nowrap; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.anchor-link:hover, .anchor-link.active { color: var(--ink); border-bottom-color: var(--sand); }

/* Delivery section */
.delivery-section { padding: 88px clamp(40px,7vw,112px); background: var(--white); }
.delivery-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.delivery-header { margin-bottom: 40px; }
.delivery-header p { margin-top: 14px; font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.delivery-options { display: flex; flex-direction: column; gap: 2px; }
.delivery-option { background: var(--light); padding: 24px 28px; display: grid; grid-template-columns: 48px 1fr auto; gap: 20px; align-items: center; border-left: 3px solid transparent; transition: border-color .2s, background .2s; }
.delivery-option:hover { background: var(--cream); border-left-color: var(--sand); }
.delivery-option.featured { border-left-color: var(--forest); background: var(--green-light); }
.delivery-option-icon { width: 48px; height: 48px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(26,26,26,.08); }
.delivery-option h4 { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.delivery-option p { font-size: 13px; font-weight: 300; color: var(--mid); margin: 0; }
.delivery-option-badge { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; font-weight: 600; white-space: nowrap; }
.delivery-option-badge.free { background: var(--forest); color: var(--white); }
.delivery-option-badge.price { background: var(--blush); color: var(--ink); }

/* Returns section */
.returns-section { padding: 88px clamp(40px,7vw,112px); background: var(--cream); }
.returns-header { max-width: 600px; margin-bottom: 56px; }
.returns-header p { margin-top: 14px; font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.returns-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 56px; }
.return-step { background: var(--white); padding: 40px 32px; position: relative; }
.return-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.return-step h4 { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.return-step p { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.7; }
.return-step::after { content: '→'; position: absolute; top: 40px; right: -12px; font-size: 18px; color: var(--sand); z-index: 1; }
.return-step:last-child::after { display: none; }
.returns-guarantee { background: var(--forest); padding: 40px 48px; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.returns-guarantee h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.returns-guarantee p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.65; }

/* Payment section */
.payment-section { padding: 88px clamp(40px,7vw,112px); background: var(--white); }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.payment-methods { display: flex; flex-direction: column; gap: 2px; }
.payment-method { background: var(--light); padding: 20px 24px; display: flex; align-items: center; gap: 20px; transition: background .2s; }
.payment-method:hover { background: var(--cream); }
.payment-logo { width: 56px; height: 36px; background: var(--white); border: 1px solid var(--blush); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--ink); flex-shrink: 0; }
.payment-method-info h5 { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.payment-method-info p { font-size: 12.5px; font-weight: 300; color: var(--mid); }

/* Privacy section */
.privacy-section { padding: 88px clamp(40px,7vw,112px); background: var(--light); }
.privacy-header { max-width: 600px; margin-bottom: 56px; }
.privacy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.privacy-card { background: var(--white); padding: 40px 32px; border-top: 3px solid transparent; transition: border-color .3s, transform .3s; }
.privacy-card:hover { border-top-color: var(--forest); transform: translateY(-3px); }
.privacy-card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.privacy-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.privacy-card p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; }

/* Vergoeding */
.vergoeding-section { padding: 88px clamp(40px,7vw,112px); background: var(--white); }
.vergoeding-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vergoeding-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.vergoeding-item { display: flex; align-items: flex-start; gap: 14px; }
.vergoeding-check { width: 24px; height: 24px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.vergoeding-item p { font-size: 14.5px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.vergoeding-item strong { color: var(--ink); }
.vergoeding-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--forest); color: var(--white); padding: 15px 32px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: background .2s; }
.vergoeding-cta:hover { background: rgba(45,74,62,.85); }
.vergoeding-visual { background: var(--cream); padding: 40px; }
.vergoeding-steps { display: flex; flex-direction: column; gap: 20px; }
.vergoeding-step { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--blush); }
.vergoeding-step:last-child { border-bottom: none; padding-bottom: 0; }
.vergoeding-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.vergoeding-step h5 { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.vergoeding-step p { font-size: 13px; font-weight: 300; color: var(--mid); }

/* FAQ */
.faq-section { padding: 88px clamp(40px,7vw,112px); background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.faq-sidebar { position: sticky; top: 140px; }
.faq-sidebar h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3vw,38px); font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 16px; }
.faq-sidebar h2 em { font-style: italic; color: var(--sand); }
.faq-sidebar p { font-size: 14.5px; font-weight: 300; color: var(--mid); line-height: 1.75; margin-bottom: 32px; }
.faq-contact-card { background: var(--forest); padding: 28px; }
.faq-contact-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.faq-contact-card p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.65); margin-bottom: 18px; line-height: 1.6; }
.faq-contact-opt { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.08); color: var(--white); font-size: 13px; transition: background .2s; }
.faq-contact-opt:hover { background: rgba(255,255,255,.14); }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
details.faq-item { background: var(--white); }
summary.faq-q { padding: 22px 28px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 15px; font-weight: 500; color: var(--ink); transition: background .2s; }
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q:hover { background: var(--light); }
details[open] summary.faq-q { background: var(--light); color: var(--forest); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .25s; }
details[open] .faq-icon { background: var(--sand); transform: rotate(45deg); }
.faq-a { padding: 0 28px 24px; font-size: 14.5px; font-weight: 300; color: var(--mid); line-height: 1.8; border-top: 1px solid var(--blush); }
.faq-a p { padding-top: 20px; }

/* Contact */
.contact-section { padding: 88px clamp(40px,7vw,112px); background: var(--white); }
.contact-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 64px; }
.contact-card { background: var(--light); padding: 44px 36px; text-align: center; transition: background .25s, transform .25s; }
.contact-card:hover { background: var(--cream); transform: translateY(-3px); }
.contact-card-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 24px; background: var(--forest); display: flex; align-items: center; justify-content: center; }
.contact-card-icon svg { color: var(--white); }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.contact-card p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.contact-card a.contact-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--forest); font-weight: 500; border-bottom: 1px solid var(--blush); padding-bottom: 2px; transition: border-color .2s; }

/* Review strip */
.review-strip { background: var(--ink); padding: 64px clamp(40px,7vw,112px); }
.review-strip-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.review-strip-header h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--white); }
.review-score { display: flex; align-items: center; gap: 16px; }
.review-score-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; }
.review-stars { color: var(--sand); font-size: 20px; letter-spacing: 2px; }
.review-count { font-size: 12px; color: rgba(255,255,255,.4); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.review-card { background: rgba(255,255,255,.05); padding: 32px 28px; border: 1px solid rgba(255,255,255,.07); }
.review-card q { font-family: 'Playfair Display', serif; font-size: 15.5px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.55; display: block; margin-bottom: 20px; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.review-meta-info strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 1px; }
.review-meta-info span { font-size: 12px; color: rgba(255,255,255,.35); }

/* ===========================
   CATEGORIE — BANNER
=========================== */
.cat-banner { background: var(--cream); display: grid; grid-template-columns: 1fr 320px; height: 180px; overflow: hidden; }
.cat-banner-content { display: flex; flex-direction: column; justify-content: center; padding: 24px 48px 24px 72px; }
.cat-banner-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 10px; }
.cat-banner-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 600; line-height: 1.1; color: var(--ink); margin-bottom: 10px; }
.cat-banner-title em { font-style: italic; color: var(--forest); }
.cat-banner-desc { font-size: 13px; color: var(--mid); line-height: 1.6; max-width: 520px; font-weight: 300; }
.cat-banner-visual { position: relative; overflow: hidden; }
.cat-banner-visual img { height: 100%; object-position: top center; transition: transform 6s ease; }

/* Breadcrumb */
.breadcrumb-bar { max-width: 1400px; margin: 0 auto; padding: 20px 40px 0; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); }
.breadcrumb-bar a { color: var(--mid); transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--ink); }
.breadcrumb-sep { opacity: .4; }
.breadcrumb-bar span { color: var(--ink); font-weight: 500; }

/* Filter toolbar */
.filter-toolbar { position: sticky; top: 72px; z-index: 50; background: var(--white); border-bottom: 1px solid var(--blush); }
.filter-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.filter-left { display: flex; align-items: center; gap: 8px; }
.filter-count { font-size: 12px; color: var(--mid); letter-spacing: .5px; white-space: nowrap; margin-right: 8px; }
.filter-btn { display: flex; align-items: center; gap: 6px; padding: 7px 16px; border: 1px solid var(--blush); background: transparent; font-size: 12px; letter-spacing: .8px; text-transform: uppercase; color: var(--ink); transition: all .2s; white-space: nowrap; }
.filter-btn:hover, .filter-btn.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.filter-chip { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--blush); background: var(--light); font-size: 12px; color: var(--ink); transition: all .2s; white-space: nowrap; }
.sort-select { border: 1px solid var(--blush); background: transparent; padding: 7px 32px 7px 14px; font-size: 12px; letter-spacing: .5px; color: var(--ink); outline: none; -webkit-appearance: none; appearance: none; cursor: pointer; }
.view-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--blush); background: transparent; color: var(--mid); transition: all .2s; }
.view-btn.active, .view-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

/* Product grid */
.shop-wrapper { max-width: 1400px; margin: 0 auto; padding: 40px 40px 80px; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.product-card { position: relative; background: var(--white); cursor: pointer; overflow: hidden; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card:hover .quick-add { transform: translateY(0); opacity: 1; }
.product-image { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--light); }
.product-image img { height: 100%; object-position: top center; transition: transform .6s ease; }
.product-badge { position: absolute; top: 16px; left: 16px; padding: 5px 10px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; z-index: 2; }
.badge-new { background: var(--forest); color: var(--white); }
.badge-best { background: var(--sand); color: var(--white); }
.badge-sale { background: var(--ink); color: var(--white); }
.wishlist-btn { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: var(--white); border: none; display: flex; align-items: center; justify-content: center; z-index: 2; opacity: 0; transition: opacity .2s; }
.product-card:hover .wishlist-btn { opacity: 1; }
.quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--ink); color: var(--white); border: none; padding: 14px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transform: translateY(100%); opacity: 0; transition: transform .3s ease, opacity .3s ease; z-index: 3; }
.quick-add:hover { background: var(--forest); }
.product-info { padding: 16px 16px 20px; border: 1px solid transparent; border-top: none; transition: border-color .2s; }
.product-card:hover .product-info { border-color: var(--blush); }
.product-brand { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.product-desc { font-size: 12px; color: var(--mid); line-height: 1.5; margin-bottom: 12px; font-weight: 300; }
.product-pricing { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-size: 15px; font-weight: 500; color: var(--ink); }
.price-old { font-size: 13px; color: var(--mid); text-decoration: line-through; font-weight: 300; }
.price-save { font-size: 11px; color: var(--sand); font-weight: 500; letter-spacing: .5px; }

/* Editorial strip (in product grid) */
.editorial-strip { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; height: 260px; overflow: hidden; margin: 2px 0; }
.editorial-strip-content { background: var(--forest); display: flex; flex-direction: column; justify-content: center; padding: 0 56px; }
.editorial-strip-content h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.editorial-strip-content h3 em { font-style: italic; color: var(--sand); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 4px; padding: 20px 0 60px; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--blush); background: transparent; font-size: 13px; color: var(--mid); transition: all .2s; }
.page-btn:hover { border-color: var(--ink); color: var(--ink); }
.page-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Advice strip */
.advice-strip { background: var(--cream); padding: 60px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.advice-strip-text h4 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.advice-strip-text p { font-size: 14px; color: var(--mid); font-weight: 300; max-width: 560px; line-height: 1.7; }

/* ===========================
   CHECKOUT HEADER
=========================== */
.checkout-header { background: var(--white); border-bottom: 1px solid var(--blush); position: sticky; top: 0; z-index: 200; }
.checkout-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.checkout-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; color: var(--ink); }
.checkout-logo span { color: var(--sand); }
.checkout-steps { display: flex; align-items: center; gap: 0; }
.step { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .5px; color: var(--mid); font-weight: 400; }
.step.active { color: var(--ink); font-weight: 500; }
.step.done { color: var(--forest); }
.step-num { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; border: 1.5px solid var(--blush); color: var(--mid); flex-shrink: 0; }
.step.active .step-num { background: var(--ink); border-color: var(--ink); color: var(--white); }
.step.done .step-num { background: var(--forest); border-color: var(--forest); color: var(--white); }
.step-arrow { width: 32px; height: 1px; background: var(--blush); margin: 0 4px; }
.checkout-help { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); }
.checkout-help a { color: var(--forest); font-weight: 500; border-bottom: 1px solid rgba(45,74,62,.3); }

/* Shipping bar */
.shipping-bar { background: linear-gradient(135deg, var(--forest), #1e3329); padding: 13px 40px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.shipping-bar-text { font-size: 13px; color: var(--white); font-weight: 400; white-space: nowrap; }
.shipping-bar-text em { font-style: normal; color: var(--sand); font-weight: 600; }
.shipping-progress-track { flex: 1; max-width: 280px; height: 5px; background: rgba(255,255,255,.2); border-radius: 3px; overflow: hidden; }
.shipping-progress-fill { height: 100%; background: var(--sand); border-radius: 3px; transition: width 1s ease; width: 0%; }

/* Cart layout */
.cart-page { max-width: 1200px; margin: 0 auto; padding: 32px 40px 80px; display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.cart-left { min-width: 0; }
.cart-right { position: sticky; top: 100px; }
.cart-items { background: var(--white); }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; padding: 24px; border-bottom: 1px solid var(--blush); align-items: start; transition: background .2s; }
.cart-item:last-child { border-bottom: none; }
.item-img { aspect-ratio: 3/4; overflow: hidden; background: var(--light); flex-shrink: 0; }
.item-img img { height: 100%; object-position: top; }
.item-brand { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 4px; }
.item-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.item-variant { font-size: 12px; color: var(--mid); font-weight: 300; margin-bottom: 10px; }
.item-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.item-actions { display: flex; gap: 12px; margin-top: 12px; align-items: center; }
.item-qty { display: flex; align-items: center; border: 1px solid var(--blush); height: 36px; }
.item-qty-btn { width: 32px; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--mid); cursor: pointer; transition: background .15s; user-select: none; }
.item-qty-btn:hover { background: var(--light); color: var(--ink); }
.item-qty-val { width: 32px; text-align: center; font-size: 13px; font-weight: 500; border-left: 1px solid var(--blush); border-right: 1px solid var(--blush); height: 100%; display: flex; align-items: center; justify-content: center; }
.item-save-btn, .item-remove-btn { font-size: 12px; color: var(--mid); padding: 0; border-bottom: 1px solid transparent; transition: all .2s; }
.item-save-btn:hover { color: var(--ink); border-color: var(--ink); }
.item-remove-btn:hover { color: var(--red); border-color: var(--red); }
.item-price-col { text-align: right; flex-shrink: 0; }
.item-price { font-size: 18px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.item-price-old { font-size: 13px; color: var(--mid); text-decoration: line-through; font-weight: 300; }
.item-price-save { font-size: 11px; color: var(--green); font-weight: 500; margin-top: 3px; }

/* Upsell */
.upsell-section { margin-top: 24px; }
.upsell-grid { background: var(--white); display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background-color: var(--blush); }
.upsell-item { background: var(--white); display: grid; grid-template-columns: 72px 1fr; gap: 14px; padding: 18px 20px; align-items: center; }
.upsell-img { aspect-ratio: 3/4; overflow: hidden; background: var(--light); }
.upsell-add { width: 100%; padding: 8px 12px; background: transparent; border: 1px solid var(--ink); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; color: var(--ink); cursor: pointer; transition: all .2s; }
.upsell-add:hover { background: var(--ink); color: var(--white); }

/* Order summary */
.order-summary { background: var(--white); }
.summary-header { padding: 20px 24px; border-bottom: 1px solid var(--blush); }
.summary-header h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; }
.summary-body { padding: 20px 24px; }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--mid); margin-bottom: 12px; }
.summary-row.saving { color: var(--green); font-weight: 500; }
.summary-row.total { font-size: 19px; font-weight: 600; color: var(--ink); border-top: 1px solid var(--blush); padding-top: 16px; margin-top: 4px; margin-bottom: 0; }
.promo-toggle { display: block; font-size: 12px; color: var(--mid); cursor: pointer; margin: 16px 0 0; transition: color .2s; background: none; border: none; padding: 0; text-align: left; border-bottom: 1px solid transparent; }
.promo-toggle:hover { color: var(--ink); border-color: var(--ink); }
.promo-field { display: none; margin-top: 12px; }
.promo-field.open { display: flex; gap: 8px; }
.promo-input { flex: 1; border: 1px solid var(--blush); padding: 10px 14px; font-size: 13px; font-family: inherit; outline: none; transition: border-color .2s; }
.promo-input:focus { border-color: var(--ink); }
.btn-checkout { display: block; width: 100%; padding: 18px; background: var(--forest); color: var(--white); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: background .2s; font-family: inherit; }
.btn-checkout:hover { background: rgba(45,74,62,.9); }
.trust-bullets { padding: 16px 24px 20px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--blush); }
.trust-bullet { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); }
.trust-bullet svg { color: var(--forest); flex-shrink: 0; }

/* ===========================
   CHECKOUT FORM
=========================== */
.checkout-page { max-width: 1200px; margin: 0 auto; padding: 32px 40px 80px; display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.checkout-form-block { background: var(--white); margin-bottom: 16px; }
.checkout-form-title { padding: 20px 24px; border-bottom: 1px solid var(--blush); font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--ink); }
.checkout-form-body { padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--mid); font-weight: 500; }
.form-group input, .form-group select { border: 1px solid var(--blush); padding: 12px 16px; font-size: 14px; font-family: inherit; outline: none; background: var(--white); color: var(--ink); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--ink); }
.delivery-method { border: 1px solid var(--blush); padding: 16px 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; margin-bottom: 8px; cursor: pointer; transition: border-color .2s, background .2s; }
.delivery-method.selected { border-color: var(--forest); background: var(--green-light); }
.btn-continue { display: block; width: 100%; padding: 18px; background: var(--forest); color: var(--white); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: background .2s; font-family: inherit; margin-top: 8px; }
.btn-continue:hover { background: rgba(45,74,62,.9); }

/* Payment methods */
.payment-method-card { border: 1px solid var(--blush); padding: 16px 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; margin-bottom: 8px; cursor: pointer; transition: border-color .2s; }
.payment-method-card.selected { border-color: var(--forest); background: var(--green-light); }
.payment-details { padding: 16px 20px; background: var(--light); margin-bottom: 8px; border: 1px solid var(--blush); border-top: none; }
.bank-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.bank-logo { width: 44px; height: 28px; border: 1px solid var(--blush); border-radius: 4px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: var(--mid); cursor: pointer; transition: border-color .2s; }
.bank-logo.active, .bank-logo:hover { border-color: var(--forest); }

/* Order confirmation */
.thankyou-page { max-width: 1200px; margin: 0 auto; padding: 32px 40px 80px; display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.thankyou-hero { background: linear-gradient(135deg, var(--forest), #1a3328); padding: 60px; text-align: center; margin-bottom: 24px; position: relative; overflow: hidden; }
.thankyou-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.thankyou-hero h1 em { font-style: italic; color: var(--sand); }
.thankyou-hero p { font-size: 16px; color: rgba(255,255,255,.7); font-weight: 300; margin-bottom: 28px; }
.order-number-badge { display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 10px 24px; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); letter-spacing: 2px; }
.order-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step-item { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding-bottom: 28px; position: relative; }
.timeline-step-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: var(--blush); }
.timeline-step-item:last-child::before { display: none; }
.timeline-step-item:last-child { padding-bottom: 0; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.tl-dot.done { background: var(--forest); color: var(--white); }
.tl-dot.active { background: var(--sand); color: var(--white); }
.tl-dot.pending { background: var(--light); border: 1px solid var(--blush); color: var(--mid); }
.tl-content h4 { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.tl-content p { font-size: 13px; font-weight: 300; color: var(--mid); }
.tl-content span { font-size: 11px; color: var(--sand); font-weight: 500; }

/* ===========================
   WOO OVERRIDES
=========================== */
.woocommerce-notices-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.woocommerce-error, .woocommerce-message, .woocommerce-info { padding: 14px 20px; margin-bottom: 16px; border-left: 3px solid var(--sand); background: var(--cream); font-size: 14px; color: var(--ink); list-style: none; }
.woocommerce-error { border-color: var(--red); background: #fdf3f2; }

/* ===========================
   RESPONSIVE — TABLET ≤1024px
=========================== */
@media (max-width: 1024px) {
  .mob-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-actions a:not(.cart-btn) { display: none; }
  nav { padding: 0 20px; height: 64px; }
  .mega-menu { display: none !important; }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-visual { height: clamp(260px,55vw,480px); }
  .hero-content { padding: 40px 32px 48px; }
  .categories { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-content { order: 2; padding: 40px 32px; }
  .editorial-visual { order: 1; height: 52vw; }
  .mosaic { grid-template-columns: 1fr 1fr 1fr; }
  .mosaic-card--tall { grid-row: span 1; }
  .lifestyle { grid-template-columns: 1fr; padding: 60px 40px; }
  .lifestyle-visual { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; }
  .lifestyle-visual img:first-child { grid-row: span 1; }
  .usp-strip { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 56px 32px 32px; }
  .intro-strip { grid-template-columns: 1fr; gap: 40px; }
  .founder { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .timeline-section { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .store-section { grid-template-columns: 1fr; }
  .service-hero-inner { grid-template-columns: 1fr !important; }
  .trust-strip-inner { grid-template-columns: repeat(3,1fr) !important; }
  .delivery-grid, .payment-grid, .vergoeding-split { grid-template-columns: 1fr !important; gap: 40px; }
  .privacy-grid { grid-template-columns: 1fr 1fr !important; }
  .faq-layout { grid-template-columns: 1fr !important; }
  .faq-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr 1fr !important; }
  .review-grid { grid-template-columns: 1fr 1fr !important; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .cart-page, .checkout-page, .thankyou-page { grid-template-columns: 1fr; }
  .cart-right { position: static; }
  .checkout-steps { display: none; }
}

/* ===========================
   RESPONSIVE — MOBILE ≤768px
=========================== */
@media (max-width: 768px) {
  .announcement { position: relative; overflow: hidden; }
  .ann-sep { display: none; }
  .ann-item { position: absolute; left: 0; right: 0; opacity: 0; transition: opacity .5s; text-align: center; }
  .ann-item.ann-active { opacity: 1; }
  nav { padding: 0 16px; height: 60px; }
  .nav-logo { font-size: 22px; letter-spacing: 4px; }
  .cart-btn { padding: 8px 14px; font-size: 11px !important; letter-spacing: 1px; }
  .hero-content { padding: 32px 20px 40px; }
  .btn-group { flex-direction: column; gap: 10px; }
  .categories { grid-template-columns: 1fr; gap: 2px; padding: 0; }
  .usp-strip { grid-template-columns: 1fr; padding: 32px 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .brands-logos { gap: 20px; }
  .newsletter { padding: 48px 20px; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 40px 20px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 48px 20px 40px; }
  .returns-steps { grid-template-columns: 1fr 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .review-grid { grid-template-columns: 1fr !important; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cat-banner { grid-template-columns: 1fr; height: auto; }
  .cat-banner-visual { display: none; }
  .cart-page, .checkout-page, .thankyou-page { padding: 16px 16px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .shipping-bar { padding: 10px 16px; gap: 10px; flex-wrap: wrap; }
  .shipping-progress-track { display: none; }
  .checkout-header-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .feel-bar { flex-direction: column; gap: 0; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-card--tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .cart-btn { display: none; }
  .mob-cart-icon { display: flex !important; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .upsell-grid { grid-template-columns: 1fr !important; }
}
