/* ============================================================
   THE NURSERY GREEN — Complete Redesign 2026
   Premium Plant E-commerce
   Fonts: Plus Jakarta Sans (body) + Playfair Display (headings)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #FAF9F6;
  color: #1E1E1E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Design Tokens ---- */
:root {
  --primary:    #0B6E4F;
  --primary-dk: #064A35;
  --primary-lt: #10925F;
  --accent:     #E8683F;
  --accent-lt:  #FFF0EB;
  --warm:       #C8956C;
  --cream:      #FAF9F6;
  --sand:       #F3EDE4;
  --offwhite:   #FFFFFF;
  --charcoal:   #1E1E1E;
  --text:       #3A3A3A;
  --muted:      #7A7A7A;
  --border:     #E5E0D8;
  --light-green:#ECF5EC;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-full: 100px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
  --shadow-glow: 0 0 40px rgba(11,110,79,0.12);

  /* Legacy tokens kept for the community page stylesheet. */
  --primary-green: var(--primary);
  --deep-forest: var(--primary-dk);
  --text-dark: var(--charcoal);
  --text-light: var(--muted);
  --card: var(--offwhite);
  --border-gray: var(--border);
  --light-gray: #F5F7F3;
  --accent-lime: #B1F24B;
  --accent-amber: #F6AD37;
  --shadow: var(--shadow-sm);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1220px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================================
   NOTIFICATION BAR
   ============================================================ */
.notification-bar {
  background: var(--charcoal);
  color: #D4D4D4;
  text-align: center;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}
.notification-bar p { margin: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(11,110,79,0.12);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dk);
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.search-bar {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 18px;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,110,79,0.10);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--charcoal);
  padding: 11px 0;
}
.search-bar input::placeholder { color: var(--muted); }
.search-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  color: var(--primary);
  padding: 0;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-icons a, .nav-icons button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-icons a:hover, .nav-icons button:hover { background: var(--light-green); color: var(--primary); }
.nav-icons a span:first-child, .nav-icons button span:first-child { font-size: 18px; }
.login-btn { background: var(--primary) !important; color: var(--offwhite) !important; border-radius: var(--radius-full) !important; }
.login-btn:hover { background: var(--primary-lt) !important; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 6px;
  background: var(--accent);
  color: var(--offwhite);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Membership sub-bar */
.subscription-header-bar {
  background: var(--light-green);
  border-top: 1px solid rgba(11,110,79,0.10);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--primary-dk);
  flex-wrap: wrap;
}
.subscription-header-bar p { margin: 0; }
.subscription-header-actions { display: flex; gap: 10px; }
.join-membership-btn {
  background: var(--accent);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 7px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), transform var(--transition);
}
.join-membership-btn:hover { background: #d15a34; transform: translateY(-1px); }
.membership-required {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Category Menu */
.category-menu {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-menu::-webkit-scrollbar { display: none; }
.category-link {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  text-align: center;
  border-bottom: 2.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.category-link:hover { color: var(--primary); border-bottom-color: var(--primary); }
.category-link.active-offer { color: var(--accent); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero-shell {
  background: linear-gradient(170deg, #E8F5EC 0%, #FCF9F3 50%, #FFF8F3 100%);
  padding: 100px 28px 90px;
  overflow: hidden;
  position: relative;
}
.hero-shell::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,110,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-shell::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,104,63,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(232,104,63,0.15);
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

/* Buttons */
.btn-primary.solid {
  background: var(--primary);
  color: var(--offwhite);
  border-radius: var(--radius-full);
  padding: 15px 34px;
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(11,110,79,0.20);
}
.btn-primary.solid:hover {
  background: var(--primary-lt);
  border-color: var(--primary-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(11,110,79,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-radius: var(--radius-full);
  padding: 15px 34px;
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid var(--charcoal);
  transition: all var(--transition);
  display: inline-block;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--offwhite); transform: translateY(-2px); }

.hero-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.metric-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 150px;
  box-shadow: var(--shadow-xs);
}
.metric-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.metric-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-video-stage {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(11,110,79,0.14);
  box-shadow: 0 30px 70px rgba(8, 42, 26, 0.18);
  background: #173124;
}
.hero-stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 29, 21, 0.08) 0%, rgba(7, 29, 21, 0.22) 40%, rgba(7, 29, 21, 0.46) 100%),
    linear-gradient(120deg, rgba(4, 23, 16, 0.34) 0%, rgba(4, 23, 16, 0.08) 52%, rgba(232,104,63,0.10) 100%);
}
.hero-stage-content {
  position: absolute;
  inset: auto auto 18px 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  max-width: 280px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}
.hero-stage-copy {
  max-width: 240px;
}
.hero-stage-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
  margin-bottom: 10px;
}
.hero-stage-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--offwhite);
  margin-bottom: 6px;
}
.hero-stage-copy p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.hero-stage-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-stage-chips .pill {
  background: rgba(255,255,255,0.12);
  color: var(--offwhite);
  border-color: rgba(255,255,255,0.18);
  font-size: 9px;
  padding: 3px 8px;
}
.hero-stage-float {
  position: absolute;
  z-index: 2;
  width: 170px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 16px 40px rgba(7, 29, 21, 0.25);
  backdrop-filter: blur(8px);
}
.hero-stage-float-top {
  top: 24px;
  right: 22px;
  transform: rotate(3deg);
}
.hero-stage-float-bottom {
  right: 34px;
  bottom: 172px;
  transform: rotate(-5deg);
}
.hero-float-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
}
.hero-float-video,
.hero-float-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.hero-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.hero-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.hero-card-text { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.hero-price { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pill {
  background: var(--sand);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.hero-cta {
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.hero-cta:hover { background: var(--primary-lt); transform: translateY(-2px); }

.hero-stack {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stack-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}
.stack-label { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 2px; }
.stack-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   FEATURE TILES
   ============================================================ */
.feature-tiles {
  max-width: var(--max-w);
  margin: -48px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}
.tile {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
a.tile { cursor: pointer; }
.tile-icon {
  font-size: 32px;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  border-radius: var(--radius-md);
}
.tile h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tile p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   MEMBERSHIP SECTION
   ============================================================ */
.membership-shell {
  background: linear-gradient(145deg, #0B4A35 0%, #0B6E4F 50%, #0D7D5A 100%);
  padding: 80px 28px;
  margin: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.membership-shell::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.membership-shell::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

/* Header */
.membership-header {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  text-align: center;
}
.membership-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.membership-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--offwhite);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.membership-lede {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.membership-lede strong { color: rgba(255,255,255,0.95); }

/* Tier Cards Grid */
.membership-tiers {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tier-card {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 20px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.25);
}
.tier-card.tier-popular {
  border-color: var(--accent);
  background: rgba(232,104,63,0.10);
}
.tier-card.tier-best {
  border-color: #FFD700;
  background: rgba(255,215,0,0.08);
}
.tier-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
}
.tier-card.tier-best .tier-ribbon {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
}
.tier-icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}
.tier-duration {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--offwhite);
  margin-bottom: 6px;
}
.tier-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7CFC00;
  margin-bottom: 14px;
}
.tier-threshold {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.tier-threshold strong {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
}

/* Perks Row */
.membership-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.membership-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.perk-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.perk-icon { font-size: 18px; }

/* Actions */
.membership-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.membership-actions .btn-primary.solid { background: var(--accent); border-color: var(--accent); color: var(--offwhite); box-shadow: 0 4px 16px rgba(232,104,63,0.30); }
.membership-actions .btn-primary.solid:hover { background: #d15a34; border-color: #d15a34; }
.membership-actions .btn-ghost { color: var(--offwhite); border-color: rgba(255,255,255,0.35); }
.membership-actions .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
.membership-status { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 18px; }

/* ============================================================
   CATEGORY RAIL
   ============================================================ */
.category-rail {
  max-width: var(--max-w);
  margin: 80px auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rail-card {
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.rail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
  transition: width var(--transition);
}
.rail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.rail-card:hover::before { width: 8px; }
.rail-card:nth-child(2)::before { background: var(--accent); }
.rail-card:nth-child(3)::before { background: var(--warm); }
.rail-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.rail-card:nth-child(2) .rail-label { color: var(--accent); }
.rail-card:nth-child(3) .rail-label { color: var(--warm); }
.rail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.rail-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.rail-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.rail-link:hover { gap: 10px; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  padding: 0 28px;
}
.products-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Product badges */
.product-card::before {
  content: 'Best Seller';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--primary);
  color: var(--offwhite);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  box-shadow: 0 2px 8px rgba(11,110,79,0.25);
}
.product-card:nth-child(2)::before { content: 'Popular'; background: var(--accent); box-shadow: 0 2px 8px rgba(232,104,63,0.25); }
.product-card:nth-child(3)::before { content: 'New'; background: var(--warm); box-shadow: 0 2px 8px rgba(200,149,108,0.25); }
.product-card:nth-child(5)::before { content: 'Top Rated'; }
.product-card:nth-child(7)::before { content: 'Trending'; background: var(--accent); box-shadow: 0 2px 8px rgba(232,104,63,0.25); }
.product-card:nth-child(4)::before,
.product-card:nth-child(6)::before,
.product-card:nth-child(8)::before,
.product-card:nth-child(9)::before,
.product-card:nth-child(10)::before { content: none; }

.product-image {
  height: 220px;
  background: linear-gradient(180deg, var(--light-green) 0%, #F8FBF8 100%);
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.product-content { padding: 22px; }
.product-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag {
  background: var(--light-green);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(11,110,79,0.12);
}
.product-rating { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.pricing { margin-bottom: 16px; }
.sale-price { font-size: 24px; font-weight: 800; color: var(--primary); }
.original-price { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.add-btn {
  width: 100%;
  background: var(--charcoal);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.add-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,110,79,0.2);
}

/* ============================================================
   SUBSCRIPTION SECTION
   ============================================================ */
.subscription-section {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 28px;
  margin-bottom: 0;
}
.subscription-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.subscription-section p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.subscription-btn {
  background: var(--accent);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(232,104,63,0.25);
}
.subscription-btn:hover { background: #d15a34; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,104,63,0.3); }

/* ============================================================
   REWARDS SECTION
   ============================================================ */
.rewards-section {
  max-width: var(--max-w);
  margin: 80px auto;
  padding: 0 28px;
  text-align: center;
}
.rewards-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.rewards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.reward-item {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.reward-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}
.reward-item:nth-child(2)::before { background: var(--accent); }
.reward-item:nth-child(3)::before { background: var(--warm); }
.reward-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.reward-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.reward-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.rewards-btn {
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 15px 44px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(11,110,79,0.20);
}
.rewards-btn:hover { background: var(--primary-lt); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(11,110,79,0.25); }

/* ============================================================
   BLOG / GUIDES
   ============================================================ */
.blog-section {
  background: var(--cream);
  padding: 90px 28px;
  border-top: 1px solid var(--border);
}
.blog-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.blog-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-image {
  height: 220px;
  background: linear-gradient(135deg, #f4f8f2, #f3ede4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.blog-image-link {
  display: block;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.blog-card:nth-child(2) .blog-image { background: linear-gradient(135deg, #fff2e8, #f3ede4); }
.blog-card:nth-child(3) .blog-image { background: linear-gradient(135deg, #eef8ef, #fff3e0); }
.blog-content { padding: 26px; }
.blog-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-content p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.read-more:hover { color: var(--accent); gap: 8px; }

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.article-page {
  background: linear-gradient(180deg, #f4f8f2 0%, #faf9f6 24%, #faf9f6 100%);
}
.article-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 28px 90px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
.article-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 360px;
}
.article-hero-media {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.article-hero-copy {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf5 100%);
}
.article-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.article-hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.article-hero-copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.article-body {
  padding: 44px;
}
.article-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--charcoal);
  margin: 30px 0 14px;
}
.article-body p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.article-body ul,
.article-body ol {
  padding-left: 22px;
  color: var(--text);
  margin-bottom: 18px;
}
.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.article-note {
  margin: 26px 0;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--light-green);
  border: 1px solid rgba(11,110,79,0.10);
}
.article-note strong {
  color: var(--primary-dk);
}
.article-cta {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.article-cta p {
  margin: 0;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--charcoal);
  text-align: center;
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(11,110,79,0.12);
  pointer-events: none;
}
.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--offwhite);
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -0.02em;
}
.newsletter-section p { color: rgba(255,255,255,0.60); font-size: 16px; margin-bottom: 36px; position: relative; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  padding: 15px 26px;
  font-size: 14px;
  color: var(--offwhite);
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.40); }
.newsletter-form input:focus { border-color: var(--primary-lt); background: rgba(255,255,255,0.10); }
.newsletter-form button {
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.newsletter-form button:hover { background: var(--primary-lt); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.70);
  padding: 72px 28px 0;
  margin-bottom: 0;
}
.footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--offwhite);
  margin-bottom: 20px;
}
.footer-section ul { list-style: none; padding: 0; }
.footer-section p, .footer-section ul li, .footer-section a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color var(--transition);
}
.footer-section a:hover { color: var(--primary-lt); }
.social-links { display: flex; gap: 12px; margin-top: 6px; }
.social-links a {
  display: inline-block;
  padding: 6px 0;
  font-weight: 600;
  color: rgba(255,255,255,0.50) !important;
}
.social-links a:hover { color: var(--primary-lt) !important; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 0;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.40); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary-lt); }

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active,
.modal[style*="display: flex"],
.modal[style*="display:flex"] { display: flex; }
.modal-content {
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
}
.close-modal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.close-modal:hover { background: var(--border); }
.modal-body { padding: 28px; }
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Cart */
.cart-modal { max-width: 500px; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.empty-cart { text-align: center; padding: 40px 20px; color: var(--muted); }
.empty-cart p { margin-bottom: 8px; }
.empty-message { font-size: 13px; }
.cart-summary { flex-direction: column; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text); padding: 4px 0; }
.summary-row.total { font-size: 18px; font-weight: 800; color: var(--charcoal); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 8px; }
.checkout-btn {
  width: 100%;
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  transition: all var(--transition);
}
.checkout-btn:hover:not(:disabled) { background: var(--primary-lt); }
.checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.continue-shopping-btn {
  width: 100%;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--transition);
}
.continue-shopping-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* Checkout */
.checkout-modal { max-width: 680px; }
.checkout-body { display: flex; flex-direction: column; gap: 24px; }
.checkout-section h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--charcoal); margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-option { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); cursor: pointer; }
.radio-option input[type="radio"] { accent-color: var(--primary); }
.order-summary { display: flex; flex-direction: column; gap: 8px; }
.total-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text); padding: 4px 0; }
.total-row.total { font-size: 18px; font-weight: 800; color: var(--charcoal); border-top: 2px solid var(--border); padding-top: 12px; margin-top: 8px; }
.btn-secondary {
  background: var(--cream);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn-primary {
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--primary-lt); }

/* Confirmation */
.confirmation-modal { max-width: 500px; text-align: center; }
.confirmation-content { padding: 48px 28px; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.confirmation-content h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--charcoal); margin-bottom: 10px; }
.order-number { font-size: 16px; color: var(--primary); font-weight: 700; margin-bottom: 20px; }
.confirmation-details { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.confirmation-message { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.confirmation-message p { margin-bottom: 4px; }

/* Product Detail Modal */
.product-detail-modal { max-width: 860px; }
.product-detail-close { position: absolute; top: 16px; right: 16px; z-index: 10; }
.product-detail-container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.product-detail-images { padding: 28px; background: var(--cream); }
.main-image { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; }
.main-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-thumbnails { display: flex; gap: 8px; }
.thumbnail { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.thumbnail:hover { border-color: var(--primary); }
.product-detail-info { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.product-header h1 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--charcoal); margin-bottom: 10px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.rating-section { font-size: 14px; }
.rating { color: #F5A623; }
.reviews { color: var(--muted); font-size: 13px; margin-left: 4px; }
.product-tags { display: flex; gap: 6px; }
.price-section { padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.product-detail-price { font-size: 32px; font-weight: 800; color: var(--primary); }
.description-section h3, .benefits-section h3, .usage-section h3, .specifications-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.description-section p, .usage-section p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.benefits-section ul { list-style: none; padding: 0; }
.benefits-section li { font-size: 13px; color: var(--text); padding: 4px 0; padding-left: 20px; position: relative; }
.benefits-section li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.specs-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.specs-table td { padding: 6px 0; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { color: var(--muted); width: 40%; font-weight: 600; }
.specs-table td:last-child { color: var(--charcoal); }
.detail-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.add-to-cart-btn {
  width: 100%;
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.add-to-cart-btn:hover { background: var(--primary-lt); }

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 3001;
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: auto;
}
.chatbot-hidden { opacity: 0; transform: translateY(16px) scale(0.96); pointer-events: none; visibility: hidden; }
.chatbot-widget.chatbot-hidden,
.chatbot-toggle.chatbot-hidden { display: none; }
.chatbot-header {
  background: var(--primary);
  color: var(--offwhite);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header h3 { font-size: 15px; font-weight: 700; font-family: 'Playfair Display', serif; margin: 0; }
.chatbot-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--offwhite);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-messages { padding: 18px; min-height: 200px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chatbot-input-area {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.chatbot-input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.chatbot-input:focus { border-color: var(--primary); }
.chatbot-send {
  background: var(--primary);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.chatbot-send:hover { background: var(--primary-lt); }
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--offwhite);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  z-index: 3001;
  box-shadow: 0 6px 24px rgba(232,104,63,0.35);
  transition: all var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.chatbot-toggle:hover { background: #d15a34; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,104,63,0.40); }

/* ============================================================
   UTILITY
   ============================================================ */
.organic-section { padding-top: 80px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-video-stage { min-height: 460px; }
  .hero-stage-copy h3 { font-size: 30px; }
  .hero-stage-float-bottom { bottom: 188px; }
  .membership-tiers { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .product-detail-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-container { height: 62px; gap: 12px; padding: 0 16px; }
  .search-bar { display: none; }
  .logo { font-size: 16px; }
  .tagline { display: none; }
  .category-rail { grid-template-columns: 1fr; }
  .rewards-container { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 28px; }
  .article-shell { padding: 34px 16px 64px; }
  .article-hero { grid-template-columns: 1fr; }
  .article-hero-copy, .article-body { padding: 26px 22px; }
  .article-hero-media { min-height: 260px; }
  .subscription-header-bar { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .hero-shell { padding: 72px 16px 64px; }
  .hero-copy h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-metrics { gap: 10px; }
  .metric-pill { min-width: 130px; }
  .hero-video-stage { min-height: 420px; border-radius: 28px; }
  .hero-stage-content { inset: auto auto 14px 14px; padding: 14px 16px; max-width: 240px; }
  .hero-stage-copy h3 { font-size: 18px; }
  .hero-stage-float { width: 128px; padding: 8px; }
  .hero-stage-float-top { top: 14px; right: 14px; }
  .hero-stage-float-bottom { right: 16px; bottom: 154px; }
  .hero-stack { padding: 22px; }
  .newsletter-form { flex-direction: column; }
  .feature-tiles { margin-top: -30px; padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .products-section, .membership-shell, .subscription-section, .rewards-section, .blog-section, .newsletter-section { padding-left: 16px; padding-right: 16px; }
  .category-menu { padding: 0 16px; justify-content: flex-start; }
}

@media (max-width: 480px) {
  :root { --max-w: 100%; }
  .hero-shell { padding: 56px 14px 48px; }
  .hero-video-stage { min-height: 360px; }
  .hero-stage-content { gap: 8px; max-width: 210px; }
  .hero-stage-copy h3 { font-size: 16px; }
  .hero-stage-copy p { display: none; }
  .hero-stage-float { display: none; }
  .feature-tiles { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: -24px; }
  .tile { padding: 22px 18px; }
  .tile-icon { width: 44px; height: 44px; font-size: 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-image { height: 180px; }
  .product-content { padding: 16px; }
  .product-content h3 { font-size: 14px; }
  .sale-price { font-size: 20px; }
  .add-btn { padding: 10px 14px; font-size: 12px; }
  .chatbot-widget { width: calc(100vw - 32px); right: 16px; }
  .blog-image { height: 160px; }
  .notification-bar { font-size: 11px; padding: 8px 14px; }
  .membership-shell { padding: 60px 14px; }
  .membership-tiers { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tier-card { padding: 28px 14px 22px; }
  .tier-icon { font-size: 32px; }
  .tier-duration { font-size: 18px; }
  .membership-perks { gap: 16px; }
  .article-hero-copy h1 { font-size: 28px; }
  .article-body h2 { font-size: 24px; }
}
