/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #3D2B1F;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
select { font-family: inherit; }

/* ── Color Tokens (as CSS vars) ── */
:root {
  --brand: #7A1E3A;
  --brand-dark: #5C1529;
  --brand-light: #9B3A5A;
  --cta-green: #00C249;
  --cta-green-hover: #00A83E;
  --cta-green-border: rgba(0,163,61,0.8);
  --text: #3D2B1F;
  --text-muted: #6B5B4F;
  --page-bg: #fcfcfc;
  --section-bg: #F9F5F0;
  --card-bg: #FFFFFF;
  --border: #E8E0D8;
  --border-dash: #D4C9BE;
  --star-gold: #F5A623;
  --pink: #E8A0BF;
  --note-bg: #FFF5F8;
  --progress-bg: rgba(122,30,58,0.18);
  --progress-fill: #E8A0BF;
  --cta-dash: rgba(122,30,58,0.18);
  --savings-green: #2E7D32;
  --savings-bg: #E8F5E9;
}

/* ── Sticky Sale Bar ── */
.sticky-bar {
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  padding: 10px 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
@media (min-width: 768px) {
  .sticky-bar { font-size: 13px; gap: 16px; padding: 12px 16px; }
}

/* ── Countdown Timer ── */
.countdown { display: flex; align-items: center; gap: 4px; color: #fff; }
.countdown .unit { display: flex; flex-direction: column; align-items: center; }
.countdown .val {
  background: rgba(255,255,255,0.15); border-radius: 4px;
  padding: 2px 6px; font-size: 12px; font-weight: 700;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.countdown .lbl { font-size: 8px; letter-spacing: 0.5px; opacity: 0.6; margin-top: 2px; }
.countdown .sep { font-size: 12px; font-weight: 700; opacity: 0.5; }
@media (min-width: 768px) {
  .countdown .val { font-size: 14px; padding: 4px 8px; }
  .countdown .lbl { font-size: 9px; }
}

/* ── Progress Bar ── */
.progress-bar { height: 10px; background: var(--progress-bg); }
.progress-bar .fill {
  height: 100%; background: var(--progress-fill);
  transition: width 150ms ease-out; width: 0;
}

/* ── Publication Name ── */
.pub-name {
  padding: 20px 0; text-align: center;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 30px; letter-spacing: -1.2px;
  line-height: 50px; color: var(--brand); font-weight: 600;
}

/* ── Article Container ── */
.article { max-width: 848px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .article { padding: 0 24px; } }

/* ── Headline ── */
.headline {
  font-size: 1.4rem; font-weight: 700; line-height: 1.3;
  margin-bottom: 24px; color: var(--text);
}
.headline .accent { color: var(--brand-light); }
@media (min-width: 768px) { .headline { font-size: 2.25rem; margin-bottom: 32px; } }

/* ── Body Text ── */
.body-text {
  font-size: 1.1rem; font-weight: 500; line-height: 1.7;
  color: var(--text); margin-bottom: 20px;
}
.body-text.italic { font-style: italic; }

/* ── Note Box ── */
.note-box {
  padding: 14px 20px; margin-bottom: 24px;
  background: var(--note-bg); border-left: 3px solid var(--brand);
  font-size: 0.95rem; font-weight: 500; color: var(--text);
}
@media (min-width: 768px) { .note-box { font-size: 1rem; margin-bottom: 28px; } }

/* ── Author Card ── */
.author-card {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px; padding: 14px 20px;
  background: #f7f5f3; border-radius: 8px; width: fit-content;
}
.author-card .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #ddd; flex-shrink: 0;
}
.author-card .name { font-weight: 700; font-size: 15px; color: var(--text); }
.author-card .verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: #1DA1F2;
}
.author-card .role { font-size: 13px; font-weight: 500; color: var(--text-muted); }
@media (min-width: 768px) {
  .author-card { margin-bottom: 56px; }
  .author-card .avatar { width: 52px; height: 52px; }
  .author-card .name { font-size: 16px; }
  .author-card .verified { font-size: 14px; }
  .author-card .role { font-size: 14px; }
}

/* ── Reason Card ── */
.reason {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 48px; align-items: flex-start;
}
.reason .img-wrap {
  width: 100%; aspect-ratio: 1/1; background: #e5e5e5;
  display: flex; align-items: center; justify-content: center;
}
.reason .img-wrap span { color: #aaa; font-size: 14px; font-weight: 500; }
.reason h2 {
  font-size: 1.75rem; font-weight: 700; line-height: 1.2;
  margin-bottom: 16px; color: var(--text);
}
.reason p {
  font-size: 1.1rem; font-weight: 500; line-height: 1.7;
  color: var(--text); margin-bottom: 16px;
}
@media (min-width: 768px) {
  .reason {
    flex-direction: row; gap: 40px; margin-bottom: 64px;
  }
  .reason .img-wrap { width: 420px; flex-shrink: 0; }
  .reason h2 { font-size: 2rem; margin-bottom: 20px; }
}

/* ── CTA Block ── */
.cta-block {
  position: relative; margin: 40px 0; padding: 20px;
  border: 1px dashed var(--cta-dash); border-radius: 6px;
}
.cta-block .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 6px 16px; border-radius: 6px;
  white-space: nowrap;
}
.cta-block .inner {
  display: flex; flex-direction: column; gap: 24px;
  align-items: center; padding-top: 16px;
}
.cta-block .product-img {
  width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: 4px;
}
.cta-block .content { width: 100%; text-align: center; }
.cta-block .eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px;
}
.cta-block h3 {
  font-size: 1.25rem; font-weight: 700; line-height: 1.2;
  margin-bottom: 12px; color: var(--text);
}
.cta-block h3 .accent { color: var(--brand); }
.cta-block .subtitle {
  font-size: 14px; font-weight: 500; font-style: italic;
  color: var(--text-muted); line-height: 1.6; margin-bottom: 20px;
}
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: #fff;
  background: var(--cta-green); border: 2px solid var(--cta-green-border);
  border-radius: 10px; padding: 12px 24px;
  width: 100%; max-width: 340px;
  transition: transform 0.2s;
}
.cta-btn:hover { transform: scale(1.02); }
.cta-block .meta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 14px; font-weight: 600; margin-top: 16px;
  background: #f5f3f0; border-radius: 8px; padding: 12px 20px;
  color: var(--text);
}
.cta-block .meta .high { color: #D32F2F; font-weight: 700; }
.cta-block .guarantee {
  font-size: 14px; font-weight: 700; margin-top: 16px; color: var(--text);
}
@media (min-width: 768px) {
  .cta-block { margin: 56px 0; padding: 32px; }
  .cta-block .badge { font-size: 14px; padding: 6px 20px; }
  .cta-block .inner { flex-direction: row; gap: 32px; }
  .cta-block .product-img { width: 50%; }
  .cta-block h3 { font-size: 1.75rem; margin-bottom: 16px; }
  .cta-block .subtitle { font-size: 16px; margin-bottom: 28px; }
  .cta-btn { font-size: 20px; padding: 12px 32px; }
}

/* ── Stars ── */
.stars { display: flex; gap: 1px; }
.stars svg { width: 14px; height: 14px; }

/* ─────────────────────────────────── */
/* ── PRODUCT PAGE                  ── */
/* ─────────────────────────────────── */

.sticky-bar-50 {
  position: sticky; top: 0; z-index: 100;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
  padding: 8px 12px;
}
.sale-text { text-align: center; line-height: 1.4; }
.sale-title { font-weight: 800; font-size: 13px; }
.sale-detail { font-size: 10px; font-weight: 600; opacity: 0.9; display: block; }
@media (min-width: 768px) {
  .sticky-bar-50 { gap: 16px; padding: 10px 16px; }
  .sale-text { display: flex; align-items: center; gap: 8px; }
  .sale-title { font-size: 14px; }
  .sale-title::after { content: "|"; opacity: 0.6; margin-left: 8px; }
  .sale-detail { display: inline; font-size: 13px; }
}

.brand-bar {
  text-align: center; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 767px) { .brand-bar { padding: 6px 0; margin-bottom: -1px; } }
.brand-bar img { height: 36px; }

/* Secondary sticky */
.secondary-sticky {
  position: fixed; top: 50px; left: 0; right: 0; z-index: 90;
  background: var(--card-bg); height: 56px;
  display: none; align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.secondary-sticky-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 12px; display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.secondary-sticky.visible { display: flex; }
@media (min-width: 768px) { .secondary-sticky { height: 72px; } .secondary-sticky-inner { padding: 0 20px; } }
.secondary-sticky .left { display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .secondary-sticky .left { gap: 12px; } }
.secondary-sticky .thumb {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--section-bg); display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.secondary-sticky .thumb img { width: 36px; height: 36px; object-fit: contain; }
.secondary-sticky .title { font-weight: 700; font-size: 12px; color: var(--text); }
@media (min-width: 768px) { .secondary-sticky .title { font-size: 14px; } }
.secondary-sticky .rating { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }
.secondary-sticky .right { display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .secondary-sticky .right { gap: 16px; } }
.secondary-sticky .ship-info {
  display: none; align-items: center; gap: 6px; font-size: 13px; color: var(--text);
}
@media (min-width: 768px) { .secondary-sticky .ship-info { display: flex; } }
.secondary-sticky .ship-info .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cta-green); display: inline-block;
}
.btn-green {
  background: var(--cta-green); color: #fff; font-weight: 700;
  font-size: 12px; padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px; border: none;
}
@media (min-width: 768px) { .btn-green { font-size: 14px; padding: 10px 20px; } }

/* Hero grid */
.hero-bg { background: #F9F7F5; }
.hero-grid { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.hero-grid { margin-top: 0; }
@media (min-width: 768px) {
  .hero-grid { display: grid; grid-template-columns: 55% 45%; padding: 0 20px; }
}
.hero-left { padding: 0 0 4px; }
@media (min-width: 768px) { .hero-left { padding: 16px 20px 16px 0; } }
.hero-right { padding: 0 0 20px; }
@media (min-width: 768px) { .hero-right { padding: 20px 0 20px 20px; max-width: 520px; } }

.main-img {
  width: 100vw; margin-left: calc(-50vw + 50%); aspect-ratio: 4/3;
  background: var(--section-bg);
  border-radius: 0; border: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 10px; position: relative;
}
.main-img img { width: 100%; height: 100%; object-fit: cover; }
/* Supplement label badge */
.label-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: #fff; color: #321325;
  font-size: 12px; font-weight: 600; padding: 8px 14px;
  border-radius: 8px; display: flex; align-items: center; gap: 6px;
  z-index: 2; border: 1px solid rgba(0,0,0,0.1); cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.label-badge:hover { background: #fff; }

.main-img .stock-badge {
  position: absolute; top: 12px; right: 0;
  background: #E8A0BF; color: #000;
  font-size: 13px; font-weight: 700; padding: 8px 16px;
  border-radius: 8px 0 0 8px; display: flex; align-items: center; gap: 6px;
  z-index: 2;
}
.main-img .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1); z-index: 2;
}
.main-img .nav-btn.prev { left: 12px; }
.main-img .nav-btn.next { right: 12px; }
@media (min-width: 768px) {
  .main-img {
    width: 100%; margin-left: 0;
    border-radius: 8px; border: none;
  }
}

.thumb-strip { display: flex; gap: 6px; }
.thumb-strip .thumb {
  width: calc(16.66% - 7px); aspect-ratio: 1;
  background: #E8E0D8; border-radius: 4px;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; cursor: pointer; font-size: 9px; color: #999;
}
.thumb-strip .thumb.active { border: 2px solid var(--brand); background: var(--section-bg); }
.thumb-strip .thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Doctor rec */
.doctor-rec {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px; margin-top: 4px;
}
.doctor-rec .doctor-photo {
  width: 30px; height: 30px; border-radius: 50%; background: #d4b8a0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; overflow: visible;
}
.doctor-rec .doctor-photo .verified-check {
  position: absolute; bottom: -2px; right: -2px;
  width: 14px; height: 14px; display: flex;
  align-items: center; justify-content: center;
}
.doctor-rec > span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
@media (min-width: 768px) { .doctor-rec > span { font-size: 14px; } }

/* Product title */
.product-title {
  font-size: 18px; font-weight: 800; line-height: 1.15;
  color: var(--text); letter-spacing: -0.5px; margin: 0 0 8px;
}
@media (min-width: 768px) { .product-title { font-size: 24px; margin: 0 0 10px; } }
.title-badges { display: flex; gap: 6px; margin-bottom: 8px; }
.title-badge {
  font-size: 10px; font-weight: 700; color: #fff;
  background: #D33B4C; padding: 3px 10px; border-radius: 4px;
  letter-spacing: 0.3px; text-transform: uppercase;
}

/* Rating row */
.rating-row {
  display: flex; align-items: flex-start; gap: 6px;
  margin-bottom: 12px; flex-wrap: nowrap;
}
.rating-row img { flex-shrink: 0; width: 80px; height: auto; }
.rating-row .label { font-size: 12px; color: #000; font-weight: 400; line-height: 1.3; }
.rating-row .label strong { font-weight: 700; }
.mobile-only { display: inline; }
.desktop-only { display: none; }
@media (min-width: 768px) {
  .rating-row { align-items: center; flex-wrap: nowrap; }
  .rating-row img { width: 90px; }
  .rating-row .label { font-size: 13px; }
  .mobile-only { display: none; }
  .desktop-only { display: inline; }
}

/* Tab card container */
.tab-card {
  border: 1px solid #E0D1D5; border-radius: 12px;
  overflow: hidden; margin-bottom: 16px; background: #fff;
}
.tab-card-body { padding: 12px 16px 8px; }
@media (min-width: 768px) { .tab-card-body { padding: 14px 20px 10px; } }

/* Tab bar */
.tab-bar {
  display: flex; background: var(--section-bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; margin: 0;
}
.tab-bar button {
  flex: 1; font-size: 12px; font-weight: 700; color: #321325;
  padding: 8px 8px; background: none; border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap; transition: all 0.2s; text-align: center;
}
.tab-bar button.active {
  font-weight: 700; color: var(--text); background: #fff;
  border-bottom-color: var(--brand);
}
@media (min-width: 768px) { .tab-bar button { font-size: 14px; padding: 11px 14px; } }

/* Tab content */
.tab-content .item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0; font-size: 13px; line-height: 1.4; color: #000;
  font-weight: 500;
}
.tab-content .item strong { font-weight: 700; }
.tab-content .item .check-icon {
  width: 18px; height: 18px; border-radius: 50%; background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tab-content .item .check-icon svg { color: white; width: 10px; height: 10px; }
.tab-content .item > svg { flex-shrink: 0; }
@media (min-width: 768px) {
  .tab-content .item { font-size: 14px; gap: 10px; padding: 6px 0; }
  .tab-content .item .check-icon { width: 20px; height: 20px; }
}

/* Why GlowDrop icon grid */
.why-gd-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 8px 0;
}
.why-gd-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
}
.why-gd-item img { width: 50px; height: 50px; }
.why-gd-item span { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3; }
@media (min-width: 768px) {
  .why-gd-item img { width: 56px; height: 56px; }
  .why-gd-item span { font-size: 13px; }
}

/* Ship info */
.ship-free {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 0 4px; border-top: 1px solid var(--border);
  border-bottom: none; margin-bottom: 0; margin-top: 6px;
  font-size: 14px; color: var(--text);
}

/* Plan cards */
.plan-heading {
  font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 24px;
  text-align: center; display: flex; align-items: center; gap: 12px;
}
.plan-heading::before, .plan-heading::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.plan-cards { display: flex; gap: 8px; margin-bottom: 16px; }
.plan-card {
  flex: 1; border: 2px solid #E0D1D5; border-radius: 10px;
  padding: 10px 6px 10px; text-align: center; cursor: pointer;
  position: relative; background: #fff;
}
.plan-card.selected { border-color: #D33B4C; box-shadow: 0 2px 8px rgba(122,30,58,0.15); }

/* Glow Swatch */
.glow-swatch {
  width: 80%; margin: 8px auto 0; height: 22px;
  border-radius: 6px;
}
.glow-sub {
  font-size: 9px; font-weight: 600; color: #8B6F5E;
  margin-top: 4px; line-height: 1.2;
}

/* Badges */
.plan-card .plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px; white-space: nowrap;
  letter-spacing: 0.5px; text-transform: uppercase; z-index: 1;
}
.plan-badge-popular { background: #D33B4C; color: #fff; }
.plan-badge-deal { background: #D33B4C; color: #fff; }

/* Product image with quantity badge */
.plan-img-wrap {
  position: relative; width: 65px; height: 65px;
  margin: 4px auto 6px; display: flex;
  align-items: center; justify-content: center;
}
.plan-img { width: 100%; height: 100%; object-fit: contain; }
.plan-qty-badge {
  position: absolute; bottom: 0; right: -4px;
  width: 28px; height: 28px; border-radius: 50%;
  background: #321325; color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.plan-card .plan-label { font-weight: 700; font-size: 14px; color: var(--text); }
.plan-card .plan-price { font-weight: 700; font-size: 11px; color: var(--brand); margin-top: 2px; }
.plan-card .plan-price .each { font-size: 13px; font-weight: 500; }
@media (min-width: 768px) {
  .plan-img-wrap { width: 75px; height: 75px; }
  .plan-card .plan-label { font-size: 13px; }
  .plan-card .plan-price { font-size: 16px; }
}

/* Unlockable Gifts */
.gifts-section {
  margin: 16px 0 20px; text-align: center;
  background: #BF40600D; border: 1px dashed #BF4060;
  border-radius: 12px; padding: 20px 16px;
}
.gifts-title {
  font-size: 16px; font-weight: 800; color: #7a1e3a;
  letter-spacing: 0.5px; margin-bottom: 2px;
}
.gifts-subtitle { font-size: 13px; color: #321325; margin-bottom: 14px; }
.gifts-row {
  display: flex; gap: 12px;
}
.gift-item {
  flex: 1; text-align: center;
}
.gift-badge {
  background: #BE3C4C; color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; display: inline-block;
  margin-bottom: 8px; letter-spacing: 0.3px;
}
.gift-img-wrap {
  width: 100%; aspect-ratio: 1; border-radius: 10px;
  background: linear-gradient(135deg, #fdf2f4 0%, #f5e0e4 40%, #edcfd6 100%);
  display: flex; align-items: center;
  justify-content: center; padding: 10px; position: relative;
  overflow: hidden;
}
.gift-img-wrap img {
  width: 80%; height: 80%; object-fit: contain; position: relative; z-index: 1;
}
.gift-lock {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: #fff; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; z-index: 2;
}
.gift-lock span {
  font-size: 11px; font-weight: 600; color: #999;
}
.gift-lock svg { fill: #ccc; }
.gift-item.unlocked .gift-lock { display: none; }
.gift-item.unlocked .gift-badge { background: #BE3C4C; }
.gift-item.locked .gift-badge { background: #bbb; }
.gift-item.locked .gift-img-wrap {
  border: 1px solid #E0D1D5;
}
.gift-item.locked .gift-label { filter: blur(4px); }
.gift-label {
  font-size: 13px; font-weight: 700; color: #321325; margin-top: 6px;
  line-height: 1.2;
}
.gift-item.locked .gift-label { color: #aaa; }

/* Reserve timer */
.reserve-timer {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 12px;
}
.reserve-timer strong { color: var(--brand); }

/* Big CTA */
.big-cta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; height: 56px; background: var(--cta-green);
  border: 2px solid var(--cta-green-border);
  color: #fff; font-weight: 700; font-size: 17px; border-radius: 10px;
  transition: transform 0.2s; margin-bottom: 12px;
}
.big-cta:hover { transform: scale(1.02); }
.big-cta .old-price { text-decoration: line-through; opacity: 0.7; font-size: 15px; }
@media (min-width: 768px) {
  .big-cta { height: 64px; font-size: 20px; }
  .big-cta .old-price { font-size: 17px; }
}

/* Guarantee card */
.guarantee-card {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: #FFF4FD; border: 1px solid #E0D1D5; border-radius: 12px;
  margin-top: 12px; color: #fff;
}
.guarantee-badge { width: 70px; height: auto; flex-shrink: 0; }
.guarantee-text strong { font-size: 16px; font-weight: 700; color: #321325; display: block; margin-bottom: 4px; }
.guarantee-text p { font-size: 14px; line-height: 1.5; color: #321325; font-weight: 500; margin: 0; }

/* Testimonial */
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; margin-top: 16px;
}
.testimonial .stars { margin-bottom: 12px; }
.testimonial .reviewer {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.testimonial .reviewer-name { font-weight: 700; font-size: 16px; color: #321325; }
.testimonial .verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--savings-bg); color: var(--savings-green);
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 4px;
}
.testimonial p {
  font-size: 16px; line-height: 1.6; color: #321325; font-weight: 500;
  margin: 0; font-style: italic;
}
@media (min-width: 768px) {
  .testimonial { padding: 24px; }
  .testimonial .reviewer-name { font-size: 18px; }
  .testimonial .verified-badge { font-size: 13px; }
  .testimonial p { font-size: 16px; }
}
.testimonial-mobile { display: block; }
.testimonial-desktop { display: none; }
@media (min-width: 768px) {
  .testimonial-mobile { display: none; }
  .testimonial-desktop { display: block; }
}

/* Pricing table */
.pricing-table { max-width: 500px; margin: 40px auto; padding: 0 20px; }
.pricing-table .heading {
  text-align: center; font-size: 15px; font-weight: 700;
  color: var(--brand); margin-bottom: 16px; letter-spacing: 0.5px;
}
@media (min-width: 768px) { .pricing-table .heading { font-size: 17px; } }
.pricing-table .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 10px; border-bottom: 1px dashed var(--border-dash);
  font-size: 14px; font-weight: 700; color: var(--text);
}
@media (min-width: 768px) { .pricing-table .row { font-size: 15px; } }
.pricing-table .row.highlight { color: var(--brand); }
.pricing-table .row .right { display: flex; align-items: center; gap: 12px; }
.free-ship-badge {
  background: var(--cta-green); color: #fff; font-size: 9px;
  font-weight: 700; padding: 3px 10px; border-radius: 4px;
}
@media (min-width: 768px) { .free-ship-badge { font-size: 11px; } }

/* As Seen On */
.as-seen-on {
  background: #7A1E3A; padding: 14px 16px; text-align: center;
}
.as-seen-on .label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px; margin-bottom: 12px; text-transform: uppercase;
}
@media (min-width: 768px) { .as-seen-on .label { font-size: 11px; } .as-seen-on { padding: 18px 40px; } }
.as-seen-on .logos {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.as-seen-on .logos span { font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }
.as-seen-logo { height: 18px; width: auto; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .as-seen-on .logos { gap: 40px; } .as-seen-on .logos span { font-size: 16px; } .as-seen-logo { height: 22px; } }

/* Clinically Proven Results */
#i5migk-bg { background-color: #f9f7f5; }
#i5migk {
  display: flex; padding: 55px 40px; justify-content: space-between;
  align-items: center; text-align: center; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
#igjd8e {
  min-height: 50px; background-color: #fff; width: 50%;
  border-radius: 25px; padding: 25px 45px 60px;
  text-align: left; font-size: 22px; line-height: 26px;
  border: 2px solid #1d1128;
}
#ilw9ti {
  margin: 0; text-align: center; font-size: 32px;
  line-height: 50px; font-weight: 700;
}
#iydka3 {
  border-bottom: 1px solid #da3d0030; padding: 20px 0;
  display: flex; align-items: center;
}
#ichbzj {
  margin: 0 15px 0 0; color: #be3c4c; font-size: 64px;
  line-height: 64px; min-width: 170px; font-weight: 700; text-align: right;
}
#i70chj { margin: 0; font-weight: 600; }
#itoblj {
  border-bottom: 1px solid #da3d0030; padding: 20px 0;
  display: flex; align-items: center;
}
#iao8ss {
  margin: 0 15px 0 0; color: #be3c4c; font-size: 64px;
  line-height: 64px; min-width: 170px; font-weight: 700; text-align: right;
}
#iie5fl { margin: 0; font-weight: 600; }
#ixksln {
  border-bottom: 1px solid #da3d0030; padding: 20px 0;
  display: flex; align-items: center;
}
#ilexxv {
  margin: 0 15px 0 0; color: #be3c4c; font-size: 64px;
  line-height: 64px; min-width: 170px; font-weight: 700; text-align: right;
}
#ii0qlt { margin: 0; font-weight: 600; }
#i9u54l {
  padding: 20px 0; display: flex; align-items: center;
}
#ioauis {
  margin: 0 15px 0 0; color: #be3c4c; font-size: 64px;
  line-height: 64px; min-width: 170px; font-weight: 700; text-align: right;
}
#ibtv0c { margin: 0; font-weight: 600; }
#iezv3h {
  text-align: center; font-size: 12px; line-height: 12px;
  color: #8f8f8f; margin-top: 10px;
}

/* Proven Slider */
.proven-slider {
  width: 48%; max-width: 530px; position: relative;
}
.proven-slider img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Swiper overrides */
.swiper-button-prev, .swiper-button-next {
  width: 40px !important; height: 40px !important; border-radius: 50%;
  background: rgba(255,255,255,0.9); box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 16px !important; color: #333; font-weight: 700;
}
.swiper-pagination-bullet { background: #7A1E3A !important; }
.swiper-pagination-bullet-active { background: #7A1E3A !important; }
.main-img .swiper { border-radius: 8px; overflow: hidden; }
.main-img .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.main-img .slide-placeholder {
  width: 100%; aspect-ratio: 4/3; background: #E8E0D8;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #999;
}
#proven-swiper .swiper-pagination { position: relative; margin-top: 10px; }

@media (max-width: 991px) {
  #i5migk { display: block; }
  .proven-slider { width: auto; margin: 0 auto; max-width: 400px; }
  #igjd8e { width: 100%; max-width: 100%; margin: 50px 0 20px; }
}
@media (max-width: 479px) {
  #i5migk { padding: 30px 15px; display: flex; flex-direction: column-reverse; align-items: center; justify-content: center; max-width: 100%; }
  #igjd8e { font-size: 18px; line-height: 22px; margin: 15px 0 0; padding: 20px 20px 15px; }
  #ilw9ti { font-size: 22px; line-height: 30px; margin: 0 -15px; }
  #ichbzj { font-size: 48px; line-height: 40px; margin: 0 25px 0 0; min-width: 120px; }
  #iao8ss { font-size: 48px; line-height: 40px; margin: 0 25px 0 0; min-width: 120px; }
  #ilexxv { font-size: 48px; line-height: 40px; margin: 0 25px 0 0; min-width: 120px; }
  #ioauis { font-size: 48px; line-height: 40px; margin: 0 25px 0 0; min-width: 120px; }
  #iydka3 { padding: 15px 0; }
  #itoblj { padding: 15px 0; }
  #ixksln { padding: 15px 0; }
  #i9u54l { padding: 15px 0; }
  #iezv3h { font-size: 10px; }
  .proven-slider { max-width: 100%; }
}

/* Real Customers */
.real-customers { max-width: 1200px; margin: 0 auto; padding: 40px 16px; }
@media (min-width: 768px) { .real-customers { padding: 60px 20px; } }
.real-customers h2 {
  font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--text);
  text-align: center; margin-bottom: 8px; font-style: italic;
}
@media (min-width: 768px) { .real-customers h2 { font-size: 32px; } }
.real-customers .subtitle {
  text-align: center; font-size: 15px; color: var(--text-muted); margin-bottom: 32px;
}
@media (min-width: 768px) { .real-customers .subtitle { font-size: 16px; } }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.feature-card { background: none; border-radius: 0; padding: 0; text-align: center; }
.feature-card .img-placeholder {
  width: 100%; aspect-ratio: 4/3; background: #E8E0D8;
  border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #999;
}
.feature-card .card-header {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 8px;
}
.feature-card h3 { font-size: 20px; font-weight: 800; color: #321325; line-height: 1.3; }
.feature-card p { font-size: 16px; line-height: 1.6; color: #000; font-weight: 500; }

/* Tags bar */
.tags-bar {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 12px 0;
  white-space: nowrap;
}
.tags-bar .track {
  display: inline-flex; gap: 32px;
  animation: scrollTags 30s linear infinite;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
}
.tags-bar .track .dot { color: var(--brand); }
@keyframes scrollTags {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Why GlowDrop Wins */
.why-section { width: 100%; position: relative; }
@media (min-width: 768px) {
  .why-section { display: flex; flex-flow: row; gap: 4rem; }
}
.why-dark {
  background: var(--brand); color: #fff;
}
@media (min-width: 768px) {
  .why-dark {
    width: 50%;
    position: sticky; top: 0;
    height: 100dvh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-end;
  }
}
.why-dark-inner { padding: 40px 24px; }
@media (min-width: 768px) { .why-dark-inner { padding: 4rem 2.5rem; max-width: 38rem; width: 100%; } }
.why-dark h2 { font-size: 28px; font-weight: 700; line-height: 1.2; margin-bottom: 40px; }
@media (min-width: 768px) { .why-dark h2 { font-size: 36px; margin-bottom: 3rem; } }
.why-dark .benefit { display: flex; gap: 16px; margin-bottom: 2rem; }
.why-dark .benefit .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #FED3FA; border: 1.5px solid #C23E5B; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.why-dark .benefit h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.why-dark .benefit p { font-size: 16px; line-height: 1.6; opacity: 0.85; }
.why-light {
  background: #fff;
}
@media (min-width: 768px) {
  .why-light { width: 50%; display: flex; flex-direction: column; justify-content: flex-start; }
}
.why-light-inner { padding: 24px 16px; }
@media (min-width: 768px) { .why-light-inner { padding: 4rem 2.5rem; max-width: 38rem; width: 100%; } }
.why-light .img-wrap {
  width: 100%; aspect-ratio: 1; border-radius: 12px;
  margin-bottom: 1.5rem; overflow: hidden;
  border: 2px solid #000;
}
.why-light .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-light .img-placeholder-sq {
  width: 100%; aspect-ratio: 1; background: #E8E0D8; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #999;
}
.why-light .feature-row { margin-bottom: 1.5rem; }
.why-light .feature-row h2 {
  font-size: 24px; font-weight: 700; line-height: 1.3; color: #321325; margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .why-light .feature-row h2 { font-size: 30px; }
  .why-light .feature-row { text-align: center; margin-bottom: 1.5rem; }
}
.why-light .feature-row p {
  font-size: 16px; line-height: 1.7; color: #000; font-weight: 500;
}
@media (min-width: 768px) { .why-light .feature-row p { font-size: 17px; } }
@media (max-width: 767px) {
  .why-dark { position: static; height: auto; }
  .why-light { width: 100%; }
}

/* Reviews grid */
.reviews-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; }
@media (min-width: 768px) { .reviews-section { padding: 60px 20px; } }
.reviews-section .heading { font-size: 14px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 32px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.review-card .photo {
  width: 100%; aspect-ratio: 1; background: #E8E0D8;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #999;
}
.review-card .body { padding: 12px 14px; }
.review-card .meta { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.review-card .name { font-weight: 700; font-size: 15px; color: #321325; }
.review-card .vb {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--savings-bg); color: var(--savings-green);
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px;
}
.review-card p { font-size: 15px; line-height: 1.55; color: #321325; font-weight: 500; margin-top: 8px; }
.review-card .item-type { margin-top: 10px; font-size: 10px; color: #999; }

/* FAQ */
.faq-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; }
@media (min-width: 768px) {
  .faq-section { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding: 60px 20px; }
}
.faq-section .faq-left h2 {
  font-size: 24px; font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 12px;
}
@media (min-width: 768px) { .faq-section .faq-left h2 { font-size: 32px; } }
.faq-section .faq-left p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.faq-item { border-bottom: 1px dashed var(--brand); padding: 16px 0; }
.faq-item button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none;
  font-size: 16px; font-weight: 600; color: #321325;
  text-align: left; padding: 4px 0;
}
@media (min-width: 768px) { .faq-item button { font-size: 17px; } }
.faq-item .answer {
  font-size: 16px; line-height: 1.6; color: #321325; font-weight: 500;
  margin-top: 8px; display: none;
}
.faq-item.open .answer { display: block; }
.faq-item .chevron { transition: transform 0.2s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .chevron { transform: rotate(180deg); }

/* Bottom CTA */
.bottom-cta {
  max-width: 100%; padding: 48px 20px;
  text-align: center; background: #F9F7F5;
}
.bottom-cta h2, .bottom-cta p, .bottom-cta-btn {
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.bottom-cta h2 {
  font-size: 24px; font-weight: 800; color: #321325;
  line-height: 1.2; margin-bottom: 10px;
}
.bottom-cta p {
  font-size: 15px; color: #6B5B4F; margin-bottom: 24px; line-height: 1.5;
}
.bottom-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cta-green); border: 2px solid var(--cta-green-border);
  color: #fff; font-weight: 700; font-size: 18px;
  padding: 16px 40px; border-radius: 10px;
  text-decoration: none; transition: transform 0.2s;
}
.bottom-cta-btn:hover { transform: scale(1.02); }
@media (max-width: 767px) {
  .bottom-cta h2 { font-size: 20px; }
  .bottom-cta-btn { font-size: 16px; padding: 14px 32px; width: 100%; justify-content: center; }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border); padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 768px) { .footer { padding: 24px 20px; font-size: 13px; } }
.footer-disclaimer {
  font-size: 11px; line-height: 1.5; color: var(--text-muted); text-align: center;
  max-width: 600px; margin: 0 auto 8px; opacity: 0.8;
}
.footer .links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer .links a { color: var(--text-muted); }

/* ─────────────────────────────────── */
/* ── OFFER PAGE                    ── */
/* ─────────────────────────────────── */

.offer-page { background: #FEFCFA; min-height: 100vh; }

.title-bar {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 12px 16px;
  border-bottom: 1px solid var(--border); background: #FEFCFA;
}
@media (min-width: 768px) { .title-bar { padding: 16px 24px; } }
.title-bar .back-btn {
  position: absolute; left: 12px; background: none; border: none;
  display: flex; align-items: center; gap: 4px; color: var(--text);
  font-size: 13px; font-weight: 500; padding: 4px 8px;
}
@media (min-width: 768px) { .title-bar .back-btn { left: 24px; } }
.title-bar h1 { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
@media (min-width: 768px) { .title-bar h1 { font-size: 22px; } }

/* Offer layout — now handled inline in offer.html */

/* Order builder */
.order-builder { padding: 16px 16px 24px; }
@media (min-width: 768px) { .order-builder { padding: 24px 32px 32px; } }
.order-builder h2 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
@media (min-width: 768px) { .order-builder h2 { font-size: 18px; } }

.bottle-slot {
  border: 1px dashed var(--border-dash); border-radius: 8px;
  padding: 12px; display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; background: var(--card-bg);
}
@media (min-width: 768px) { .bottle-slot { padding: 16px; gap: 16px; } }
.bottle-slot .check-circle {
  width: 28px; height: 28px; border-radius: 50%; background: var(--cta-green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bottle-slot .slot-thumb {
  width: 52px; height: 52px; border-radius: 6px; background: var(--section-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.bottle-slot .slot-thumb img { width: 85%; height: 85%; object-fit: contain; }
.bottle-slot .selectors { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.bottle-slot .selectors label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  display: block; margin-bottom: 3px; letter-spacing: 0.3px;
}
.bottle-slot .selectors select,
.bottle-slot .selectors .supply-label {
  width: 100%; font-size: 14px; font-weight: 500; color: var(--text);
  padding: 7px 10px; border: 1px solid var(--border); border-radius: 6px;
  background: var(--card-bg);
}
.bottle-slot .selectors .supply-label { background: var(--section-bg); }
.bottle-slot .selectors > div { flex: 1; min-width: 100px; }

.collapsed-slot {
  border: 1px dashed var(--border-dash); border-radius: 8px;
  padding: 12px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px; background: var(--card-bg);
}
@media (min-width: 768px) { .collapsed-slot { padding: 16px; } }
.collapsed-slot .num-circle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border-dash);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--text-muted);
}
.collapsed-slot .slot-text { flex: 1; }
.collapsed-slot .slot-text .title { font-size: 14px; font-weight: 600; color: var(--text); }
@media (min-width: 768px) { .collapsed-slot .slot-text .title { font-size: 15px; } }
.collapsed-slot .slot-text .save { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.collapsed-slot .save-badge {
  background: #f1d744; color: #333; font-size: 11px; font-weight: 700;
  padding: 1px 6px; border-radius: 4px; white-space: nowrap;
}
@media (min-width: 768px) { .collapsed-slot .slot-text .save { font-size: 13px; } }
.collapsed-slot .plus-btn {
  width: 38px; height: 38px; border-radius: 8px; background: #7A1E3B;
  color: #fff; border: none; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s; cursor: pointer;
}
.collapsed-slot .plus-btn:hover { background: #5e1730; }

/* Motivation */
.motivation {
  display: flex; align-items: center; gap: 10px; padding: 14px 0; margin-top: 4px;
}
.motivation .mini-thumb {
  width: 36px; height: 36px; border-radius: 50%; background: var(--section-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.motivation .mini-thumb img { width: 28px; height: 28px; object-fit: contain; }
.motivation span { font-size: 14px; color: var(--text-muted); line-height: 1.4; }

/* Price summary */
.price-summary .save-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px;
}
.price-summary .save-row .label { font-size: 15px; font-weight: 700; color: var(--savings-green); }
.price-summary .save-row .badge {
  background: var(--savings-bg); color: var(--savings-green);
  font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 4px;
}
.price-summary .total-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px;
}
.price-summary .total-row .label { font-size: 16px; font-weight: 700; color: var(--text); }
.price-summary .total-row .prices { display: flex; align-items: center; gap: 8px; }
.price-summary .total-row .old { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }
.price-summary .total-row .new { font-size: 20px; font-weight: 700; color: var(--text); }
.price-summary .per-bottle { text-align: right; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.price-summary .reserve-text {
  font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 8px;
}
.price-summary .reserve-text .pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 12px;
  padding: 1px 6px; border-radius: 4px; min-width: 22px;
}
.price-summary .reserve-text .time { color: var(--brand); font-weight: 700; }

/* Offer CTA */
.offer-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 58px; background: var(--cta-green); color: #fff;
  font-weight: 700; font-size: 17px; border-radius: 10px;
  margin-top: 16px; transition: background 0.2s; border: none;
  letter-spacing: 0.3px; cursor: pointer;
}
.offer-cta:hover { background: var(--cta-green-hover); }
@media (min-width: 768px) { .offer-cta { height: 68px; font-size: 20px; } }

/* Trust badges */
.trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 14px; font-size: 14px; color: var(--text-muted);
}
@media (min-width: 768px) { .trust-badges { gap: 24px; } }
.trust-badges span { display: flex; align-items: center; gap: 4px; }

/* Trust section */
.trust-section { padding: 24px 16px 16px; }
@media (min-width: 768px) { .trust-section { padding: 32px 32px 24px; } }
.trust-section .divider-text {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.trust-section .divider-text .line { flex: 1; height: 1px; background: var(--border); }
.trust-section .divider-text span {
  font-size: 10px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap; text-align: center;
}
@media (min-width: 768px) { .trust-section .divider-text span { font-size: 11px; } }
.trust-feature { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.trust-feature .icon { flex-shrink: 0; }
.trust-feature h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 4px; line-height: 1.3; }
.trust-feature p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ─────────────────────────────────── */
/* ── INSIDE EVERY DROP (exact IDs)  ── */
/* ─────────────────────────────────── */

#i8bozg {
  color: #000;
  background-image: url(../images/drops/mask-group.webp);
  background-repeat: no-repeat; background-position: 0 0;
  background-attachment: scroll; background-size: cover;
}
#ij7vqv { display: block; max-width: 1360px; margin: 0 auto; padding: 50px 15px; }
#iv1qcv {
  margin: 0 auto 30px; font-size: 40px; line-height: 50px;
  text-align: center; width: 100%; font-weight: 700; max-width: 700px;
}
#iy94fr { font-size: 20px; line-height: 30px; font-weight: 500; margin: 0 0 12%; text-align: center; }
#isuq3f { display: block !important; justify-content: space-between; width: 100%; align-items: flex-start; }
#i4c1xw {
  display: flex; position: relative; flex-wrap: nowrap;
  margin: 0 0 45px; align-items: center; justify-content: space-between; width: 100%;
}
#i1qjpn {
  position: absolute; right: 82px; left: 0; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: center;
  max-width: 40%; top: -120px;
}
#i35r3j { display: block; max-width: 445px; }
#i4di09 { width: 50%; justify-content: flex-start; margin: 0; }
#i125a8 { display: flex; width: 40%; flex-direction: column; align-items: flex-end; justify-content: flex-end; }

/* Left rows */
#i438lx {
  margin: 0 0 50px; display: flex; align-items: center;
  justify-content: flex-start; width: 100%; padding: 0 20px 0 0;
}
#iavqli { display: flex; align-items: center; margin: 0; width: 100%; padding: 0 20px 0 0; }

/* Right rows */
#ihvawh {
  display: flex; justify-content: flex-end; margin: 2px 0 50px;
  max-width: 505px; padding: 0; align-items: center; width: 100%;
}
#ilmhus { display: flex; align-items: center; margin: 0; max-width: 505px; justify-content: flex-end; width: 100%; }

/* Circles - left */
#i83mr2, #icl52k { min-height: 50px; min-width: 35%; }
#i83mr2 { text-align: right; }
#iststx { width: 130px; }
#iix809 { width: 100%; height: auto; }
#iwcnpd { width: 100%; height: auto; }

/* Circles - right */
#i5uxym, #ig1ztl { min-height: 50px; min-width: 40%; }
#ig1ztl { text-align: left; }

/* Text blocks - left */
#i8s31j { flex: 1 0; background-image: url(../images/drops/line-4.png); background-repeat: no-repeat; background-position: left bottom; background-attachment: scroll; background-size: 300px 1px; margin: 0 0 0 20px; max-width: 40%; }
#ie80sr { flex: 1 0; padding: 0 0 20px; max-width: 300px; color: #321325; line-height: 22px; font-weight: 500; }
#imcnvf { max-width: 338px; display: none; width: 100%; height: 2px; }
#ikwfho { flex: 1 0; background-image: url(../images/drops/line-4.png); background-repeat: no-repeat; background-position: left bottom; background-attachment: scroll; background-size: 300px 1px; margin: 0 0 0 20px; max-width: 40%; }
#iaa3j6 { flex: 1 0; padding: 0 0 20px; max-width: 300px; color: #321325; line-height: 22px; font-weight: 500; }
#iwv65b { display: none; height: 2px; }

/* Text blocks - right */
#iay40w { flex: 1 0; background-image: url(../images/drops/line-7.png); background-repeat: no-repeat; background-position: right bottom; background-attachment: scroll; background-size: 300px 1px; margin: 0 20px 0 0; max-width: 50%; }
#ibhwp8 { flex: 1 0; padding: 0 0 20px; max-width: 300px; text-align: right; margin: 0 0 0 auto; font-weight: 500; color: #321325; line-height: 22px; }
#ih39sj { transform: rotateZ(180deg); height: 2px; display: none; }
#imxqv2 { flex: 1 0; background-image: url(../images/drops/line-7.png); background-repeat: no-repeat; background-position: right bottom; background-attachment: scroll; background-size: 300px 1px; margin: 0 20px 0 0; max-width: 51%; }
#i5dqsh { flex: 1 0; padding: 0 0 20px; max-width: 300px; text-align: right; margin: 0 0 0 auto; font-weight: 500; color: #321325; line-height: 22px; }
#iba9kh { display: none; transform: rotateZ(180deg); height: 2px; }

/* Ingredient names */
#ir0wti, #i91ax3, #i7q89i, #ix8lrk { font-weight: 700; display: block; margin: 0 0 15px; font-size: 16px; line-height: 22px; }

/* Trust bar */
#icn4cu {
  min-height: 55px; font-size: 20px; line-height: 30px; font-weight: 700;
  border: 1px solid #dfd2d5; border-radius: 10px; max-width: 750px;
  background-color: #fff4fd; padding: 11px 23px; display: flex;
  justify-content: space-between; margin: 0 auto; flex-wrap: wrap; position: relative;
}
#ipst8v { display: flex; align-items: center; justify-content: flex-start; margin: 0 5px 0 0; }
#ih508x, #i569vi { margin: 0 0 0 6px; }
#irtyo1 { display: flex; align-items: center; justify-content: flex-start; }
#i8mqwp { margin: 0 0 0 6px; }
#ifwh65 { display: flex; align-items: center; justify-content: flex-start; margin: 0 5px 0 0; }
@media (max-width: 767px) {
  #icn4cu {
    justify-content: center; gap: 8px; font-size: 14px; line-height: 22px;
    padding: 12px 16px;
  }
  #ipst8v, #ifwh65 { flex: 0 0 auto; margin: 0; }
  #irtyo1 { flex: 0 0 100%; display: flex; justify-content: center; margin: 0; }
}

/* ── Tablet ── */
@media (max-width: 1023px) {
  #i35r3j { position: static; margin: 0 auto 20px; }
  #iv1qcv { font-size: 35px; width: 100%; line-height: 45px; }
  #ij7vqv { padding: 40px 20px; }
  #i1qjpn { position: static; max-width: 100%; width: 100%; }
  #i4di09 { width: 80%; align-items: center; justify-content: center; display: flex; flex-direction: column; margin: 0 auto; }
  #i125a8 { width: 80%; align-items: center; margin: 0 auto; }
  #ihvawh { flex-direction: row-reverse; }
  #i438lx, #ihvawh { margin: 0 0 20px; max-width: 800px; }
  #i4c1xw { align-items: flex-start; flex-direction: column; }
  #i5dqsh, #ibhwp8 { text-align: left; margin: 0; }
  #i8s31j { background-size: 100% 2px; max-width: 100%; }
  #ilmhus { flex-direction: row-reverse; margin: 0 auto; max-width: 800px; }
  #iay40w, #imxqv2 { background-image: url(../images/drops/line-4.png); background-position: left bottom; margin: 0 0 0 20px; max-width: 100%; }
  #iix809, #iwcnpd { width: 130px; }
  #i5uxym, #i83mr2, #icl52k, #ig1ztl { min-width: 130px; }
  #iavqli { margin: 0 0 20px; max-width: 800px; }
  #ikwfho { max-width: 100%; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  #i4c1xw { flex-direction: column; padding: 0; margin: 0; }
  #ij7vqv { padding: 33px 15px 25px; }
  #i4di09 { width: 100%; margin: 0; }
  #i35r3j { max-width: 80%; }
  #iv1qcv { font-size: 30px; line-height: 35px; margin: 0 auto 15px; }
  #ibhwp8 { max-width: 100%; text-align: left; font-size: 16px; line-height: 21px; }
  #ihvawh { margin: 0 0 20px; flex-direction: row-reverse; }
  #i125a8 { width: 100%; }
  #ih39sj { transform: rotateZ(0); height: auto; width: 100%; }
  #ie80sr { max-width: 100%; font-size: 16px; line-height: 21px; }
  #i438lx { margin: 0 0 20px; padding: 0; }
  #i5dqsh { max-width: 100%; text-align: left; font-size: 16px; line-height: 21px; }
  #iba9kh { transform: rotateZ(0); width: 100%; height: auto; }
  #ilmhus { margin: 0 0 20px; flex-direction: row-reverse; }
  #iaa3j6 { max-width: 100%; font-size: 16px; line-height: 21px; }
  #iavqli { margin: 0 0 20px; padding: 0; }
  #imcnvf { max-width: 100%; height: 2px; }
  #iwv65b { width: 100%; height: auto; }
  #ifrluk, #iix809, #iststx, #iwcnpd { width: 70px !important; height: auto !important; }
  #i5uxym, #i83mr2, #icl52k, #ig1ztl { min-width: 70px; }
  #i35r3j { max-width: 100%; width: 100%; height: auto; }
}

/* ─────────────────────────────────── */
/* ── COMPARISON SECTION             ── */
/* ─────────────────────────────────── */

.compare-section {
  display: inline-flex; margin-left: auto; margin-right: auto;
  width: 100%; align-items: stretch;
}
.compare-section .container {
  max-width: 1024px; height: auto;
  display: inline-flex; margin-left: auto; margin-right: auto;
  width: 100%; align-items: stretch;
}
.compare-section .col {
  display: inline-block; width: 100%; min-height: 200px;
}
.compare-title {
  margin: 60px auto 30px; font-size: 30px; line-height: 38px;
  text-align: center; width: 100%; display: block;
  font-weight: 700; padding: 0 0 30px;
}
@media (min-width: 768px) { .compare-title { font-size: 40px; line-height: 50px; } }

.compare-table {
  display: flex; align-items: center; flex-direction: column;
  font-size: 16px; line-height: 19px; max-width: 942px;
  box-shadow: 4px 4px 8.7px 0 rgba(0,0,0,0.1);
  min-height: 50px; justify-content: center;
  padding: 0; margin: 90px auto 60px;
}
@media (max-width: 767px) { .compare-table { margin: 40px auto 40px; } }

/* Header row */
.compare-header {
  display: flex; width: 100%; max-width: 942px;
  justify-content: space-between; background: #f8fffb;
}
.compare-col-left {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; position: relative;
  min-height: 180px; margin: 0 20px 0 0; text-align: center;
  padding: 166px 0 30px; border-radius: 5px 5px 0 0; width: 50%;
}
.compare-col-right {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; position: relative;
  width: 471px; background: #fceeed; text-align: center;
  border-radius: 0 5px 0 0; padding: 0 0 36px;
}

/* Hero images — absolute on desktop, overflow above card */
.compare-hero-img { position: absolute; top: -91px; }
.compare-col-right .compare-hero-img { top: -30px; }

/* Brand labels */
.compare-logo { width: 156px; height: auto; }
.compare-brand { margin: 0; font-size: 22px; font-weight: 700; line-height: 30px; }

@media (max-width: 1023px) {
  .compare-col-right .compare-hero-img { max-width: 90%; }
}
@media (max-width: 767px) {
  .compare-col-left {
    margin: 0 5px 0 0; min-height: 160px; padding: 0 0 10px;
    max-width: 49%; width: 50%;
  }
  .compare-col-right {
    min-height: 160px; padding: 0 0 10px; max-width: 49%; width: 50%;
  }
  /* On mobile: images become static, use negative margin to overlap */
  .compare-hero-img {
    position: static; top: auto; margin: -75px auto 25px;
  }
  .compare-col-right .compare-hero-img {
    min-width: 122px; width: 80%; position: static; top: auto;
    margin: -75px auto 25px;
  }
  .compare-logo { width: 140px; }
  .compare-brand { font-size: 20px; line-height: 21px; }
}

/* Comparison rows */
.compare-row {
  display: flex; max-width: 942px; justify-content: space-between;
  width: 100%; min-height: 50px; background: #f8fffb;
}
.compare-cell {
  display: flex; align-items: center; min-height: 60px;
  padding: 0 10px 0 60px;
}
@media (max-width: 767px) { .compare-cell { padding: 0 8px 0 16px; min-height: 50px; } }
.compare-cell img { width: 28px; flex-shrink: 0; }
.compare-cell span {
  font-size: 20px; font-weight: 700; line-height: 24px; margin-left: 10px; flex: 11 0; padding: 0 0 0 0;
}
@media (max-width: 767px) { .compare-cell span { font-size: 15px; line-height: 19px; margin-left: 5px; padding: 0 0 0 5px; } }

.compare-cell-good {
  margin: 0 20px 0 0; width: 50%;
}
@media (max-width: 767px) { .compare-cell-good { margin: 0 10px 0 0; } }
.compare-cell-bad {
  width: 471px; background: #fceeed;
}
@media (max-width: 767px) { .compare-cell-bad { width: 50%; } }

/* Row divider lines (::after pseudo-element, exact original) */
.compare-row { position: relative; }
.compare-row::after {
  content: ''; position: absolute; bottom: 0;
  left: 50%; right: 50%; transform: translateX(-50%);
  width: 96%; height: 1px;
  background-color: rgba(201, 201, 201, 1);
}
.compare-row:last-child::after { display: none; }

/* Hidden structural dividers */
.compare-divider {
  min-height: 1px; width: 100%; max-width: 889px;
  background: #c9c9c9; display: none;
}

/* Rounded bottom corners on last row */
.compare-row:last-child .compare-cell-good { border-radius: 0 0 0 5px; min-height: 75px; }
.compare-row:last-child .compare-cell-bad { border-radius: 0 0 5px 0; min-height: 75px; }
/* First row also taller */
.compare-row:first-of-type .compare-cell-good,
.compare-row:first-of-type .compare-cell-bad { min-height: 75px; }

/* ─────────────────────────────────── */
/* ── GLOW GIRLS SECTION            ── */
/* ─────────────────────────────────── */

.glow-girls-section {
  background: #f9f7f5; padding: 50px 0 40px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif; color: #000;
}

.glow-girls-title {
  text-align: center; font-size: 30px; font-weight: 700;
  color: #321325; margin: 0 0 20px; line-height: 35px;
}
@media (min-width: 768px) { .glow-girls-title { font-size: 40px; line-height: 50px; margin: 0 0 25px; } }

/* Stats card — exact original structure */
#gg-card {
  background-color: #fff; padding: 35px 20px;
  justify-content: space-between; margin: 0 auto 25px;
  max-width: 950px; border-radius: 5px;
  min-height: 50px; display: flex;
}
#gg-top-row {
  min-height: 50px; display: flex; align-items: center;
  flex: 1 0; justify-content: space-around;
}

/* Score section */
#gg-score-section { margin: 0 5% 0 0; }
#gg-score-inner { min-height: 50px; text-align: center; }
#gg-score-num {
  margin: 0 0 25px; font-size: 55px; line-height: 50px;
  color: #222; font-weight: 700;
}
#gg-score-label { margin: 0; line-height: 20px; color: #888; }

/* 94% mobile version — hidden on desktop */
#gg-recommend-mobile { min-height: 50px; display: none; }

/* 94% desktop version */
#gg-recommend-desktop {
  min-height: 50px; width: 25%; align-items: center;
  display: flex; margin: 0 0 0 5%;
}
#gg-recommend-desktop-inner { min-height: 50px; text-align: center; }
#gg-recommend-desktop-check {
  display: flex; text-align: center; align-items: center; justify-content: center;
}
#gg-recommend-desktop-pct {
  margin: 0; font-size: 48px; line-height: 59px; font-weight: 700; color: #222;
}
#gg-recommend-desktop-text { margin: 0 -10px 0 -5px; line-height: 20px; color: #888; }
#gg-recommend-desktop-product { font-weight: 700; color: #222; }

/* Category ratings */
#gg-cats { min-height: 50px; flex: 1 0; }
.gg-cat-row {
  display: flex; align-items: center; padding: 0;
  border-bottom: 1px solid #ebebeb; justify-content: space-between;
}
.gg-cat-row:last-child { border-bottom: 1px none #ebebeb; }
.gg-cat-label {
  margin: 0 5px 0 0; line-height: 36px; font-weight: 700; min-width: 258px;
}
.gg-cat-val { margin: 0; line-height: 18px; font-weight: 600; }

/* ── Tablet ── */
@media (max-width: 1023px) {
  #gg-recommend-desktop-inner { margin: 0 0 0 10px; }
  .gg-cat-label { font-size: 15px; line-height: 28px; min-width: 220px; }
  #gg-score-num { font-size: 32px; line-height: 39px; margin: 0 0 5px; }
  #gg-top-row { width: 70%; }
  #gg-card { max-width: auto; padding: 30px 15px; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  #gg-recommend-desktop { display: none; }
  #gg-recommend-mobile {
    display: flex; border-left: 1px solid #000; width: 50%;
    padding: 0 0 0 20px; align-items: flex-start; flex-direction: column;
  }
  #gg-recommend-mobile-check {
    display: flex; text-align: center; align-items: center; justify-content: center;
    margin: 0 0 4px;
  }
  #gg-recommend-mobile-pct {
    margin: 0; font-size: 28px; line-height: 34px; font-weight: 700; color: #222;
  }
  #gg-recommend-mobile-text {
    margin: 0; font-size: 12px; line-height: 15px; color: #888; text-align: left;
  }
  #gg-recommend-mobile-product { font-weight: 700; color: #222; }
  #gg-score-inner {
    display: flex; flex-direction: column; align-items: center;
    padding: 0; width: 50%;
  }
  #gg-score-num { font-size: 32px; line-height: 39px; margin: 0 0 2px; }
  #gg-score-label { font-size: 12px; line-height: 15px; }
  #gg-score-section {
    display: flex; justify-content: center; margin: 0 0 17px; width: 100%;
  }
  #gg-card { padding: 10px 15px; margin: 0 auto 25px; }
  #gg-card, #gg-top-row { flex-direction: column; }
  #gg-top-row { justify-content: space-around; width: 100%; }
  #gg-cats { justify-content: center; width: 100%; }
  .gg-cat-label { min-width: 180px; }
  .gg-cat-val { font-size: 11px; }
  .gg-cat-row { padding: 0; }
}

/* Stars-small (kept for compatibility) */
.stars-small { display: flex; gap: 1px; }

/* Review cards container */
.gg-reviews {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 1186px; margin: 0 auto; padding: 0 15px;
}
@media (min-width: 768px) {
  .gg-reviews { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }
}

/* Individual review card */
.gg-review {
  width: 100%; background: #fff; border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15); overflow: hidden;
  margin: 0 0 10px; border: 1.5px solid #1d1128;
}
@media (min-width: 768px) { .gg-review { width: 32%; margin: 0 0 30px; } }

.gg-review-photo {
  width: 100%; aspect-ratio: 6/5; background: #E8E0D8;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #999; overflow: hidden;
}
.gg-review-photo img { width: 100%; height: 100%; object-fit: cover; }

.gg-review-body { padding: 20px 20px 15px; }

.gg-review-header { display: flex; align-items: center; gap: 11px; }
.gg-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: #d4b8a0;
  flex-shrink: 0; overflow: hidden;
}
.gg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gg-name { font-size: 18px; font-weight: 500; color: #000; line-height: 22px; }

.gg-review-meta { display: flex; align-items: center; margin: 10px 0 5px; gap: 8px; }
.gg-verified { font-size: 14px; font-weight: 700; color: #c05400; line-height: 16px; margin-left: 4px; }

.gg-review-title { font-size: 16px; font-weight: 700; color: #321325; line-height: normal; }
.gg-review-date { margin: 10px 0; font-size: 14px; color: #696969; line-height: 17px; }
.gg-review-text { margin: 10px 0 0; font-size: 16px; line-height: 24px; font-weight: 500; color: #321325; }

/* SVG icons inline */
.icon-check { color: var(--cta-green); }
.icon-brand { color: var(--brand); }
.icon-star { fill: var(--star-gold); stroke: var(--star-gold); }
