/* ====================================================
   UNBLEND NATURALS — E-COMMERCE EDITION
   Strategy: White base · Green health · Orange CTA · Dark-gray text
   Fonts: Playfair Display (headings) + Lato (body)
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Lato:wght@300;400;700;900&display=swap');

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  /* ── Backgrounds ── */
  --white:       #ffffff;
  --off-white:   #fafafa;
  --surface:     #f4f4f4;
  --surface-2:   #ebebeb;

  /* ── Green (calm / health / trust) ── */
  --green-xlt:   #eef7ec;
  --green-lt:    #bfdfb8;
  --sage:        #6aaa5e;
  --green:       #3d8c30;       /* primary brand green */
  --green-dk:    #276620;

  /* ── CTA Orange (energy / impulse purchase) ── */
  --cta:         #f26522;       /* main CTA — add to cart, buy now */
  --cta-dk:      #d4531a;
  --cta-lt:      #fef0e8;
  --cta-border:  #f8c4a6;

  /* ── Dark / Forest (high-contrast sections) ── */
  --forest:      #1a2e14;

  /* ── Gold (premium accents) ── */
  --gold:        #c49a2a;
  --gold-lt:     #d4ad56;
  --gold-xlt:    #fdf3d8;

  /* ── Text (dark gray — prevents eye strain) ── */
  --ink:         #1f1f1f;
  --text:        #333333;
  --text-mid:    #555555;
  --text-muted:  #888888;

  /* ── Borders ── */
  --border:      #e2e2e2;
  --border-dk:   #c8c8c8;
  --border-dark: #c8c8c8;  /* alias used in inline styles */
  --ivory:       #fafafa;   /* alias used in inline styles */

  /* ── Radius, Fonts, Shadows ── */
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --shadow-xs:   0 1px 4px rgba(0,0,0,.07);
  --shadow:      0 3px 14px rgba(0,0,0,.09);
  --shadow-md:   0 8px 32px rgba(0,0,0,.11);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── CONTAINER ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── SECTION ────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section--surface { background: var(--surface); }
.section--green { background: var(--green-dk); color: #fff; }
.section--bundle-bg { background: var(--green-xlt); border-top: 1.5px solid var(--green-lt); border-bottom: 1.5px solid var(--green-lt); }
.section--ivory { background: var(--off-white); }
.section--dark { background: var(--forest); color: #fff; }

/* ─── SECTION HEADER ─────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .9rem;
  background: var(--green-xlt);
  border: 1px solid var(--green-lt);
  padding: .32rem .95rem;
  border-radius: 50px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--green-lt);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.02em;
}
.section-header p {
  margin-top: .85rem;
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section-header h2,
.section--green .section-header h2 { color: #fff; }
.section--dark .section-header p,
.section--green .section-header p { color: rgba(255,255,255,.55); }
.section--dark .section-label,
.section--green .section-label { color: var(--gold-lt); }
.section--dark .section-label::before,
.section--dark .section-label::after,
.section--green .section-label::before,
.section--green .section-label::after { background: rgba(255,255,255,.2); }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 500; }
h3 { font-size: 1.55rem; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--cta); color: #fff; box-shadow: 0 4px 16px rgba(242,101,34,.30); }
.btn-primary:hover { background: var(--cta-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,101,34,.40); }
.btn-green  { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(61,140,48,.22); }
.btn-green:hover { background: var(--green-dk); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #d4a520 0%, #b8860b 100%); color: #fff; box-shadow: 0 4px 20px rgba(180,130,10,.35); letter-spacing: .06em; }
.btn-gold:hover { background: linear-gradient(135deg, #c49a2a 0%, #276620 100%); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(180,130,10,.45); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-light { background: transparent; color: var(--ink); border: 1.5px solid var(--border-dk); }
.btn-outline-light:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); }
.btn-ghost { background: var(--green-xlt); color: var(--green); border: 1.5px solid var(--green-lt); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--green-dk); box-shadow: var(--shadow); }
.btn-cta { background: var(--cta); color: #fff; font-weight: 700; letter-spacing: .04em; box-shadow: 0 4px 18px rgba(242,101,34,.35); }
.btn-cta:hover { background: var(--cta-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,101,34,.45); }
.btn-light { background: #fff; color: var(--green-dk); box-shadow: var(--shadow); }
.btn-light:hover { background: var(--off-white); }
.btn-lg { padding: .9rem 2.25rem; font-size: .82rem; }
.btn-sm { padding: .4rem 1rem; font-size: .7rem; }

/* ─── BADGE ──────────────────────────────────────── */
.badge { display: inline-block; padding: .22rem .7rem; border-radius: 50px; font-size: .67rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-gold { background: var(--gold-xlt); color: var(--gold); border: 1px solid #e8d08a; }
.badge-green { background: var(--green-xlt); color: var(--green); border: 1px solid var(--green-lt); }
.badge-sale { background: var(--cta); color: #fff; border: none; font-weight: 700; }
.badge-cta { background: var(--cta-lt); color: var(--cta-dk); border: 1px solid var(--cta-border); }

/* ─── FORM ───────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .45rem; color: var(--text-mid); }
.form-control { width: 100%; padding: .78rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .88rem; background: var(--white); color: var(--text); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--sage); box-shadow: 0 0 0 4px rgba(0,0,0,.1); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9070' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ─── FLASH ──────────────────────────────────────── */
.flash { padding: .85rem 1.3rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .87rem; }
.flash-success { background: #f0faf0; color: #1c5e1c; border: 1px solid #b8ddb8; }
.flash-error   { background: #fff5f5; color: #991b1b; border: 1px solid #ffd0d0; }
.flash-info    { background: #f0f7ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────── */
.announcement-bar { background: var(--forest); color: var(--gold-lt); text-align: center; padding: .55rem; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* ─── HEADER ─────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .6rem 0; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 56px; width: auto; object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.logo-sub  { font-size: .57rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--sage); }
.main-nav { display: flex; align-items: center; gap: 2.25rem; margin-left: auto; list-style: none; }
.main-nav a { font-size: .75rem; font-weight: 700; letter-spacing: .08em; color: var(--text-muted); transition: color var(--transition); text-transform: uppercase; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--green); transition: width var(--transition); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--green-dk); }
.header-search { position: relative; flex-shrink: 0; display: flex; align-items: center; }
.header-search form { position: relative; display: flex; align-items: center; }
.header-search input { width: 200px; padding: .48rem 1rem .48rem 2.2rem; border: 1.5px solid var(--border); border-radius: 50px; font-size: .82rem; outline: none; background: var(--surface); transition: border-color .2s, width .25s; color: var(--text); box-sizing: border-box; }
.header-search input:focus { border-color: var(--sage); background: var(--white); width: 240px; }
.header-search .search-icon { position: absolute; left: .82rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .74rem; pointer-events: none; z-index: 1; }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-icon-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--text); font-size: .88rem; }
.header-icon-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.header-icon-btn .badge-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; background: var(--gold); color: #fff; border-radius: 50px; font-size: .6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(184,146,42,.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .35rem; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--transition); border-radius: 1px; }

/* ─── MOBILE NAV ─────────────────────────────────── */
.mobile-nav { position: fixed; inset: 0; background: var(--white); z-index: 999; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mobile-nav-close { background: var(--surface); border: none; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: var(--text); flex-shrink: 0; }
.mobile-nav-links { display: flex; flex-direction: column; padding: .5rem 0; flex: 1; }
.mobile-nav-links a { display: block; padding: 1rem 1.5rem; font-size: 1rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); font-family: var(--font-body); letter-spacing: .02em; transition: background var(--transition), color var(--transition); }
.mobile-nav-links a:hover { color: var(--green); background: var(--green-xlt); }
.mobile-nav-footer { padding: 1.25rem 1.5rem; display: flex; gap: .75rem; border-top: 1px solid var(--border); flex-shrink: 0; }

/* ─── HERO ───────────────────────────────────────── */
.hero { background: var(--white); overflow: hidden; position: relative; padding: 0; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: var(--green-xlt); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); z-index: 0; }
.hero-bg { position: absolute; top: -40%; right: 5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,0,0,.18) 0%, transparent 70%); z-index: 0; }
.hero-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle, rgba(0,0,0,.05) 1px, transparent 1px); background-size: 32px 32px; z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 680px; gap: 4rem; }
.hero-content { padding: 5rem 0; min-width: 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); background: #fff; border: 1px solid var(--green-lt); padding: .35rem .9rem; border-radius: 50px; margin-bottom: 1.5rem; box-shadow: var(--shadow-xs); max-width: 100%; }
.hero h1 { color: var(--ink); margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero-desc { font-size: .95rem; color: var(--text-mid); line-height: 1.8; max-width: 100%; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem; }
.trust-pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 600; color: var(--text-mid); background: #fff; border: 1px solid var(--border); padding: .3rem .75rem; border-radius: 50px; box-shadow: var(--shadow-xs); }
.trust-pill i { color: var(--sage); font-size: .75rem; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; }
.hero-orb { width: 320px; height: 320px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; position: relative; border: 1.5px solid var(--border); }
.hero-orb-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.hero-orb-bird { width: 185px; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 6px 20px rgba(30,80,10,.22)); }
.hero-orb-text { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); line-height: 1.6; }
.hero-floating-card { position: absolute; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: .85rem 1.1rem; font-size: .75rem; color: var(--text-mid); box-shadow: var(--shadow-md); white-space: nowrap; font-weight: 500; animation: float 3s ease-in-out infinite; }
.hero-floating-card strong { display: block; font-size: .88rem; font-weight: 700; color: var(--green-dk); margin-bottom: .1rem; }
.hero-float-1 { top: 10%; left: -5%; animation-delay: 0s; }
.hero-float-2 { bottom: 20%; right: -2%; animation-delay: 1s; }
.hero-float-3 { top: 55%; left: -8%; animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ─── TICKER ─────────────────────────────────────── */
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.ticker-wrap { background: var(--forest); overflow: hidden; padding: .7rem 0; }
.ticker-inner { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); padding: 0 2.25rem; white-space: nowrap; }
.ticker-item i { color: var(--gold-lt); font-size: .65rem; }

/* ─── BENEFITS STRIP ─────────────────────────────── */
.benefits-strip { background: var(--white); padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.benefit-item { display: flex; align-items: center; gap: 1rem; padding: 0 2rem; border-right: 1px solid var(--border); }
.benefit-item:last-child { border-right: none; }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-xlt); border: 1px solid var(--green-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon i { font-size: .95rem; color: var(--green); }
.benefit-item h4 { font-size: .8rem; margin-bottom: .12rem; font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.benefit-item p { font-size: .72rem; color: var(--text-muted); }

/* ─── PROBLEM → SOLUTION ─────────────────────────── */
.ps-section { background: var(--surface); padding: 4rem 0; }
.ps-inner { display: flex; align-items: center; gap: 2rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2.75rem 3rem; box-shadow: var(--shadow); }
.ps-problem, .ps-solution { flex: 1; }
.ps-label { font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; }
.ps-problem .ps-label { color: #c0392b; }
.ps-solution .ps-label { color: var(--green); }
.ps-text { font-size: .9rem; color: var(--text); line-height: 1.65; }
.ps-arrow { color: var(--sage); font-size: 1.2rem; flex-shrink: 0; border: 1.5px solid var(--green-lt); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--green-xlt); }

/* ─── CATEGORIES ─────────────────────────────────── */
.categories-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.category-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.25rem 1.6rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; transition: var(--transition); text-decoration: none; gap: .6rem; width: 175px; flex-shrink: 0; position: relative; overflow: hidden; }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, var(--green-xlt) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); }
.category-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(30,70,24,.13); transform: translateY(-4px); }
.category-card:hover::before { opacity: 1; }
.category-icon { width: 58px; height: 58px; background: linear-gradient(135deg, var(--green-xlt), var(--green-lt)); border: 1.5px solid var(--green-lt); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: .4rem; transition: var(--transition); position: relative; z-index: 1; }
.category-card:hover .category-icon { background: linear-gradient(135deg, var(--green), var(--green-dk)); border-color: var(--green-dk); box-shadow: 0 4px 14px rgba(30,70,24,.22); }
.category-icon i { font-size: 1.05rem; color: var(--green); transition: var(--transition); }
.category-card:hover .category-icon i { color: #fff; }
.category-card h4 { font-size: .85rem; font-weight: 700; font-family: var(--font-display); font-style: normal; color: var(--ink); letter-spacing: -.01em; position: relative; z-index: 1; }
.category-card p { font-size: .72rem; color: var(--text-muted); line-height: 1.5; position: relative; z-index: 1; }

/* ─── PRODUCT CARDS — full definitions in SHOP section below ─── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; }

/* ─── WHY SECTION ────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.why-feature:last-child { border-bottom: none; }
.why-feature-icon { width: 42px; height: 42px; background: var(--green-xlt); border: 1px solid var(--green-lt); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); font-size: .9rem; }
.why-feature strong { display: block; font-size: .87rem; margin-bottom: .2rem; color: var(--ink); }
.why-feature span { font-size: .8rem; color: var(--text-muted); }
.why-visual { background: #2c2c2c; border-radius: var(--radius-xl); padding: 3rem 2.5rem; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.why-visual::before { content: ''; position: absolute; top: -60%; right: -30%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,.06), transparent 60%); }
.why-visual-bird { width: 120px; height: auto; object-fit: contain; display: block; margin: 0 auto .75rem; filter: drop-shadow(0 4px 16px rgba(0,0,0,.5)); }
.why-visual h3 { font-size: 1.7rem; color: #fff; font-weight: 500; margin-bottom: .5rem; }
.why-visual p { color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: 2.5rem; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.why-stat { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.1rem; }
.why-stat-number { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; color: var(--gold-lt); }
.why-stat-label { font-size: .68rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; }

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.testimonial-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.section--dark .testimonial-card, .section--green .testimonial-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.section--bundle-bg .testimonial-card { background: var(--white); border-color: var(--green-lt); box-shadow: var(--shadow-xs); }
.testimonial-stars { color: var(--gold); margin-bottom: .7rem; font-size: .88rem; letter-spacing: .1em; }
.testimonial-text { font-size: .87rem; line-height: 1.78; color: var(--text-muted); margin-bottom: 1.25rem; font-style: italic; }
.section--dark .testimonial-text, .section--green .testimonial-text { color: rgba(255,255,255,.58); }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .88rem; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-size: .85rem; font-weight: 700; color: var(--ink); }
.section--dark .testimonial-name, .section--green .testimonial-name { color: #fff; }
.testimonial-loc { font-size: .72rem; color: var(--text-muted); }

/* ─── CUSTOMER STORY SLIDER ──────────────────────── */
.cs-slider-wrap { position: relative; }
.cs-track-outer { overflow: hidden; }
.cs-track { display: flex; gap: 1.5rem; transition: transform .4s ease; }
.cs-card { min-width: calc(33.333% - 1rem); }
.cs-card-inner { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; height: 100%; }
.cs-quote-icon { font-family: var(--font-display); font-size: 4rem; color: var(--green-lt); line-height: .8; margin-bottom: .5rem; }
.cs-stars { color: var(--gold); font-size: .85rem; margin-bottom: .75rem; }
.cs-text { font-size: .87rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
.cs-product-tag { display: inline-flex; align-items: center; gap: .35rem; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); background: var(--green-xlt); border: 1px solid var(--green-lt); padding: .25rem .7rem; border-radius: 50px; margin-bottom: .85rem; }
.cs-author { display: flex; align-items: center; gap: .75rem; }
.cs-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; flex-shrink: 0; }
.cs-name { font-size: .83rem; font-weight: 700; color: var(--ink); }
.cs-loc { font-size: .72rem; color: var(--text-muted); }
.cs-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .85rem; box-shadow: var(--shadow); transition: var(--transition); color: var(--text); }
.cs-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.cs-prev { left: -22px; }
.cs-next { right: -22px; }
.cs-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.cs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-dk); border: none; cursor: pointer; transition: var(--transition); }
.cs-dot.active { background: var(--green); width: 22px; border-radius: 4px; }

/* ─── BUNDLE BANNER ──────────────────────────────── */
.bundle-banner { background: var(--green-xlt); border: 1.5px solid var(--green-lt); border-radius: var(--radius-xl); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.bundle-left { padding: 3.5rem; border-right: 1.5px solid var(--green-lt); }
.bundle-tag { display: inline-block; background: var(--green); color: #fff; border-radius: 50px; padding: .3rem .85rem; font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.bundle-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--ink); margin-bottom: .75rem; }
.bundle-desc { color: var(--text-mid); font-size: .88rem; line-height: 1.75; margin-bottom: 1.25rem; }
.bundle-price-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.bundle-price-new { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--green); }
.bundle-price-old { text-decoration: line-through; color: var(--text-muted); font-size: .9rem; }
.bundle-save { background: #fff0f0; color: #c0392b; border-radius: 50px; padding: .22rem .7rem; font-size: .7rem; font-weight: 700; border: 1px solid #ffd0d0; }
.bundle-features { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.75rem; }
.bundle-features span { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-mid); }
.bundle-features i { color: var(--sage); font-size: .8rem; }
.bundle-right { padding: 3.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; }
.bundle-products { display: flex; gap: 1rem; align-items: center; }
.bundle-product-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center; flex: 1; box-shadow: var(--shadow-xs); }
.bundle-product-card.bundle-product-center { background: var(--green); border-color: var(--green); box-shadow: 0 4px 20px rgba(0,0,0,.22); transform: scale(1.04); }
.bundle-product-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.bundle-product-name { font-size: .8rem; font-weight: 700; color: var(--ink); }
.bundle-product-center .bundle-product-name { color: #fff; }
.bundle-product-name span { display: block; font-size: .68rem; color: var(--text-muted); font-weight: 400; margin-top: .15rem; }
.bundle-product-center .bundle-product-name span { color: rgba(255,255,255,.6); }
.bundle-badge { background: #fff; border: 1.5px solid var(--border); border-radius: 50px; padding: .5rem 1.75rem; display: flex; gap: .6rem; align-items: center; font-size: .7rem; color: var(--text-mid); font-weight: 700; letter-spacing: .06em; box-shadow: var(--shadow-xs); }
.bundle-badge strong { font-size: .88rem; color: var(--green); }

/* ─── NEWSLETTER ─────────────────────────────────── */
.newsletter-section { background: var(--surface); padding: 5.5rem 0; text-align: center; color: var(--ink); position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.newsletter-section::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,0,0,.03), transparent 60%); z-index: 0; }
.newsletter-section > * { position: relative; z-index: 1; }
.newsletter-section h2 { font-size: 2.5rem; font-weight: 400; margin-bottom: .75rem; color: var(--ink); }
.newsletter-section p { color: var(--text-muted); margin-bottom: 2.25rem; font-size: .92rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 220px; padding: .82rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--border-dk); background: var(--white); color: var(--ink); font-size: .88rem; outline: none; }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(0,0,0,.06); }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding-top: 0; }
.footer-certifications { display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap; padding: 1.1rem 0; font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.footer-certifications i { color: var(--sage); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 3.5rem 0 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 64px; width: auto; object-fit: contain; display: block; }
.footer-tagline { font-size: .82rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: .5rem; }
.footer-social-btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--text-muted); transition: var(--transition); }
.footer-social-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: .35rem; }
.footer-col a { font-size: .82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; border-top: 1px solid var(--border); font-size: .75rem; color: var(--text-muted); flex-wrap: wrap; gap: .5rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: .75rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--ink); }

/* ─── REVIEWS TICKER ─────────────────────────────── */
.reviews-ticker { background: var(--surface); padding: 1rem 0; overflow: hidden; display: flex; align-items: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-ticker-label { flex-shrink: 0; padding: 0 1.5rem; font-size: .63rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); border-right: 1px solid var(--border); margin-right: 1.5rem; white-space: nowrap; }
.reviews-ticker-track { flex: 1; overflow: hidden; }
.reviews-ticker-inner { display: flex; gap: 2rem; width: max-content; animation: ticker 38s linear infinite; }
.review-tick { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-mid); white-space: nowrap; }
.rt-stars { color: var(--gold); font-size: .75rem; }
.rt-name { color: var(--text-muted); font-style: italic; font-size: .73rem; }

/* ─── CERTIFICATIONS ─────────────────────────────── */
.certs-row { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2.75rem 0; }
.cert-item { display: flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.cert-item i { color: var(--sage); font-size: .95rem; }

/* ─── PRODUCT DETAIL ─────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; padding: 3rem 0 5rem; }
.product-gallery { position: sticky; top: 100px; height: fit-content; }
.product-gallery-main { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1 / 1; margin-bottom: .75rem; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: .5rem; }
.gallery-thumb { width: 70px; height: 70px; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--sage); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-detail h1 { font-size: 2.1rem; margin-bottom: .5rem; color: var(--ink); }
.product-meta { display: flex; align-items: center; gap: .75rem; margin: .5rem 0 1rem; flex-wrap: wrap; }
.product-price-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.product-price-detail .current { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--green); }
.product-price-detail .original { font-size: .92rem; color: var(--text-muted); text-decoration: line-through; }
.product-price-detail .save { font-size: .75rem; font-weight: 700; color: var(--cta-dk); background: var(--cta-lt); padding: .22rem .65rem; border-radius: 50px; border: 1px solid var(--cta-border); }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; width: fit-content; margin-bottom: 1rem; background: var(--surface); }
.qty-control button { width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; font-size: 1rem; color: var(--text); transition: background var(--transition); }
.qty-control button:hover { background: var(--border); }
.qty-control span { min-width: 46px; text-align: center; font-weight: 700; font-size: .9rem; color: var(--ink); }
.product-actions { display: flex; gap: .6rem; margin-bottom: 1.25rem; align-items: center; }

/* ─── TABS ───────────────────────────────────────── */
.product-tabs { margin-top: 1.75rem; }
.tabs-header { display: flex; border-bottom: 1px solid var(--border); gap: .25rem; margin-bottom: 1.25rem; }
.tab-btn { padding: .65rem 1.1rem; font-size: .72rem; font-weight: 700; background: transparent; border: none; border-bottom: 2px solid transparent; cursor: pointer; color: var(--text-muted); transition: var(--transition); margin-bottom: -1px; text-transform: uppercase; letter-spacing: .1em; }
.tab-btn.active, .tab-btn:hover { color: var(--green); border-bottom-color: var(--green); }
.tab-content { display: none; font-size: .88rem; color: var(--text-muted); line-height: 1.82; }
.tab-content.active { display: block; }

/* ─── CART ───────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; padding-bottom: 4rem; }
.cart-item { display: flex; gap: 1.25rem; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: .85rem; align-items: flex-start; }
.cart-item img { width: 88px; height: 88px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; background: var(--surface); border: 1px solid var(--border); }
.cart-summary { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; height: fit-content; position: sticky; top: 90px; }
.cart-summary h3 { font-size: .82rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-body); color: var(--ink); }
.summary-row { display: flex; justify-content: space-between; font-size: .87rem; padding: .45rem 0; color: var(--text-mid); }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: .75rem 0; }
.summary-total { font-size: 1rem; font-weight: 700; color: var(--ink); }

/* ─── CHECKOUT ───────────────────────────────────── */
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; padding-bottom: 4rem; }
.checkout-block { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.25rem; }
.checkout-block h3 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.25rem; color: var(--text-muted); font-family: var(--font-body); }

/* ─── ACCOUNT ────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding-bottom: 4rem; }
.account-sidebar { position: sticky; top: 90px; height: fit-content; }
.account-nav-link { display: flex; align-items: center; gap: .75rem; padding: .72rem 1rem; border-radius: var(--radius); font-size: .83rem; color: var(--text-muted); transition: var(--transition); font-weight: 600; }
.account-nav-link:hover, .account-nav-link.active { background: var(--green-xlt); color: var(--green-dk); }
.account-nav-link i { width: 18px; text-align: center; font-size: .85rem; }
.account-main { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.account-main h2 { font-size: 1.3rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); color: var(--ink); }

/* ─── EMPTY STATE ────────────────────────────────── */
.empty-state { text-align: center; padding: 5rem 1.5rem; color: var(--text-muted); }
.empty-state i { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--border-dk); }
.empty-state h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .5rem; color: var(--text); }
.empty-state p { font-size: .9rem; }

/* ─── PROSE ──────────────────────────────────────── */
.prose h2 { font-size: 1.8rem; margin-bottom: .75rem; color: var(--ink); }
.prose h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--text); }
.prose p { margin-bottom: 1rem; color: var(--text-muted); font-size: .9rem; line-height: 1.82; }

/* ─── TAG ────────────────────────────────────────── */
.tag { display: inline-block; padding: .17rem .7rem; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; font-size: .73rem; font-weight: 500; color: var(--text-mid); }

/* ─── SHOP ───────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 5rem; align-items: start; }

/* Sidebar */
.shop-sidebar {
    position: sticky; top: 90px; height: fit-content;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
}
.shop-sidebar-close { display: none; }

.sidebar-block { padding: 1.25rem 1.25rem 1rem; }
.sidebar-block + .sidebar-block { border-top: 1px solid var(--border); }

.sidebar-heading {
    font-size: .68rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: .85rem; display: flex; align-items: center; gap: .45rem;
}
.sidebar-cats { display: flex; flex-direction: column; gap: .3rem; }

.sidebar-cat-pill {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem .85rem; border-radius: 10px;
    font-size: .83rem; font-weight: 500; color: var(--text-mid);
    text-decoration: none; transition: all .18s ease;
    border: 1.5px solid transparent;
}
.sidebar-cat-pill i { font-size: .75rem; color: var(--sage); flex-shrink: 0; }
.sidebar-cat-pill:hover {
    background: var(--green-xlt); color: var(--green-dk);
    border-color: var(--green-lt);
}
.sidebar-cat-pill.active {
    background: var(--green-xlt); color: var(--forest);
    border-color: var(--green-lt); font-weight: 700;
}
.sidebar-cat-pill.active i { color: var(--forest); }

/* Sort bar */
.shop-sort-bar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem; gap: 1rem; flex-wrap: wrap;
}
.shop-results-count { font-size: .84rem; color: var(--text-muted); }
.shop-results-count strong { color: var(--ink); }

.sort-wrap {
    position: relative; display: inline-flex; align-items: center;
}
.sort-select {
    appearance: none; -webkit-appearance: none;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 10px; padding: .5rem 2.2rem .5rem .9rem;
    font-size: .82rem; font-weight: 500; color: var(--ink);
    cursor: pointer; outline: none; transition: border-color .18s;
    min-width: 160px;
}
.sort-select:hover, .sort-select:focus { border-color: var(--sage); }
.sort-chevron {
    position: absolute; right: .75rem; font-size: .65rem;
    color: var(--text-muted); pointer-events: none;
}

/* Product grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    gap: 1.25rem; align-items: stretch;
}

/* Product card */
.product-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
    display: flex; flex-direction: column; height: 100%;
}
.product-card:hover {
    border-color: var(--green-lt); box-shadow: 0 8px 32px rgba(30,80,10,.10);
    transform: translateY(-3px);
}
.product-image {
    position: relative; background: var(--green-xlt);
    aspect-ratio: 1 / 1; overflow: hidden;
}
.product-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.product-image img[src$=".svg"] {
    object-fit: contain; padding: 1rem; background: var(--green-xlt);
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-badge {
    position: absolute; top: .7rem; left: .7rem;
    font-size: .62rem; font-weight: 800; letter-spacing: .06em;
    text-transform: uppercase; padding: .28rem .72rem;
    border-radius: 50px; z-index: 1;
}
.badge-sale { background: var(--cta); color: #fff; }

.product-wishlist {
    position: absolute; top: .7rem; right: .7rem;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.92); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .18s; color: var(--text-muted);
    font-size: .82rem; box-shadow: 0 2px 8px rgba(0,0,0,.08); z-index: 1;
}
.product-wishlist:hover, .product-wishlist.active { color: #e74c3c; border-color: #ffd0d0; background: #fff5f5; }

.product-info { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; gap: .3rem; }

.product-category {
    font-size: .6rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green);
}
.product-name {
    font-size: .88rem; font-weight: 600; color: var(--ink);
    line-height: 1.35; font-family: var(--font-display);
    text-decoration: none; display: block;
}
.product-name:hover { color: var(--forest); }

.product-rating { display: flex; align-items: center; gap: .35rem; }
.stars { color: #f59e0b; font-size: .8rem; letter-spacing: .05em; }
.rating-count { font-size: .72rem; color: var(--text-muted); }

.product-price {
    display: flex; align-items: center; gap: .45rem;
    flex-wrap: wrap; margin-top: .15rem;
}
.price-current { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green-dk); }
.price-original { font-size: .78rem; text-decoration: line-through; color: var(--text-muted); }
.price-off {
    font-size: .65rem; font-weight: 800; color: var(--cta-dk);
    background: var(--cta-lt); padding: .13rem .48rem;
    border-radius: 50px; border: 1px solid var(--cta-border);
}

.product-info > .btn-gold.w-100, .btn-gold.w-100 {
    display: flex; align-items: center; justify-content: center;
    gap: .4rem; margin-top: auto; padding: .65rem 1rem;
    font-size: .78rem; width: 100%; border-radius: 10px;
}

/* ─── ADMIN ──────────────────────────────────────── */

/* Overlay — fixed, always hidden by default on ALL screen sizes */
.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 299;
}
.admin-overlay.visible { display: block; }

/* Layout — sidebar + main, desktop default */
.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
    background: var(--surface);
}

/* Sidebar — sticky on desktop */
.admin-sidebar {
    background: var(--ink);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1;
}
.admin-sidebar-logo { padding: .75rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1rem; }
.admin-nav a { display: flex; align-items: center; gap: .75rem; padding: .65rem 1.5rem; font-size: .82rem; color: rgba(255,255,255,.5); transition: var(--transition); text-decoration: none; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.05); color: #fff; border-right: 2px solid var(--sage); }
.admin-nav a i { width: 18px; font-size: .85rem; }

/* Main content area */
.admin-main { padding: 2rem; overflow-x: auto; background: var(--surface); min-height: 100vh; }

/* Hamburger bar — hidden on desktop, shown on mobile */
.admin-hamburger-wrap { display: none; }

.admin-header { margin-bottom: 2rem; }
.admin-header h1 { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; margin-bottom: .25rem; color: var(--ink); }
.admin-header p { font-size: .85rem; color: var(--text-muted); }
.admin-card { background: #fff; border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-xs); border: 1px solid var(--border); }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.admin-stat-card { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-xs); border: 1px solid var(--border); }
.admin-stat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: .4rem; }
.admin-stat-value { font-size: 1.75rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
table { width: 100%; border-collapse: collapse; }
th { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); padding: .8rem; text-align: left; border-bottom: 2px solid var(--border); background: var(--surface); }
td { padding: .8rem; font-size: .85rem; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }
tr:hover td { background: var(--surface); }

/* ─── ADMIN EXTENDED ──────────────────────────────── */
.admin-brand { padding: 1.25rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1rem; display: flex; flex-direction: column; gap: .25rem; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.admin-topbar h1 { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; margin-bottom: .15rem; color: var(--ink); }
.nav-group-label { font-size: .57rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.18); padding: 1rem 1.5rem .35rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-xs); border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; }
.stat-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.stat-icon.green  { background: var(--green-xlt); color: var(--green); }
.stat-icon.orange { background: #fff7ed; color: #c2710c; }
.stat-icon.blue   { background: #eff6ff; color: #2563eb; }
.stat-icon.gold   { background: var(--gold-xlt); color: var(--gold); }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1.2; font-family: var(--font-display); }
.stat-num   { font-size: 1.5rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.stat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-top: .15rem; }
.stats-row  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.admin-table { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; margin-bottom: 1.5rem; overflow-x: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.btn-full { width: 100%; justify-content: center; }
.order-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: flex; gap: 1rem; padding: .75rem 0; position: relative; }
.timeline-step:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 38px; bottom: 0; width: 2px; background: var(--border); }
.step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; z-index: 1; }
.step-info .step-status { font-weight: 700; font-size: .85rem; color: var(--ink); }
.step-info .step-msg { font-size: .78rem; color: var(--text-muted); }

/* ─── ADMIN RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
    .admin-stats-grid,
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Collapse grid to single column */

    /* Sidebar becomes a slide-in drawer */
    .admin-sidebar {
        position: fixed;
        left: 0; top: 0; bottom: 0;
        width: 260px;
        height: 100%;
        z-index: 300;
        transform: translateX(-100%);
        transition: transform .3s ease;
        /* NOT sticky anymore */
        position: fixed;
    }
    .admin-sidebar.open { transform: translateX(0); }

    /* Show hamburger bar */
    .admin-hamburger-wrap {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: .75rem 1rem;
        border-bottom: 1px solid var(--border);
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .admin-main { padding: 1rem; }
    .admin-stats-grid,
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .admin-stats-grid,
    .stats-grid { grid-template-columns: 1fr; }
}

/* ─── LOGIN ──────────────────────────────────────── */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--surface); padding: 2rem; box-sizing: border-box; }
.login-box { width: 100%; max-width: 440px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2.75rem; box-shadow: var(--shadow-md); }
.login-tabs { display: flex; background: var(--surface); border-radius: 50px; padding: .2rem; margin-bottom: 2rem; border: 1px solid var(--border); }
.login-tab { flex: 1; text-align: center; padding: .5rem; border-radius: 50px; font-size: .78rem; font-weight: 700; text-decoration: none; transition: var(--transition); color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.login-tab.active { background: #fff; color: var(--green); box-shadow: var(--shadow-xs); }

/* ─── MISC ───────────────────────────────────────── */
.inline-bird-xs { height: 14px; width: auto; vertical-align: middle; }
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; font-size: .8rem; border: 1.5px solid var(--border); color: var(--text); transition: var(--transition); font-weight: 700; }
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .current { background: var(--green); color: #fff; border-color: var(--green); }
.status { display: inline-block; padding: .2rem .7rem; border-radius: 50px; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.status-paid, .status-delivered, .status-active { background: #ecfdf5; color: #065f46; }
.status-pending, .status-placed, .status-inactive { background: #fef9c3; color: #854d0e; }
.status-processing, .status-confirmed { background: #eff6ff; color: #1e40af; }
.status-shipped, .status-out_for_delivery { background: #f5f3ff; color: #5b21b6; }
.status-cancelled, .status-failed { background: #fff5f5; color: #991b1b; }
.status-returned, .status-refunded { background: var(--surface); color: var(--text-mid); }
.quick-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; }
.quick-link { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; text-decoration: none; color: var(--text); transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.quick-link:hover { border-color: var(--sage); color: var(--green); box-shadow: var(--shadow); }
.quick-link i { font-size: 1.1rem; color: var(--sage); }
.quick-link span { font-size: .72rem; font-weight: 700; }

/* Admin extended */
.admin-brand { padding: 1.25rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1rem; display: flex; flex-direction: column; gap: .25rem; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.admin-topbar h1 { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; margin-bottom: .15rem; color: var(--ink); }
.nav-group-label { font-size: .57rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.18); padding: 1rem 1.5rem .35rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-xs); border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; }
.stat-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.stat-icon.green  { background: var(--green-xlt); color: var(--green); }
.stat-icon.orange { background: #fff7ed; color: #c2710c; }
.stat-icon.blue   { background: #eff6ff; color: #2563eb; }
.stat-icon.gold   { background: var(--gold-xlt); color: var(--gold); }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1.2; font-family: var(--font-display); }
.stat-num   { font-size: 1.5rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.stat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-top: .15rem; }
.stats-row  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.admin-table { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; margin-bottom: 1.5rem; overflow-x: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.btn-full { width: 100%; justify-content: center; }
.order-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: flex; gap: 1rem; padding: .75rem 0; position: relative; }
.timeline-step:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 38px; bottom: 0; width: 2px; background: var(--border); }
.step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; z-index: 1; }
.step-info .step-status { font-weight: 700; font-size: .85rem; color: var(--ink); }
.step-info .step-msg { font-size: .78rem; color: var(--text-muted); }
.step-info .step-time { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; }

/* Page Editor */
.pe-group { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 1rem; overflow: hidden; }
.pe-group-header { display: flex; align-items: center; padding: 1rem 1.25rem; cursor: pointer; background: var(--surface); }
.pe-group-title { font-size: .87rem; font-weight: 700; flex: 1; color: var(--ink); }
.pe-group-icon { color: var(--green); margin-right: .5rem; }
.pe-group-count { font-size: .67rem; background: var(--green-xlt); border-radius: 50px; padding: .15rem .55rem; color: var(--green); border: 1px solid var(--green-lt); }
.pe-group-body { padding: 1.25rem; }
.pe-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-bottom: .75rem; }
.pe-item-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .4rem; }
.pe-type-badge { font-size: .62rem; padding: .15rem .5rem; border-radius: 50px; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); margin-left: .5rem; }
.pe-save-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; }
.pe-saved-tag { display: none; background: #ecfdf5; color: #065f46; padding: .3rem .8rem; border-radius: 50px; font-size: .72rem; font-weight: 700; margin-left: .5rem; border: 1px solid #b8ddb8; }
.pe-has-content .pe-saved-tag { display: inline-block; }
.pe-chevron { transition: transform .2s; }
.pe-group.collapsed .pe-group-body { display: none; }
.pe-group.collapsed .pe-chevron { transform: rotate(-90deg); }
.pe-clear-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: .76rem; padding: .2rem .5rem; border-radius: 4px; }
.pe-clear-btn:hover { color: #c0392b; background: #fff0f0; }

/* ─── RESPONSIVE ─────────────────────────────────── */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hero — 2-col on tablet, bird stays RIGHT exactly like laptop */
  .hero-inner { grid-template-columns: 1fr 1fr; min-height: 520px; gap: 2.5rem; padding: 2rem 0; }
  .hero-content { padding: 2.5rem 0; order: 1; }
  .hero-visual { display: flex !important; justify-content: center; align-items: center; padding: 1.5rem .5rem; order: 2; }
  .hero-orb { width: 260px; height: 260px; }
  .hero-orb-bird { width: 155px; }
  .hero-floating-card { display: none; }
  .hero { min-height: auto; background: var(--green-xlt); overflow: visible; }
  .hero::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bundle-banner { grid-template-columns: 1fr; }
  .bundle-left { border-right: none; border-bottom: 1.5px solid var(--green-lt); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .cs-card { min-width: calc(50% - .75rem); }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Base */
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }

  /* Header */
  .main-nav { display: none; }
  .header-search { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 40px; }
  .header-inner { gap: .75rem; padding: .5rem 0; }
  .announcement-bar { font-size: .6rem; padding: .4rem .75rem; letter-spacing: .06em; }

  /* Hero — single column on phones */
  .hero { overflow: hidden; background: var(--green-xlt); }
  .hero::before { display: none; }
  .hero-bg { display: none; }
  .hero-inner { grid-template-columns: 1fr !important; min-height: auto !important; gap: 0 !important; padding: 1.25rem 0 1.5rem !important; }
  .hero-content { order: 1; padding: .75rem 0 0; min-width: 0; width: 100%; box-sizing: border-box; }
  .hero-visual { display: none !important; }
  .hero-floating-card { display: none; }
  .hero h1 { font-size: clamp(1.55rem, 6.5vw, 2rem) !important; line-height: 1.2; margin-bottom: .75rem; }
  .hero-eyebrow { font-size: .6rem; margin-bottom: .85rem; max-width: 100%; }
  .hero-desc { font-size: .85rem; line-height: 1.65; margin-bottom: 1.1rem; max-width: 100%; }
  .hero-ctas { flex-direction: row !important; gap: .55rem; flex-wrap: nowrap; margin-bottom: 1rem; }
  .hero-ctas .btn { flex: 1; min-width: 0; justify-content: center; text-align: center; padding: .75rem .6rem; font-size: .8rem; white-space: nowrap; }
  .hero-trust { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: .35rem; padding-bottom: .25rem; }
  .hero-trust::-webkit-scrollbar { display: none; }
  .trust-pill { flex-shrink: 0; white-space: nowrap; font-size: .62rem; padding: .22rem .58rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.85rem; }
  .section-label { font-size: .6rem; }

  /* Categories */
  .categories-grid { gap: .85rem; }
  .category-card { width: calc(50% - .85rem); padding: 1.25rem .75rem; }
  .category-icon { width: 48px; height: 48px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-info { padding: .9rem; }
  .product-name { font-size: .82rem; line-height: 1.3; }
  .price-current { font-size: 1rem; }
  .product-actions { flex-direction: column; gap: .5rem; }
  .product-actions .btn { width: 100%; justify-content: center; }

  /* Why section */
  .why-grid { gap: 2rem; }
  .why-visual { padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
  .why-stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .why-feature { padding: .75rem 0; }

  /* Bundle */
  .bundle-banner { border-radius: var(--radius-lg); }
  .bundle-left, .bundle-right { padding: 2rem 1.5rem; }
  .bundle-products { gap: .5rem; }
  .bundle-title { font-size: 1.75rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; align-items: stretch; max-width: 100%; }
  .newsletter-form input { min-width: unset; width: 100%; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* Cart / Checkout / Account */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-nav { display: flex; flex-wrap: wrap; gap: .5rem; flex-direction: row; padding: 0; background: none; border: none; }
  .account-nav-link { border-radius: var(--radius); border: 1.5px solid var(--border); padding: .5rem .9rem; font-size: .75rem; }

  /* Tabs */
  .tabs-header { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .tab-btn { flex-shrink: 0; }

  /* Login */
  .login-page { padding: 1rem; align-items: flex-start; padding-top: 2rem; }
  .login-box { padding: 1.75rem 1.25rem; border-radius: var(--radius-lg); }
  .login-tabs { font-size: .82rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .footer-logo-img { height: 52px; }
  .footer-tagline { max-width: 100%; }

  /* Admin */

  /* Misc */
  .cs-card { min-width: 100%; }
  .cs-prev { left: 0; }
  .cs-next { right: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .benefit-item { padding: 0 .75rem; }
  .certs-row { gap: 1rem; }
  .ps-inner { flex-direction: column; text-align: center; gap: 1rem; padding: 1.75rem 1.5rem; }
  .ps-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .prose h2 { font-size: 1.5rem; }
  .prose h3 { font-size: 1.2rem; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Header */
  .logo-img { height: 34px; }
  .header-icon-btn { width: 34px; height: 34px; font-size: .78rem; }
  .header-actions { gap: .3rem; }

  /* Hero */
  .hero h1 { font-size: 1.75rem !important; letter-spacing: -.02em; }
  .hero-content { padding: .75rem 0 1.25rem; min-width: 0; }
  .hero-ctas { flex-direction: row !important; gap: .5rem; flex-wrap: nowrap; }
  .hero-ctas .btn { flex: 1; min-width: 0; justify-content: center; font-size: .76rem; padding: .72rem .6rem; white-space: nowrap; }
  .hero-badges { flex-wrap: wrap; gap: .4rem; }

  /* Section header */
  .section-header h2 { font-size: 1.6rem; }
  .section { padding: 2.25rem 0; }

  /* Categories — 2 col stays */
  .categories-grid { gap: .6rem; }
  .category-card { width: calc(50% - .6rem); padding: 1rem .55rem; }
  .category-icon { width: 42px; height: 42px; border-radius: 12px; }
  .category-card h4 { font-size: .75rem; }
  .category-card p { display: none; }

  /* Products — 2 col stays */
  .products-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .product-info { padding: .75rem .65rem; }
  .product-name { font-size: .78rem; }
  .price-current { font-size: .95rem; }
  .price-original, .price-off { font-size: .62rem; }
  .product-actions .btn { font-size: .75rem; padding: .55rem .75rem; }

  /* Why stats */
  .why-stats { gap: .55rem; }
  .why-stat { padding: .85rem .6rem; }
  .why-stat-number { font-size: 1.3rem; }
  .why-stat-label { font-size: .62rem; }
  .why-visual { padding: 1.75rem 1.25rem; }

  /* Bundle */
  .bundle-left, .bundle-right { padding: 1.5rem 1rem; }
  .bundle-products { flex-direction: column; gap: .5rem; }
  .bundle-title { font-size: 1.5rem; }
  .bundle-price-new { font-size: 1.6rem; }
  .bundle-product-card.bundle-product-center { transform: none; }

  /* Benefits */
  .benefit-item i { font-size: 1.1rem; }
  .benefit-item h4 { font-size: .75rem; }
  .benefit-item p { font-size: .68rem; }

  /* Certifications row */
  .certs-row { gap: .75rem; }
  .cert-item { font-size: .6rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-col:first-child { grid-column: unset; }
  .footer-col h4 { font-size: .68rem; margin-bottom: .4rem; }
  .footer-col a { font-size: .78rem; }
  .footer-bottom { font-size: .7rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: .65rem; }
  .footer-certifications { gap: .35rem; font-size: .6rem; text-align: center; justify-content: center; }

  /* Login */
  .login-box { padding: 1.5rem 1rem; }
  .login-tab { font-size: .78rem; }

  /* Forms */
  .form-control { padding: .65rem .9rem; font-size: .84rem; }
  .btn { padding: .65rem 1.25rem; font-size: .82rem; }
  .btn-lg { padding: .8rem 1.5rem; font-size: .88rem; }

  /* Admin */
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-table th, .admin-table td { font-size: .75rem; padding: .55rem .65rem; }

  /* Misc */
  .pagination { gap: .3rem; }
  .pagination a, .pagination .current { width: 32px; height: 32px; font-size: .78rem; }
  .flash { font-size: .82rem; padding: .75rem 1rem; }
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .55s ease forwards; }
.fade-up-1 { animation-delay: .08s; opacity: 0; }
.fade-up-2 { animation-delay: .18s; opacity: 0; }
.fade-up-3 { animation-delay: .28s; opacity: 0; }
.fade-up-4 { animation-delay: .38s; opacity: 0; }

/* ─── UTILITIES ──────────────────────────────────── */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.text-gold    { color: var(--gold); }
.text-forest  { color: var(--green); }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem} .mb-4{margin-bottom:2rem}
.d-flex{display:flex} .align-center{align-items:center} .gap-1{gap:.5rem} .gap-2{gap:1rem}
.flex-wrap{flex-wrap:wrap} .w-100{width:100%} .justify-between{justify-content:space-between} .justify-center{justify-content:center}

/* ─── CART BUTTON in product cards — defined in SHOP section above ─ */

/* ═══════════════════════════════════════════════════
   ACCOUNT SIDEBAR — Unified across all account pages
   ═══════════════════════════════════════════════════ */

/* Layout wrapper */
.acct-page-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem 1.25rem 5rem;
    align-items: start;
    box-sizing: border-box;
    width: 100%;
}

/* Sidebar */
.acct-sidebar {
    position: sticky;
    top: 90px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

/* Profile card at top of sidebar */
.acct-sidebar-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(160deg, var(--green-xlt) 0%, #fff 70%);
    border-bottom: 1px solid var(--border);
}
.acct-sidebar-bird {
    width: 40px; height: auto;
    filter: drop-shadow(0 2px 8px rgba(30,80,10,.2));
    margin-bottom: .6rem;
}
.acct-sidebar-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dk));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(61,140,48,.28);
    margin-bottom: .6rem;
}
.acct-sidebar-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .15rem;
}
.acct-sidebar-email {
    font-size: .7rem;
    color: var(--text-muted);
    word-break: break-all;
}

/* Nav links */
.acct-sidebar-nav {
    padding: .65rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.acct-sidebar-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem .85rem;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    transition: all .15s ease;
}
.acct-sidebar-link:hover {
    background: var(--green-xlt);
    color: var(--green-dk);
}
.acct-sidebar-link.active {
    background: var(--green);
    color: #fff;
}
.acct-sidebar-link i {
    width: 18px;
    text-align: center;
    font-size: .82rem;
    flex-shrink: 0;
}
.acct-sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: .3rem 0;
}
.acct-logout { color: #e53e3e !important; }
.acct-logout:hover { background: #fff5f5 !important; color: #c53030 !important; }
.acct-logout.active { background: #fff5f5 !important; color: #c53030 !important; }

/* Main content area */
.acct-main-content {
    min-width: 0;
}

/* ── MOBILE: handled in mobile-fixes.css ─────────────── */

/* ═══════════════════════════════════════════════════════════
   ACCOUNT MOBILE LAYOUT
   ═══════════════════════════════════════════════════════════ */

/* Mobile header — hidden on desktop */
.acct-mobile-header { display: none; }

/* ── Profile Banner ──────────────────────────────────────── */
.acct-mobile-banner {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: .85rem;
    padding: 1.4rem 1.25rem;
    border: 1.5px solid #e2edd0;
    box-shadow: 0 2px 12px rgba(39,102,32,.10);
}
.acct-mobile-banner-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(39,102,32,.06) 0%, transparent 65%);
    pointer-events: none;
}
.acct-mobile-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: .85rem;
}
.acct-mobile-avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dk));
    border: 2.5px solid #e2edd0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.acct-mobile-userinfo { flex: 1; min-width: 0; }
.acct-mobile-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .15rem;
}
.acct-mobile-email {
    font-size: .72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.acct-mobile-bird {
    width: 48px; height: auto;
    opacity: .7;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(39,102,32,.15));
}

/* ── Nav Grid ────────────────────────────────────────────── */
.acct-mobile-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1.1rem;
}
.acct-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .85rem .5rem .75rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: all .18s ease;
    position: relative;
    overflow: hidden;
}
.acct-mobile-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--item-color, #276620);
    opacity: 0;
    transition: opacity .18s ease;
}
.acct-mobile-nav-item:hover::before,
.acct-mobile-nav-item.active::before {
    opacity: .08;
}
.acct-mobile-nav-item.active {
    border-color: var(--item-color, #276620);
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.acct-mobile-nav-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--item-color, #276620) 10%, white);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    color: var(--item-color, #276620);
    transition: all .18s ease;
    position: relative; z-index: 1;
    flex-shrink: 0;
}
.acct-mobile-nav-item.active .acct-mobile-nav-icon {
    background: var(--item-color, #276620);
    color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.acct-mobile-nav-item span {
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-mid);
    text-align: center;
    line-height: 1.2;
    position: relative; z-index: 1;
    letter-spacing: .01em;
}
.acct-mobile-nav-item.active span {
    color: var(--item-color, #276620);
}

/* ── Show/Hide: handled in mobile-fixes.css ──────────────── */
/* Fallback for color-mix — older browsers */
.acct-mobile-nav-icon { background: var(--green-xlt); }

/* ── Small phones — 2-col nav grid ──────────────────────── */
@media (max-width: 380px) {
    .acct-mobile-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }
    .acct-mobile-nav-item { padding: .75rem .4rem .65rem; border-radius: 12px; }
    .acct-mobile-nav-icon { width: 36px; height: 36px; font-size: .85rem; border-radius: 10px; }
    .acct-mobile-nav-item span { font-size: .62rem; }
    .acct-mobile-banner { padding: 1.1rem 1rem; }
    .acct-mobile-avatar { width: 46px; height: 46px; font-size: 1.2rem; }
    .acct-mobile-name   { font-size: .9rem; }
    .acct-mobile-bird   { width: 38px; }
}

/* ═══════════════════════════════════════════════════════════════
   FLYING BIRD ANIMATION — appears on every page
═══════════════════════════════════════════════════════════════ */
@keyframes birdFly {
    0%   { transform: translateX(-120px) translateY(0px) scaleX(1); opacity: 0; }
    5%   { opacity: 1; }
    20%  { transform: translateX(20vw) translateY(-30px) scaleX(1); }
    40%  { transform: translateX(42vw) translateY(10px) scaleX(1); }
    60%  { transform: translateX(64vw) translateY(-20px) scaleX(1); }
    80%  { transform: translateX(86vw) translateY(5px) scaleX(1); }
    95%  { opacity: 1; }
    100% { transform: translateX(110vw) translateY(-10px) scaleX(1); opacity: 0; }
}

/* flying bird removed */

/* ═══════════════════════════════════════════════════════════════
   UNIFIED PAGE HERO — Contact-style green-gradient hero for all pages
   Replaces the old plain .page-hero style site-wide
═══════════════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--green-xlt) 0%, #fff 60%);
    border-bottom: 1px solid var(--green-lt);
    padding: 2.5rem 1rem 2rem;
    box-sizing: border-box;
}
.page-hero .container {
    max-width: 960px;
    margin: 0 auto;
}
.page-hero .breadcrumb {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .45rem;
    display: flex;
    gap: .35rem;
    align-items: center;
    flex-wrap: wrap;
}
.page-hero .breadcrumb a {
    color: var(--green);
    text-decoration: none;
    opacity: .75;
}
.page-hero .breadcrumb a:hover { opacity: 1; }
.page-hero .breadcrumb span:not(:first-child):not(:last-child) {
    opacity: .4;
}
/* Eyebrow label (shown when no breadcrumb) */
.page-hero .page-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .4rem;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    margin: .35rem 0 .3rem;
    letter-spacing: -.01em;
}
.page-hero p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
}
@media (max-width: 680px) {
    .page-hero { padding: 1.75rem 1rem 1.5rem; }
    .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ─── STANDALONE BREADCRUMB (outside .page-hero) ────────────── */
.breadcrumb {
    display: flex; align-items: center; gap: .35rem; flex-wrap: wrap;
    font-size: .75rem; color: var(--text-muted);
    padding: 1rem 0 .5rem;
}
.breadcrumb a {
    color: var(--forest); text-decoration: none; font-weight: 500;
    transition: color .15s;
}
.breadcrumb a:hover { color: var(--green-dk); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   ACCOUNT CONTENT — Stats, cards, form rows (shared across all
   account pages: profile, orders, wishlist, addresses)
═══════════════════════════════════════════════════════════════ */

/* Page-level section heading */
.acct-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 500;
    color: var(--ink); margin-bottom: 1.25rem;
}

/* Stats strip */
.acct-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
    margin-bottom: 1.25rem;
}
.acct-stat {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem .75rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all .18s ease;
}
.acct-stat:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212,165,32,.12);
    transform: translateY(-2px);
}
.acct-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 800;
    line-height: 1; margin-bottom: .25rem;
}
.acct-stat-lbl {
    font-size: .65rem; color: var(--text-muted);
    font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}

/* Main content card */
.acct-main {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.acct-main:last-child { margin-bottom: 0; }
.acct-main h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}
.acct-main h4 {
    font-size: .88rem; font-weight: 700;
    color: var(--ink); margin: 1.25rem 0 .75rem;
}
/* Also covers .account-main used by orders/addresses pages */
.account-main {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.account-main:last-child { margin-bottom: 0; }
.account-main h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}

/* 2-col form row */
.acct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Account page wrapper — adds top padding */
.acct-page-wrap > .acct-main-content { padding-top: 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .acct-stats { gap: .6rem; }
    .acct-stat { padding: .9rem .5rem; border-radius: 12px; }
    .acct-stat-num { font-size: 1.35rem; }
    .acct-stat-lbl { font-size: .6rem; }
    .acct-main, .account-main { padding: 1.1rem; border-radius: 12px; }
}
@media (max-width: 480px) {
    .acct-form-row { grid-template-columns: 1fr; gap: 0; }
    .acct-stats { gap: .5rem; }
    .acct-stat-num { font-size: 1.2rem; }
}
