/* ============================================================
   DAILY BOTANICS — SHARED STYLESHEET
   Applied on every page. Page-specific overrides live in
   a <style> block at the bottom of each individual HTML file.
   ============================================================ */

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

:root {
  --black:      #080c0a;
  --dark:       #0d1410;
  --card:       #111a14;
  --card-hover: #152018;
  --border:     #1e2e22;
  --green:      #22c55e;
  --green-dim:  #16a34a;
  --gold:       #d4a853;
  --white:      #f0f4f1;
  --muted:      #8a9e8e;
  --red:        #ef4444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  24px;
  --radius-pill:50px;

  --shadow:     0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
a { color: inherit; }
strong { font-weight: 700; }

/* ── UTILITY ────────────────────────────────────────────────── */
.center       { max-width: 1100px; margin: 0 auto; }
.text-center  { text-align: center; }
.hidden       { display: none !important; }

/* ── SECTION LABELS & HEADERS ───────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.7;
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announce {
  background: var(--green-dim);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.announce span { opacity: .8; margin: 0 12px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  background: rgba(8,12,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 38px;
  z-index: 99;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo em { color: var(--green); font-style: normal; }

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

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

.nav-cart {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  padding: 8px 4px;
}
.nav-cart:hover { color: var(--white); }
.nav-cart svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: 2px;
  right: -4px;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.empty { display: none; }

.nav-cta {
  background: var(--green);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.nav-cta:hover { background: #16c054; transform: scale(1.03); }

@media (max-width: 640px) { .nav-links { display: none; } }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 44px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #16c054; transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

.btn-cart {
  width: 100%;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  letter-spacing: -0.01em;
}
.btn-cart:hover { background: #16c054; transform: scale(1.02); }
.btn-cart:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; transform: none; }

/* ── PRODUCT CARDS ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .2s;
  position: relative;
}
.product-card:hover { border-color: rgba(34,197,94,0.4); transform: translateY(-4px); }
.product-card.featured { border-color: var(--green); }

.badge-sale {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  z-index: 2;
}
.badge-label {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: #000;
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px; border-radius: var(--radius-pill);
  z-index: 2;
}

.product-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: linear-gradient(135deg, #0d1a10 0%, #152418 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--border);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-info { padding: 20px; }
.product-brand {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--green); text-transform: uppercase; margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 8px;
}
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 2px; }
.review-count { font-size: 12px; color: var(--muted); margin-bottom: 12px; }

.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-sale {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white);
}
.price-orig { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.price-save {
  font-size: 12px; font-weight: 700; color: var(--green);
  background: rgba(34,197,94,0.1); padding: 3px 8px; border-radius: var(--radius-pill);
}

/* Flavor selector inside card */
.flavor-select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9e8e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.flavor-select:focus { border-color: rgba(34,197,94,0.5); }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 32px; border-right: 1px solid var(--border);
  flex: 1; min-width: 160px; justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; }
.trust-text { font-size: 13px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.trust-text strong { color: var(--white); display: block; font-size: 14px; }

/* ── COUNTDOWN BAR ──────────────────────────────────────────── */
.countdown-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px; text-align: center;
}
.countdown-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.countdown-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.countdown-digits { display: flex; gap: 8px; }
.digit-block { display: flex; flex-direction: column; align-items: center; }
.digit-block .num {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--white); min-width: 52px; text-align: center; padding: 8px 4px; line-height: 1;
}
.digit-block .lbl { font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }
.digit-sep { padding-top: 6px; font-size: 24px; color: var(--muted); }

/* ── WHY CARDS ──────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1100px; margin: 48px auto 0;
}
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; transition: border-color .2s;
}
.why-card:hover { border-color: rgba(34,197,94,0.3); }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1100px; margin: 48px auto 0;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
}
.t-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.t-quote { font-size: 15px; line-height: 1.7; margin-bottom: 20px; color: var(--white); }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dim), #0a3d20);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; }
.t-loc  { font-size: 12px; color: var(--muted); }
.verified { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 2px; }

/* ── STEPS / HOW IT WORKS ───────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 48px;
}
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
  color: var(--green); margin: 0 auto 20px;
}
.step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--green); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  font-size: 15px; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a   { max-height: 300px; padding-bottom: 20px; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.form-input, .form-select, textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus { border-color: rgba(34,197,94,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9e8e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── EMAIL CAPTURE ─────────────────────────────────────────── */
.email-form { display: flex; gap: 8px; max-width: 440px; margin: 28px auto 0; }
.email-form input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-family: var(--font-body); font-size: 15px;
  padding: 14px 18px; border-radius: var(--radius-md); outline: none;
  transition: border-color .2s;
}
.email-form input::placeholder { color: var(--muted); }
.email-form input:focus { border-color: rgba(34,197,94,0.5); }
.email-form button {
  background: var(--green); color: #000; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius-md); border: none;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.email-form button:hover { background: #16c054; }
.email-disclaimer { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ── WELCOME CODE BLOCK ─────────────────────────────────────── */
.welcome-code {
  background: rgba(212,168,83,0.1);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 14px 28px; text-align: center;
}
.welcome-code p  { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.welcome-code strong { font-family: var(--font-display); font-size: 28px; color: var(--gold); letter-spacing: .06em; }
.welcome-code span   { font-size: 13px; color: var(--muted); margin-left: 8px; }

/* ── DISCOUNT CODE INPUT ────────────────────────────────────── */
.discount-row { display: flex; gap: 8px; }
.discount-row input {
  flex: 1; background: var(--dark); border: 1px solid var(--border);
  color: var(--white); font-size: 14px; padding: 11px 14px;
  border-radius: var(--radius-md); outline: none; text-transform: uppercase;
  transition: border-color .2s; font-family: var(--font-body); letter-spacing: .04em;
}
.discount-row input:focus { border-color: rgba(34,197,94,0.5); }
.discount-row button {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: var(--radius-md);
  cursor: pointer; transition: border-color .2s, color .2s; white-space: nowrap;
}
.discount-row button:hover { border-color: var(--green); color: var(--green); }
.discount-msg { font-size: 13px; margin-top: 8px; }
.discount-msg.success { color: var(--green); }
.discount-msg.error   { color: var(--red); }

/* ── ORDER SUMMARY BOX ──────────────────────────────────────── */
.summary-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.summary-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.summary-line:last-child { border-bottom: none; }
.summary-line.total {
  font-size: 18px; font-weight: 700; color: var(--white); padding-top: 14px;
}
.summary-line.discount { color: var(--green); }
.summary-line.shipping-free .val { color: var(--green); }

/* ── CART ITEM ROW ──────────────────────────────────────────── */
.cart-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px; margin-bottom: 12px;
}
.cart-item-img {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  background: var(--dark); flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-brand { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; }
.cart-item-name  { font-size: 15px; font-weight: 600; margin: 2px 0 4px; }
.cart-item-flavor { font-size: 12px; color: var(--muted); }
.cart-item-price  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }

.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--dark); border: 1px solid var(--border);
  color: var(--white); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .2s; line-height: 1;
  flex-shrink: 0;
}
.qty-btn:hover { border-color: var(--green); color: var(--green); }
.qty-num { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.remove-btn {
  font-size: 12px; color: var(--muted); background: none; border: none;
  cursor: pointer; text-decoration: underline; transition: color .2s;
  padding: 0;
}
.remove-btn:hover { color: var(--red); }

/* ── AGE GATE ────────────────────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 999; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px 40px;
  max-width: 440px; width: 90%; text-align: center;
}
.age-gate-title { font-family: var(--font-display); font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.age-gate-sub   { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.age-buttons    { display: flex; gap: 12px; justify-content: center; }
.age-yes {
  background: var(--green); color: #000; font-weight: 700;
  font-size: 15px; padding: 14px 32px; border-radius: var(--radius-md);
  border: none; cursor: pointer; transition: background .2s;
}
.age-yes:hover { background: #16c054; }
.age-no {
  background: none; border: 1px solid var(--border); color: var(--muted);
  font-size: 15px; padding: 14px 32px; border-radius: var(--radius-md);
  cursor: pointer; transition: border-color .2s;
}
.age-no:hover { border-color: var(--white); color: var(--white); }

/* ── TOAST NOTIFICATION ─────────────────────────────────────── */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dim); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-pill);
  z-index: 300; opacity: 0; transition: opacity .3s, transform .3s;
  pointer-events: none; white-space: nowrap;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--red); }

/* ── STICKY MOBILE CTA ──────────────────────────────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(8,12,10,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 20px; z-index: 200;
  align-items: center; justify-content: space-between; gap: 12px;
}
@media (max-width: 680px) { .sticky-cta { display: flex; } }
.sticky-cta-text { font-size: 13px; color: var(--muted); }
.sticky-cta-text strong { color: var(--white); display: block; font-size: 15px; }
.sticky-cta a, .sticky-cta button {
  background: var(--green); color: #000; font-weight: 700;
  font-size: 14px; padding: 12px 20px; border-radius: var(--radius-pill);
  text-decoration: none; white-space: nowrap; border: none; cursor: pointer;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 40px 24px 80px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
}
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--white); }
.footer-logo em { color: var(--green); font-style: normal; }
.footer-disclaimer { font-size: 12px; color: var(--muted); max-width: 460px; line-height: 1.7; margin-top: 8px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); text-align: center;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}

/* ── HERO BADGE PULSE ───────────────────────────────────────── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  color: var(--green); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: blink 1.4s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ── SECTION SPACING HELPERS ────────────────────────────────── */
.section-pad  { padding: 80px 24px; }
.section-dark { background: var(--dark); }
.section-gradient { background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, transparent 60%); }
.section-divider { border-top: 1px solid var(--border); }

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state-icon { font-size: 56px; margin-bottom: 20px; }
.empty-state h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 12px; }
.empty-state p  { color: var(--muted); font-size: 15px; max-width: 340px; margin: 0 auto 28px; line-height: 1.7; }

/* ── LOADING SPINNER ─────────────────────────────────────────── */
.spinner {
  width: 24px; height: 24px; border: 2px solid var(--border);
  border-top-color: var(--green); border-radius: 50%;
  animation: spin .7s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PROGRESS BAR (shipping threshold) ─────────────────────── */
.progress-bar-wrap { background: var(--dark); border-radius: var(--radius-pill); height: 6px; overflow: hidden; margin: 8px 0; }
.progress-bar-fill { background: var(--green); height: 100%; border-radius: var(--radius-pill); transition: width .4s ease; }
