/* Boostaro DTC Brand Store Stylesheet - Clean, Robust, High-Converting */
:root {
  --primary: #7f1227;
  --primary-dark: #630d1d;
  --primary-light: #991b32;
  --primary-wash: #fdf2f4;
  --primary-tint: #fae8eb;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-gold-bg: #fef3c7;
  --ink: #0f172a;
  --ink-secondary: #334155;
  --muted: #64748b;
  --light-border: #e2e8f0;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --success: #16a34a;
  --success-bg: #dcfce7;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --font-heading: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink-secondary);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--primary);
  color: #ffffff;
  padding: 8px 16px;
  z-index: 1000;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 10px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.announcement-badge {
  background-color: var(--accent-gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.announcement-text {
  text-align: center;
  flex: 1;
}

.announcement-guarantee {
  display: none;
  font-size: 0.8rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .announcement-guarantee {
    display: inline-block;
  }
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.trademark {
  font-size: 0.75rem;
  vertical-align: super;
  font-weight: 600;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-secondary);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-header {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 8px 18px;
}

.btn-header:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  border: 1px solid rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.45);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 28px;
}

.btn-sticky {
  background-color: var(--accent-gold);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 22px;
}

.btn-sticky:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
}

/* Mobile Toggle & Menu */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: all 0.2s ease;
  border-radius: 2px;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: 95;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s;
}

.mobile-menu-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu .nav-link {
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-border);
}

.mobile-menu-cta {
  padding-top: 10px;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* Buy Box Section */
.buy-box-section {
  padding: 40px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--light-border);
}

.buy-box-section.repeat-box {
  background: var(--bg-page);
  border-top: 1px solid var(--light-border);
}

.buy-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

@media (min-width: 900px) {
  .buy-box-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
  }
}

/* Left Gallery */
.buy-box-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}

.gallery-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.badge-accent {
  background-color: var(--primary-wash);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.stock-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px var(--success-bg);
}

.gallery-image-container {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.main-pack-shot {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
}

.gallery-proof-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--ink-secondary);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.thumb-btn {
  background-color: var(--bg-page);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 8px 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-wash);
}

.thumb-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.thumb-save {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

/* Right Purchase Column */
.buy-box-details {
  display: flex;
  flex-direction: column;
}

.product-rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars-gold {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-number {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
}

.rating-count-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
}

.product-title {
  font-size: 1.85rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.answer-first-def {
  font-size: 1rem;
  color: var(--ink-secondary);
  background-color: var(--primary-wash);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-bottom: 20px;
}

/* Package Cards */
.package-selector-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.package-card {
  display: block;
  background-color: var(--bg-card);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.package-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card:hover {
  border-color: var(--primary-light);
}

.package-card.selected {
  border-color: var(--primary);
  background-color: #fffafb;
  box-shadow: 0 4px 14px rgba(127, 18, 39, 0.12);
}

.package-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--light-border);
}

.package-card.selected .package-card-header {
  background-color: var(--primary-tint);
}

.ribbon-best-value {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.ribbon-popular {
  background-color: var(--accent-gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.ribbon-basic {
  background-color: var(--muted);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.package-supply-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.package-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.price-big {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-big .currency {
  font-size: 1.1rem;
  vertical-align: super;
}

.price-big .unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-secondary);
}

.price-strikethrough {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.package-features-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.badge-free-ship {
  background-color: var(--success-bg);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.shipping-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.bonus-tag {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

/* Order Summary Box */
.order-summary-box {
  background-color: var(--bg-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.summary-label {
  color: var(--muted);
}

.summary-value {
  font-weight: 700;
  color: var(--ink);
}

.price-highlight {
  color: var(--primary);
  font-size: 1.05rem;
}

.green-text {
  color: var(--success);
}

.main-order-btn {
  margin: 16px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-microcopy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--ink-secondary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.shield-check {
  color: var(--success);
  font-weight: 900;
  font-size: 1rem;
}

.trust-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--light-border);
}

.trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--muted);
  gap: 4px;
}

.pill-icon {
  font-size: 1.15rem;
}

/* Section Components */
.section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.section-tag {
  display: inline-block;
  background-color: var(--primary-wash);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

/* Trust Standards Strip */
.standards-strip {
  background-color: var(--bg-card);
  padding: 24px 0;
  border-bottom: 1px solid var(--light-border);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .standards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.standard-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
}

.standard-icon {
  font-size: 1.4rem;
}

.standard-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.standard-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* 3 Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background-color: var(--bg-card);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* Spec Table GEO Block */
.spec-table-wrap {
  background-color: var(--bg-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table th, .spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--light-border);
  font-size: 0.95rem;
}

.spec-table th {
  width: 32%;
  background-color: var(--bg-page);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
}

.spec-table tr:last-child th, .spec-table tr:last-child td {
  border-bottom: none;
}

/* Short Version (TL;DR) Card */
.short-version-card {
  background: linear-gradient(135deg, var(--primary-wash) 0%, #ffffff 100%);
  border: 1px solid var(--primary-tint);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.short-version-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.short-version-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

/* Supplement Facts FDA Panel */
.supplement-facts-panel {
  background-color: #ffffff;
  border: 3px solid #000000;
  padding: 16px 20px;
  font-family: var(--font-heading);
  max-width: 650px;
  margin: 30px auto;
  box-shadow: var(--shadow-md);
}

.sf-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 10px solid #000000;
  padding-bottom: 4px;
  margin-bottom: 6px;
  color: #000000;
}

.sf-servings {
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 4px solid #000000;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.sf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.sf-table th, .sf-table td {
  padding: 6px 0;
  border-bottom: 1px solid #000000;
  font-size: 0.9rem;
}

.sf-table th {
  font-weight: 800;
  text-align: right;
  border-bottom: 2px solid #000000;
}

.sf-table th:first-child {
  text-align: left;
}

.sf-table td.sf-val {
  text-align: right;
  font-weight: 700;
}

.sf-table .thick-row td {
  border-bottom: 6px solid #000000;
}

.sf-other-ingredients {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1rem;
}

.verified-buyer-pill {
  background-color: var(--success-bg);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin-bottom: 14px;
}

.review-author-meta {
  border-top: 1px solid var(--light-border);
  padding-top: 10px;
  font-size: 0.85rem;
}

.author-name {
  font-weight: 700;
  color: var(--ink);
}

.author-location {
  color: var(--muted);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--primary-light);
}

.faq-question {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-secondary);
  border-top: 1px solid var(--light-border);
  padding-top: 12px;
}

/* Guarantee Banner */
.guarantee-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 40px 0;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
}

.guarantee-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .guarantee-band-inner {
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 36px;
    padding: 0 30px;
  }
}

.guarantee-badge-large {
  width: 110px;
  height: 110px;
  background-color: var(--accent-gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.gb-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.gb-days {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guarantee-band-text h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.guarantee-band-text p {
  color: #fce7eb;
  font-size: 1rem;
  line-height: 1.5;
}

/* Takeaways (Key Facts) */
.takeaways-box {
  background-color: var(--bg-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
}

.takeaways-box h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.takeaways-bullet {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* Compact References */
.references-section {
  padding: 30px 0;
  border-top: 1px solid var(--light-border);
  font-size: 0.825rem;
  color: var(--muted);
}

.references-section h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--ink-secondary);
}

.references-list {
  padding-left: 18px;
  line-height: 1.5;
}

.references-list li {
  margin-bottom: 6px;
}

.references-list a {
  color: var(--muted);
  text-decoration: underline;
}

.references-list a:hover {
  color: var(--primary);
}

/* Sticky Dock */
.sticky-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--ink);
  color: #ffffff;
  padding: 10px 0;
  z-index: 85;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-dock.revealed {
  transform: translateY(0);
}

.sticky-dock-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-color: #ffffff;
  padding: 2px;
}

.sticky-meta {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
}

.sticky-pkg-text {
  font-size: 0.75rem;
  color: #94a3b8;
}

.sticky-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-price-wrap {
  display: flex;
  align-items: baseline;
}

.sticky-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.sticky-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-left: 2px;
}

.sticky-savings-pill {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  display: none;
}

@media (min-width: 600px) {
  .sticky-savings-pill {
    display: inline-block;
  }
}

/* Footer */
.site-footer {
  background-color: #0b1120;
  color: #cbd5e1;
  padding: 50px 0 30px;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
  }
}

.brand-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-header {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.footer-summary {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94a3b8;
}

.company-card {
  background-color: #131d33;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid #1e293b;
  font-size: 0.8rem;
  line-height: 1.45;
}

.company-line {
  margin-bottom: 4px;
}

.company-line:last-child {
  margin-bottom: 0;
}

.company-card a {
  color: #38bdf8;
}

.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.security-badges-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.sec-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  margin-right: 4px;
}

.payment-methods-box {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #1e293b;
}

.payment-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #e2e8f0;
  display: block;
  margin-bottom: 4px;
}

.payment-text {
  font-size: 0.75rem;
  color: #94a3b8;
}

.footer-disclaimers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-disclaimers {
    grid-template-columns: 1fr 1fr;
  }
}

.disclaimer-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.disclaimer-body {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

.legal-nav {
  list-style: none;
  display: flex;
  gap: 16px;
}

.legal-nav a {
  color: #94a3b8;
}

.legal-nav a:hover {
  color: #ffffff;
}

/* Utility classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
