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

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --moss:        #2e4d2e;
  --moss-deep:   #1d3220;
  --moss-mid:    #3d6b3d;
  --moss-soft:   #5a8a5a;
  --moss-pale:   #edf3ed;
  --moss-wash:   #f4f8f4;
  --amber:       #b8752a;
  --amber-warm:  #d4894a;
  --amber-pale:  #fdf3e7;
  --parchment:   #faf6ee;
  --parchment-d: #f0e9d8;
  --cream:       #fffdf9;
  --bark:        #5c3d1e;
  --text:        #1e2a1e;
  --text-mid:    #4a5c4a;
  --text-soft:   #7a907a;
  --border:      #ddd5c2;
  --border-soft: #ede8dc;
  --accent-gold: #d4af37;
  --white:       #ffffff;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --shadow-sm: 0 1px 4px rgba(30,42,30,.08);
  --shadow-md: 0 4px 16px rgba(30,42,30,.12);
  --shadow-lg: 0 8px 32px rgba(30,42,30,.16);
  --shadow-xl: 0 16px 56px rgba(30,42,30,.20);

  /* Legacy aliases — keep inner-page inline styles working */
  --primary-green: var(--moss);
  --secondary-green: var(--moss-mid);
  --light-green: var(--moss-soft);
  --dark-green: var(--moss-deep);
  --text-dark: var(--text);
  --text-light: var(--text-soft);
  --border-color: var(--border);
  --bg-light: var(--moss-wash);
  --font-display: var(--font-serif);
  --font-body: var(--font-sans);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-serif); color: var(--moss-deep); line-height: 1.25; }
h1 { font-size: clamp(2.2rem,5.5vw,3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem,2.5vw,1.35rem); font-weight: 600; }
p  { color: var(--text-mid); }

/* ── Layout ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,3rem);
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.announce-bar {
  background: var(--moss-deep);
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .55rem 1rem;
}
.announce-bar strong { color: #a8d4a8; }
.announce-bar a { color: #c8e8c8; text-decoration: underline; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav-wrap {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(30,42,30,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--moss);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--moss-deep);
}
.nav-logo-text span {
  font-size: .72rem;
  color: var(--text-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
}
.nav-links a,
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .45rem .85rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover,
.nav-link:hover { color: var(--moss); background: var(--moss-wash); }
.nav-links a.active,
.nav-link.active { color: var(--moss); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-mobile-only { display: none; }
.nav-cart {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-gold);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .875rem;
  padding: .55rem 1.2rem;
  border-radius: 30px;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(184,117,42,.3);
  text-decoration: none;
}
.nav-cart:hover { background: var(--amber-warm); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,117,42,.4); color: var(--white); }
.nav-cart .cart-count {
  background: rgba(255,255,255,.3);
  color: var(--white);
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 700;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
}

.nav-account {
  font-size: .82rem;
  color: var(--text-soft);
  padding: .45rem .75rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.nav-account:hover { border-color: var(--moss-soft); color: var(--moss); }

/* Account dropdown inside nav-actions */
.nav-actions .nav-dropdown {
  position: relative;
}
.nav-actions .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-actions .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s var(--ease);
  z-index: 300;
}
.nav-actions .nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-arrow { font-size: .75rem; transition: transform .25s; }
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .875rem;
  color: var(--text-mid);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.dropdown-link:hover { background: var(--moss-wash); color: var(--moss); }
.dropdown-link i { width: 16px; text-align: center; }
.dropdown-divider { height: 1px; background: var(--border-soft); margin: 4px 0; }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--moss-deep); border-radius: 2px;
  transition: .3s;
}

/* Mobile nav open state */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--parchment);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(30,42,30,.12);
    z-index: 199;
    gap: .25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-link {
    padding: .75rem 1rem;
    border-radius: var(--r-sm);
  }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-only { display: flex; }

  /* Mobile account dropdown */
  .nav-links .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--moss-wash);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .3s ease;
  }
  .nav-links .nav-dropdown.open .dropdown-menu {
    max-height: 300px;
    padding: 4px 0;
  }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--moss-deep);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem,10vw,8rem) 0 clamp(3rem,8vw,6rem);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(61,107,61,.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(29,50,32,.6) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,6vw,5rem);
  align-items: center;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(168,212,168,.15);
  border: 1px solid rgba(168,212,168,.3);
  color: #a8d4a8;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem,5vw,3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: #c8e8a8; }
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero p { color: rgba(255,255,255,.72); }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 2.5rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
}
.hero-trust-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #a8d4a8; flex-shrink: 0;
}
.hero-image-side { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .85rem;
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-float-card .icon { font-size: 1.75rem; }
.hero-float-card .label { font-size: .75rem; color: var(--text-soft); }
.hero-float-card .value { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--moss-deep); }
.hero-badge {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--amber);
  color: var(--white);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(184,117,42,.4);
}
.hero-badge big { font-size: 1.3rem; display: block; line-height: 1; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .9rem 2rem;
  border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: background .22s var(--ease), transform .22s var(--ease-spring), box-shadow .22s;
  box-shadow: 0 4px 16px rgba(184,117,42,.4);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--amber-warm);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(184,117,42,.5);
  color: var(--white);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
  padding: .9rem 1.75rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .22s, border-color .22s, color .22s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  color: var(--accent-gold);
  font-weight: 700; font-size: .95rem;
  padding: .9rem 2.2rem; border-radius: var(--r-md);
  transition: all .2s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

/* Legacy .btn — used in many templates */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem;
  background: var(--moss);
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .9rem;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: var(--moss-mid); transform: translateY(-1px); color: var(--white); }
.btn-secondary { background: var(--accent-gold); box-shadow: 0 2px 10px rgba(184,117,42,.3); }
.btn-secondary:hover { background: var(--amber-warm); }
========
/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  background: var(--parchment-d);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  display: flex; justify-content: center;
  gap: clamp(1.5rem,5vw,4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 500; color: var(--text-mid);
}
.trust-item .ti-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.trust-item strong { color: var(--moss-deep); }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: clamp(2rem,5vw,3.5rem); }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; max-width: 56ch; margin: 0 auto; color: var(--text-soft); }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-warm));
  border-radius: 2px;
  margin: .85rem auto 0;
}

/* ══════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════ */
.products-section { padding: clamp(4rem,8vw,7rem) 0; }
.product-tabs {
  display: flex; justify-content: center; gap: .5rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.ptab {
  font-size: .85rem; font-weight: 500;
  padding: .5rem 1.25rem; border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white); color: var(--text-mid);
  cursor: pointer; transition: all .2s;
}
.ptab:hover, .ptab.active { background: var(--moss); color: var(--white); border-color: var(--moss); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--moss);
  color: var(--white);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 20px;
}
.product-badge.premium { background: var(--amber); }
.product-card-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--moss-soft); margin-bottom: .35rem; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: .35rem; color: var(--moss-deep); }
.product-short { font-size: .85rem; color: var(--text-soft); margin-bottom: 1rem; flex: 1; line-height: 1.55; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: auto; }
.product-price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--moss-deep); }
.product-price span { font-size: .8rem; font-weight: 400; color: var(--text-soft); font-family: var(--font-sans); }
.product-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--moss);
  color: var(--white);
  font-size: .82rem; font-weight: 600;
  padding: .6rem 1.1rem; border-radius: var(--r-md);
  transition: background .2s, transform .2s;
  white-space: nowrap;
  text-decoration: none;
}
.product-cta:hover { background: var(--moss-mid); transform: translateY(-1px); color: var(--white); }
.stock-chip {
  position: absolute; bottom: .85rem; right: .85rem;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: .2rem .65rem;
  font-size: .68rem; font-weight: 600;
  display: flex; align-items: center; gap: .35rem;
  backdrop-filter: blur(4px);
}
.stock-dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf50; }
.stock-dot.low { background: #ff9800; }
.stock-dot.out { background: #ccc; }
.stock-chip.out { color: var(--text-soft); }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-section {
  background: var(--parchment);
  padding: clamp(4rem,8vw,7rem) 0;
  position: relative; overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,107,61,.08) 0%, transparent 70%);
  pointer-events: none;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(46,77,46,.3);
  position: relative;
}
.how-step-num::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(46,77,46,.25);
}
.how-step h3 { font-size: 1rem; margin-bottom: .5rem; }
.how-step p { font-size: .875rem; color: var(--text-soft); max-width: 22ch; margin: 0 auto; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-section { padding: clamp(4rem,8vw,7rem) 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.why-img-side { position: relative; }
.why-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-xl); }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-accent {
  position: absolute;
  bottom: 2.5rem; right: -2rem;
  background: var(--amber-pale);
  border: 1px solid rgba(184,117,42,.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  max-width: 190px;
  box-shadow: var(--shadow-md);
}
.why-accent .wa-icon { font-size: 1.75rem; margin-bottom: .4rem; }
.why-accent p { font-size: .8rem; color: var(--bark); line-height: 1.45; max-width: none; }
.why-accent strong { color: var(--bark); font-weight: 700; }
.why-content { padding-left: 1rem; }
.why-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--moss-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.why-item-text h4 { font-size: 1rem; margin-bottom: .2rem; }
.why-item-text p { font-size: .875rem; color: var(--text-soft); max-width: none; }

/* ══════════════════════════════════════════
   DELIVERY SECTION
══════════════════════════════════════════ */
.delivery-section {
  background: var(--moss-deep);
  padding: clamp(3rem,7vw,6rem) 0;
  color: var(--white);
  position: relative; overflow: hidden;
}
.delivery-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.delivery-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.delivery-content h2 { color: var(--white); margin-bottom: 1rem; }
.delivery-content p { color: rgba(255,255,255,.65); max-width: 42ch; }
.delivery-zones { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.delivery-zone {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .85rem 1.25rem;
}
.dz-label { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 500; }
.dz-price { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: #a8d4a8; }
.delivery-times {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.delivery-times h3 { color: #a8d4a8; font-size: 1rem; margin-bottom: 1.25rem; }
.dt-row {
  display: flex; justify-content: space-between;
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .875rem; color: rgba(255,255,255,.65);
}
.dt-row:last-child { border-bottom: none; }
.dt-row strong { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: var(--parchment); padding: clamp(4rem,8vw,7rem) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem; line-height: 1;
  color: var(--border-soft);
}
.stars { color: #f5a623; font-size: .9rem; letter-spacing: .12em; margin-bottom: .85rem; }
.testimonial-text { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--moss-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ta-name { font-weight: 600; font-size: .875rem; color: var(--moss-deep); }
.ta-loc { font-size: .78rem; color: var(--text-soft); }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, #9a5e1a 100%);
  padding: clamp(3rem,7vw,5rem) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 50ch; margin: 0 auto 2rem; }
.cta-meta { margin-top: 1.25rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-meta span { color: rgba(255,255,255,.7); font-size: .82rem; display: flex; align-items: center; gap: .4rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--moss-deep);
  color: rgba(255,255,255,.65);
  padding: clamp(3rem,6vw,5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.footer-brand-sub { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.footer-contact-item { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-item a:hover { color: #a8d4a8; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #a8d4a8; }
.footer-payment-col h4 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .85rem;
  font-family: var(--font-sans);
}
.payment-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.pay-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: .3rem .75rem;
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a { font-size: .8rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-social a:hover { color: #a8d4a8; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
.anim { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.anim.in { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: .1s; }
.anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; }
.anim-d4 { transition-delay: .4s; }

/* ══════════════════════════════════════════
   INNER PAGES — PAGE HEADER
══════════════════════════════════════════ */
.page-header {
  min-height: 160px;
  /* background: linear-gradient(rgba(29,50,32,.85), rgba(29,50,32,.85)), url('/media/slides/kerstbomen01.jpg') center / cover no-repeat; */
  background-color: var(--moss-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent-gold);
}
.page-header--about {
  background: linear-gradient(rgba(29,50,32,.8), rgba(29,50,32,.8)),
              url('/media/team/dirk.jpg') center / cover no-repeat;
}
/* .page-header--shop {
  background: linear-gradient(rgba(29,50,32,.8), rgba(29,50,32,.8)),
              url('/media/products/nordmann-4-600x600.jpg') center / cover no-repeat;
} */
/* .page-header--product {
  background: linear-gradient(rgba(29,50,32,.8), rgba(29,50,32,.8)),
              url('/media/products/nordmann-4-600x600.jpg') center / cover no-repeat;
} */
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--accent-gold);
  font-weight: 700;
  text-align: center;
  padding: 2rem 1rem;
  position: relative; z-index: 1;
}
.page-content { min-height: 60vh; }

/* ══════════════════════════════════════════
   CONTENT SECTIONS (inner pages)
══════════════════════════════════════════ */
.content-section { margin-bottom: 3rem; }
.content-section h2 { color: var(--moss-deep); margin-bottom: 1rem; font-size: 1.8rem; }
.section-title { text-align: center; font-size: clamp(1.8rem,3.5vw,2.4rem); color: var(--moss-deep); margin-bottom: 3rem; font-family: var(--font-serif); }

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */
.services-section { padding: 5rem 0; background: var(--moss-wash); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-icon {
  font-size: 2.5rem;
  color: var(--moss);
  margin: 0 auto 1rem;
  width: 64px; height: 64px;
  background: var(--moss-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.service-icon i { font-size: 1.8rem; color: var(--moss); }
.service-card h3 { font-size: 1.2rem; margin-bottom: .75rem; color: var(--moss-deep); }
.service-card p { color: var(--text-soft); line-height: 1.6; font-size: .9rem; }

/* Service detail (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--moss-wash);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
}
.service-detail-icon { display: flex; align-items: flex-start; justify-content: center; padding-top: .25rem; }
.service-detail-icon i { font-size: 2.5rem; color: var(--moss); }
.service-detail-content h3 { color: var(--moss-deep); margin-bottom: .75rem; font-size: 1.3rem; }
.service-detail-content p { color: var(--text-mid); line-height: 1.7; margin-bottom: .75rem; }
.service-detail-content ul { padding-left: 1.5rem; margin-bottom: .75rem; color: var(--text-mid); line-height: 1.8; }
.service-detail-content .checkmark-list { list-style: none; padding-left: 0; }
.service-detail-content .checkmark-list li::before { content: "\2714\fe0f"; margin-right: .5rem; }
.service-highlight { font-weight: 600; color: var(--moss); margin-top: .5rem; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-item { margin-bottom: 1rem; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-question {
  background: var(--moss-wash);
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--moss-deep);
  transition: background .2s;
}
.faq-question:hover { background: var(--moss-pale); }
.faq-answer { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--text-mid); line-height: 1.7; }
.faq-answer.open { padding: 1rem 1.25rem; max-height: 300px; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: .5rem; font-weight: 500; color: var(--text); font-size: .9rem; }

/* ══════════════════════════════════════════
   GLOBAL FORM INPUTS
══════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
textarea,
select {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .65rem .85rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(46,77,46,.12);
}
textarea { min-height: 120px; resize: vertical; }

/* ══════════════════════════════════════════
   PRODUCT DESCRIPTION (rich-text content)
══════════════════════════════════════════ */
.product-description { font-family: var(--font-sans) !important; color: var(--text-mid) !important; }
.product-description h1,.product-description h2,.product-description h3,
.product-description h4,.product-description h5,.product-description h6 {
  margin-bottom: .75rem !important; margin-top: 1rem !important;
  font-weight: 700 !important; color: var(--moss-deep) !important; line-height: 1.3 !important;
}
.product-description h1 { font-size: 1.8rem !important; }
.product-description h2 { font-size: 1.5rem !important; }
.product-description h3 { font-size: 1.3rem !important; }
.product-description h4 { font-size: 1.1rem !important; }
.product-description p { margin-bottom: 1rem !important; margin-top: .5rem !important; line-height: 1.6 !important; display: block !important; }
.product-description ul,.product-description ol { margin-left: 0 !important; margin-bottom: 1rem !important; padding-left: 1.5rem !important; display: block !important; }
.product-description ul { list-style-type: disc !important; }
.product-description ol { list-style-type: decimal !important; }
.product-description li { margin-bottom: .4rem !important; line-height: 1.5 !important; display: list-item !important; }
.product-description strong,.product-description b { font-weight: 700 !important; color: var(--text) !important; }
.product-description em,.product-description i { font-style: italic !important; }
.product-description a { color: var(--moss) !important; text-decoration: underline !important; }
.product-description blockquote { margin: 1rem 0 !important; padding: .75rem 1rem !important; border-left: 4px solid var(--moss) !important; background: var(--moss-wash) !important; font-style: italic !important; }

/* ══════════════════════════════════════════
   CONTACT PAGE LAYOUT UTILITIES
══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-details-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.quick-actions { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; justify-items: center; }

@media (min-width: 640px) {
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-details-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .quick-actions { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   GRID UTILITIES (replaces Tailwind in about.html)
══════════════════════════════════════════ */
.grid { display: grid; }
.gap-8 { gap: 2rem; }
.items-center { align-items: center; }
.grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   SHOP — PRODUCT LIST PAGE
══════════════════════════════════════════ */
.shop-filters {
  background: var(--parchment);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.shop-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ptab-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.ptab-group a { text-decoration: none; }
.shop-sort-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.shop-select {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .45rem .85rem;
  cursor: pointer;
  transition: border-color .2s;
  width: auto;
}
.shop-select:focus { border-color: var(--moss); outline: none; box-shadow: 0 0 0 3px rgba(46,77,46,.1); }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--moss-pale);
  border: 1px solid rgba(46,77,46,.2);
  color: var(--moss-deep);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 20px;
}
.filter-pill a {
  color: var(--moss-soft);
  font-weight: 700;
  margin-left: .2rem;
  text-decoration: none;
  transition: color .2s;
}
.filter-pill a:hover { color: var(--moss-deep); }

/* Pagination */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .85rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  text-decoration: none;
  transition: all .2s;
}
.page-btn:hover { background: var(--moss-wash); border-color: var(--moss-soft); color: var(--moss); }
.page-btn.active { background: var(--moss); border-color: var(--moss); color: var(--white); font-weight: 600; }
.page-btn.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--moss-wash);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-soft);
}
.shop-empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: .5; }
.shop-empty h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.shop-empty p { color: var(--text-soft); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .service-detail { grid-template-columns: 60px 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-side { display: none; }
  .delivery-inner { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .service-detail { grid-template-columns: 1fr; text-align: center; }
  .service-detail-content ul,.service-detail-content .checkmark-list { text-align: left; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .btn { min-height: 44px; }
  input, select, textarea { font-size: 16px; }
}
