/* ==========================================================================
   SlimSet Official DTC Brand Store - store.css
   Archetype: Pastel Modern Wellness / Editorial DTC
   Typography: Fraunces (Headings) + Plus Jakarta Sans (Body & UI)
   Palette: Plum #2a1b40, Mint Teal #2fa98c, Cream #faf7f2, Solar Gold #f59e0b
   ========================================================================== */

:root {
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-plum: #2a1b40;
  --color-plum-light: #3f2c5e;
  --color-plum-soft: #5b437f;
  --color-teal: #2fa98c;
  --color-teal-dark: #22846d;
  --color-teal-light: #e6f6f2;
  --color-gold: #f59e0b;
  --color-gold-hover: #d97706;
  --color-gold-light: #fffbeb;
  --color-cream: #faf7f2;
  --color-card-bg: #ffffff;
  --color-ink: #1f192b;
  --color-slate: #5f5b6b;
  --color-slate-light: #ece8f2;
  --color-save-green: #15803d;
  --color-save-bg: #dcfce7;
  --color-border: #e8e2f0;
  
  --shadow-sm: 0 2px 8px rgba(42, 27, 64, 0.04);
  --shadow-md: 0 6px 20px rgba(42, 27, 64, 0.08);
  --shadow-lg: 0 12px 36px rgba(42, 27, 64, 0.12);
  --shadow-gold: 0 6px 20px rgba(245, 158, 11, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  
  --max-width: 1180px;
}

/* Base reset & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Technical requirement: images with explicit dimensions must have height: auto in global CSS */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-plum);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-teal);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Announcement bar */
.announcement-bar {
  background: var(--color-plum);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
  text-align: center;
}

.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Header */
.store-header {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-name-text {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-plum);
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--color-teal);
}

.brand-reg {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-plum-soft);
  vertical-align: super;
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-plum);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-menu a.nav-active,
.nav-menu a:hover {
  color: var(--color-teal);
}

.nav-menu a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-teal);
  border-radius: 2px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-header-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-plum);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Accessible mobile nav menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--color-plum);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s linear, visibility 0s linear 0.2s;
}

.mobile-nav.open {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear, visibility 0s linear;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-list a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-plum);
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-slate-light);
}

.mobile-cta-item {
  margin-top: 0.5rem;
  border-bottom: none;
}

.btn-mobile-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
}

/* Breadcrumbs */
.breadcrumb-bar {
  background: #f7f3fb;
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem 0;
  font-size: 0.84rem;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-slate);
}

.breadcrumb-list a {
  color: var(--color-slate);
}

.breadcrumb-list a:hover {
  color: var(--color-plum);
}

.breadcrumb-sep {
  color: #a39cb0;
}

.breadcrumb-current {
  color: var(--color-plum);
  font-weight: 600;
}

/* Hero & Buy Box Section (Layout A) */
.hero-pdp {
  padding: 2.5rem 0 3.5rem;
}

.hero-pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 96px;
}

.gallery-main {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  min-height: 480px;
}

.gallery-main img {
  max-height: 440px;
  object-fit: contain;
}

.pdp-bonus-banner {
  background: linear-gradient(135deg, #eef9f6 0%, #e2f4ef 100%);
  border: 1px solid #bce8dc;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.bonus-badge-tag {
  background: var(--color-teal);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  white-space: nowrap;
}

.bonus-banner-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-teal-dark);
}

.gallery-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-trust-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-plum);
}

/* Buy Box Card */
.pdp-buy-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.buybox-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.rating-num {
  font-weight: 700;
  color: var(--color-plum);
}

.rating-reviews-link {
  color: var(--color-teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

.pdp-title {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  line-height: 1.25;
  color: var(--color-plum);
  margin-bottom: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pdp-answer-phrase {
  font-size: 1rem;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.pdp-answer-phrase strong {
  color: var(--color-plum);
  font-weight: 600;
}

/* Selector Radio Cards */
.package-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.package-card {
  display: block;
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  background: #ffffff;
}

.package-card:hover {
  border-color: #cbbede;
  box-shadow: var(--shadow-sm);
}

.package-card.selected {
  border-color: var(--color-teal);
  background: #fbfdfc;
  box-shadow: 0 4px 14px rgba(47, 169, 140, 0.15);
}

.package-card input[type="radio"] {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  accent-color: var(--color-teal);
  width: 18px;
  height: 18px;
}

.package-card-inner {
  padding-left: 2rem;
}

.package-badge {
  position: absolute;
  top: -11px;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.package-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-plum);
}

.package-price-per {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-plum);
}

.package-price-per span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-slate);
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--color-slate);
}

.package-save-pill {
  background: var(--color-save-bg);
  color: var(--color-save-green);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
}

.package-shipping-text {
  font-size: 0.82rem;
  color: var(--color-teal-dark);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Dynamic Price Callout */
.dynamic-price-box {
  background: #f7f4fa;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.dyn-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.dyn-price-large {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-plum);
  line-height: 1;
}

.dyn-price-sub {
  font-size: 1rem;
  color: var(--color-slate);
  font-weight: 600;
}

.dyn-total-line {
  font-size: 0.95rem;
  color: var(--color-slate);
  font-weight: 600;
}

.dyn-total-line .dyn-was {
  text-decoration: line-through;
  color: #9f98a8;
  margin-right: 0.35rem;
}

.dyn-total-line .dyn-now {
  color: var(--color-plum);
  font-weight: 700;
}

.dyn-total-line .dyn-save {
  color: var(--color-save-green);
  font-weight: 700;
  margin-left: 0.4rem;
}

/* Main CTA Button */
.btn-pdp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.btn-pdp-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.buybox-microcopy {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--color-slate);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-slate-light);
}

.micro-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.micro-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-teal);
  flex-shrink: 0;
}

.stock-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-save-green);
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-save-green);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.2);
}

/* Trust Strip Section */
.trust-strip-section {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.75rem 0;
}

.trust-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.trust-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f4f0fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum);
}

.trust-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.trust-badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-plum);
}

.trust-badge-sub {
  font-size: 0.76rem;
  color: var(--color-slate);
}

/* Section styling */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  line-height: 1.25;
  color: var(--color-plum);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-slate);
  line-height: 1.6;
}

/* Content cards grid (Benefits, etc.) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-plum);
  margin-bottom: 0.6rem;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.55;
}

/* Spec Table GEO Block */
.spec-table-wrap {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table caption {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-plum);
  margin-bottom: 1.25rem;
  text-align: left;
}

.spec-table th, .spec-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--color-slate-light);
  font-size: 0.92rem;
}

.spec-table th {
  width: 30%;
  font-weight: 700;
  color: var(--color-plum);
  background: #fbf9fd;
}

.spec-table td {
  color: var(--color-ink);
}

.spec-table tr:last-child th, .spec-table tr:last-child td {
  border-bottom: none;
}

/* Short Version (TL;DR) */
.tldr-card {
  background: linear-gradient(135deg, #f5f0fa 0%, #ebe2f4 100%);
  border-left: 5px solid var(--color-plum);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.tldr-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-plum);
  margin-bottom: 0.5rem;
}

.tldr-text {
  font-size: 1.05rem;
  color: var(--color-ink);
  line-height: 1.6;
}

/* Mechanism section */
.mechanism-content {
  max-width: 860px;
  margin: 0 auto;
}

.mechanism-p {
  font-size: 1.05rem;
  color: var(--color-ink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cite-tag {
  color: var(--color-teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  vertical-align: super;
  padding: 0 0.15rem;
}

.mechanism-link-band {
  text-align: center;
  margin-top: 2rem;
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-teal-dark);
  border-bottom: 2px solid var(--color-teal);
  padding-bottom: 0.2rem;
}

.btn-secondary-link:hover {
  color: var(--color-plum);
  border-color: var(--color-plum);
}

/* Comparison Table */
.compare-table-wrap {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th, .compare-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-slate-light);
  font-size: 0.92rem;
}

.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-plum);
}

.compare-table thead th {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-plum);
  background: #fbf9fd;
}

.compare-table thead th.col-highlight {
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.compare-table td.col-highlight {
  background: #f5fbf9;
  font-weight: 700;
  color: var(--color-teal-dark);
}

/* Reviews preview & wall */
.reviews-summary-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.rev-score-block {
  text-align: center;
}

.rev-big-score {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-plum);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.rev-sub-count {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin-top: 0.35rem;
}

.rating-bars-wrap {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.star-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.star-bar-label {
  width: 45px;
  color: var(--color-slate);
}

.star-bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-slate-light);
  border-radius: 4px;
  overflow: hidden;
}

.star-bar-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 4px;
}

.star-bar-pct {
  width: 35px;
  text-align: right;
  font-weight: 600;
  color: var(--color-ink);
}

.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--color-plum);
  font-size: 0.95rem;
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--color-slate);
}

.badge-verified {
  background: #def7ec;
  color: #03543f;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-ink);
  line-height: 1.55;
  margin-top: 0.75rem;
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-plum);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  fill: var(--color-plum-soft);
}

details[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.96rem;
  color: var(--color-slate);
  line-height: 1.65;
  border-top: 1px solid var(--color-slate-light);
  padding-top: 1rem;
}

/* Guarantee Banner */
.guarantee-band {
  background: linear-gradient(135deg, #2a1b40 0%, #1f1430 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin: 3.5rem 0;
  box-shadow: var(--shadow-md);
}

.guarantee-inner {
  max-width: 760px;
  margin: 0 auto;
}

.guarantee-days {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.guarantee-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-p {
  font-size: 1.05rem;
  color: #d1c8de;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Takeaways GEO Block */
.takeaways-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.takeaways-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-plum);
  margin-bottom: 1rem;
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.takeaways-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.96rem;
  color: var(--color-ink);
  line-height: 1.55;
}

.takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 800;
}

/* Compact References */
.references-block {
  background: #fbf9fd;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.references-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-plum);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.references-list {
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--color-slate);
}

.references-list a {
  color: var(--color-teal-dark);
  text-decoration: underline;
}

/* Supplement Facts FDA Panel (Science Page) */
.supp-facts-panel {
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 0;
  padding: 1.25rem;
  max-width: 480px;
  margin: 2.5rem auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  box-shadow: var(--shadow-md);
}

.supp-facts-header {
  border-bottom: 10px solid #000000;
  padding-bottom: 0.35rem;
  margin-bottom: 0.5rem;
}

.supp-facts-header h3 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.supp-facts-sub {
  font-size: 0.88rem;
  font-weight: 700;
}

.supp-facts-table {
  width: 100%;
  border-collapse: collapse;
}

.supp-facts-table th, .supp-facts-table td {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid #000000;
}

.supp-facts-table th {
  font-weight: 700;
  text-align: left;
}

.supp-facts-table th:last-child, .supp-facts-table td:last-child {
  text-align: right;
}

.supp-facts-table tr.heavy-border th, .supp-facts-table tr.heavy-border td {
  border-bottom: 5px solid #000000;
}

.supp-facts-other {
  font-size: 0.78rem;
  margin-top: 0.6rem;
  line-height: 1.4;
}

/* Footer */
.store-footer {
  background: var(--color-plum);
  color: #e5deee;
  padding: 4.5rem 0 2rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .brand-name-text {
  color: #ffffff;
}

.footer-blurb {
  font-size: 0.86rem;
  color: #c4b9d3;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.footer-meta-item {
  font-size: 0.82rem;
  color: #b7a9c8;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-meta-item a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #c4b9d3;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-small-text {
  font-size: 0.82rem;
  color: #b7a9c8;
  margin-bottom: 1.25rem;
}

.payment-badges-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pay-pill {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.footer-update-text {
  font-size: 0.78rem;
  color: #9f8fb4;
}

.footer-disclaimers {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  font-size: 0.78rem;
  color: #9f8fb4;
  line-height: 1.6;
}

.fda-disclaimer, .educational-disclaimer {
  margin-bottom: 1rem;
}

.footer-copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #c4b9d3;
}

/* Sticky Add-to-Cart Bar (CLS 0 with body padding) */
body.has-sticky-bar {
  padding-bottom: 72px;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid var(--color-plum);
  box-shadow: 0 -4px 18px rgba(42, 27, 64, 0.12);
  z-index: 90;
  padding: 0.75rem 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-bar.dismissed {
  display: none !important;
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.sticky-name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-plum);
}

.sticky-divider {
  color: var(--color-slate-light);
}

.sticky-tier {
  color: var(--color-slate);
  font-weight: 600;
}

.sticky-price {
  font-weight: 800;
  color: var(--color-teal-dark);
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-sticky-cta {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-sticky-cta:hover {
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.sticky-dismiss {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-slate);
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.sticky-dismiss:hover {
  color: var(--color-plum);
  background: var(--color-slate-light);
}

/* Legal pages layout */
.legal-page-wrap {
  padding: 3.5rem 0 5rem;
}

.legal-article {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.legal-article h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-plum);
  margin-bottom: 0.75rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-article h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-plum);
  margin: 2rem 0 0.75rem;
}

.legal-article p, .legal-article ul {
  font-size: 0.98rem;
  color: var(--color-ink);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.legal-article ul {
  padding-left: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-pdp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pdp-gallery {
    position: static;
  }
  
  .gallery-main {
    min-height: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .trust-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop, .btn-header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .grid-3, .review-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .pdp-title {
    font-size: 1.75rem;
  }
  
  .pdp-buy-box {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sticky-divider, .sticky-tier {
    display: none;
  }
  
  .sticky-inner {
    padding: 0 0.5rem;
  }
}
