/* ==========================================================================
   VigorHorse DTC Brand Store - Official Stylesheet (store.css)
   Archetype: Bold Athletic Masculine DTC
   ========================================================================== */

:root {
  --bg-deep: #0a0d14;
  --bg-dark: #121824;
  --bg-card: #182030;
  --bg-card-hover: #1e283c;
  --bg-surface: #1f2a3e;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;

  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-muted-light: #94a3b8;
  --text-dim: #cbd5e1;

  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --accent-red-glow: rgba(220, 38, 38, 0.25);

  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --accent-gold-glow: rgba(245, 158, 11, 0.35);

  --save-green: #16a34a;
  --save-green-bg: rgba(22, 163, 74, 0.12);

  --border-dark: #242f44;
  --border-light: #e2e8f0;
  --border-card: rgba(255, 255, 255, 0.08);

  --font-heading: 'Kanit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 6px 20px rgba(245, 158, 11, 0.35);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.legal-page {
  background-color: var(--bg-dark);
}

/* TECHNICAL LESSON: img height auto and responsive */
img {
  height: auto;
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input {
  font: inherit;
}

/* Accessibility Skip Link */
.skip-nav-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}
.skip-nav-link:focus {
  top: 1rem;
}

/* Store Layout Containers */
.store-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.narrow-layout {
  max-width: 860px;
}

.mb-30 { margin-bottom: 1.875rem; }
.mb-40 { margin-bottom: 2.5rem; }
.mt-40 { margin-top: 2.5rem; }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-strip {
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announcement-badge {
  background: #000000;
  color: #ffffff;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.store-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 38px;
  width: auto;
}

.desktop-nav {
  display: none;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: #ffffff;
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-red);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gold-gradient);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active .bar-1 {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle.is-active .bar-2 {
  opacity: 0;
}
.nav-toggle.is-active .bar-3 {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* TECHNICAL LESSON: Mobile Menu Absolute & Clean Visibility Transition */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 1001;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-list a {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list a.active {
  color: var(--accent-red);
}

.btn-mobile-buy {
  display: block;
  text-align: center;
  background: var(--accent-gold-gradient);
  color: #000000 !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.85rem 1rem !important;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
  border-bottom: none !important;
}

/* ==========================================================================
   Hero & Buy Box (Split PDP Classic - Layout A)
   ========================================================================== */
.hero-buybox-section {
  padding: 2.5rem 0 3.5rem;
  background: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
              var(--bg-deep);
}

.buybox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .buybox-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
  }
}

/* Gallery Column */
.buybox-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-badge-top {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: flex-start;
}

.pill-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.pill-red {
  background: var(--accent-red);
  color: #ffffff;
}

.pill-dark {
  background: var(--bg-card);
  color: var(--text-dim);
  border: 1px solid var(--border-dark);
}

.gallery-main-image-wrap {
  width: 100%;
  max-width: 480px;
  background: radial-gradient(circle, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0) 70%);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-main-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-smooth);
}

.gallery-main-image:hover {
  transform: scale(1.02);
}

.gallery-bonus-strip {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.bonus-tagline {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.bonus-highlight {
  color: var(--accent-gold);
}

.bonus-thumbs-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.bonus-thumb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75px;
}

.bonus-free-pill {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  z-index: 2;
}

.bonus-thumb-card img {
  width: 70px;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-thumb-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted-light);
  margin-top: 0.35rem;
  line-height: 1.2;
}

.gallery-trust-micro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.trust-micro-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.trust-micro-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Buy Box Controls Column */
.buybox-controls {
  display: flex;
  flex-direction: column;
}

.product-rating-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.stars-row {
  display: flex;
  color: var(--accent-gold);
  font-size: 1.125rem;
}

.rating-value {
  font-size: 0.9375rem;
  color: #ffffff;
}

.rating-sep {
  color: var(--text-muted);
}

.rating-count-link {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  text-decoration: underline;
}
.rating-count-link:hover {
  color: var(--accent-gold);
}

.hero-product-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.trademark-sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent-red);
}

.answer-first-hero-lead {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent-red);
  padding-left: 0.85rem;
}

.answer-first-hero-lead strong {
  color: #ffffff;
}

/* Package Selector Radio Cards */
.package-selector-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.package-card {
  position: relative;
  display: block;
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.package-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.4);
}

.package-card.is-selected {
  background: rgba(24, 32, 48, 0.9);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.package-card-header {
  position: absolute;
  top: -10px;
  right: 15px;
}

.pkg-badge-ribbon {
  display: inline-block;
  background: var(--accent-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.pkg-badge-ribbon.muted-ribbon {
  background: var(--bg-surface);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.pkg-badge-ribbon.starter-ribbon {
  background: #334155;
  color: #ffffff;
}

.package-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pkg-radio-col {
  display: flex;
  align-items: center;
}

.pkg-radio-input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-gold);
  cursor: pointer;
}

.pkg-details-col {
  flex: 1;
}

.pkg-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.pkg-supply-period {
  display: block;
  font-size: 0.8125rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.pkg-perks-line {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted-light);
  margin-top: 0.2rem;
}

.pkg-pricing-col {
  text-align: right;
  flex-shrink: 0;
}

.pkg-bottle-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.pkg-bottle-price .price-currency {
  font-size: 0.8em;
  vertical-align: top;
}

.pkg-bottle-price .price-unit {
  font-size: 0.6em;
  font-weight: 500;
  color: var(--text-muted-light);
}

.pkg-total-math {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.pkg-total-math .was-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.pkg-total-math .now-total {
  color: var(--save-green);
  font-weight: 700;
}

/* Dynamic Summary Box */
.buybox-dynamic-summary {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.25rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.2rem 0;
  color: var(--text-dim);
}

.summary-val {
  font-weight: 600;
  color: #ffffff;
}

.summary-val.highlight-val {
  color: var(--accent-gold);
}

.summary-val.save-val {
  color: var(--save-green);
}

.summary-val.free-shipping-val {
  color: #38bdf8;
}

/* Primary Buy CTA */
.btn-primary-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--accent-gold-gradient);
  color: #000000;
  border-radius: var(--radius-md);
  padding: 1.1rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
  filter: brightness(1.05);
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.cta-subline {
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.cta-arrow-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .cta-arrow-icon {
    display: none;
  }
}

.stock-urgency-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.stock-dot {
  width: 9px;
  height: 9px;
  background: var(--save-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--save-green);
}

.anti-marketplace-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.anti-marketplace-alert strong {
  color: #fca5a5;
}

/* ==========================================================================
   Trust Standards Strip
   ========================================================================== */
.trust-standards-strip {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.75rem 0;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .standards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .standards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.standard-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.standard-text strong {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.2;
}

.standard-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted-light);
  line-height: 1.25;
}

/* ==========================================================================
   Section Headers & Grids
   ========================================================================== */
.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* Why VigorHorse */
.section-why-vigorhorse {
  padding: 4.5rem 0;
}

.benefits-three-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-three-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.4);
}

.benefit-card-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 0.75rem;
}

.benefit-card-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.benefit-card-copy {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.benefit-bullet-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-bullet-list li {
  font-size: 0.875rem;
  color: var(--text-dim);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.benefit-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.25rem;
  line-height: 1;
}

/* ==========================================================================
   Spec Table (GEO Block #1)
   ========================================================================== */
.section-spec-table {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.spec-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.spec-table-header {
  margin-bottom: 1.75rem;
}

.spec-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.spec-title {
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.spec-sub {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
}

.table-responsive-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.semantic-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.semantic-spec-table th,
.semantic-spec-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-dark);
}

.semantic-spec-table th[scope="row"] {
  font-weight: 600;
  color: #ffffff;
  width: 32%;
  background: rgba(255, 255, 255, 0.02);
}

.semantic-spec-table td {
  color: var(--text-dim);
}

.semantic-spec-table thead th {
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Straight Answer (TL;DR GEO Block #2)
   ========================================================================== */
.section-straight-answer {
  padding: 3rem 0;
}

.straight-answer-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
}

.straight-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.straight-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.straight-paragraph {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.65;
}

.straight-paragraph strong {
  color: #ffffff;
}

/* ==========================================================================
   Mechanism / How It Works
   ========================================================================== */
.section-how-it-works {
  padding: 4.5rem 0;
}

.mechanism-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 840px) {
  .mechanism-content-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.mechanism-copy p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.inline-cite-ref {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  vertical-align: super;
  padding: 0 0.15rem;
}

.mechanism-cta-row {
  margin-top: 1.5rem;
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.9375rem;
}

.btn-secondary-link:hover {
  color: #ffffff;
}

.mechanism-callout-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.callout-box-title {
  font-size: 1.125rem;
  color: var(--accent-red);
  margin-bottom: 0.75rem;
}

.callout-box-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.callout-citation-source {
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}

/* ==========================================================================
   Ingredients Preview Grid
   ========================================================================== */
.section-ingredients-preview {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.ingredients-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ingredients-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .ingredients-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredient-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.ing-card-name {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.ing-card-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ing-card-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.ingredients-view-all-row {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-primary-ghost {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-primary-ghost:hover {
  background: var(--accent-gold);
  color: #000000;
}

/* ==========================================================================
   How to Use / Daily Protocol
   ========================================================================== */
.section-how-to-use {
  padding: 4rem 0;
}

.how-to-use-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}

.steps-three-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .steps-three-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
}

.step-number-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ==========================================================================
   Reviews Preview Grid
   ========================================================================== */
.section-reviews-preview {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.reviews-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.stars-gold {
  color: var(--accent-gold);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.verified-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--save-green);
  background: var(--save-green-bg);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.review-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.review-quote {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author-meta {
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}

.reviews-more-row {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */
.section-comparison {
  padding: 4rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-dark);
  text-align: left;
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.4);
}

.comp-col-feature { color: var(--text-dim); width: 30%; }
.comp-col-vigorhorse { color: var(--accent-gold); width: 35%; background: rgba(245, 158, 11, 0.05); }
.comp-col-typical { color: var(--text-muted-light); width: 35%; }

.td-vh {
  font-weight: 600;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.05);
}

.td-other {
  color: var(--text-muted);
}

/* ==========================================================================
   Canonical FAQ Accordion (GEO Block #3)
   ========================================================================== */
.section-canonical-faq {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-accordion-item[open] {
  border-color: rgba(245, 158, 11, 0.3);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  font-size: 1.0625rem;
  color: #ffffff;
  margin: 0;
}

.faq-chevron {
  color: var(--accent-gold);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-accordion-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.faq-answer-body strong {
  color: #ffffff;
}

.faq-more-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   Guarantee Band & Risk Reversal
   ========================================================================== */
.section-guarantee-band {
  padding: 4rem 0;
}

.guarantee-card-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, #182030 0%, #121824 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .guarantee-card-box {
    grid-template-columns: 160px 1fr;
    gap: 3rem;
  }
}

.guarantee-seal-graphic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px dashed var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(245, 158, 11, 0.08);
}

.seal-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.seal-days {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.seal-guarantee {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.guarantee-headline {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.guarantee-lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.guarantee-body {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   Repeat Buy Box / Final Order Section
   ========================================================================== */
.section-repeat-buybox {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.final-cta-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.final-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.final-cta-sub {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-final-featured {
  display: inline-block;
  background: var(--accent-gold-gradient);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast);
}

.btn-final-featured:hover {
  transform: translateY(-2px);
}

.btn-final-regular {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-final-regular:hover {
  background: var(--bg-surface);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Takeaways (GEO Block #4)
   ========================================================================== */
.section-takeaways {
  padding: 3.5rem 0;
}

.takeaways-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
}

.takeaways-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.takeaways-list li {
  font-size: 0.9375rem;
  color: var(--text-dim);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}

.takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--save-green);
  font-weight: 800;
}

.takeaways-list li strong {
  color: #ffffff;
}

/* ==========================================================================
   Selected Scientific References Block
   ========================================================================== */
.section-index-references {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-dark);
}

.references-box {
  max-width: 900px;
  margin: 0 auto;
}

.references-title {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
}

.references-ordered-list {
  list-style-type: decimal;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.references-ordered-list li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.references-ordered-list a {
  color: var(--text-muted-light);
  text-decoration: underline;
}

.references-ordered-list a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   Subpages Hero & Content
   ========================================================================== */
.subpage-hero {
  padding: 3rem 0 2rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.breadcrumb-nav {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb-nav a:hover {
  color: var(--accent-gold);
}

.bc-sep {
  margin: 0 0.35rem;
}

.subpage-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.subpage-lead {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 820px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.eeat-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted-light);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.byline-sep {
  color: var(--text-muted);
}

.section-subpage-content {
  padding: 3.5rem 0 5rem;
}

.editorial-section h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 2.25rem 0 0.85rem;
}

.editorial-section h3 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin: 1.5rem 0 0.5rem;
}

.editorial-section p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Supplement Facts Panel */
.supplement-facts-wrapper {
  margin: 2.5rem 0;
}

.supplement-facts-panel {
  background: #ffffff;
  color: #000000;
  border: 3px solid #000000;
  padding: 1.25rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.facts-title {
  font-family: inherit;
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.facts-serving-info {
  font-size: 0.875rem;
  font-weight: 600;
}

.facts-divider-thick {
  height: 8px;
  background: #000000;
  margin: 0.4rem 0;
}

.facts-divider-medium {
  height: 4px;
  background: #000000;
  margin: 0.4rem 0;
}

.facts-divider-thin {
  height: 1px;
  background: #000000;
  margin: 0.35rem 0;
}

.facts-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
}

.facts-indent { padding-left: 1rem; font-weight: 400; }
.facts-indent2 { padding-left: 2rem; font-weight: 400; }

.facts-blend-details {
  font-size: 0.8125rem;
  font-style: italic;
  padding-left: 0.5rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.facts-footnote {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  line-height: 1.35;
}

.other-ingredients-box {
  max-width: 520px;
  margin: 0.75rem auto 0;
  font-size: 0.8125rem;
  color: var(--text-muted-light);
  line-height: 1.45;
}

/* Compliance Box */
.compliance-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
}

.compliance-box h3 {
  font-size: 1.125rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.compliance-box p {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

/* Glossary Section */
.glossary-list dt {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1.25rem;
}

.glossary-list dd {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-left: 0;
  margin-top: 0.25rem;
}

/* Subpage CTA Band */
.subpage-cta-band {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3.5rem;
}

.subpage-cta-band h2 {
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.subpage-cta-band p {
  font-size: 1rem;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

/* Reviews Page Styles */
.reviews-stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .reviews-stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-big-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  line-height: 1.3;
}

.rating-breakdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.score-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-large {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.score-stars-col .stars-gold-lg {
  color: var(--accent-gold);
  font-size: 1.35rem;
}

.score-caption {
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}

.rating-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.875rem;
}

.bar-star-label {
  width: 55px;
  color: var(--text-dim);
}

.bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent-gold);
}

.bar-percent {
  width: 90px;
  text-align: right;
  color: var(--text-muted-light);
}

.honest-low-rating-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8125rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.timeline-week {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.themes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.theme-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.review-wall-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .review-wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wall-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.wall-review-title {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.wall-review-body {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.wall-author-info {
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}

/* Quality Grid */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.quality-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.quality-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--save-green-bg);
  color: var(--save-green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.quality-card h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.quality-card p {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

/* Contact Card */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
}

.contact-info-card p {
  margin-bottom: 0.4rem !important;
}

.anti-phishing-note {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.anti-phishing-note h3 {
  font-size: 1rem;
  color: #fca5a5;
  margin-bottom: 0.25rem;
}

.anti-phishing-note p {
  font-size: 0.875rem;
  margin: 0 !important;
}

/* ==========================================================================
   Sticky Add-to-Cart Bar
   ========================================================================== */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(18, 24, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cart-bar.is-visible {
  transform: translateY(0);
}

.sticky-cart-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-prod-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.sticky-copy {
  display: flex;
  flex-direction: column;
}

.sticky-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.sticky-pricing {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.sticky-pricing strong {
  color: var(--accent-gold);
}

.btn-sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gold-gradient);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-sticky-cta:hover {
  box-shadow: var(--shadow-gold);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.store-footer {
  background: #07090e;
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
  color: var(--text-muted-light);
  font-size: 0.875rem;
}

.footer-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand-blurb {
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
}

.footer-distributor-info p {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}

.footer-distributor-info a:hover {
  color: var(--accent-gold);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted-light);
}

.footer-links a:hover {
  color: #ffffff;
}

.payment-methods-strip {
  margin-top: 1.25rem;
  font-size: 0.75rem;
}

.payment-title {
  display: block;
  color: #ffffff;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.payment-badges {
  color: var(--text-dim);
}

.footer-disclaimers {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-block p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
}
