/* ============================================================
   Glowvé — Soft Reset landing page
   Hand-written CSS. Hex colors (not oklch) for max in-app
   WebView compatibility. Mobile-first.
   ============================================================ */

:root {
  --pink: #ff4d8d;
  --pink-dark: #e63974;
  --ink: #1a1a1a;
  --mint: #e2f5ee;
  --peach: #fff0e6;
  --yellow: #fff8d6;
  --forest: #1f4435;
  --muted: #f5f5f5;
  --muted-fg: #767676;
  --border: #ededed;
  --white: #fff;
  --radius: 12px;
  --radius-2xl: 20px;
  --radius-3xl: 24px;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
* { border-color: var(--border); }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* room for mobile sticky bar */
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { letter-spacing: -0.01em; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.section { padding-top: 64px; padding-bottom: 64px; }
.center { text-align: center; }
.label-cap { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); }
.muted { color: var(--muted-fg); }
.strike { text-decoration: line-through; color: var(--muted-fg); }

/* ---------- Announcement ticker ---------- */
.ticker { width: 100%; overflow: hidden; background: var(--forest); color: #fff; }
.ticker__track { display: flex; white-space: nowrap; padding: 9px 0; animation: ticker 38s linear infinite; }
.ticker__item { margin: 0 28px; font-size: 12px; font-weight: 500; letter-spacing: 0.02em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__row { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.header__logo { height: 28px; width: auto; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; height: 40px; width: 40px; border-radius: 999px; border: 0; background: transparent; }
.icon-btn:hover { background: var(--muted); }

/* ---------- Hero / Buy box ---------- */
.hero { padding-top: 24px; padding-bottom: 24px; }
.hero__grid { display: grid; gap: 28px; }

.gallery__main { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-3xl); background: var(--mint); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.gallery__thumb { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); border: 0; padding: 0; box-shadow: 0 0 0 2px transparent; transition: box-shadow .15s; background: var(--mint); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb[aria-current="true"] { box-shadow: 0 0 0 2px var(--pink); }

.buybox { display: flex; flex-direction: column; gap: 22px; }
.buybox h1 { font-size: 34px; font-weight: 600; line-height: 1.05; margin-top: 10px; }
.buybox__sub { margin-top: 14px; font-size: 16px; color: var(--muted-fg); max-width: 30rem; }
.rating-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14px; }
.stars { display: inline-flex; color: var(--pink); }
.stars svg { width: 16px; height: 16px; }

/* pack options */
.packs { display: flex; flex-direction: column; gap: 12px; }
.pack {
  position: relative; width: 100%; text-align: left;
  border: 2px solid var(--border); border-radius: var(--radius-2xl);
  padding: 16px; background: var(--white); transition: border-color .15s, background .15s;
}
.pack:hover { border-color: rgba(26,26,26,0.4); }
.pack[aria-pressed="true"] { border-color: var(--pink); background: #fff5f8; }
.pack__badge { position: absolute; top: -10px; left: 16px; border-radius: 999px; padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #fff; }
.pack__badge--pink { background: var(--pink); }
.pack__badge--ink { background: var(--ink); }
.pack__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pack__left { display: flex; align-items: center; gap: 12px; }
.radio { display: flex; height: 20px; width: 20px; align-items: center; justify-content: center; border-radius: 999px; border: 2px solid var(--border); flex-shrink: 0; }
.pack[aria-pressed="true"] .radio { border-color: var(--pink); }
.radio__dot { height: 10px; width: 10px; border-radius: 999px; background: var(--pink); display: none; }
.pack[aria-pressed="true"] .radio__dot { display: block; }
.pack__title { font-size: 16px; font-weight: 600; }
.pack__sub { font-size: 12px; color: var(--muted-fg); }
.pack__price { font-size: 18px; font-weight: 600; text-align: right; }
.pack__orig { font-size: 12px; }

/* CTA */
.btn-primary {
  display: block; width: 100%; border: 0; border-radius: 999px;
  padding: 16px 24px; text-align: center; font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--pink);
  transition: background .15s;
}
.btn-primary:hover { background: var(--pink-dark); }
.btn-primary:disabled { background: #bbb; pointer-events: none; }
.cta-note { text-align: center; font-size: 12px; color: var(--muted-fg); margin-top: 8px; }
.ship-nudge { text-align: center; font-size: 12px; font-weight: 600; color: var(--forest); margin-top: 6px; }

/* trust row */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; text-align: center; }
.trust__item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust__item svg { width: 20px; height: 20px; color: var(--pink); }
.trust__item span { font-size: 11px; font-weight: 500; line-height: 1.2; }

/* ---------- Stats (forest) ---------- */
.stats { background: var(--forest); color: #fff; }
.stats h2 { font-size: 34px; font-weight: 600; margin-top: 12px; }
.stats__kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); }
.stats__grid { display: grid; gap: 24px; margin-top: 44px; }
.stat-card { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); border-radius: var(--radius-3xl); padding: 28px; }
.stat-card__n { font-size: 48px; font-weight: 600; color: var(--pink); }
.stat-card__k { margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.stat-card__v { margin-top: 8px; font-size: 16px; color: rgba(255,255,255,0.9); }
.ba-grid { display: grid; gap: 24px; margin-top: 44px; }
.ba-card { border-radius: var(--radius-3xl); background: rgba(255,255,255,0.05); padding: 16px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-img { position: relative; overflow: hidden; border-radius: var(--radius-2xl); background: #fff; }
.ba-img img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.ba-tag { position: absolute; left: 12px; top: 12px; border-radius: 999px; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ba-tag--before { background: rgba(255,255,255,0.9); color: var(--ink); }
.ba-tag--after { background: var(--pink); color: #fff; }
.ba-cap { margin-top: 12px; text-align: center; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.fineprint { margin-top: 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.6); }

/* ---------- Section bg helpers ---------- */
.bg-mint { background: var(--mint); }
.bg-peach { background: var(--peach); }
.bg-yellow { background: var(--yellow); }
.bg-white { background: var(--white); }

/* ---------- How to apply ---------- */
.apply h2 { font-size: 30px; font-weight: 600; margin-top: 12px; }
.apply__grid { display: grid; gap: 24px; margin-top: 44px; max-width: 56rem; margin-left: auto; margin-right: auto; }
.apply-card { border-radius: var(--radius-3xl); background: #fff; padding: 28px; }
.apply-card__n { display: flex; height: 48px; width: 48px; align-items: center; justify-content: center; border-radius: 999px; background: var(--pink); color: #fff; font-size: 20px; font-weight: 700; }
.apply-card p { margin-top: 18px; font-size: 17px; }

/* ---------- Ingredients ---------- */
.ing h2 { font-size: 26px; font-weight: 600; margin-top: 12px; }
.ing__grid { display: grid; gap: 28px; margin-top: 44px; }
.ing__img { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-3xl); background: var(--peach); }
.ing__img img { width: 100%; height: 100%; object-fit: cover; }
.ing__tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.ing-tab { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 600; background: #fff; transition: all .15s; }
.ing-tab[aria-pressed="true"] { border-color: var(--pink); background: var(--pink); color: #fff; }
.ing-tab__n { display: flex; height: 20px; width: 20px; align-items: center; justify-content: center; border-radius: 999px; font-size: 10px; font-weight: 700; background: var(--muted); }
.ing-tab[aria-pressed="true"] .ing-tab__n { background: #fff; color: var(--pink); }
.ing__panel { margin-top: 24px; border-radius: var(--radius-3xl); background: var(--muted); padding: 28px; }
.ing__panel h3 { font-size: 22px; font-weight: 600; }
.ing__panel p { margin-top: 12px; color: rgba(26,26,26,0.8); }
.ing__full { margin-top: 24px; border: 1px solid var(--border); border-radius: var(--radius-2xl); }
.ing__full summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
.ing__full summary::-webkit-details-marker { display: none; }
.ing__full p { padding: 0 20px 20px; font-size: 12px; line-height: 1.7; color: var(--muted-fg); margin: 0; }

/* ---------- Timeline ---------- */
.timeline h2 { font-size: 34px; font-weight: 600; margin-top: 12px; }
.timeline__row { display: flex; gap: 20px; overflow-x: auto; margin-top: 44px; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.tl-card { min-width: 78%; scroll-snap-align: start; border-radius: var(--radius-3xl); padding: 28px; }
.tl-card__l { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); }
.tl-card h3 { font-size: 22px; font-weight: 600; margin-top: 12px; }
.tl-card p { margin-top: 8px; font-size: 14px; color: rgba(26,26,26,0.8); }

/* ---------- Reviews ---------- */
.reviews h2 { font-size: 34px; font-weight: 600; margin-top: 12px; }
.reviews__sub { margin-top: 14px; font-size: 16px; color: rgba(26,26,26,0.7); }
.review-summary { display: grid; gap: 24px; margin-top: 40px; border-radius: var(--radius-3xl); background: #fff; padding: 24px; }
.review-summary__avg { font-size: 48px; font-weight: 600; }
.histo { display: flex; flex-direction: column; gap: 6px; }
.histo__row { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.histo__bar { height: 8px; flex: 1; overflow: hidden; border-radius: 999px; background: var(--muted); }
.histo__fill { height: 100%; background: var(--pink); }
.photo-strip { display: flex; gap: 12px; overflow-x: auto; margin-top: 24px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.photo-fig { position: relative; width: 72%; flex-shrink: 0; overflow: hidden; border-radius: var(--radius-2xl); background: #fff; margin: 0; }
.photo-fig figcaption { position: absolute; bottom: 12px; left: 12px; right: 12px; border-radius: 999px; background: rgba(255,255,255,0.95); padding: 6px 12px; font-size: 11px; font-weight: 600; }

/* ---------- UGC video strip ---------- */
.ugc__h { font-size: 34px; font-weight: 600; margin-top: 12px; }
.ugc-strip { display: flex; gap: 12px; overflow-x: auto; margin-top: 36px; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.ugc-card {
  position: relative;
  width: 62%;
  flex-shrink: 0;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--mint);
  scroll-snap-align: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ugc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.ugc-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: opacity 0.3s ease;
}
/* video-wrap: opacity fade layer — video inside is natively 9:16 so object-fit cover works correctly */
.ugc-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.ugc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  background: #000;
}
.ugc-card.video-playing .ugc-video-wrap {
  opacity: 1;
}
.ugc-card.video-playing .ugc-poster {
  opacity: 0;
}
.ugc-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ugc-card:hover .ugc-card__play {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.35);
}
.ugc-card.video-playing .ugc-card__play {
  opacity: 0;
  transform: scale(0.8);
}
.review-grid { display: grid; gap: 20px; margin-top: 32px; }
.review-card { border-radius: var(--radius-3xl); background: #fff; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.review-card__head { display: flex; align-items: flex-start; gap: 12px; }
.avatar { display: flex; height: 40px; width: 40px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,77,141,0.1); font-weight: 700; color: var(--pink); }
.verified { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; background: var(--mint); padding: 2px 8px; font-size: 10px; font-weight: 600; color: var(--forest); }
.review-card h4 { margin-top: 12px; font-size: 16px; font-weight: 600; }
.review-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: rgba(26,26,26,0.85); }
.btn-loadmore { border: 2px solid var(--ink); background: transparent; border-radius: 999px; padding: 12px 32px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); transition: background .15s, color .15s; }
.btn-loadmore:hover { background: var(--ink); color: #fff; }

/* ---------- Routine ---------- */
.routine h2 { font-size: 30px; font-weight: 600; margin-top: 12px; }
.routine__grid { display: grid; gap: 20px; margin-top: 44px; }
.rp-card { overflow: hidden; border-radius: var(--radius-3xl); border: 1px solid var(--border); background: #fff; }
.rp-card__img { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.rp-card__img img { width: 100%; height: 100%; object-fit: cover; }
.rp-card__body { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 20px; }
.rp-card__step { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); }
.rp-card__name { margin-top: 4px; font-size: 18px; font-weight: 600; }
.rp-card__price { margin-top: 4px; font-size: 16px; font-weight: 600; }
.btn-ink { border: 0; border-radius: 999px; background: var(--ink); padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.bundle-bar { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; border-radius: var(--radius-3xl); background: var(--ink); padding: 24px; color: #fff; }
.bundle-bar__k { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); }
.bundle-bar__title { margin-top: 8px; font-size: 20px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 48rem; }
.faq h2 { font-size: 34px; font-weight: 600; margin-top: 12px; }
.faq__list { margin-top: 40px; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-size: 16px; font-weight: 600; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { width: 20px; height: 20px; flex-shrink: 0; transition: transform .2s; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__item p { padding-bottom: 20px; margin: 0; font-size: 15px; color: var(--muted-fg); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; }
.footer__row { display: flex; flex-direction: column; gap: 16px; padding: 48px 0; font-size: 14px; }
.footer__logo { height: 28px; width: auto; }
.footer a { color: var(--pink); font-weight: 600; }

/* ---------- Sticky bar (mobile) ---------- */
.sticky-bar { position: fixed; inset: auto 0 0 0; z-index: 50; border-top: 1px solid var(--border); background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.sticky-bar__row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; }
.sticky-bar__thumb { height: 44px; width: 44px; flex-shrink: 0; overflow: hidden; border-radius: 12px; }
.sticky-bar__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sticky-bar__info { min-width: 0; flex: 1; }
.sticky-bar__name { font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar__price { font-size: 14px; font-weight: 700; }
.sticky-bar__cta { border: 0; border-radius: 999px; background: var(--pink); padding: 12px 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; white-space: nowrap; }

/* ---------- Order modal (COD form) ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.modal__sheet {
  position: absolute; left: 0; right: 0; bottom: 0; max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 24px 24px 0 0; padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
}
.modal__grab { width: 40px; height: 4px; border-radius: 999px; background: var(--border); margin: 0 auto 16px; }
.modal__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.modal__head img { height: 48px; width: 48px; border-radius: 12px; object-fit: cover; }
.modal__title { font-size: 16px; font-weight: 700; }
.modal__sub { font-size: 13px; color: var(--muted-fg); }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px;
  font-size: 16px; font-family: inherit; background: #fff; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink); }
.field--error input, .field--error textarea, .field--error select { border-color: #e0245e; }
/* honeypot — kept off-screen rather than display:none so bots don't skip it */
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.field__err { display: none; font-size: 12px; color: #e0245e; margin-top: 4px; }
.field--error .field__err { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-summary { background: var(--muted); border-radius: 16px; padding: 14px 16px; margin: 8px 0 16px; font-size: 14px; }
.order-summary__line { display: flex; justify-content: space-between; padding: 3px 0; }
.order-summary__total { display: flex; justify-content: space-between; padding-top: 8px; margin-top: 6px; border-top: 1px solid var(--border); font-weight: 700; font-size: 16px; }
.modal__close { position: absolute; top: 16px; right: 16px; height: 32px; width: 32px; border: 0; border-radius: 999px; background: var(--muted); font-size: 18px; line-height: 1; }
.form-status { font-size: 13px; text-align: center; margin-top: 10px; min-height: 18px; }
.form-status--err { color: #e0245e; }
.thankyou { text-align: center; padding: 24px 8px; }
.thankyou__check { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--pink); }
.thankyou h3 { font-size: 22px; font-weight: 700; }
.thankyou p { margin-top: 8px; color: var(--muted-fg); font-size: 15px; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 999px; animation: spin .7s linear infinite; vertical-align: -3px; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .wrap { padding-left: 32px; padding-right: 32px; }
  .section { padding-top: 96px; padding-bottom: 96px; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .buybox h1 { font-size: 56px; }
  .stats h2, .timeline h2, .reviews h2, .faq h2 { font-size: 56px; }
  .apply h2, .ing h2, .routine h2 { font-size: 44px; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .apply__grid { grid-template-columns: 1fr 1fr; }
  .ing__grid { grid-template-columns: 1fr 1.2fr; align-items: center; }
  .timeline__row { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .tl-card { min-width: 0; }
  .review-summary { grid-template-columns: auto 1fr; align-items: center; gap: 40px; padding: 32px; }
  .photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .photo-fig { width: auto; }
  .ugc__h { font-size: 44px; }
  .ugc-card { width: 19%; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .routine__grid { grid-template-columns: repeat(3, 1fr); }
  .bundle-bar { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px; }
  .bundle-bar .btn-primary { width: auto; }
  .sticky-bar { display: none; }
  .modal__sheet { left: 50%; top: 50%; right: auto; bottom: auto; transform: translate(-50%,-50%); width: 460px; max-width: calc(100vw - 32px); border-radius: 24px; }
  .modal__grab { display: none; }
  .footer__row { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 16px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 60;
  transition: transform 0.2s, background-color 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
  color: #fff;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
  }
}

/* ---------- UGC Video Modal Player ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal[aria-hidden="false"] {
  display: flex;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9/16;
  background: #000;
  z-index: 10;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.video-modal__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.2s;
}
.video-modal__close:hover {
  background: rgba(255,255,255,0.4);
}
