/* ═══════════════════════════════════════════════════════════════
   Such Leaf — Complete Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime:       #6fa832;
  --lime-dark:  #527d25;
  --lime-pale:  #edf4d8;
  --lime-mid:   #c0de88;
  --forest:     #1a2e1c;
  --dark:       #1a1a1a;
  --charcoal:   #242424;
  --gray-600:   #585858;
  --gray-400:   #9a9a9a;
  --gray-200:   #e2ddd4;
  --gray-100:   #f3f0e8;
  --cream:      #faf8f4;
  --cream-dark: #f2ede4;
  --white:      #fefcf8;
  --red:        #c0392b;
  --success:    #27643a;
  --serif:      'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 3px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ─── ANNOUNCEMENT ─── */
.announcement {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 10px 48px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .3px;
  position: relative;
}
.announcement span { color: var(--lime); font-weight: 700; }
.announcement-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--gray-400);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  transition: color .2s;
}
.announcement-close:hover { color: var(--white); }

/* ─── NAVBAR ─── */
nav#mainNav {
  position: sticky; top: 0; z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
nav#mainNav.shadowed { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--gray-100); color: var(--lime-dark); }
.nav-links a.active { color: var(--lime-dark); font-weight: 700; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  letter-spacing: .1px;
}
.cart-btn:hover { background: var(--lime-dark); color: var(--white); }
.cart-btn svg { width: 18px; height: 18px; }

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 1;
}
.cart-btn:hover .cart-badge { background: var(--white); color: var(--lime); }

/* ─── BUTTONS ─── */
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(26,46,28,.25);
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,46,28,.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-1px); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-dark:hover { background: var(--lime-dark); }

/* ─── HERO ─── */
.hero {
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

/* LEFT — deep forest green */
.hero-content {
  background: #1b4332;
  padding: 80px 64px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,208,90,.15);
  color: #a8d05a;
  border: 1px solid rgba(168,208,90,.28);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.2vw, 5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: #a8d05a;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-link {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.hero-link:hover { color: #fff; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.hero-pills span {
  font-size: .82rem;
  color: rgba(255,255,255,.52);
  font-weight: 500;
}

/* RIGHT — warm cream */
.hero-visual {
  background: #f5f0e4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 40px 80px;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 40%, rgba(45,106,79,.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-circle--lg {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(45,106,79,.09) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-circle--sm {
  width: 220px; height: 220px;
  background: rgba(45,106,79,.06);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-product-img {
  position: relative;
  z-index: 2;
  width: min(300px, 72%);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.13));
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-rating {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(45,106,79,.14);
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.hero-stars { color: #f5a623; font-size: .9rem; letter-spacing: 2px; }
.hero-rating-text { font-size: .82rem; color: var(--dark); }
.hero-rating-text strong { font-weight: 700; color: #1b4332; }

/* ─── HERO RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 32px 48px;
    order: 1;
  }
  .hero-visual {
    order: 2;
    min-height: 380px;
    padding: 48px 32px 72px;
  }
}
@media (max-width: 600px) {
  .hero-content { padding: 48px 24px 40px; }
  .hero-visual  { min-height: 300px; padding: 40px 24px 64px; }
  .hero-product-img { width: min(220px, 68%); }
  .hero-h1 { font-size: clamp(2.6rem, 10vw, 3.4rem); }
}

/* ─── CSS BOTTLES (hero size) ─── */
.bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.b-cap {
  width: 16px; height: 28px;
  background: var(--dark);
  border-radius: 4px 4px 0 0;
}
.b-neck {
  width: 22px; height: 14px;
  background: linear-gradient(to bottom, #c8922a, #a0741e);
  border-radius: 0;
}
.b-body {
  width: 64px; height: 160px;
  border-radius: 8px 8px 14px 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-label {
  width: 50px; height: 100px;
  background: var(--white);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  position: relative;
  z-index: 1;
}
.b-label-leaf {
  font-size: 1.4rem;
  line-height: 1;
}
.b-label-text {
  font-size: .42rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dark);
  line-height: 1.3;
  text-align: center;
}

/* Amber bottle */
.bottle.amber .b-neck { background: linear-gradient(to bottom, #c8922a, #a0741e); }
.bottle.amber .b-body { background: linear-gradient(135deg, #d4a843 0%, #a07832 60%, #7a5c24 100%); }

/* Green bottle */
.bottle.green .b-cap { background: var(--lime-dark); }
.bottle.green .b-neck { background: linear-gradient(to bottom, var(--lime), var(--lime-dark)); }
.bottle.green .b-body { background: linear-gradient(135deg, #a8d44a 0%, #7aaa1c 50%, #5a8214 100%); }

/* Spray bottle - slightly taller cap */
.bottle.spray .b-cap { width: 12px; height: 38px; border-radius: 3px 3px 0 0; }
.bottle.spray .b-neck { width: 18px; height: 10px; }
.bottle.spray .b-body { width: 56px; height: 140px; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--cream-dark);
  padding: 28px 40px;
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ts-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ts-icon {
  width: 44px; height: 44px;
  background: var(--lime-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ts-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.ts-item span {
  font-size: .78rem;
  color: var(--gray-400);
}

/* ─── SECTIONS ─── */
.section { padding: 100px 40px; }
.section.bg-pale { background: var(--lime-pale); }
.section.bg-gray { background: var(--cream-dark); }
.s-inner { max-width: 1280px; margin: 0 auto; }
.s-header { text-align: center; margin-bottom: 60px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '/';
  color: var(--lime);
  font-size: 1rem;
  font-weight: 700;
}
.s-h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.s-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover { border-color: var(--lime); color: var(--lime-dark); }
.filter-tab.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--white);
}

/* ─── PRODUCT GRID ─── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.pcard {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.pcard:hover {
  box-shadow: 0 16px 56px rgba(26,46,28,.14);
  transform: translateY(-6px);
  border-color: rgba(111,168,50,.25);
}

.pimg {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #f5f2e8 0%, #edf4d8 100%);
}
.pimg.has-photo {
  background: #fff;
  padding: 0;
}
.pimg.has-photo .pcard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  padding: 16px;
  box-sizing: border-box;
}
/* Real product photo in card */
.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
}
.pcard:hover .pcard-img {
  transform: scale(1.06) translateY(-4px);
}
.bg-c {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(192,222,136,.4) 0%, transparent 70%);
  position: absolute;
  z-index: 0;
}

/* ─── CSS PRODUCT BOTTLE (card size) ─── */
.pb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pb-cap {
  width: 12px; height: 22px;
  background: var(--dark);
  border-radius: 3px 3px 0 0;
}
.pb-neck {
  width: 17px; height: 10px;
  background: linear-gradient(to bottom, #c8922a, #a0741e);
}
.pb-body {
  width: 52px; height: 130px;
  border-radius: 6px 6px 12px 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-lbl {
  width: 40px; height: 80px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  position: relative;
  z-index: 1;
}
.pb-lbl-leaf { font-size: 1.1rem; line-height: 1; }
.pb-lbl-text {
  font-size: .34rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--dark);
  line-height: 1.3;
  text-align: center;
}

/* Amber card bottle */
.pb.amber .pb-neck { background: linear-gradient(to bottom, #c8922a, #a0741e); }
.pb.amber .pb-body { background: linear-gradient(135deg, #d4a843 0%, #a07832 60%, #7a5c24 100%); }

/* Green card bottle */
.pb.green .pb-cap { background: var(--lime-dark); }
.pb.green .pb-neck { background: linear-gradient(to bottom, var(--lime), var(--lime-dark)); }
.pb.green .pb-body { background: linear-gradient(135deg, #a8d44a 0%, #7aaa1c 50%, #5a8214 100%); }

/* ─── CAPSULE VISUAL ─── */
.capsule-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  width: 120px;
  justify-content: center;
}
.cap-pill {
  width: 18px; height: 36px;
  border-radius: 9px;
  transform: rotate(-15deg);
}
.cap-pill:nth-child(even) { transform: rotate(15deg); }
.cap-pill:nth-child(3n+1) { background: var(--lime); }
.cap-pill:nth-child(3n+2) {
  background: var(--white);
  border: 2px solid var(--lime-mid);
}
.cap-pill:nth-child(3n) { background: var(--lime-dark); }

/* ─── GUMMY VISUAL ─── */
.gummy-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 130px;
}
.gdom {
  width: 36px; height: 32px;
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  position: relative;
}
.gdom::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 40%;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}
.gdom.orange { background: #ff8c42; }
.gdom.pink   { background: #ff6b9d; }
.gdom.purple { background: #9b59b6; }

/* ─── BADGES ─── */
.pbadge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}
.badge-bestseller { background: var(--forest); color: var(--white); }
.badge-best { background: var(--forest); color: var(--white); }
.badge-new, .badge-nieuw { background: var(--dark); color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }

/* ─── PRODUCT INFO (card) ─── */
.pinfo { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.p-conc {
  font-size: .72rem;
  font-weight: 700;
  color: var(--lime-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.p-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.2;
}
.p-name a { color: inherit; }
.p-name a:hover { color: var(--lime-dark); }
.p-tag {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.p-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.p-vol {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: .3px;
}
.p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.p-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}
.p-price .was {
  font-size: .85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
  font-family: 'Space Grotesk', sans-serif;
}
.p-addbtn {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .2px;
}
.p-addbtn:hover { background: var(--lime-dark); transform: translateY(-1px); }

/* ─── PRODUCT DETAIL PAGE ─── */
.product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}
.product-visual-wrap {
  background: linear-gradient(160deg, #f5f2e8 0%, #edf4d8 100%);
  border-radius: 28px;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
/* Real product photo on detail page */
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  transition: opacity .2s ease;
}
.product-visual-wrap.has-photo {
  background: linear-gradient(160deg, #f5f2e8 0%, #edf4d8 100%);
}
/* Real product photo on detail page — add depth */
.product-photo {
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.14));
}
/* Thumbnail strip */
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.p-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid var(--gray-200);
  background: #f8f9f4;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  transition: border-color .2s;
}
.p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-thumb.active,
.p-thumb:hover {
  border-color: var(--lime);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--lime-dark); }
.breadcrumb span { color: var(--lime); }

.product-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.product-conc-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--lime-dark);
  margin-bottom: 18px;
}
.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.product-price .was-price {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 10px;
}
.product-short-desc {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.qty-row label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
  min-width: 60px;
}
.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.qbtn {
  width: 40px; height: 40px;
  background: var(--gray-100);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qbtn:hover { background: var(--lime-pale); color: var(--lime-dark); }
.qnum {
  width: 48px;
  text-align: center;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
}

.atc-btn {
  width: 100%;
  padding: 17px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(26,46,28,.25);
}
.atc-btn:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,46,28,.3); }

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.pt-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  background: var(--gray-100);
  border-radius: 10px;
  text-align: center;
}
.pt-badge span { font-size: 1.4rem; }
.pt-badge small {
  font-size: .72rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── ACCORDION ─── */
.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion-item:first-child { border-top: 1px solid var(--gray-200); }
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: color .2s;
}
.accordion-toggle:hover { color: var(--lime-dark); }
.accordion-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.accordion-toggle.open .accordion-icon {
  background: var(--lime-pale);
  color: var(--lime-dark);
}
.accordion-body {
  display: none;
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.accordion-body.open { display: block; }

/* ─── CART PAGE ─── */
.cart-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.cart-page h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  grid-column: 1 / -1;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gray-200);
}
.cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.cart-product-info { display: flex; align-items: center; gap: 16px; }
.cart-thumb {
  width: 72px; height: 72px;
  background: var(--lime-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cart-product-name { font-weight: 700; font-size: .95rem; }
.cart-product-conc { font-size: .8rem; color: var(--gray-400); margin-top: 3px; }

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  overflow: hidden;
}
.cart-qty-btn {
  width: 34px; height: 34px;
  background: var(--gray-100);
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.cart-qty-btn:hover { background: var(--lime-pale); }
.cart-qty-num {
  width: 40px;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  padding: 0;
  border: none;
  background: var(--white);
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: .85rem;
  text-decoration: underline;
  padding: 0;
  transition: color .2s;
}
.cart-remove-btn:hover { color: var(--red); }
.cart-subtotal { font-weight: 700; font-size: 1rem; }

.cart-empty {
  text-align: center;
  padding: 80px 40px;
  color: var(--gray-400);
  grid-column: 1 / -1;
}
.cart-empty p { font-size: 1.1rem; margin-bottom: 24px; }

.cart-summary {
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
  border: 1px solid var(--gray-200);
}
.cart-summary h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: 8px 0;
  color: var(--gray-600);
}
.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  border-top: 1.5px solid var(--gray-200);
  padding-top: 14px;
  margin-top: 6px;
}
.free-shipping-note {
  font-size: .78rem;
  color: var(--lime-dark);
  font-weight: 600;
  margin-bottom: 16px;
  background: var(--lime-pale);
  padding: 8px 12px;
  border-radius: 6px;
}
.checkout-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--lime);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
}
.checkout-btn:hover { background: var(--lime-dark); }

/* ─── CHECKOUT PAGE ─── */
.checkout-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.checkout-form-col h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.checkout-section {
  margin-bottom: 36px;
}
.checkout-section-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-input:focus { border-color: var(--lime); }
.form-input.error { border-color: var(--red); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-error {
  font-size: .78rem;
  color: var(--red);
  margin-top: 4px;
}

/* ─── PAYMENT METHODS ─── */
.pay-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pay-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: .84rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-600);
  flex: 1;
  min-width: 90px;
  justify-content: center;
}
.pay-method.active {
  border-color: var(--lime);
  background: var(--lime-pale);
  color: var(--dark);
}
.pm-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.pm-logo svg { width: 100%; height: 100%; display: block; }

/* Stripe trust row */
.stripe-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.stripe-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  color: var(--gray-500);
  font-weight: 600;
}
.stripe-badge svg { color: var(--gray-400); }
.pay-icons-small {
  display: flex;
  gap: 6px;
  align-items: center;
}
.pi-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .5px;
}
.pi-ideal  { background: #CC0066; color: white; }
.pi-visa   { background: #1A1F71; color: white; }
.pi-mc     { background: #EB001B; color: white; }
.pi-amex   { background: #007BC1; color: white; }

.pay-redirect-note {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 4px;
  margin-bottom: 16px;
}

.pay-total-preview {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: 10px;
}
.pay-total-preview strong {
  color: var(--dark);
}

.place-order-btn {
  width: 100%;
  padding: 17px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(26,46,28,.3);
  letter-spacing: .2px;
}
.place-order-btn:hover {
  background: var(--lime-dark);
  box-shadow: 0 6px 24px rgba(26,46,28,.35);
  transform: translateY(-1px);
}
.place-order-btn:active { transform: translateY(0); }
.place-order-btn:disabled {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Order success payment badge */
.success-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.success-payment-badge.pending {
  background: #fff8e1;
  color: #92400e;
}

.payment-note {
  background: var(--lime-pale);
  border: 1px solid var(--lime-mid);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--lime-dark);
  font-weight: 600;
  margin-top: 16px;
}

.checkout-summary-col {
  position: sticky;
  top: 100px;
}
.checkout-summary {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 28px;
}
.checkout-summary h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.co-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.co-thumb {
  width: 56px; height: 56px;
  background: var(--lime-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.co-name { font-weight: 700; font-size: .9rem; }
.co-conc { font-size: .78rem; color: var(--gray-400); }
.co-qty { font-size: .78rem; color: var(--gray-600); margin-top: 2px; }
.co-price { margin-left: auto; font-weight: 700; font-size: .9rem; }

/* ─── ORDER SUCCESS ─── */
.success-page {
  max-width: 640px;
  margin: 100px auto;
  padding: 0 40px 100px;
  text-align: center;
}
.success-icon {
  width: 80px; height: 80px;
  background: var(--lime-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
}
.success-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.success-page p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.order-number-box {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px;
  font-size: .95rem;
  margin-bottom: 36px;
}
.order-number-box strong {
  display: block;
  font-size: 1.3rem;
  color: var(--lime-dark);
  margin-bottom: 6px;
}
.success-steps {
  text-align: left;
  background: var(--lime-pale);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.success-steps h3 { font-size: 1rem; margin-bottom: 14px; }
.success-steps li {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  padding-left: 4px;
}

/* ─── HOW-TO SECTION ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-tile {
  text-align: center;
}
.how-num {
  width: 56px; height: 56px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 18px;
}
.how-tile h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-tile p {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ─── DARK SECTION ─── */
.dark-section {
  background: linear-gradient(160deg, var(--forest) 0%, #0f1f11 100%);
  color: var(--white);
  padding: 100px 40px;
}
.dark-section .eyebrow { color: var(--lime); }
.dark-section .eyebrow::before { color: var(--lime); }
.dark-section .s-h2 { color: var(--white); }
.dark-section .s-sub { color: var(--gray-400); }

.std-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.std-card {
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s, transform .25s, background .25s;
  backdrop-filter: blur(4px);
}
.std-card:hover {
  border-color: rgba(111,168,50,.5);
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}
.std-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.std-card-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.std-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.std-card:hover .std-card-img {
  opacity: 1;
}
.std-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.std-card p {
  font-size: .86rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ─── BENEFIT GRID ─── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bc {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.bc:hover {
  border-color: var(--lime);
  box-shadow: 0 8px 32px rgba(140,184,25,.12);
  transform: translateY(-3px);
}
.bc-icon { font-size: 2.4rem; margin-bottom: 14px; }
.bc h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.bc p { font-size: .82rem; color: var(--gray-600); line-height: 1.6; }

/* ─── LAB SECTION ─── */
.lab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lab-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.lab-card {
  background: var(--cream-dark);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lab-card-icon { font-size: 1.6rem; }
.lab-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.lab-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.5; }

.lab-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.lab-row:first-child { border-top: 1px solid var(--gray-200); }
.lab-row-label { flex: 1; font-size: .9rem; font-weight: 600; }
.lab-row-value { font-size: .85rem; color: var(--gray-600); }
.pass-badge {
  background: var(--lime);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.review-card:hover {
  border-color: var(--lime-mid);
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.review-author { font-size: .82rem; font-weight: 700; color: var(--dark); }
.review-verified { font-size: .75rem; color: var(--lime-dark); margin-top: 2px; }

.review-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--gray-100);
  border-radius: 16px;
  padding: 36px;
}
.review-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.review-form-wrap p {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.star-select { display: flex; gap: 6px; margin-bottom: 6px; }
.star-btn {
  background: none; border: none; font-size: 1.6rem;
  cursor: pointer; color: var(--gray-200); transition: color .15s;
}
.star-btn.active, .star-btn:hover { color: #f59e0b; }

/* ─── LIFESTYLE SECTIE ─── */
.lifestyle-section {
  padding: 100px 40px;
  background: var(--cream);
}
.lifestyle-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lifestyle-img-col {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}
.lifestyle-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.lifestyle-img-col:hover .lifestyle-img {
  transform: scale(1.03);
}
.lifestyle-text-col h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  margin: 12px 0 20px;
  line-height: 1.15;
}
.lifestyle-text-col p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 24px;
}
.lifestyle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lifestyle-list li {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
}
@media (max-width: 768px) {
  .lifestyle-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lifestyle-img { height: 280px; }
  .lifestyle-section { padding: 60px 20px; }
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: linear-gradient(135deg, var(--forest) 0%, #2d5a27 100%);
  padding: 80px 40px;
  text-align: center;
}
.newsletter-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-section p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .95rem;
}
.newsletter-form button {
  padding: 16px 24px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--charcoal); }

/* ─── FOOTER ─── */
footer {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding: 72px 40px 40px;
}
.fgrid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 36px;
}
.f-logo img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.f-tagline {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.f-desc {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 260px;
  margin-bottom: 24px;
}
.f-socials {
  display: flex;
  gap: 10px;
}
.f-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.f-social-link:hover { background: var(--lime); color: var(--white); }

.f-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul a {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.f-col ul a:hover { color: var(--lime); }

.f-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 9999;
  opacity: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease;
  white-space: nowrap;
  pointer-events: none;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { border-left: 4px solid var(--lime); }
.toast.error   { border-left: 4px solid var(--red); }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 48px 40px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ─── ALERT BOXES ─── */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .9rem;
  margin-bottom: 20px;
}
.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* ─── RELATED PRODUCTS ─── */
.related-section {
  padding: 80px 40px;
  background: var(--gray-100);
}
.related-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.related-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 320px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .std-grid { grid-template-columns: repeat(2, 1fr); }
  .lab-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .product-page { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .cart-page { grid-template-columns: 1fr; }
  .checkout-page { grid-template-columns: 1fr; }
  .checkout-summary-col { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 60px 20px 40px; }
  .section { padding: 60px 20px; }
  .dark-section { padding: 60px 20px; }
  .newsletter-section { padding: 60px 20px; }
  footer { padding: 48px 20px 32px; }
  .fgrid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip { padding: 20px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .std-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .product-page { padding: 40px 20px 60px; }
  .product-trust-row { grid-template-columns: repeat(3, 1fr); }
  .cart-page { padding: 40px 20px 60px; }
  .checkout-page { padding: 40px 20px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border-radius: 10px; }
  .newsletter-form input { border-radius: 10px 10px 0 0; }
  .newsletter-form button { border-radius: 0 0 10px 10px; }
  .success-page { padding: 0 20px 60px; margin-top: 60px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .product-trust-row { grid-template-columns: 1fr 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) { display: none; }
}

/* ─── BLOG HERO ─── */
.blog-hero {
  background: linear-gradient(160deg, var(--cream) 0%, #edf4d8 100%);
  padding: 80px 40px 72px;
  text-align: center;
}
.blog-hero-inner { max-width: 700px; margin: 0 auto; }
.blog-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 12px 0 18px;
}
.blog-hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

/* Featured first card spans 2 cols */
.blog-card--featured {
  grid-column: span 2;
}
.blog-card--featured .blog-card-img-wrap {
  height: 320px;
}
.blog-card--featured .blog-card-title {
  font-size: 1.7rem;
}
.blog-card--featured .blog-card-excerpt {
  font-size: .95rem;
  -webkit-line-clamp: 4;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(26,46,28,.12);
  transform: translateY(-4px);
}
.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img-wrap {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(160deg, #f5f2e8 0%, #edf4d8 100%);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--lime-dark);
  background: var(--lime-pale);
  padding: 3px 10px;
  border-radius: 100px;
}
.blog-read {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 500;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--dark);
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--lime-dark); }
.blog-card-excerpt {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-link {
  font-size: .84rem;
  font-weight: 700;
  color: var(--lime-dark);
  letter-spacing: .2px;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-link:hover { color: var(--forest); gap: 8px; }
.blog-read-link span { transition: transform .2s; }
.blog-read-link:hover span { transform: translateX(3px); }

/* ─── BLOG CTA STRIP ─── */
.blog-cta-strip {
  background: linear-gradient(135deg, var(--forest) 0%, #2d5a27 100%);
  padding: 80px 40px;
}

/* ─── ARTICLE PAGE ─── */
.artikel-header {
  background: linear-gradient(160deg, var(--cream) 0%, #edf4d8 100%);
  padding: 60px 40px;
  text-align: center;
}
.artikel-header-inner { max-width: 720px; margin: 0 auto; }
.artikel-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  color: var(--dark);
}
.artikel-excerpt {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.artikel-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  top: -1px;
}
.artikel-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 56px rgba(0,0,0,.14);
}
.artikel-body {
  max-width: 720px;
  margin: 60px auto 80px;
  padding: 0 40px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
}
.artikel-body h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin: 44px 0 16px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.artikel-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
}
.artikel-body p { margin-bottom: 18px; }
.artikel-body ul,
.artikel-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.artikel-body li { margin-bottom: 8px; }
.artikel-body strong { color: var(--dark); font-weight: 700; }
.artikel-body em { color: var(--dark); font-style: italic; }
/* Bronnen blok in artikelen */
.artikel-body .bronnen {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.artikel-body .bronnen strong {
  display: block;
  margin-bottom: 8px;
  font-size: .88rem;
  color: var(--dark);
}
.artikel-body .bronnen ul {
  margin: 0;
  padding-left: 20px;
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.artikel-body .bronnen li { margin-bottom: 4px; }
.artikel-body .bronnen em { font-style: italic; }

.artikel-body blockquote {
  border-left: 3px solid var(--lime);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--lime-pale);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--gray-600);
}
.artikel-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: .9rem;
}
.artikel-body table th {
  background: var(--cream-dark);
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 2px solid var(--gray-200);
}
.artikel-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-200);
}

/* ─── ARTIKEL HERO BANNER ─── */
.artikel-hero-banner {
  position: relative;
  padding: 64px 40px 56px;
  overflow: hidden;
}
.artikel-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.artikel-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.artikel-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.artikel-breadcrumb a:hover { color: rgba(255,255,255,.9); }
.artikel-breadcrumb span { color: rgba(255,255,255,.35); }
.artikel-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.artikel-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.artikel-hero-excerpt {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 24px;
}
.artikel-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.artikel-hero-dot { opacity: .4; }
.artikel-hero-icon {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  opacity: .08;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
@media (max-width: 700px) {
  .artikel-hero-banner { padding: 48px 20px 40px; }
  .artikel-hero-icon { display: none; }
  .artikel-hero-h1 { font-size: 1.6rem; }
}

/* ─── ARTIKEL FAQ SECTIE ─── */
.artikel-faq {
  background: var(--gray-100);
  padding: 80px 40px;
}
.artikel-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.artikel-faq-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 40px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  line-height: 1.4;
  transition: background .15s;
}
.faq-q:hover { background: var(--gray-100); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--lime);
  transition: transform .2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a.open { max-height: 600px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: .93rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}
@media (max-width: 600px) {
  .artikel-faq { padding: 60px 20px; }
  .faq-q { padding: 16px 18px; font-size: .88rem; }
  .faq-a p { padding: 0 18px 16px; }
}

/* ─── HOMEPAGE BLOG PREVIEW ─── */
.blog-preview-section {
  padding: 100px 40px;
  background: var(--cream-dark);
}
.blog-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-preview-header .s-h2 { margin-bottom: 0; }

/* ─── RESPONSIVE BLOG ─── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .blog-grid,
  .blog-grid--compact { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }
  .blog-card--featured .blog-card-img-wrap { height: 220px; }
  .blog-hero { padding: 60px 20px; }
  .artikel-header { padding: 40px 20px; }
  .artikel-img-wrap { padding: 0 20px; }
  .artikel-img { height: 240px; }
  .artikel-body { padding: 0 20px; margin: 40px auto 60px; }
  .blog-preview-section { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS — PHASE 2
   ═══════════════════════════════════════════════════ */

/* old hero overrides removed — styles now in main hero block */

/* ─── Trust strip — clean SVG icons ─── */
.ts-icon {
  font-size: 0; /* suppress any emoji fallback */
}
.ts-icon svg {
  width: 24px;
  height: 24px;
  color: var(--lime-dark);
  display: block;
}

/* ─── How-to — editorial timeline ─── */
.how-grid {
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-200) 12%, var(--gray-200) 88%, transparent);
  z-index: 0;
  pointer-events: none;
}
.how-tile {
  position: relative;
  z-index: 1;
}
.how-num {
  background: var(--cream-dark);
  border: 2px solid var(--forest);
  color: var(--forest);
  box-shadow: 0 0 0 8px var(--cream-dark);
}
@media (max-width: 768px) {
  .how-grid::before { display: none; }
  .how-num { box-shadow: none; }
}

/* ─── Dark section — inline SVG icons ─── */
.std-card-img-wrap svg {
  width: 100%;
  height: 100%;
  opacity: .85;
  transition: opacity .25s;
}
.std-card:hover .std-card-img-wrap svg {
  opacity: 1;
}

/* ─── Lab section — inline SVG icons ─── */
.lab-card-icon {
  flex-shrink: 0;
  line-height: 0;
  margin-top: 2px;
}
.lab-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--lime-dark);
  display: block;
}

/* ─── Lifestyle list — refined checkmarks ─── */
.lifestyle-list {
  gap: 14px;
}
.lifestyle-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: .92rem;
}
.lifestyle-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--lime-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23527d25' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ─── Blog preview section — responsive grid ─── */
.blog-preview-section .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .blog-preview-section .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-preview-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Checkout: Stripe pay info block ─── */
.stripe-pay-info {
  background: #f8fbf4;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stripe-pay-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.stripe-pay-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ─── KORTING POPUP ─────────────────────────────────────────── */

/* Side tab */
.dp-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  background: #2d6a4f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
  border-radius: 0 0 8px 8px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.25);
  z-index: 9998;
  white-space: nowrap;
  transition: background .2s, padding .2s;
}
.dp-tab:hover { background: #1b4332; padding: 12px 20px; }

/* Full-screen overlay */
.dp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.dp-overlay--visible {
  display: flex;
  animation: dpFadeIn .25s ease;
}
@keyframes dpFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal box */
.dp-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 48px 44px 40px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  animation: dpSlideUp .3s cubic-bezier(.34,1.3,.64,1);
  text-align: center;
}
@keyframes dpSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Close button */
.dp-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f2f2f2;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: .95rem;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.dp-close:hover { background: #e0e0e0; color: #111; }

/* Big headline */
.dp-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 6px;
}
.dp-pct {
  font-size: 5rem;
  font-weight: 900;
  color: #1b2e1b;
  letter-spacing: -.02em;
}
.dp-off {
  font-size: 2rem;
  font-weight: 900;
  color: #1b2e1b;
  letter-spacing: .08em;
}

.dp-sub {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #2d6a4f;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.dp-desc {
  font-size: .9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Form */
#dp-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#dp-form input {
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: .95rem;
  outline: none;
  text-align: left;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
#dp-form input:focus { border-color: #2d6a4f; }

.dp-err {
  font-size: .82rem;
  color: #c0392b;
  margin: -4px 0 0;
}

.dp-btn {
  background: #2d6a4f;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  transition: background .2s, transform .1s;
}
.dp-btn:hover { background: #1b4332; }
.dp-btn:active { transform: scale(.98); }

.dp-small {
  font-size: .75rem;
  color: #bbb;
  margin: 14px 0 0;
}

/* Success state */
#dp-success {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dp-success-icon { font-size: 3rem; }
.dp-success-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1b2e1b;
  margin: 0;
}
.dp-success-sub {
  font-size: .9rem;
  color: #666;
  margin: 0;
}
.dp-code {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: #2d6a4f;
  background: #f0faf4;
  border: 2.5px dashed #2d6a4f;
  border-radius: 10px;
  padding: 16px 28px;
  cursor: pointer;
  user-select: all;
  transition: background .15s;
  width: 100%;
  box-sizing: border-box;
}
.dp-code:hover { background: #e0f5ea; }
.dp-success-hint {
  font-size: .8rem;
  color: #999;
  margin: 0;
}

@media (max-width: 520px) {
  .dp-modal  { padding: 40px 24px 32px; }
  .dp-pct    { font-size: 4rem; }
  .dp-off    { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════════════════ */

:root {
  --adm-bg:        #0f1117;
  --adm-surface:   #16181f;
  --adm-border:    rgba(255,255,255,.07);
  --adm-text:      #e8eaf0;
  --adm-muted:     rgba(232,234,240,.45);
  --adm-green:     #4ade80;
  --adm-green-dim: rgba(74,222,128,.12);
  --adm-red:       #f87171;
  --adm-red-dim:   rgba(248,113,113,.12);
  --adm-amber:     #fbbf24;
  --adm-amber-dim: rgba(251,191,36,.12);
  --adm-blue:      #60a5fa;
  --adm-blue-dim:  rgba(96,165,250,.12);
  --adm-accent:    #4ade80;
  --adm-radius:    12px;
}

.admin-body {
  background: var(--adm-bg);
  color: var(--adm-text);
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
}

/* ─── TOP NAV ─── */
.admin-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,23,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--adm-border);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 0;
  justify-content: space-between;
}

.admin-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--adm-muted);
  letter-spacing: .04em;
}

.admin-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--adm-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
  letter-spacing: .01em;
}
.admin-nav-links a:hover {
  background: rgba(255,255,255,.06);
  color: var(--adm-text);
}
.admin-nav-links a.active {
  background: var(--adm-green-dim);
  color: var(--adm-green);
  font-weight: 600;
}

/* ─── CONTENT WRAPPER ─── */
.admin-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.admin-header {
  margin-bottom: 32px;
}
.admin-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--adm-text);
  letter-spacing: -.01em;
}
.admin-header p {
  color: var(--adm-muted);
  font-size: .9rem;
  margin-top: 4px;
}

/* ─── STAT CARDS ─── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  padding: 24px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.stat-card:hover { border-color: rgba(255,255,255,.14); }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,.4), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.stat-card:hover::before { opacity: 1; }

.stat-card .val {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--adm-text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .val.lime { color: var(--adm-green); }
.stat-card .lbl {
  font-size: .75rem;
  font-weight: 600;
  color: var(--adm-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── TABLE ─── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  overflow: hidden;
}
.admin-table thead tr {
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--adm-border);
}
.admin-table th {
  padding: 13px 18px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  color: var(--adm-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 18px;
  color: var(--adm-text);
  border-bottom: 1px solid var(--adm-border);
  vertical-align: middle;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr {
  transition: background .12s;
}
.admin-table tbody tr:hover {
  background: rgba(255,255,255,.025);
}

/* ─── STATUS PILLS ─── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-pending   { background: var(--adm-amber-dim); color: var(--adm-amber); }
.status-paid      { background: var(--adm-blue-dim);  color: var(--adm-blue);  }
.status-shipped   { background: var(--adm-green-dim); color: var(--adm-green); }
.status-cancelled { background: var(--adm-red-dim);   color: var(--adm-red);   }

/* ─── FORM CONTROLS IN TABLE ─── */
.admin-table select {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--adm-border);
  border-radius: 7px;
  color: var(--adm-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  transition: border-color .15s;
  appearance: auto;
}
.admin-table select:focus { border-color: var(--adm-accent); }

.admin-table input[type="number"] {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--adm-border);
  border-radius: 7px;
  color: var(--adm-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  padding: 6px 10px;
  outline: none;
  transition: border-color .15s;
  -moz-appearance: textfield;
}
.admin-table input[type="number"]::-webkit-inner-spin-button { opacity: .4; }
.admin-table input[type="number"]:focus { border-color: var(--adm-accent); }

.admin-table button[type="submit"] {
  background: var(--adm-green-dim);
  color: var(--adm-green);
  border: 1px solid rgba(74,222,128,.2);
  padding: 6px 14px;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .04em;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.admin-table button[type="submit"]:hover {
  background: rgba(74,222,128,.2);
  border-color: rgba(74,222,128,.35);
}

/* ─── ALERT BOXES (admin) ─── */
.admin-body .alert-success {
  background: var(--adm-green-dim);
  color: var(--adm-green);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 9px;
  padding: 13px 18px;
  font-size: .875rem;
  font-weight: 500;
}

/* ─── ADMIN LOGIN PAGE ─── */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adm-bg);
  padding: 24px;
}
.admin-login-box {
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  border-radius: 20px;
  padding: 48px 44px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.admin-login-box img { margin-bottom: 32px; }
.admin-login-box h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--adm-text);
  margin-bottom: 6px;
}
.admin-login-box p {
  font-size: .875rem;
  color: var(--adm-muted);
  margin-bottom: 32px;
}
.admin-login-box label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--adm-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}
.admin-login-box input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--adm-border);
  border-radius: 9px;
  color: var(--adm-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  padding: 12px 14px;
  outline: none;
  margin-bottom: 16px;
  box-sizing: border-box;
  transition: border-color .15s;
}
.admin-login-box input:focus { border-color: var(--adm-accent); }
.admin-login-box button {
  width: 100%;
  background: var(--adm-green);
  color: #0f1117;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .03em;
  margin-top: 4px;
  transition: opacity .15s;
}
.admin-login-box button:hover { opacity: .88; }
.admin-login-box .login-error {
  background: var(--adm-red-dim);
  color: var(--adm-red);
  border: 1px solid rgba(248,113,113,.2);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .82rem;
  margin-bottom: 20px;
}

/* ─── ADMIN TABLE SCROLL WRAPPER ─── */
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
}
.admin-table-wrap .admin-table {
  border: none;
  border-radius: 0;
  min-width: 700px;
}

/* ─── HAMBURGER BUTTON ─── */
.admin-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.admin-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--adm-text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile drawer nav */
.admin-mobile-nav {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  background: rgba(15,17,23,.97);
  z-index: 99;
  flex-direction: column;
  padding: 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--adm-border);
}
.admin-mobile-nav.open { display: flex; }
.admin-mobile-nav a {
  display: block;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--adm-text);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s;
}
.admin-mobile-nav a:hover,
.admin-mobile-nav a.active {
  background: var(--adm-green-dim);
  color: var(--adm-green);
  border-color: rgba(74,222,128,.15);
}

@media (max-width: 768px) {
  .admin-nav { padding: 0 16px; height: 56px; }
  .admin-nav-links { display: none; }
  .admin-hamburger { display: flex; }
  .admin-content { padding: 20px 14px 60px; }
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 18px 14px; }
  .stat-card .val { font-size: 1.5rem; }
  .stat-card .lbl { font-size: .68rem; }
  .admin-header h1 { font-size: 1.3rem; }
  .admin-login-box { padding: 36px 24px; }

  /* Order update form stacks nicely on mobile */
  .order-update-form { min-width: 0 !important; }
  .order-update-form > div { flex-wrap: wrap; }
}
@media (max-width: 400px) {
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card .val { font-size: 1.3rem; }
}
