/* ==========================================================
   SodaMelt Official Brand Store - Style System
   Archetype: Sunshine Friendly DTC
   Typography: Outfit (Headings) + DM Sans (Body)
   ========================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --color-citrus: #d9480f;
  --color-citrus-bright: #e8590c;
  --color-citrus-dark: #b83804;
  --color-citrus-glow: #fff7ed;
  --color-citrus-tint: #ffedd5;
  --color-citrus-border: #fed7aa;

  --color-gold: #f59e0b;
  --color-gold-dark: #d97706;

  --color-green: #059669;
  --color-green-light: #ecfdf5;
  --color-green-border: #a7f3d0;

  --color-bg: #fffcf7;
  --color-surface: #ffffff;
  --color-surface-soft: #fbfbfd;
  --color-text: #1e293b;
  --color-text-light: #475569;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(217, 72, 15, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(217, 72, 15, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 4px 16px rgba(245, 158, 11, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  --container-max: 1200px;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-citrus);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-citrus-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.site-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography Helpers */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-citrus);
  background-color: var(--color-citrus-glow);
  border: 1px solid var(--color-citrus-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.125rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, var(--color-gold) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-header {
  background: linear-gradient(135deg, var(--color-citrus) 0%, var(--color-citrus-bright) 100%);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.btn-header:hover {
  background: var(--color-citrus-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-buy-box {
  width: 100%;
  font-size: 1.25rem;
  padding: 1.15rem 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-buy-box:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(245, 158, 11, 0.5);
  color: #ffffff;
}

.btn-sticky {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
}

.btn-sticky:hover {
  color: #ffffff;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #b83804 0%, var(--color-citrus) 50%, #b83804 100%);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0;
  text-align: center;
}

.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: auto;
}

.primary-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.primary-nav a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.35rem 0;
  position: relative;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--color-citrus);
}

.primary-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-citrus);
  border-radius: 2px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Hero & Buy Box Section */
.hero-pdp-section {
  background: linear-gradient(180deg, #fff7ed 0%, #fffbf5 50%, var(--color-bg) 100%);
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left Column: Gallery */
.pdp-gallery {
  position: sticky;
  top: 6rem;
}

.gallery-main-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-citrus-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-citrus);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-main-img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 18px rgba(217, 72, 15, 0.1));
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-thumb-btn {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-thumb-btn:hover,
.gallery-thumb-btn.active {
  border-color: var(--color-citrus);
  box-shadow: var(--shadow-sm);
  background-color: var(--color-citrus-glow);
}

.gallery-thumb-btn img {
  width: 70px;
  height: auto;
  margin-bottom: 0.25rem;
}

.gallery-thumb-btn span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.gallery-bonuses-strip {
  margin-top: 1.25rem;
  background-color: #ffffff;
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.bonuses-strip-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.bonuses-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.bonus-mini {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.3;
}

.bonus-mini img {
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
}

/* Right Column: Buy Box */
.pdp-buy-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.stars-rating {
  color: #f59e0b;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.rating-count:hover {
  color: var(--color-citrus);
  text-decoration: underline;
}

.pdp-title {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pdp-answer-def {
  font-size: 0.9375rem;
  color: var(--color-text);
  background-color: var(--color-citrus-glow);
  border-left: 3px solid var(--color-citrus);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.25rem;
}

.pdp-answer-def strong {
  color: var(--color-citrus-dark);
}

/* Package Selector Radio Cards */
.selector-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.bundle-card {
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ffffff;
  display: block;
}

.bundle-card:hover {
  border-color: var(--color-citrus-border);
  background-color: #fffdfa;
}

.bundle-card.selected {
  border-color: var(--color-citrus);
  background-color: var(--color-citrus-glow);
  box-shadow: 0 4px 14px rgba(217, 72, 15, 0.12);
}

.bundle-radio-input {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  accent-color: var(--color-citrus);
  width: 18px;
  height: 18px;
}

.bundle-content {
  padding-left: 2rem;
}

.bundle-badge {
  position: absolute;
  top: -10px;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--color-citrus) 0%, var(--color-citrus-bright) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(217, 72, 15, 0.25);
}

.bundle-row-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.bundle-name-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.bundle-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.bundle-tagline {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.bundle-price-per {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-citrus);
}

.bundle-price-per span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.bundle-row-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.bundle-total-line {
  color: var(--color-text-light);
}

.bundle-was {
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 0.35rem;
}

.bundle-save-pill {
  background-color: var(--color-green-light);
  color: var(--color-green);
  border: 1px solid var(--color-green-border);
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
}

.bundle-shipping-note {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-green);
  margin-top: 0.35rem;
}

/* Dynamic Price Box */
.pdp-dynamic-summary {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-left {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.summary-total {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}

.summary-save {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-green);
}

/* Trust & Microcopy under CTA */
.pdp-microcopy {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

.microcopy-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.microcopy-item svg,
.microcopy-item .check {
  color: var(--color-green);
  font-weight: 700;
}

/* Trust Badges Strip */
.trust-strip-section {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background-color: var(--color-citrus-glow);
  color: var(--color-citrus);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--color-citrus-border);
}

.trust-badge-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
}

.trust-badge-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Content Sections */
.site-section {
  padding: 4rem 0;
}

.site-section-alt {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Spec Table (At a Glance GEO Block) */
.spec-table-wrap {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}

.spec-table th {
  width: 28%;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  background-color: var(--color-surface-soft);
}

.spec-table td {
  color: var(--color-text-light);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* The Short Version (TL;DR GEO block) */
.tldr-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border: 2px solid var(--color-citrus-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.tldr-heading {
  font-size: 1.125rem;
  color: var(--color-citrus-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tldr-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}

/* Why SodaMelt - 3 Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pillar-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-citrus-border);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-citrus-glow);
  color: var(--color-citrus);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-citrus-border);
}

.pillar-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Ingredients Preview Grid */
.ing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.ing-preview-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.ing-preview-name {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.ing-preview-role {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-citrus);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.ing-preview-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

/* Supplement Facts Label Panel */
.label-panel-box {
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 0;
  padding: 1.5rem;
  max-width: 680px;
  margin: 2rem auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #000000;
}

.label-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border-bottom: 10px solid #000000;
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
}

.label-serving-info {
  font-size: 0.9375rem;
  font-weight: 700;
  border-bottom: 4px solid #000000;
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
}

.label-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.label-table th {
  text-align: left;
  border-bottom: 1px solid #000000;
  padding: 0.25rem 0;
  font-weight: 700;
}

.label-table th.right {
  text-align: right;
}

.label-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid #000000;
}

.label-table tr.blend-header td {
  font-weight: 700;
  border-bottom: 1px solid #000000;
}

.label-table tr.blend-sub td {
  padding-left: 1.25rem;
  border-bottom: none;
  font-size: 0.8125rem;
  color: #333333;
}

.label-footer-note {
  border-top: 4px solid #000000;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

.label-other-ing {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Honest Comparison Table */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}

.compare-table th {
  background-color: var(--color-surface-soft);
  font-family: var(--font-heading);
  font-weight: 700;
}

.compare-table th.highlight,
.compare-table td.highlight {
  background-color: var(--color-citrus-glow);
  color: var(--color-citrus-dark);
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* Reviews Grid & Cards */
.reviews-summary-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.reviews-score-col {
  text-align: center;
  border-right: 1px solid var(--color-border-light);
  padding-right: 2rem;
}

.big-rating-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-citrus);
  margin-bottom: 0.5rem;
}

.rating-distribution {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dist-row {
  display: grid;
  grid-template-columns: 60px 1fr 45px;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.dist-bar-track {
  height: 8px;
  background-color: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.dist-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-citrus) 0%, var(--color-gold) 100%);
  border-radius: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.review-city {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-green);
  background-color: var(--color-green-light);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.review-body {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* FAQ Accordion */
.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--color-citrus-border);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-citrus);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-summary::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
  border-top: 1px solid var(--color-border-light);
  margin-top: -0.25rem;
  padding-top: 0.75rem;
}

/* Guarantee Ribbon Block */
.guarantee-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid var(--color-citrus-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem auto;
  box-shadow: var(--shadow-md);
}

.guarantee-seal-img {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem auto;
}

.guarantee-title {
  font-size: 1.75rem;
  color: var(--color-citrus-dark);
  margin-bottom: 0.75rem;
}

.guarantee-text {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 1.25rem auto;
}

/* Takeaways & References */
.takeaways-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-citrus-border);
  border-left: 4px solid var(--color-citrus);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2rem;
}

.takeaways-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.takeaways-list li {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  padding-left: 1.5rem;
  position: relative;
}

.takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.references-box {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.references-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.references-list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.references-list a {
  color: var(--color-text-light);
  text-decoration: underline;
}

.references-list a:hover {
  color: var(--color-citrus);
}

/* Sticky Add-To-Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid var(--color-citrus);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 99;
  padding: 0.75rem 0;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-prod {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sticky-details {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.sticky-tier {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.sticky-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sticky-price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-citrus);
}

.sticky-save {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-green);
}

/* Footer */
.site-footer {
  background-color: #111827;
  color: #94a3b8;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  font-size: 0.875rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.footer-company-info {
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-company-info a {
  color: #f8fafc;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: #94a3b8;
  font-size: 0.8125rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-trust-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-trust-item {
  font-size: 0.75rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-check {
  color: var(--color-green);
  font-weight: 700;
}

.footer-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pay-tag {
  background-color: #1f2937;
  color: #cbd5e1;
  border: 1px solid #374151;
  font-size: 0.6875rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.footer-legal-block {
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  padding: 1.75rem 0;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-block strong {
  color: #94a3b8;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links .sep {
  color: #374151;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pdp-gallery {
    position: static;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .ing-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-summary-card {
    grid-template-columns: 1fr;
  }
  .reviews-score-col {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: visibility 0s linear 0.2s, opacity 0.2s ease, transform 0.2s ease;
  }
  .primary-nav.nav-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: visibility 0s linear 0s, opacity 0.2s ease, transform 0.2s ease;
  }
  .primary-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .sticky-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .sticky-pricing {
    align-items: flex-start;
  }
}
