/* ==========================================================================
   SodaPeak Official DTC Brand Store - Stylesheet
   Color Palette: Deep Obsidian (#0a0e14), Midnight Navy (#121720),
                  Warm Gold (#d4af37), Solar Amber (#f59e0b),
                  Emerald Green (#10b981), Pure White (#ffffff),
                  Slate Gray (#94a3b8), Charcoal Border (#263346)
   Typography: Urbanist (Display/Headings), Plus Jakarta Sans (Body)
   ========================================================================== */

:root {
  --bg-primary: #0a0e14;
  --bg-surface: #121720;
  --bg-elevated: #1a2230;
  --bg-card: #151d2a;
  --bg-card-hover: #1c2738;
  --bg-light: #f8fafc;
  --bg-light-surface: #ffffff;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  
  --accent-gold: #d4af37;
  --accent-gold-hover: #b89728;
  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.25);
  --accent-green: #10b981;
  --accent-green-bg: rgba(16, 185, 129, 0.12);
  --accent-red: #ef4444;
  
  --border-color: #232e42;
  --border-light: #e2e8f0;
  --border-highlight: #d4af37;
  
  --font-heading: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(212, 175, 55, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --container-max: 1200px;
  --header-height: 74px;
  --announcement-height: 38px;
}

/* Base resets & box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #fde047;
}

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.825rem;
  color: #e2e8f0;
  padding: 8px 0;
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-badge {
  background: var(--accent-gold);
  color: #000000;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-reg {
  font-size: 0.75rem;
  vertical-align: super;
  margin-left: 2px;
  color: var(--accent-gold);
}

.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-list a {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.nav-active {
  color: #ffffff;
}

.nav-list a.nav-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-header {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-header:hover {
  background: var(--accent-gold);
  color: #000000;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
  font-size: 1.15rem;
  padding: 16px 36px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.55);
}

.btn-xl {
  width: 100%;
  font-size: 1.3rem;
  padding: 18px 32px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.toggle-bar {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0d121a;
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s ease;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s ease;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list a {
  color: #e2e8f0;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-cta {
  margin-top: 12px;
}

/* Section Common Styling */
.section {
  padding: 70px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-primary);
}

.section-surface {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   BUY BOX - The Core E-Commerce PDP Module
   ========================================================================== */
.pdp-hero-section {
  padding: 40px 0 60px 0;
  background: radial-gradient(circle at 50% 10%, #172133 0%, #0a0e14 70%);
}

.buy-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left Column: Gallery */
.pdp-gallery-col {
  position: sticky;
  top: 90px;
}

.pdp-main-image-wrap {
  background: linear-gradient(180deg, #131b28 0%, #0c121b 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.pdp-main-image {
  margin: 0 auto;
  max-height: 480px;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pdp-guarantee-seal-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: rgba(10, 14, 20, 0.85);
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  box-shadow: var(--shadow-md);
}

.seal-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent-gold);
}

.seal-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 2px;
}

.pdp-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumb-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.thumb-item:hover, .thumb-item.active {
  border-color: var(--accent-gold);
  color: #ffffff;
  background: var(--bg-card-hover);
}

.pdp-gallery-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.gallery-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
}

.gallery-badge svg {
  margin: 0 auto 6px auto;
  display: block;
}

/* Right Column: Buying Decision */
.pdp-details-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-category-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 800;
  color: #ffffff;
}

.rating-link {
  color: var(--text-muted);
  text-decoration: underline;
}

.rating-link:hover {
  color: var(--accent-gold);
}

.pdp-title {
  font-size: 2.3rem;
  line-height: 1.15;
}

.pdp-definition-bold {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #e2e8f0;
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid var(--accent-gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Package Selector Radio Cards */
.bundle-selector {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bundle-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bundle-card:hover {
  border-color: #384964;
  background: var(--bg-card-hover);
}

.bundle-card.selected {
  border-color: var(--accent-gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 34, 48, 0.9) 100%);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.bundle-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bundle-badge-top {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.bundle-main-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.bundle-card.selected .custom-radio {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
}

.custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bundle-card.selected .custom-radio::after {
  opacity: 1;
}

.bundle-title-group h4 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.bundle-supply-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bundle-savings-pill {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  background: var(--accent-green-bg);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.bundle-pricing-side {
  text-align: right;
}

.bottle-price-big {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.bottle-price-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.bundle-total-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.was-price {
  text-decoration: line-through;
  color: var(--text-dim);
}

.bundle-ship-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Dynamic Live Summary Box */
.pdp-summary-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 6px 0;
}

.summary-row.total-row {
  border-top: 1px solid var(--border-color);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.summary-total-val {
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.pdp-cta-wrap {
  margin-top: 8px;
}

/* Trust Microcopy */
.pdp-microcopy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.micro-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.micro-item svg {
  flex-shrink: 0;
  color: var(--accent-gold);
}

.pdp-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
  background: #0f151f;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-strip-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.trust-strip-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-strip-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Product Details Spec Table (GEO Block #1)
   ========================================================================== */
.spec-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 30px auto;
  max-width: 900px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table th, .spec-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.spec-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  width: 32%;
}

.spec-table td {
  color: #e2e8f0;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* The Short Version / TL;DR (GEO Block #2) */
.tldr-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(18, 23, 32, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.tldr-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.tldr-content {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #f1f5f9;
}

/* Why SodaPeak Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.benefit-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-amber);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Supplement Facts Panel (FDA Style)
   ========================================================================== */
.supplement-facts-container {
  max-width: 540px;
  margin: 0 auto;
  background: #ffffff;
  color: #000000;
  border: 4px solid #000000;
  padding: 16px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
}

.sfp-title {
  font-family: 'Arial Black', Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  color: #000000;
}

.sfp-serving {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.sfp-thick-bar {
  height: 8px;
  background-color: #000000;
  margin: 8px 0;
}

.sfp-medium-bar {
  height: 4px;
  background-color: #000000;
  margin: 6px 0;
}

.sfp-thin-line {
  height: 1px;
  background-color: #000000;
  margin: 4px 0;
}

.sfp-header-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 2px 0;
}

.sfp-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 1px solid #000000;
}

.sfp-row.bold-row {
  font-weight: 700;
}

.sfp-footnote {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-top: 8px;
}

.sfp-other-ingredients {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #000000;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* How to Take / Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Comparison Table */
.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table th.highlight-col {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.comparison-table td.highlight-col {
  background: rgba(212, 175, 55, 0.04);
  font-weight: 700;
  color: #ffffff;
}

.badge-check {
  color: var(--accent-green);
  font-weight: 800;
  font-size: 1.1rem;
}

.badge-cross {
  color: var(--text-dim);
}

/* Reviews Grid & Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  background: var(--accent-green-bg);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.review-body {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-style: italic;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 14px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--accent-gold);
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-gold);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 14px;
}

/* Guarantee Band (Risk Reversal) */
.guarantee-band {
  background: linear-gradient(135deg, #162030 0%, #0d131d 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 960px;
  margin: 40px auto;
  box-shadow: var(--shadow-glow);
}

.guarantee-badge-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-text-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.guarantee-text-wrap p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Takeaways Box (GEO Block #4) */
.takeaways-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.takeaways-list li svg {
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 4px;
}

/* Authoritative References Block */
.references-block {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.references-heading {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.references-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}

.references-list a {
  color: var(--text-muted);
  text-decoration: underline;
}

.references-list a:hover {
  color: var(--accent-gold);
}

/* Sticky Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 18, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--accent-gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cart-bar.visible {
  transform: translateY(0);
}

.sticky-cart-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-thumb {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px;
}

.sticky-text-wrap {
  display: flex;
  flex-direction: column;
}

.sticky-prod-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.sticky-bundle-info {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sticky-action-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-save-pill {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-green);
  background: var(--accent-green-bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Footer */
.site-footer {
  background: #06090e;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  margin-top: auto;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-desc {
  margin: 14px 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-entity {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.footer-heading {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-disclaimers {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.775rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.disclaimer-box strong {
  color: #cbd5e1;
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
}

.last-updated-text {
  display: block;
  color: var(--accent-gold);
  margin-top: 4px;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.725rem;
  font-weight: 700;
  color: #e2e8f0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .buy-box-grid {
    gap: 32px;
  }
  
  .trust-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .benefits-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .buy-box-grid {
    grid-template-columns: 1fr;
  }
  
  .pdp-gallery-col {
    position: static;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .guarantee-band {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-product-info {
    max-width: 60%;
  }
  
  .sticky-save-pill {
    display: none;
  }
}
