/* ==============================
   CSS CUSTOM PROPERTIES
============================== */
:root {
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --warm:       #f5f3ef;
  --dark:       #0d0d0b;
  --dark-2:     #1a1a18;
  --gray:       #6b6b67;
  --muted:      #a8a8a4;
  --border:     rgba(0,0,0,0.08);
  --border-md:  rgba(0,0,0,0.13);
  --honey:      #c4903a;
  --honey-dk:   #a07828;
  --honey-lt:   #fef9f0;
  --forest:     #1a3028;
  --forest-2:   #0d2018;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, -apple-system, sans-serif;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
  --r-pill: 999px;
  --ease:  0.3s ease;
  --max:   1200px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==============================
   SCROLL REVEAL
============================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal="fade"] { transform: translateY(0) scale(0.97); }
[data-reveal].in-view { opacity: 1; transform: translateY(0) scale(1); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ==============================
   SECTION WRAPPER
============================== */
.section-wrap { max-width: var(--max); margin: 0 auto; }

/* ==============================
   SHARED TYPOGRAPHY
============================== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: var(--sans);
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.view-all-link {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  transition: color var(--ease);
}
.view-all-link:hover { color: var(--dark); }

.underline-link {
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  border-bottom: 1px solid rgba(26,48,40,0.4);
  padding-bottom: 2px;
  display: inline-block;
  transition: opacity var(--ease);
}
.underline-link:hover { opacity: 0.65; }

/* ==============================
   SHARED BUTTONS
============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  transition: background var(--ease), transform var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--forest-2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark);
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border-md);
  transition: background var(--ease);
  cursor: pointer;
}
.btn-ghost:hover { background: var(--warm); }

.btn-block { width: 100%; padding: 18px; font-size: 16px; border-radius: var(--r-lg); }

/* B2B inverse buttons */
.btn-inv-p {
  display: inline-flex; align-items: center;
  background: #f7f1e7; color: var(--forest);
  padding: 15px 24px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; font-family: var(--sans);
  transition: background var(--ease);
}
.btn-inv-p:hover { background: #fff; }

.btn-inv-g {
  display: inline-flex; align-items: center;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 15px 24px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; font-family: var(--sans);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--ease);
}
.btn-inv-g:hover { background: rgba(255,255,255,0.08); }

/* ==============================
   ANNOUNCEMENT BAR
============================== */
.ann-bar {
  width: 100%;
  background: var(--forest);
  color: rgba(255,255,255,0.82);
  font-size: 11.5px;
  letter-spacing: 0.4px;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.ann-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: annScroll 22s linear infinite;
  will-change: transform;
}
.ann-sep { color: rgba(255,255,255,0.35); font-size: 8px; }
@keyframes annScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================
   FLOATING HEADER
============================== */
.site-header {
  position: sticky;
  top: 12px;
  width: 100%;
  padding: 0 16px;
  z-index: 9999;
  transition: top 0.35s ease;
}
.site-header.hidden { top: -100px; }

.header-shell {
  height: 64px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(14,38,26,0.25);
}

.header-brand { flex: 1; text-align: center; }
.brand-name {
  font-size: 14px; letter-spacing: 3px; color: var(--forest);
  font-weight: 500; font-family: var(--serif); margin-bottom: 2px;
}
.brand-tagline { font-size: 8px; letter-spacing: 3px; color: var(--muted); display: block; }

.header-actions { display: flex; align-items: center; gap: 6px; }

.hdr-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  position: relative;
  transition: background var(--ease);
}
.hdr-btn:hover { background: var(--forest); color: white; }
.hdr-btn:hover svg { stroke: white; }

.cart-dot {
  position: absolute; top: -3px; right: -2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--forest); color: white;
  font-size: 9px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}

.hlines { display: flex; flex-direction: column; gap: 5px; }
.hlines span {
  width: 18px; height: 1.5px;
  background: var(--dark); border-radius: var(--r-pill);
  transition: transform var(--ease); display: block;
}
.menu-hdr-btn.active .hlines span:first-child { transform: rotate(45deg) translateY(4.5px); }
.menu-hdr-btn.active .hlines span:last-child  { transform: rotate(-45deg) translateY(-4.5px); }

/* ==============================
   MENU OVERLAY
============================== */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: 0.35s ease;
  z-index: 9998;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* ==============================
   RITUAL DRAWER
============================== */
/* ==============================
   MOBILE FULLSCREEN DRAWER
============================== */

@media (max-width: 768px) {

  .ritual-drawer {

    position: fixed;

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    min-height: 100dvh;
    background: var(--white);
    padding: 16px 22px 
    calc(140px + env(safe-area-inset-bottom));
    border-radius: 0;
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateY(105%);
    transition: transform 0.45s cubic-bezier(0.32,0.72,0,1);
    will-change: transform;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;

  }

}

.ritual-drawer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 100dvh;
  background: var(--white);
  padding: 16px 22px 40px;
  border-radius: 32px 32px 0 0;
  z-index: 99999;
  overflow-y: auto;
  transform: translateY(105%);
  transition: transform 0.45s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 -8px 60px rgba(0,0,0,0.12);
}
.ritual-drawer.active { transform: translateY(0); }

.drawer-grip {
  width: 80px; height: 4px;
  border-radius: var(--r-pill); background: rgba(0,0,0,0.1);
  margin: 0 auto 24px;
  position: relative;
}

.drawer-head {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center; 
  margin-bottom: 55px;
  text-align: center;
}

.drawer-eyebrow { 
  font-size: 10px; 
  letter-spacing: 4px; 
  color: var(--muted); 
  margin-bottom: 8px; 
}
.drawer-title {
  font-family: var(--serif); 
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.92; 
  color: var(--forest); 
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.drawer-close {
  width: 50px; 
  height: 50px; 
  border-radius: 50%;
  background: var(--warm); 
  display: flex;
  align-items: center; 
  justify-content: center;
  color: var(--dark); 
  flex-shrink: 0;
  transition: background var(--ease);
  position: absolute;
  top:0;
  right:0;
}
.drawer-close:hover { background: rgba(0,0,0,0.07); }

.drawer-orbs {
  display: flex; justify-content: space-between;
  gap: 8px; margin-bottom: 28px;
}
.orb { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.orb-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--warm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; transition: var(--ease);
}
.orb-active .orb-ring {
  background: var(--honey-lt);
  border-color: rgba(196,144,58,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196,144,58,0.14);
}
.orb span { font-size: 13px; color: var(--dark-2); }

.drawer-nav { 
  display: flex; 
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom, 120px);
  flex: 1;
}
.d-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--dark);
  transition: opacity var(--ease);
}
.d-link:hover { opacity: 0.7; }
.d-link-l { display: flex; align-items: flex-start; gap: 14px; }
.d-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--warm); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.d-link-name { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.d-link-sub  { font-size: 12px; color: var(--gray); }
.d-arrow     { font-size: 18px; color: var(--muted); }

.drawer-foot-card {
  display: flex; 
  align-items: center; 
  gap: 14px;
  margin-top: 26px;
  margin-bottom: 120px; 
  background: var(--warm);
  border-radius: var(--r-md); 
  padding: 18px 20px;
  flex-shrink: 0;
}

.dfc-icon  { font-size: 22px; }
.dfc-title { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.dfc-sub   { font-size: 12px; color: var(--gray); }

/* ==============================
   HERO
============================== */
.hero {
  background: var(--white);
  display: flex; align-items: center;
  padding: 60px 20px 48px;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 32px;
}
@media (min-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-inner { flex-direction: row; align-items: center; gap: 64px; }
  .hero-left  { flex: 1; }
  .hero-right { flex: 1; display: flex; justify-content: center; }
}

.hero-origin {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; color: var(--gray);
  text-transform: uppercase; margin-bottom: 24px;
}
.origin-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--honey); display: inline-block; flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 11vw, 100px);
  line-height: 0.9;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-h1 em { font-style: italic; color: var(--honey); }

.hero-p {
  font-size: 17px; line-height: 1.8; color: var(--gray);
  margin-bottom: 36px; max-width: 460px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  font-size: 12px; color: var(--gray);
  background: var(--warm); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--r-pill);
}

/* HERO VISUAL */
.hero-visual {
  position: relative; width: 320px; height: 380px;
}
.honey-sphere {
  width: 260px; height: 300px;
  border-radius: 50% 50% 42% 42%;
  background: radial-gradient(ellipse at 35% 28%, #f7e070, #d49838, #9a6018);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: sphereFloat 7s ease-in-out infinite;
  box-shadow: 0 32px 80px rgba(196,144,58,0.28), 0 0 0 1px rgba(196,144,58,0.1);
}
.sphere-glow {
  width: 220px; height: 120px;
  background: radial-gradient(ellipse, rgba(196,144,58,0.22), transparent 70%);
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  filter: blur(24px);
  animation: sphereFloat 7s ease-in-out infinite;
}
@keyframes sphereFloat {
  0%,100% { transform: translate(-50%,-50%); }
  50%      { transform: translate(-50%, calc(-50% - 14px)); }
}
.sphere-label {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px; letter-spacing: 4px;
  color: rgba(255,255,255,0.8); white-space: nowrap;
  font-weight: 500;
}
.float-card {
  position: absolute; bottom: 16px; right: -16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  min-width: 188px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.fc-name   { font-size: 10px; font-weight: 600; letter-spacing: 1px; color: var(--dark); margin-bottom: 2px; text-transform: uppercase; }
.fc-detail { font-size: 13px; color: var(--gray); }
.decor-ring {
  position: absolute; top: -24px; right: -24px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(196,144,58,0.18);
}

/* ==============================
   MARQUEE
============================== */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--off-white); overflow: hidden; padding: 16px 0;
}
.marquee-reel {
  display: flex; width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-reel:hover { animation-play-state: paused; }
.marquee-row {
  display: flex; align-items: center; gap: 26px;
  padding-right: 26px; white-space: nowrap;
}
.marquee-row span { font-size: 12.5px; letter-spacing: 1.5px; color: var(--gray); text-transform: uppercase; }
.m-sep { color: var(--honey) !important; font-size: 9px !important; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================
   BRAND MISSION (The Act style)
============================== */
.mission {
  padding: 80px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-inner {
  display: flex; flex-direction: column; gap: 28px;
}
@media (min-width: 768px) {
  .mission-inner { flex-direction: row; gap: 80px; align-items: flex-start; }
  .mission-col-label { flex-shrink: 0; padding-top: 4px; }
  .mission-col-content { flex: 1; }
}
.mission-statement {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.55; color: var(--dark);
  font-weight: 400; margin-bottom: 24px;
}

/* ==============================
   HONEY COLLECTION
============================== */
/* Horizontal padding removed — carousel handles its own alignment */
.collection { padding: 80px 0 48px; background: var(--white); }

.collection-hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 20px;
}
.cat-label { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; margin-bottom: 8px; }

/* CATEGORY FILTER TABS */
.cat-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 0 20px;
}
.cf-tab {
  padding: 9px 20px;
  border: 1px solid var(--border-md);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  color: var(--gray); background: transparent;
  cursor: pointer; font-family: var(--sans);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.cf-tab:hover { border-color: var(--forest); color: var(--forest); }
.cf-tab.cf-active {
  background: var(--forest); color: white;
  border-color: var(--forest);
}

/* ── PRODUCT CAROUSEL ──────────────────────────────────────────
   Horizontal scroll track — drag or swipe to move.
   Full-bleed (outside section-wrap) so cards peek at the edge.
   Left padding calculated to align first card with page content.
─────────────────────────────────────────────────────────────── */
.product-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Symmetric padding so first card centers in the viewport */
  padding-top: 8px;
  padding-bottom: 28px;
  padding-left: 10vw;
  padding-right: 10vw;
  cursor: grab;
}
.product-grid::-webkit-scrollbar { display: none; }
.product-grid.dragging { cursor: grabbing; scroll-snap-type: none; }

/* ── PRODUCT CARD — Carousel card, 3 visible + 4th peeking on desktop ─── */
.p-card {
  flex: 0 0 80vw;
  scroll-snap-align: center;
  background: var(--off-white);
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative; /* anchors the badge overlay */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 768px) {
  /* 460px wide, centered-snap — premium spotlight feel on desktop */
  .p-card { flex: 0 0 460px; }
  .product-grid {
    padding-left: max(48px, calc((100vw - 460px) / 2));
    padding-right: max(48px, calc((100vw - 460px) / 2));
  }
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.06);
}

/* Badge + arrow as header row above image (not overlaid) */
.p-card-top {
  position: static;
  padding: 14px 16px 10px;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
}
.p-cat {
  font-size: 10px;
  color: var(--forest);
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: var(--sans);
}
.p-arrow {
  pointer-events: all;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(26,48,40,0.08);
  font-size: 11px; color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease);
}
.p-arrow:hover { background: rgba(26,48,40,0.16); transform: scale(1.08); }

/* Image — inset with own border-radius, portrait aspect ratio */
.p-img-wrap { padding: 15px; }
.p-img {
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 6; /* to control card height */
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Carousel progress bar ─────────────────────────────────────
   Thin line below the carousel — filled segment shows how far
   the user has scrolled. Updated by JS on scroll + filter change.
─────────────────────────────────────────────────────────────── */
.carousel-progress-wrap { padding: 20px 20px 0; }
.carousel-progress {
  height: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.carousel-fill {
  height: 100%;
  width: 25%; /* JS will override this */
  background: var(--forest);
  border-radius: 2px;
  transition: width 0.12s ease;
}
/* Honey variant colour fields */
.p-forest    { background: radial-gradient(ellipse at 38% 28%, #e8c050, #a06020, #5c3410); }
.p-wildflower{ background: radial-gradient(ellipse at 38% 28%, #f8e882, #d4a840, #8b6518); }
.p-acacia    { background: radial-gradient(ellipse at 38% 28%, #fef3c0, #f5d870, #c4903a); }
.p-multiflora{ background: radial-gradient(ellipse at 38% 28%, #f0c038, #c4883a, #7a4e18); }

.p-info { padding: 12px 16px 20px; }
.p-name { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.p-sub  { font-size: 12px; color: var(--muted); margin-bottom: 8px; }

/* Trust rating row */
.p-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.p-stars  { color: var(--honey); font-size: 11px; letter-spacing: 1px; }
.p-rcount { font-size: 11px; color: var(--muted); font-family: var(--sans); }

/* Size selector on product cards */
.p-sizes { display: flex; gap: 6px; margin-bottom: 12px; }
.p-sz {
  font-size: 11px; font-weight: 500; font-family: var(--sans);
  padding: 5px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--border-md); color: var(--gray);
  background: transparent; cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.p-sz:hover { border-color: var(--forest); color: var(--forest); }
.p-sz.p-sz-active {
  background: var(--forest); color: white; border-color: var(--forest);
}

.p-bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.p-price { font-family: var(--sans); font-size: 20px; font-weight: 700; letter-spacing: -0.3px; color: var(--dark); flex-shrink: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.p-actions { display: flex; gap: 6px; }
.p-add {
  font-size: 12px; color: var(--forest); font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(26,48,40,0.28); border-radius: var(--r-pill);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  font-family: var(--sans); white-space: nowrap;
}
.p-add:hover { background: var(--forest); color: white; border-color: var(--forest); }
.p-buy {
  font-size: 12px; color: white; font-weight: 500;
  padding: 8px 14px;
  background: var(--forest); border-radius: var(--r-pill);
  font-family: var(--sans); white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.p-buy:hover { background: var(--forest-2); transform: translateY(-1px); }

/* Product hidden/shown by filter */
.p-card.p-hidden { display: none; }

/* ==============================
   CATEGORY GRID (Stretch style)
============================== */
.cat-grid-section { padding: 80px 20px 80px; }
.cat-header { margin-bottom: 44px; }
.cat-desc {
  font-size: 15px; color: var(--gray);
  max-width: 520px; margin-top: 14px; line-height: 1.75;
}
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
  transition: transform var(--ease);
}
.cat-card:hover { transform: scale(1.01); }
.cat-card:hover .cat-overlay { opacity: 0.55; }

.cat-honey    { background: linear-gradient(160deg, #f7e070, #c49038, #8b5e1a); }
.cat-dryfruits{ background: linear-gradient(160deg, #d4b890, #8b6238, #4a3020); }
.cat-coffee   { background: linear-gradient(160deg, #c4a878, #7a5530, #3a2510); }
.cat-spices   { background: linear-gradient(160deg, #e88040, #c04020, #7a2010); }

.cat-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  transition: opacity var(--ease);
}
.cat-content {
  position: absolute; inset: 0; padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white; z-index: 1;
}
.cat-tag { font-size: 11px; letter-spacing: 0.3px; color: rgba(255,255,255,0.8); }
.cat-bottom h3 {
  font-family: var(--serif); font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400; line-height: 1.1; margin-bottom: 12px;
}
.cat-link {
  font-size: 12px; color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 7px 14px; border-radius: var(--r-pill);
  display: inline-block; transition: background var(--ease);
}
.cat-link:hover { background: rgba(255,255,255,0.18); }

/* ==============================
   BRAND STORY
============================== */
.story { padding: 80px 20px; background: var(--warm); }
.story-inner {
  display: flex; flex-direction: column; gap: 64px;
}
@media (min-width: 768px) {
  .story-inner { flex-direction: row; align-items: center; gap: 80px; }
  .story-text  { flex: 1; }
  .story-visual { flex: 1; max-width: 420px; }
}

.story-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 7.5vw, 72px);
  line-height: 0.92; color: var(--dark);
  font-weight: 400; margin-bottom: 28px;
}
.story-h2 em { font-style: italic; color: var(--honey); }
.story-p { font-size: 16px; line-height: 1.85; color: var(--gray); margin-bottom: 20px; }
.story-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.s-pill {
  font-size: 12px; color: var(--forest);
  border: 1px solid rgba(26,48,40,0.22); padding: 8px 14px;
  border-radius: var(--r-pill);
}

/* STORY VISUAL STACK */
.story-stack { position: relative; height: 460px; }
.sv-1 {
  width: 75%; height: 320px;
  background: linear-gradient(155deg, #c8b898, #8a7050);
  border-radius: var(--r-lg);
  position: absolute; top: 0; right: 0;
}
.sv-2 {
  width: 60%; height: 220px;
  background: linear-gradient(155deg, #7a9470, #3a5828);
  border-radius: var(--r-lg);
  position: absolute; bottom: 0; left: 0;
}
.sv-stat {
  position: absolute; bottom: 58px; right: -10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.sv-num   { font-family: var(--serif); font-size: 32px; color: var(--dark); font-weight: 500; margin-bottom: 4px; }
.sv-label { font-size: 12px; color: var(--gray); }

/* ==============================
   FEATURED PRODUCT
============================== */
.featured { padding: 80px 20px; background: var(--white); }
.featured-inner { display: flex; flex-direction: column; gap: 60px; }
@media (min-width: 768px) {
  .featured-inner { flex-direction: row; align-items: center; gap: 80px; }
  .feat-visual  { flex: 1; }
  .feat-content { flex: 1; }
}

.feat-img-wrap {
  position: relative; aspect-ratio: 1;
  max-width: 400px; margin: 0 auto;
}
.feat-img {
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse at 35% 28%, #f2d065, #c48030, #7a4810);
  box-shadow: 0 24px 64px rgba(196,144,58,0.2);
}
.feat-badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--forest);
}

.feat-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 64px);
  line-height: 0.93; color: var(--dark);
  font-weight: 400; margin-bottom: 16px;
}
.feat-h2 em { font-style: italic; color: var(--honey); }
.feat-sub { font-size: 16px; color: var(--gray); margin-bottom: 28px; line-height: 1.75; }

/* SIZE SELECTOR */
.size-sel {
  display: flex;
  background: var(--warm); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 4px;
  margin-bottom: 24px; max-width: 240px;
}
.sz-btn {
  flex: 1; height: 44px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500; color: var(--gray);
  background: transparent; transition: var(--ease); font-family: var(--sans);
}
.sz-active { background: var(--forest); color: white; box-shadow: 0 4px 14px rgba(26,48,40,0.2); }

.price-blk { margin-bottom: 28px; }
.feat-price {
  font-family: var(--serif); font-size: 54px; color: var(--dark);
  font-weight: 400; line-height: 1; margin-bottom: 6px;
  transition: var(--ease);
}
.price-sub { font-size: 13px; color: var(--muted); }

.feat-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.feat-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--warm); border-radius: var(--r-sm);
  padding: 12px 14px; border: 1px solid var(--border);
}
.feat-icon    { font-size: 20px; flex-shrink: 0; }
.feat-card-t  { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 1px; }
.feat-card-s  { font-size: 11px; color: var(--muted); }

.ship-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ==============================
   TESTIMONIALS
============================== */
.testimonials { padding: 80px 20px; background: var(--off-white); }

.testi-hdr { margin-bottom: 48px; }
.testi-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1; color: var(--dark); font-weight: 400;
}
.testi-h2 em { font-style: italic; color: var(--honey); }

.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 28px }
}

.t-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; height: 100%;
}
.t-stars { color: var(--honey); font-size: 26px; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote {
  font-family: var(--serif); font-size: 25px; line-height: 1.72;
  color: var(--dark-2); font-style: italic; margin-bottom: 24px;flex-grow: 1;
}

.t-card{
  min-height:400px;
}

.t-user { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 500; flex-shrink: 0;
}
.t-name { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.t-loc  { font-size: 14.5px; color: var(--muted); }

/* ==============================
   JOURNAL
============================== */
.journal { padding: 80px 20px; background: var(--white); }

.journal-hdr {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 40px;
}
.journal-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1; color: var(--dark); font-weight: 400;
}
.journal-h2 em { font-style: italic; color: var(--honey); }

.journal-grid {
  display: grid; grid-template-columns: 1fr; gap: 11px;
}
@media (min-width: 768px) {
  .journal-grid { grid-template-columns: repeat(3, 1fr); }
}

.j-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--ease), transform var(--ease);
  
}
.j-card:hover { border-color: var(--border-md); transform: translateY(-3px); }

.j-img       { height: 160px; }
.j-img-1     { background: linear-gradient(155deg, #5a8060, #1a4030); }
.j-img-2     { background: linear-gradient(155deg, #d4a050, #8a5820); }
.j-img-3     { background: linear-gradient(155deg, #7a9870, #3a5830); }

.j-body { padding: 20px; }
.j-cat  {
  font-size: 11px; color: var(--muted); letter-spacing: 0.3px;
  display: block; margin-bottom: 10px;
}
.j-body h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 28px); line-height: 1.2;
  color: var(--dark); font-weight: 400; margin-bottom: 8px;
}
.j-body p   { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.j-read {
  font-size: 13px; color: var(--forest); font-weight: 500;
  border-bottom: 1px solid rgba(26,48,40,0.28);
  padding-bottom: 1px; display: inline-block;
}


/* ==============================
   B2B
============================== */
.b2b { background: var(--forest); padding: 80px 20px; }
.b2b-inner { display: flex; flex-direction: column; gap: 56px; }
@media (min-width: 768px) {
  .b2b-inner { flex-direction: row; align-items: flex-start; gap: 80px; }
  .b2b-left  { flex: 1; max-width: 480px; }
  .b2b-right { flex: 1; display: flex; align-items: flex-start; padding-top: 8px; }
}

.b2b-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.b2b-h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1; color: #f7f1e7; font-weight: 400; margin-bottom: 16px;
}
.b2b-h2 em { font-style: italic; color: var(--honey); }
.b2b-p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.62); margin-bottom: 32px; }

.b2b-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.b-stat { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; }
.b-num  { font-family: var(--serif); font-size: 36px; color: #f7f1e7; font-weight: 400; line-height: 1; margin-bottom: 4px; }
.b-lab  { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }

.b2b-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.b2b-perks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; width: 100%;
}
.b-perk {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 16px 18px;
  font-size: 14px; color: rgba(255,255,255,0.78);
  transition: background var(--ease), border-color var(--ease);
  display: flex; align-items: flex-start; gap: 10px;
}
.b-perk:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ==============================
   NEWSLETTER
============================== */
.newsletter { padding: 100px 20px 100px; background: var(--off-white); }
.nl-inner { max-width: 840px; margin: 0 auto; text-align: center; }
.eyebrow {font-size: 13px; }
.nl-h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 70px);
  line-height: 1; color: var(--dark); font-weight: 400; margin-bottom: 16px;
}
.nl-h2 em { font-style: italic; color: var(--honey); }
.nl-p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 36px; }

.nl-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
@media (min-width: 500px) { .nl-form { flex-direction: row; } }

.nl-input {
  flex: 1; height: 70px;
  border: 1px solid var(--border-md); border-radius: var(--r-pill);
  padding: 0 24px; font-size: 16px; font-family: var(--sans);
  background: var(--white); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.nl-input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(26,48,40,0.08); }
.nl-btn { white-space: nowrap; padding: 0 28px; height: 64px; border-radius: var(--r-pill); font-size: 15px; }
/* MOBILE: Join the Circle input/button height — increase height value here to make taller */
@media (max-width: 499px) {
  .nl-input { flex: none; width: 100%; height: 76px; font-size: 16px; padding: 0 28px; } /* for mobile */
  .nl-btn { height: 76px; width: 100%; font-size: 16px; }
}
.nl-note { font-size: 16px; color: var(--muted); }

/* ==============================
   FOOTER
============================== */
/* ─────────────────────────────────────────────
   FOOTER BACKGROUND COLOUR
   Matches the B2B section (var(--forest) = #1a3028).
   To change: swap var(--forest) below for any colour
   or CSS variable — e.g. var(--forest-2) for darker.
   ───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   FOOTER BACKGROUND COLOUR
   Matches the B2B section (var(--forest) = #1a3028).
   To change: swap var(--forest) below for any colour
   or CSS variable — e.g. var(--forest-2) for darker.
   ───────────────────────────────────────────── */
.footer {
  background: var(--forest); /* ← footer background colour */
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  opacity: 0.6;
}

.footer-inner { padding: 0 20px; }

.footer-top { display: flex; flex-direction: column; gap: 56px; margin-bottom: 56px; }
@media (min-width: 768px) {
  .footer-top { flex-direction: row; gap: 80px; align-items: flex-start; }
  .footer-brand { max-width: 280px; flex-shrink: 0; }
}

.footer-origin {
  display: block;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--honey); opacity: 0.7;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.9; margin-bottom: 28px; font-weight: 300;
}

.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-socials a {
  padding: 7px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.5);
  font-size: 12px; letter-spacing: 0.5px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.footer-socials a:hover {
  background: rgba(196,144,58,0.1);
  border-color: rgba(196,144,58,0.4);
  color: var(--honey);
}

.footer-cols {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
}
@media (min-width: 768px) {
  .footer-cols { grid-template-columns: repeat(5, 1fr); gap: 0 20px; }
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 8px;
  font-family: var(--sans); font-weight: 500;
}
.footer-col a {
  font-size: 15px; color: rgba(255,255,255,0.52);
  transition: color var(--ease); font-weight: 300;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

/* ── Big brand wordmark ── */
.footer-wordmark-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 0 8px;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 196px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  line-height: 0.88;
  text-align: center;
  padding: 16px 0 0;
  white-space: nowrap;
  user-select: none;
}
/* Each letter starts hidden — JS adds .wm-in per letter as scroll progresses.
   To adjust how fast each letter animates in once triggered:
   change the duration below (e.g. 0.5s = snappier, 1.2s = slower drift) */
.wm-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),  /* ← letter animation speed */
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.wm-char.wm-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Footer bottom bar ── */
.footer-bottom-bar {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row; justify-content: space-between;
    align-items: center; text-align: left;
  }
}
/* dim for copyright only — credit overrides this below */
.footer-bottom-bar p { font-size: 12px; color: rgba(255,255,255,0.22); }

/* Arcane Labs credit — full white, higher specificity beats the rule above */
.footer-bottom-bar .footer-credit { font-size: 12px; color: #ffffff; text-align: center; }
#arcaneText {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--ease);
}
#arcaneText:hover { color: var(--honey); }
.scramble-char { color: var(--honey); opacity: 0.8; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.50);
  transition: color var(--ease);
}
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ==============================
   PRODUCT CATEGORY GRADIENTS
============================== */
/* Dry Fruits — warm tans */
.p-df-1  { background: radial-gradient(ellipse at 38% 28%, #e8d4b0, #b08858, #6a4828); }
.p-df-2  { background: radial-gradient(ellipse at 38% 28%, #d4b890, #8b6238, #4a3020); }
.p-df-3  { background: radial-gradient(ellipse at 38% 28%, #c8a070, #7a5030, #3a2010); }
/* Coffee — deep espresso */
.p-cof-1 { background: radial-gradient(ellipse at 38% 28%, #d4b888, #8a6838, #4a3018); }
.p-cof-2 { background: radial-gradient(ellipse at 38% 28%, #c4a070, #7a5530, #3a2510); }
.p-cof-3 { background: radial-gradient(ellipse at 38% 28%, #b89060, #6a4828, #2a1808); }
/* Spices — warm reds */
.p-sp-1  { background: radial-gradient(ellipse at 38% 28%, #f09858, #c04020, #7a2010); }
.p-sp-2  { background: radial-gradient(ellipse at 38% 28%, #e88040, #a83018, #6a1808); }
.p-sp-3  { background: radial-gradient(ellipse at 38% 28%, #d86030, #901808, #580808); }

/* ==============================
   SEARCH OVERLAY
============================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 99998;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 80px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,32,24,0.7);
  backdrop-filter: blur(8px);
}
.search-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 680px;
  margin: 0 20px;
  transform: translateY(-12px);
  transition: transform 0.25s ease;
}
.search-overlay.active .search-panel { transform: translateY(0); }
.search-inner {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--r-pill);
  padding: 8px 8px 8px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.search-input {
  flex: 1; height: 52px; border: none; outline: none;
  font-size: 17px; font-family: var(--sans); color: var(--dark);
  background: transparent;
}
.search-input::placeholder { color: var(--muted); }
.search-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--warm); border: none; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background var(--ease); color: var(--dark); flex-shrink: 0;
}
.search-close:hover { background: var(--border-md); }
.search-results {
  margin-top: 12px; background: var(--white);
  border-radius: var(--r-lg); overflow: hidden;
  max-height: 400px; overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.sr-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background var(--ease);
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--warm); }
.sr-thumb {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  flex-shrink: 0;
}
.sr-name { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.sr-sub  { font-size: 12px; color: var(--muted); }
.sr-price { font-family: var(--serif); font-size: 16px; color: var(--dark); margin-left: auto; flex-shrink: 0; }

/* ==============================
   CART SIDEBAR
============================== */
.cart-sidebar {
  position: fixed; inset: 0; z-index: 99997;
  display: flex; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-sidebar.active { opacity: 1; pointer-events: all; }
.cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,32,24,0.5);
  backdrop-filter: blur(4px);
}
.cart-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 400px;
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.12);
}
.cart-sidebar.active .cart-panel { transform: translateX(0); }

/* Force full-width on small phones — max-width:400px would otherwise leave
   a visible gap on devices narrower than 400px (iPhone SE, older Androids) */
@media (max-width: 480px) {
  .cart-panel { max-width: 100%; }
}
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-title {
  font-family: var(--serif); font-size: 24px;
  font-weight: 400; color: var(--dark);
}
.cart-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--warm); border: none; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.cart-close:hover { background: var(--border-md); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 200px; gap: 8px; color: var(--muted);
  font-size: 15px; text-align: center;
}
.cart-empty-icon { font-size: 40px; margin-bottom: 8px; }
.cart-line-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-line-item:last-child { border-bottom: none; }
.cli-img {
  width: 56px; height: 56px; border-radius: var(--r-sm); flex-shrink: 0;
}
.cli-name  { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.cli-price { font-family: var(--serif); font-size: 15px; color: var(--dark); }
.cli-remove {
  margin-left: auto; width: 28px; height: 28px;
  border-radius: 50%; background: var(--warm); border: none;
  cursor: pointer; font-size: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.cli-remove:hover { background: #fee2e2; color: #ef4444; }
.cart-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.cart-total {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 16px;
  font-size: 15px; color: var(--dark);
}
.cart-total span:last-child {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
}
/* Cart celebration burst */
@keyframes cartBurst {
  0%   { transform: scale(0.8); opacity: 1; }
  60%  { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.cart-burst {
  position: fixed; pointer-events: none; z-index: 99999;
  width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle, var(--honey) 0%, transparent 70%);
  animation: cartBurst 0.55s ease-out forwards;
}

/* ==============================
   SUBSCRIPTIONS
============================== */
.subscriptions { padding: 80px 20px; background: var(--warm); }
.subs-inner { max-width: var(--max); margin: 0 auto; }
.subs-hdr { margin-bottom: 48px; }
.subs-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1; color: var(--dark);
  margin-bottom: 14px;
}
.subs-h2 em { font-style: italic; color: var(--honey); }
.subs-p { font-size: 16px; color: var(--gray); line-height: 1.75; max-width: 480px; }
.subs-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .subs-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .subs-grid { grid-template-columns: repeat(3, 1fr); }
}
.sub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.sub-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.sub-card.sub-featured {
  border-color: var(--honey);
  box-shadow: 0 8px 32px rgba(196,144,58,0.14);
}
.sub-tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--warm); color: var(--gray);
  padding: 5px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.sub-tag.sub-tag-feat {
  background: var(--honey); color: white; border-color: var(--honey);
}
.sub-img {
  width: 100%; height: 180px;
}
.sub-img-1 { background: linear-gradient(155deg, #f7e070, #c49038, #8b5e1a); }
.sub-img-2 { background: linear-gradient(155deg, #e8c050, #a07030, #5a3810); }
.sub-img-3 { background: linear-gradient(155deg, #5a8060, #1a4030, #0a2018); }
.sub-body { padding: 24px; }
.sub-body h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--dark); margin-bottom: 6px;
}
.sub-body > p { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.sub-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.sub-price { font-family: var(--serif); font-size: 22px; color: var(--dark); font-weight: 500; }
.sub-save {
  font-size: 11px; font-weight: 500; color: var(--honey);
  background: var(--honey-lt); border: 1px solid rgba(196,144,58,0.2);
  padding: 3px 10px; border-radius: var(--r-pill);
}

/* ==============================
   SUBSCRIPTIONS FOOTER ROW
============================== */
.subs-footer {
  margin-top: 48px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.subs-footer-p {
  font-size: 15px; color: var(--gray); max-width: 460px; line-height: 1.7;
}
.subs-build-btn { font-size: 14px; padding: 14px 28px; }

/* ==============================
   SUBSCRIPTION MODAL
============================== */
.sub-modal {
  position: fixed; inset: 0; z-index: 99995;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.sub-modal.active { opacity: 1; pointer-events: all; }

.sub-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,32,24,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sub-modal-panel {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 28px;
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 48px 44px 44px;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.22);
}
@media (max-width: 600px) {
  .sub-modal-panel { padding: 36px 24px 32px; border-radius: 24px; }
}
.sub-modal.active .sub-modal-panel { transform: scale(1) translateY(0); }

.sub-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--warm); border: none; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background var(--ease);
  z-index: 2;
}
.sub-modal-close:hover { background: rgba(0,0,0,0.08); }

/* Step indicator */
.sub-step-indicator {
  display: flex; align-items: center; gap: 8px; margin-bottom: 36px;
}
.sub-step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-md);
  transition: background 0.3s ease, transform 0.3s ease;
}
.sub-step-dot.sub-dot-active { background: var(--forest); transform: scale(1.2); }
.sub-step-dot.sub-dot-done   { background: var(--honey); }
.sub-step-line { flex: 1; height: 1px; background: var(--border); }

/* Step content */
.sub-step { animation: subStepIn 0.35s ease both; }
.sub-step-hidden { display: none; }
@keyframes subStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sub-modal-eye {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px; display: block;
}
.sub-modal-h3 {
  font-family: var(--serif); font-size: clamp(28px, 5vw, 36px);
  font-weight: 400; line-height: 1.05; color: var(--dark); margin-bottom: 10px;
}
.sub-modal-h3 em { font-style: italic; color: var(--honey); }
.sub-modal-p {
  font-size: 14px; color: var(--gray); line-height: 1.72; margin-bottom: 28px;
}

/* Harvest chips */
.sub-harvest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.sub-harvest-chip { position: relative; cursor: pointer; }
.sub-harvest-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.sub-harvest-chip span {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--r-md);
  border: 1.5px solid var(--border-md);
  font-size: 15px; font-weight: 500; color: var(--dark);
  background: var(--warm);
  transition: border-color var(--ease), background var(--ease), color var(--ease);
  user-select: none;
}
.sub-harvest-chip input:checked + span {
  border-color: var(--forest);
  background: rgba(26,48,40,0.05);
  color: var(--forest);
}
.sub-harvest-chip span:hover { border-color: var(--forest); }

/* Rhythm options */
.sub-rhythm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.sub-rhythm-opt {
  padding: 18px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--border-md); background: var(--warm);
  cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 5px;
  transition: border-color var(--ease), background var(--ease);
}
.sub-rhythm-opt:hover { border-color: var(--forest); }
.sub-rhythm-opt.sub-rhythm-active {
  border-color: var(--forest);
  background: rgba(26,48,40,0.05);
}
.sub-rhythm-label { font-size: 15px; font-weight: 500; color: var(--dark); font-family: var(--sans); }
.sub-rhythm-desc  { font-size: 12px; color: var(--muted); }
.sub-rhythm-opt.sub-rhythm-active .sub-rhythm-label { color: var(--forest); }

/* Form */
.sub-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.sub-input {
  height: 52px; border: 1px solid var(--border-md); border-radius: var(--r-pill);
  padding: 0 20px; font-size: 15px; font-family: var(--sans);
  outline: none; background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.sub-input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,48,40,0.07);
}
.sub-input.input-error { border-color: #ef4444; }

.sub-note {
  font-size: 12px; color: var(--muted); text-align: center;
  line-height: 1.6; margin-bottom: 16px;
}
.sub-modal-back {
  display: block; margin: 10px auto 0;
  font-size: 13px; color: var(--muted);
  background: none; border: none; cursor: pointer;
  transition: color var(--ease);
}
.sub-modal-back:hover { color: var(--dark); }

/* Quick path */
.sub-quick {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.sub-quick-btn {
  font-size: 13px; font-weight: 500; color: var(--forest);
  text-decoration: underline; text-underline-offset: 2px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
  transition: opacity var(--ease);
}
.sub-quick-btn:hover { opacity: 0.7; }

/* Success state */
.sub-success { text-align: center; padding: 16px 0; }
.sub-success-icon {
  font-size: 56px; margin-bottom: 24px;
  animation: subSuccessBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes subSuccessBounce {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

/* ==============================
   MOBILE - REMOVE CLOSE BUTTON
============================== */
@media (max-width: 768px) {

  .drawer-close {
    display: none !important;
  }

}

/* ==============================
   DRAG FEEL
============================== */

.ritual-drawer {

  /* pan-y: allows native vertical scroll inside the drawer on iOS/Android
     while still firing touch events to JS for the drag-to-dismiss gesture.
     'none' was blocking all scroll — this fixes drawer content not scrolling on mobile. */
  touch-action: pan-y;
  will-change: transform;

}


/* ==============================
   GRIP HANDLE
============================== */

.drawer-grip {

  width: 90px;
  height: 5px;

  border-radius: 999px;

  background:
  rgba(0,0,0,0.12);

  margin: 0 auto 30px;

  position: relative;

}


/* ==============================
   COPY PROTECTION
   Prevents text selection sitewide.
   Inputs/textareas remain selectable.
============================== */
*, *::before, *::after {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea, [contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

/* ==============================
   CHECKOUT OVERLAY
   Structure:
     .co-overlay  → full-screen backdrop
     .co-panel    → flex-column sheet (slides up)
       ├── .co-header     → always at top, never scrolls
       ├── .co-scrollable → flex:1, scrolls when content overflows
       └── .co-pay-footer → sticky bottom (M3 only): trust + pay btn
============================== */
.co-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(13,32,24,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.co-overlay.active { opacity: 1; pointer-events: auto; }

/* Panel: flex column so header/content/footer stack correctly */
.co-panel {
  width: 100%; max-width: 520px;
  height: 100%; max-height: 100dvh;
  background: var(--forest);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;           /* clipping — scrolling handled by .co-scrollable */
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.co-overlay.active .co-panel { transform: translateY(0); }

/* Scrollable content zone — takes all space between header and footer */
.co-scrollable {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding-bottom: 32px;       /* breathing room at bottom of scroll area */
  display: flex;              /* makes active moment fill full height */
  flex-direction: column;
}
.co-scrollable::-webkit-scrollbar { display: none; }

@media (min-width: 560px) {
  .co-overlay { align-items: center; padding: 24px; }
  .co-panel { border-radius: 28px; height: auto; max-height: 88vh; }
}

/* Header: outside scroll zone — stays pinned to top naturally */
.co-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  background: var(--forest);
  flex-shrink: 0;             /* never shrink — always full height */
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.co-back, .co-close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.co-back:hover, .co-close-btn:hover { background: rgba(255,255,255,0.14); }
.co-back { transition: background 0.2s, opacity 0.2s; }

/* Progress dots */
.co-dots { display: flex; gap: 8px; align-items: center; }
.co-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
}
.co-dot.active { background: var(--honey); transform: scale(1.3); }

/* Moments */
.co-moment { display: none; padding: 8px 28px 0; animation: coFadeIn 0.3s ease; }
/* Active moment fills the full scrollable height so the CTA can be pushed to bottom */
.co-moment.active { display: flex; flex-direction: column; flex: 1; }

/* In M1: push roots-earn (and trust + button beneath it) down to bottom */
#coM1 .co-roots-earn { margin-top: auto; }
/* In M2: push CTA button down to bottom of panel */
#coM2 .co-cta { margin-top: auto; }
@keyframes coFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Typography */
.co-eyebrow {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--honey); font-family: var(--sans); margin-bottom: 10px;
}
.co-h2 {
  font-family: var(--serif); font-size: clamp(36px, 8vw, 48px);
  font-weight: 400; line-height: 1.05; color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
}
.co-h2 em { font-style: italic; color: var(--honey); }

/* Items list */
.co-items-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.co-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06); border-radius: 16px;
  padding: 12px 14px;
}
.co-item-img {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #2a5040, #1a3028);
}
.co-item-info { flex: 1; }
.co-item-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.co-item-meta { font-size: 12px; color: rgba(255,255,255,0.4); }
.co-item-price { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); white-space: nowrap; }

/* Divider + rows */
.co-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 16px 0; }
.co-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.co-label-sm { font-size: 13px; color: rgba(255,255,255,0.45); }
.co-total-val { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); }
.co-free { color: #4ade80; font-weight: 500; }

/* Trust strip */
.co-trust {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  justify-content: center; text-align: center; /* center the trust badge */
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin: 16px 0 28px;
}
.co-trust-sep { color: rgba(255,255,255,0.2); }

/* Form fields */
.co-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.co-field { display: flex; flex-direction: column; gap: 7px; }
.co-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; }

.co-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 14px 18px;
  font-size: 15px; font-family: var(--sans);
  color: rgba(255,255,255,0.9);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-user-select: text; user-select: text;
}
.co-input::placeholder { color: rgba(255,255,255,0.25); }
.co-input:focus {
  border-color: var(--honey);
  background: rgba(255,255,255,0.1);
}
.co-input.co-err { border-color: #f87171; animation: coShake 0.3s ease; }
@keyframes coShake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

.co-phone-row { display: flex; gap: 10px; align-items: center; }
.co-prefix {
  font-size: 15px; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 14px 14px;
  white-space: nowrap; flex-shrink: 0;
}
.co-input-flex { flex: 1; }
.co-input-pin { max-width: 140px; }

.co-pin-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.co-pin-loc { font-size: 13px; font-weight: 500; transition: color 0.2s; }

.co-textarea { resize: none; line-height: 1.5; }

/* Payment moment */
.co-pay-summary {
  font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 8px; font-style: italic;
}
.co-pay-addr {
  font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.co-pay-total-row { margin-top: 8px; }
.co-pay-total { font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.95); }

/* CTAs */
.co-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 60px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.95); color: var(--forest);
  font-size: 15px; font-weight: 600; font-family: var(--sans);
  border: none; cursor: pointer; margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.co-cta:hover { background: #fff; transform: translateY(-1px); }
.co-cta:active { transform: translateY(0); }

.co-cta-honey {
  background: var(--honey); color: #fff;
  font-size: 16px; height: 64px; margin-top: 20px;
}
.co-cta-honey:hover { background: var(--honey-dk); }

.co-cta-ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15); margin-top: 16px;
}
.co-cta-ghost:hover { background: rgba(255,255,255,0.13); color: rgba(255,255,255,0.9); }

.co-secure {
  text-align: center; font-size: 11px; color: rgba(255,255,255,0.28);
  margin-top: 14px;
}

/* Confirmation */
.co-moment-confirm { text-align: center; padding-top: 20px; position: relative; }
.co-glow {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,144,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.co-confirm-icon { font-size: 52px; margin-bottom: 20px; position: relative; }
.co-confirm-h2 { margin-bottom: 8px; }
.co-confirm-sub { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 28px; }

.co-order-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 22px; margin-bottom: 8px; text-align: left;
}
.co-oid { font-size: 11px; letter-spacing: 2px; color: var(--honey); text-transform: uppercase; margin-bottom: 10px; }
.co-oitems { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.co-oprice { font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.95); margin-bottom: 10px; font-family: var(--serif); }
.co-oroots { font-size: 13px; color: var(--honey); margin-bottom: 10px; font-weight: 500; }
.co-oeta { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── Sticky pay footer (M3 only) ──────────────────────────
   Pinned to bottom of .co-panel via flex layout.
   Contains trust line + pay CTA.
   Hidden by default; JS adds .visible on step 3.
─────────────────────────────────────────────────────────── */
.co-pay-footer {
  display: none;
  flex-shrink: 0;
  padding: 18px 28px max(28px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--forest-2);
}
.co-pay-footer.visible { display: block; }

/* Trust line above pay button */
.co-foot-trust {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

/* Override top margin on honey CTA when inside footer */
.co-pay-footer .co-cta-honey { margin-top: 0; }

/* ── Discount / coupon section ─────────────────────────── */
.co-discount-section { margin-bottom: 16px; }
.co-discount-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.co-discount-row { display: flex; gap: 8px; }

/* Coupon / Harvest Card code input */
.co-code-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-family: var(--sans);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s;
  -webkit-user-select: text; user-select: text;
}
.co-code-input::placeholder { color: rgba(255,255,255,0.25); text-transform: none; letter-spacing: 0; }
.co-code-input:focus { border-color: var(--honey); }

/* Apply button next to code input */
.co-code-apply {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.co-code-apply:hover { background: rgba(255,255,255,0.18); color: white; }

/* Coupon result messages */
.co-code-msg { font-size: 12px; margin-top: 8px; min-height: 16px; }
.co-msg-ok   { color: #4ade80; }
.co-msg-err  { color: #f87171; }
.co-msg-warn { color: var(--honey); }

/* ── Roots earning display (dark bg version — checkout) ──
   Shown in M1 (after subtotal) and M3 (above sticky footer).
   Honey-tinted, communicates value at point of purchase.
─────────────────────────────────────────────────────────── */
.co-roots-earn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,144,58,0.1);
  border: 1px solid rgba(196,144,58,0.22);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 14px 0;
  font-size: 13px;
  color: rgba(196,144,58,0.9);
  font-family: var(--sans);
}

/* ── Field hint (validation messages below inputs) ── */
.co-field-hint {
  font-size: 12px;
  min-height: 16px;
  margin-top: 4px;
  padding: 0 2px;
}

/* ── Product page: Roots earning display (light bg version) ──
   Used on product-honey.html and future product pages.
   Appears below the price row.
─────────────────────────────────────────────────────────── */
.pd-roots-earn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,48,40,0.07);
  border: 1px solid rgba(26,48,40,0.12);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  font-family: var(--sans);
  margin-bottom: 20px;
}

/* Small roots line in product page sticky bar */
.pd-sticky-roots {
  font-size: 11px;
  color: var(--forest);
  font-family: var(--sans);
  opacity: 0.55;
  margin-top: 1px;
}

/* ── Homepage Roots section ── */
/* padding: 100px 20px matches every other section on the page (story, b2b,
   subscriptions, journal all use padding: 80px 20px on the section itself).
   The 20px horizontal applies at all screen widths — no media query needed. */
.roots-home {
  background: var(--forest);
  padding: 100px 20px;
  color: white;
}
.roots-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start; /* pin both columns to top — button anchors below pitch, not floating mid-column */
}

/* Button override — scoped to roots section only so .btn-primary elsewhere is unchanged.
   No padding/background/radius: aligns flush with the copy above it.
   Muted white text at rest; full white on hover — text-link feel, not a pill. */
.roots-home .btn-primary {
  background: transparent;
  color: rgba(255,255,255,0.45);
  padding: 0;
  border-radius: 0;
  transition: color 0.2s ease;
}
.roots-home .btn-primary:hover {
  background: transparent;
  color: rgba(255,255,255,1);
  transform: none;
}

/* Below 900px: single column */
@media (max-width: 900px) {
  .roots-home-inner { grid-template-columns: 1fr; gap: 40px; }
}
/* Below 600px: reduce vertical padding and tighten inner spacing */
@media (max-width: 600px) {
  .roots-home       { padding: 64px 20px; }           /* shorter top/bottom on mobile */
  .roots-home-inner { gap: 36px; }
  .roots-home-p     { max-width: 100%; }              /* drop 480px cap in single-column */
  .roots-earn-strip { gap: 12px; }                    /* tighter on small screens */
  .roots-home-tiers { gap: 10px; }
  .rht-sub          { font-size: 11px; }              /* prevent text overflowing narrow cards */
}

.roots-home-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.roots-home-h2 em { color: var(--honey); font-style: italic; }
.roots-home-p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Stats strip: earn rate → redeem value → tiers */
.roots-earn-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: nowrap; /* keep on one line — wrapping looks broken */
}
.roots-earn-stat { text-align: center; }
.res-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--honey);
  line-height: 1;
  margin-bottom: 4px;
}
.res-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.3px; }
.roots-earn-sep { font-size: 18px; color: rgba(255,255,255,0.2); margin-top: -6px; }

/* Tier cards column */
.roots-home-tiers { display: flex; flex-direction: column; gap: 12px; }
.rht-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 18px;
  transition: background 0.2s;
}
.rht-card:hover { background: rgba(255,255,255,0.1); }
.rht-card-featured {
  background: rgba(196,144,58,0.12);
  border-color: rgba(196,144,58,0.28);
}
.rht-icon { font-size: 22px; flex-shrink: 0; }
.rht-card > div { flex: 1; min-width: 0; } /* min-width:0 prevents text overflowing card */
.rht-name { font-size: 14px; font-weight: 500; color: white; margin-bottom: 2px; }
.rht-sub  { font-size: 12px; color: rgba(255,255,255,0.45); }
.rht-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--honey);
  background: rgba(196,144,58,0.12);
  border: 1px solid rgba(196,144,58,0.2);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

