/* ============================================================
   RED CLOVER — Design tokens
   Edit colors/spacing here; the whole page follows.
============================================================ */
:root {
  --maroon: #5e1420;        /* deep wine red — headings, footer */
  --red: #8c2332;           /* primary red — buttons, accents */
  --red-soft: #a8404f;
  --gold: #c0a062;          /* gold accents */
  --gold-soft: #e6d7b8;
  --cream: #faf6ef;         /* page background */
  --ivory: #fffdf8;         /* card background */
  --blush: #f5eae4;         /* alternate section background */
  --ink: #362a27;           /* body text */
  --muted: #6f6057;         /* secondary text (kept dark enough to read) */
  --line: #ebe1d3;          /* hairline borders */

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 20px;
  --shadow: 0 12px 32px rgba(94, 20, 32, 0.07);
  --container: 1140px;
}

/* ============================================================
   Base
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--maroon);
  line-height: 1.12;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h2.sm { font-size: clamp(1.5rem, 2.8vw, 1.9rem); }

p { margin: 0 0 1em; }
a { color: var(--red); }
img, svg { display: block; }
ul, dl { margin: 0; padding: 0; }
li { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }
.center { text-align: center; }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1em;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

section { padding: clamp(52px, 7vw, 84px) 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 15px 34px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-solid { background: var(--red); color: var(--ivory); }
.btn-solid:hover { background: var(--maroon); }

.btn-ghost {
  color: var(--maroon);
  border: 1px solid var(--gold);
  background: transparent;
}
.btn-ghost:hover { background: rgba(192, 160, 98, 0.12); }

.btn-light { background: var(--ivory); color: var(--maroon); }
.btn-light:hover { background: var(--gold-soft); }

.btn-sm { padding: 11px 24px; font-size: 0.78rem; }
.header-cta { white-space: nowrap; }

/* ============================================================
   Announcement bar + header
============================================================ */
.announce {
  background: var(--maroon);
  color: var(--gold-soft);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  overflow: hidden;
}
.announce-track { display: inline-flex; white-space: nowrap; }
.announce-copy { display: none; } /* the duplicate copy only exists for the mobile marquee loop */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--maroon);
  margin-right: auto;
}
.brand-mark { width: 26px; height: 26px; fill: var(--red); }
.brand-logo {
  width: 40px;
  height: 40px;
  /* the logo file has its own cream background — a circle makes it a clean mark */
  border-radius: 50%;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.brand-tag { display: none; }

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--red); }

/* Desktop nav hover dropdowns (Shop / Bundles) */
.site-nav { align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }
/* invisible bridge so moving the cursor to the menu doesn't drop the hover */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 18px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-align: left;
}
.nav-dropdown a:hover { background: var(--blush); color: var(--red); }
/* land dropdown targets below the sticky header */
.collection-group,
#bundles,
#sets { scroll-margin-top: 90px; }

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-right: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--maroon);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
/* animate into an X while the panel is open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-in mobile menu + backdrop */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 14, 0.44);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 60;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  padding: 18px 24px 32px;
  background: var(--cream);
  box-shadow: 2px 0 26px rgba(30, 10, 14, 0.18);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 61;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--maroon);
  cursor: pointer;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  display: block;
  padding: 17px 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--red); }
body.menu-open { overflow: hidden; }

/* ============================================================
   Hero
============================================================ */
.hero {
  background: linear-gradient(180deg, #f7efe6 0%, var(--cream) 100%);
  padding-bottom: 0;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 1.6em; }
.hero-eyebrow-top { display: none; } /* shown on mobile only */
.hero-sub { max-width: 440px; color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6rem; }

.hero-media { margin: 0; }

.hero-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1; /* source video is 720×720 */
  object-fit: cover;
  background: var(--blush);
}

.video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}
.video-controls button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(94, 20, 32, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.video-controls button:hover { background: var(--maroon); }
.video-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.video-controls #iconPlay { fill: var(--gold-soft); stroke: none; }
.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
}

/* The Red Clover Journey strip (inside What We Believe) */
.philosophy .values { margin-top: 2rem; }
.values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.6vw, 22px);
  border-top: 1px solid var(--line);
  padding: 22px 8px 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
/* Desktop: keep the 7-step journey on a single line */
@media (min-width: 641px) {
  .values { flex-wrap: nowrap; gap: clamp(14px, 2.2vw, 30px); letter-spacing: 0.14em; }
}

/* ============================================================
   Image placeholders — replace with real photos, keep the size.
============================================================ */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(120% 100% at 20% 0%, #fdfaf4 0%, #f1e6d8 55%, #e9d9c6 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ph-clover { width: 34%; max-width: 130px; aspect-ratio: 1; fill: var(--clover, var(--red)); opacity: 0.9; }
.ph-note {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px dashed rgba(138, 122, 114, 0.5);
  border-radius: 999px;
  padding: 4px 12px;
}
.ph-hero { aspect-ratio: 4 / 3.4; }

/* ============================================================
   Philosophy
============================================================ */
.philosophy { background: var(--ivory); text-align: center; }
.philosophy p { max-width: 620px; margin-left: auto; margin-right: auto; }
.philosophy em { font-style: italic; font-family: var(--font-display); font-size: 1.1em; }

/* ============================================================
   Product grid
============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}

/* Collection sub-sections (Bracelets / Necklaces) */
.collection-group + .collection-group { margin-top: clamp(36px, 5vw, 56px); }
.collection-title {
  text-align: center;
  font-size: clamp(1.45rem, 2.6vw, 1.8rem);
  margin-bottom: 0.15em;
}
.collection-note {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.6rem;
}

/* Desktop: bracelets and necklaces in one row of 3 each; the limited
   edition piece sits alone, centered. Below 1000px the auto-fill
   default takes over (mobile unchanged). */
@media (min-width: 1000px) {
  .grid-bracelets { grid-template-columns: repeat(3, 1fr); }
  .grid-necklaces { grid-template-columns: repeat(3, 1fr); }
  .grid-earrings { grid-template-columns: repeat(3, 1fr); }
  .grid-limited {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
  }
}

.product-card {
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(94, 20, 32, 0.11);
}

.product-card .ph { border-radius: 0; box-shadow: none; aspect-ratio: 1; }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--maroon);
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.product-body h3 { font-size: 1.4rem; margin-bottom: 0.25em; }
.product-intention {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6em;
}
.product-meaning {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.8em;
}
.product-aff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--red-soft);
  margin-bottom: 1em;
  flex: 1;
}
.product-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.25em;
}
.off-badge {
  background: var(--maroon);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 6px;
}
.product-anchor s {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration-thickness: 1px;
}
.product-price {
  font-family: "Plus Jakarta Sans", var(--font-body); /* test: SemiBold sans prices */
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.9em;
}
.product-note {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--maroon);
  background: var(--blush);
  border-radius: 999px;
  padding: 5px 12px;
  margin: -4px 0 12px;
}
/* Sold out (per card) — GCN necklace + Abundant Set until they restock */
.badge-soldout { background: var(--muted) !important; color: var(--ivory) !important; }
.sold-out img { filter: grayscale(0.7); opacity: 0.72; }
.note-soldout { background: #ece7e1; color: var(--muted); }
.btn-soldout {
  width: 100%;
  background: var(--muted);
  color: var(--ivory);
  cursor: not-allowed;
  opacity: 0.9;
}
.btn-soldout:hover { transform: none; background: var(--muted); }
.product-card .btn { width: 100%; }

/* ============================================================
   Bundles
============================================================ */
.bundles { background: var(--blush); }
/* Alignment bundles on cream so the blush "What Makes It Lucky" band
   between the product grid and here reads as its own distinct section. */
#bundles.bundles { background: var(--cream); }

/* Buy More Save More — table (like the original site) */
.bundle-table-wrap { max-width: 640px; margin: 0 auto; }

.bundle-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bundle-table th {
  background: var(--maroon);
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  text-align: left;
}
.bundle-table th:last-child, .bundle-table td:last-child { text-align: right; }
.bundle-table td {
  padding: 13px 22px;
  font-size: 1rem;
  border-top: 1px solid var(--line);
}
.bundle-table td:last-child {
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--red);
}
.bundle-table tr.featured td {
  background: rgba(192, 160, 98, 0.13);
  font-weight: 500;
}

/* Alignment Bundles */
.alignment { margin-top: clamp(48px, 7vw, 80px); }
.alignment-title {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  margin-bottom: 0.6em;
}

.alignment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.alignment-card {
  position: relative;
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bundle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--maroon);
  color: var(--ivory);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(94, 20, 32, 0.22);
}
.alignment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.alignment-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3000 / 1688;
  object-fit: cover;
  margin-bottom: 12px;
}
/* Sets: square flatlay photos + blush band so it separates from the
   cream Alignment section above it. Photo is click/tap to zoom. */
.set-img {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.set-img:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.sets { background: var(--blush); }
.alignment-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--maroon);
  margin: 0 0 0.2em;
}
.alignment-pair {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6em;
}
.alignment-meaning {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--red-soft);
  flex: 1;
  margin-bottom: 0.9em;
}
.alignment-price {
  font-family: "Plus Jakarta Sans", var(--font-body); /* test: SemiBold sans prices */
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1em;
}
.alignment-price s { color: var(--muted); font-size: 0.95rem; margin-right: 6px; }
.alignment-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   Daily Ritual
============================================================ */
.ritual { background: var(--cream); text-align: center; }

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}
.ritual-grid li {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
}
.ritual-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--maroon);
  margin-bottom: 0.4em;
}
.ritual-grid span { color: var(--muted); font-size: 1rem; }

@media (max-width: 720px) {
  .ritual-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   What Makes It Lucky (materials): reuses the ritual card look,
   only the 4-up grid is new (no existing 4-card grid to reuse).
============================================================ */
.lucky { background: var(--blush); text-align: center; }
.lucky-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lucky-grid li {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
}
.lucky-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--maroon);
  margin-bottom: 0.4em;
}
.lucky-grid span { color: var(--muted); font-size: 1rem; }
.lucky-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--red-soft);
  margin: 2.4rem 0 0;
}
@media (max-width: 900px) { .lucky-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .lucky-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lucky-grid li { padding: 20px 14px; }
  .lucky-grid strong { font-size: 1.1rem; }
  .lucky-grid span { font-size: 0.9rem; }
}

/* ============================================================
   Trust
============================================================ */
.trust { background: var(--maroon); padding: clamp(48px, 7vw, 72px) 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 26px;
  text-align: center;
}
.trust-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.trust-grid span { color: rgba(250, 246, 239, 0.82); font-size: 0.95rem; }

/* ============================================================
   Reviews
============================================================ */

/* Community lifestyle photo marquee (2 rows, opposite directions) */
.community-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* full-bleed out of the container */
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2.4rem;
  margin-bottom: 2.8rem;
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-ltr { animation: marquee-ltr 70s linear infinite; }
.marquee-rtl { animation: marquee-rtl 76s linear infinite; }
/* stop when hovered */
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  flex: 0 0 auto;
  width: 200px;
  height: 260px;
  margin-right: 12px; /* uniform spacing incl. across the loop seam */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(94, 20, 32, 0.08);
}
/* -50% = one full (un-duplicated) set, so the loop is seamless */
@keyframes marquee-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-ltr, .marquee-rtl { animation: none; }
}
@media (max-width: 640px) {
  .community-marquee { gap: 8px; margin-top: 1.8rem; margin-bottom: 2rem; }
  .marquee-track img { width: 128px; height: 168px; margin-right: 8px; border-radius: 11px; }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; }
.review-score .review-stars { font-size: 1.05rem; }

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.review-name { color: var(--maroon); font-weight: 500; }
.review-ordered {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-likes { color: var(--muted); margin-left: 10px; }
.review-text {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 12px 0 18px;
  flex: 1;
}
.review-meta { font-size: 0.92rem; color: var(--muted); }
.review-meta strong { color: var(--maroon); font-weight: 500; }
.review-verified { color: var(--gold); }

/* ============================================================
   Shipping
============================================================ */
.shipping { background: var(--ivory); }
.ship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 2.2rem 0 1.6rem;
}
.ship-grid > div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
}
.ship-grid dt {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.ship-grid dd {
  margin: 0;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon);
}
.ship-note { text-align: center; color: var(--muted); font-size: 1rem; }

/* ============================================================
   Final CTA
============================================================ */
.final-cta {
  background: linear-gradient(160deg, var(--maroon) 0%, #7a1c2b 100%);
  text-align: center;
}
.final-cta h2, .final-cta p { color: var(--cream); }
.final-cta p { opacity: 0.85; max-width: 460px; margin: 0 auto 2rem; }
.cta-clover { width: 44px; height: 44px; margin: 0 auto 18px; fill: var(--gold); }

/* ============================================================
   Join the Journey (newsletter)
============================================================ */
.join { background: var(--blush); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.join-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.join-form input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
}
.join-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.join-form input::placeholder { color: var(--muted); }

.join-msg {
  text-align: center;
  font-size: 0.95rem;
  color: var(--red);
  min-height: 1.5em;
  margin: 12px 0 0;
}

.join-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 2.4rem;
  text-align: center;
}
.join-perks strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--maroon);
}
.join-perks span { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 480px) {
  .join-form { flex-direction: column; }
}

/* ============================================================
   Footer
============================================================ */
.site-footer {
  background: #4a0f19;
  color: rgba(250, 246, 239, 0.8);
  padding: clamp(48px, 7vw, 72px) 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 42px;
}
.site-footer h3 {
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.site-footer nav a {
  display: block;
  color: rgba(250, 246, 239, 0.8);
  text-decoration: none;
  padding: 4px 0;
}
.site-footer nav a:hover { color: var(--gold-soft); }
.footer-brand .brand-mark { fill: var(--gold); width: 30px; height: 30px; margin-bottom: 12px; }
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 0 0 2px rgba(230, 215, 184, 0.35);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
.footer-tag { font-size: 0.85rem; opacity: 0.7; }

.partner-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-chips li {
  border: 1px solid rgba(230, 215, 184, 0.35);
  border-radius: 8px;
  padding: 6px 13px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.footer-legal {
  border-top: 1px solid rgba(230, 215, 184, 0.18);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0.6;
  padding: 20px 24px;
  margin: 0;
}

/* ============================================================
   Sticky mobile CTA
============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: none;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn { display: block; }
.sticky-cta.has-items { transform: none; } /* order summary is always visible */

/* Sticky cart summary bar (mobile) */
.cart-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--maroon);
  color: var(--cream);
  border: none;
  border-radius: 16px;
  padding: 11px 12px 11px 16px;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
}
.cart-bar-info { display: flex; flex-direction: column; min-width: 0; }
.cart-bar-info strong { font-size: 0.92rem; font-weight: 500; }
.cart-bar-info small { color: var(--gold-soft); font-size: 0.76rem; }
.cart-bar-cta {
  flex-shrink: 0;
  background: rgba(255, 253, 248, 0.13);
  border: 1px solid rgba(230, 215, 184, 0.45);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Per-card quantity stepper — mobile only (desktop keeps the plain button) */
.card-qty { display: none; }

/* ============================================================
   Floating cart button
============================================================ */
.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-soft);
  box-shadow: 0 10px 26px rgba(94, 20, 32, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cart-fab:hover { background: var(--red); transform: translateY(-2px); }
.cart-fab svg { width: 26px; height: 26px; }
.cart-fab.bump { animation: cart-bump 0.35s ease; }
@keyframes cart-bump {
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
}

/* ============================================================
   Cart / checkout modal
============================================================ */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(46, 20, 24, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal-overlay[hidden] { display: none; } /* keep display:flex from defeating `hidden` */

.modal {
  width: 100%;
  max-width: 540px;
  max-height: min(88vh, 780px);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(46, 20, 24, 0.4);
  overflow: hidden;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--maroon);
  flex-shrink: 0;
}
.modal-head h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0;
}
.modal-close {
  border: none;
  background: none;
  color: var(--gold-soft);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.modal-close:hover { color: var(--ivory); }

.modal-body { padding: 22px 24px 26px; overflow-y: auto; }

/* Cart view */
.cart-empty { text-align: center; color: var(--muted); padding: 28px 0 12px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--blush);
  flex-shrink: 0;
}
.cart-thumb.ph-mini {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-thumb.ph-mini svg { width: 30px; height: 30px; fill: var(--clover, var(--red)); }
.cart-info { flex: 1; min-width: 0; }
.cart-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--maroon);
  line-height: 1.25;
}
.cart-price { color: var(--muted); font-size: 0.92rem; }

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
}
.qty-stepper button {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: var(--maroon);
  font-size: 1.05rem;
  cursor: pointer;
}
.qty-stepper span { min-width: 22px; text-align: center; font-weight: 500; }

.cart-remove {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 6px;
}
.cart-remove:hover { color: var(--red); }

.cart-totals { padding: 16px 0 4px; }
.cart-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  padding: 3px 0;
}
.cart-totals .row.discount { color: var(--red); }
.cart-totals .row.total {
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--maroon);
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 10px;
}
.cart-hint { font-size: 0.88rem; color: var(--muted); text-align: center; margin: 8px 0 0; }

.modal-actions { display: grid; gap: 10px; margin-top: 18px; }
.modal-actions .btn { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Checkout form view */
.checkout-form { display: grid; gap: 12px; }
.checkout-form label.small {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: -6px;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
}
.checkout-form textarea { min-height: 74px; resize: vertical; }
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.checkout-form select:invalid { color: var(--muted); }

.geo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 520px) { .geo-row { grid-template-columns: 1fr; } }

.checkout-note {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin: 6px 0 0;
}
.checkout-note em { display: block; font-style: italic; margin-top: 4px; }
.checkout-msg { text-align: center; color: var(--red); min-height: 1.4em; font-size: 0.95rem; margin: 4px 0 0; }
.checkout-fine { font-size: 0.8rem; text-align: center; color: var(--muted); margin-top: 8px; }

/* Policy popups */
.policy-body { text-align: left; }
.policy-body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--maroon);
  margin: 1.2em 0 0.4em;
}
.policy-body h4:first-child { margin-top: 0; }
.policy-body p { font-size: 0.96rem; margin-bottom: 0.9em; }
.policy-body ul { margin: 0 0 0.9em 1.2em; }
.policy-body li {
  list-style: disc;
  font-size: 0.96rem;
  margin-bottom: 0.2em;
}
.policy-body a { color: var(--red); }

/* FAQ accordion (inside the policy popup) */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--maroon);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  margin: 0 2px;
  padding: 0 0 18px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Review order-photo thumbnails + lightbox */
.review-photos { display: flex; gap: 8px; margin: -4px 0 14px; }
.review-photo-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  width: fit-content;
}
.review-photo {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 3px 10px rgba(94, 20, 32, 0.08);
  transition: transform 0.2s ease;
}
.review-photo-btn:hover .review-photo { transform: scale(1.05); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(30, 12, 15, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 720px);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 20px;
  border: none;
  background: none;
  color: var(--gold-soft);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Product photo → clickable, with a small "expand" cue */
.product-media { position: relative; cursor: pointer; }
.pd-zoom-cue {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(94, 20, 32, 0.16);
  transition: background 0.2s ease;
}
.product-media:hover .pd-zoom-cue { background: var(--ivory); }
.pd-zoom-cue svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--maroon);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Product detail popup */
.pd-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.pd-media img { width: 100%; height: auto; display: block; aspect-ratio: 1; object-fit: cover; }
.pd-media .ph { border-radius: 0; box-shadow: none; }
.pd-intention { text-align: center; margin-bottom: 0.4em; }
.pd-aff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--red-soft);
  text-align: center;
  margin-bottom: 0.9em;
}
.product-detail-modal .product-anchor,
#productModalBody .product-anchor { justify-content: center; }
.pd-price {
  text-align: center;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-weight: 600;
  margin-bottom: 1.2em;
}

.pd-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
}
.pd-specs th {
  text-align: left;
  vertical-align: top;
  width: 30%;
  padding: 11px 14px 11px 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--line);
}
.pd-specs td {
  padding: 11px 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.pd-specs tr:first-child th,
.pd-specs tr:first-child td { border-top: none; }

.pd-buy {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 10px;
}
.pd-buy .card-qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  padding: 0 4px;
  flex-shrink: 0;
}
.pd-buy .card-qty button {
  width: 38px;
  height: 100%;
  min-height: 44px;
  border: none;
  background: none;
  color: var(--maroon);
  font-size: 1.15rem;
  cursor: pointer;
}
.pd-buy .card-qty span { min-width: 24px; text-align: center; font-weight: 500; }
.pd-buy .btn { flex: 1; }
.pd-browse { width: 100%; }

/* Messenger confirmation button (order success view) */
.btn-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.btn-messenger svg {
  width: 18px;
  height: 18px;
  fill: var(--ivory);
  flex-shrink: 0;
}

/* Success view */
.order-success { text-align: center; padding: 26px 6px 12px; }
.order-success .cta-clover { fill: var(--red); margin-bottom: 14px; }
.gcash-qr {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 16px auto 6px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gcash-qr-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px auto 10px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--maroon);
  background: none;
  border: 1px solid var(--maroon);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.gcash-qr-save:hover { background: var(--maroon); color: var(--ivory); }
.order-success h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--maroon);
  margin: 0 0 0.4em;
}
.order-success p { color: var(--muted); }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-top: 28px; }
  .ph-hero { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }        /* landing page: sections reachable by scroll + CTAs */
  .nav-toggle { display: flex; }      /* hamburger opens the slide-in panel */
  .brand-name { font-size: 1.15rem; }
  /* keep the logo; shrink the header CTA so it fits without cramping */
  .site-header { gap: 10px; padding: 12px 14px; }
  .header-cta { padding: 8px 13px; font-size: 0.7rem; letter-spacing: 0.08em; }

  /* Trust: center the lone last card (Satisfaction Guarantee) */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid li:last-child { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 1; }
  .sticky-cta { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  body { padding-bottom: 74px; }      /* room for sticky CTA */
  .cart-fab { bottom: 88px; right: 16px; } /* sit above the sticky CTA bar */

  /* ---- Mobile-only optimizations (desktop untouched) ---- */
  section { padding: 42px 0; }

  .announce {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 8px 14px;
  }

  /* Long card stacks become swipeable carousels (with next-card peek) */
  .product-grid,
  .alignment-grid,
  .review-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-grid::-webkit-scrollbar,
  .alignment-grid::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar { display: none; }

  .product-card,
  .alignment-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  /* bundles: land on the first card (Prosperity) instead of the middle one */
  .alignment-card { scroll-snap-align: start; }
  .alignment-grid { scroll-padding-left: 2px; }
  .review-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .collection-note { margin-bottom: 1.2rem; }

  /* tighter table */
  .bundle-table th { padding: 12px 16px; }
  .bundle-table td { padding: 11px 16px; font-size: 0.94rem; }
  .bundle-table td:last-child { font-size: 1.04rem; }

  .hero-quote { font-size: 0.95rem; }
  .video-controls button { width: 38px; height: 38px; }

  /* Announcement bar scrolls left → right at a readable pace */
  .announce { padding: 9px 0; }
  .announce-track {
    display: flex;
    width: max-content;
    animation: announce-ltr 16s linear infinite;
  }
  .announce-copy { display: inline; }

  /* Tagline above the hero video; slightly larger headline (+2pt) */
  .hero { padding-top: 18px; }
  .hero-inner { gap: 16px; }
  .hero-eyebrow-top {
    display: block;
    order: -2; /* above the video (which is order -1) */
    text-align: center;
    margin: 0 0 2px;
  }
  .hero-eyebrow-desktop { display: none; }
  .hero h1 { font-size: 2.56rem; }

  /* Compact side-by-side product cards (like the reference mock) */
  .product-card { flex: 0 0 46%; }
  .product-meaning,
  .product-aff { display: none; }
  .product-body { padding: 12px 12px 14px; }
  .product-intention { font-size: 0.62rem; letter-spacing: 0.14em; margin-bottom: 0.4em; }
  .product-body h3 { font-size: 1.02rem; margin-bottom: 0.3em; flex: 1; }
  .product-anchor { gap: 5px; flex-wrap: wrap; margin-bottom: 0.15em; }
  .off-badge { font-size: 0.58rem; padding: 2px 7px; }
  .product-anchor s { font-size: 0.7rem; }
  .product-price { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5em; }
  .grid-limited { justify-content: center; }
  .badge { top: 8px; left: 8px; font-size: 0.6rem; padding: 4px 9px; }
  .product-card .btn-sm { padding: 9px 10px; font-size: 0.72rem; }

  .card-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: fit-content;
    margin: 0 auto 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--ivory);
    padding: 0 4px;
  }
  .card-qty button {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    color: var(--maroon);
    font-size: 1.05rem;
    cursor: pointer;
  }
  .card-qty span { min-width: 20px; text-align: center; font-weight: 500; font-size: 0.95rem; }

  /* the sticky summary bar replaces the floating cart button on mobile */
  .cart-fab { display: none; }
}

/* Mobile announcement marquee (moves left → right) */
@keyframes announce-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ===== Trio-promo announcement bar (Sep 9–15) ===== */
.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: linear-gradient(90deg, #5e1420, #7a1a2b);
  color: var(--ivory);
  padding: 8px 44px 8px 16px;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
}
.promo-bar-msg {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--ivory);
  text-decoration: none;
}
.promo-bar-msg strong { color: var(--gold-soft); font-weight: 600; }
.promo-bar-clover { font-size: 1rem; }
.promo-bar-cta {
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  white-space: nowrap;
}
.promo-bar-x {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 4px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.promo-bar-x:hover { opacity: 1; }
@media (max-width: 620px) {
  .promo-bar { gap: 8px; padding: 7px 36px 7px 12px; font-size: 0.72rem; }
  .promo-bar-cta { display: none; }
}
