/* BrainMary Official DTC Store - Modern Botanical Theme */
:root {
  --c-bg: #f8fbf9;
  --c-bg-alt: #ffffff;
  --c-bg-dark: #0d2b1f;
  --c-bg-forest: #143d2b;
  --c-text: #1a2e26;
  --c-text-muted: #4a6358;
  --c-text-light: #f1f7f3;
  --c-primary: #143d2b;
  --c-primary-dark: #0a2118;
  --c-accent: #2e7d32;
  --c-accent-light: #e8f5e9;
  --c-amber: #f59e0b;
  --c-amber-dark: #d97706;
  --c-border: #d7e6dc;
  --c-border-dark: #224d3a;
  --c-save: #15803d;
  --c-save-bg: #dcfce7;
  --f-display: 'Newsreader', Georgia, serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 6px rgba(13, 43, 31, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 43, 31, 0.10);
  --shadow-lg: 0 16px 40px rgba(13, 43, 31, 0.16);
  --max-w: 1180px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  background: var(--c-amber);
  color: #000;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 10px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

/* Announcement Bar */
.announcement-bar {
  background: #091e15;
  color: var(--c-text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  word-break: break-word;
}
.announcement-bar strong {
  color: var(--c-amber);
}

/* Site Header */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--c-border);
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand-logo {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-bg-dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.brand-logo .brand-leaf {
  color: var(--c-accent);
  font-size: 1.25rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-primary);
}
.header-cta {
  background: var(--c-bg-dark);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  border: 1px solid var(--c-border-dark);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--c-accent);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: #f1f5f3;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-bg-dark);
}
.mobile-nav-panel {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--c-border);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  gap: 1rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  pointer-events: none;
  box-sizing: border-box;
}
.mobile-nav-panel.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
  pointer-events: auto;
}
.mobile-nav-panel .nav-link {
  font-size: 1.05rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-border);
}

/* Hero / Buy Box Section */
.hero-buy-box {
  background: linear-gradient(180deg, #0d2b1f 0%, #143d2b 100%);
  color: var(--c-text-light);
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.hero-buy-box::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.2) 0%, rgba(13, 43, 31, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

/* Gallery Column */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}
.pdp-main-image-wrap {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}
.pdp-main-image {
  max-height: 440px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}
.pdp-main-image:hover {
  transform: scale(1.03);
}
.pdp-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.thumb-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--c-amber);
  background: rgba(245, 158, 11, 0.15);
}
.thumb-btn img {
  max-height: 100%;
  object-fit: contain;
}

/* Buy Column */
.pdp-buy-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  flex-wrap: wrap;
}
.stars {
  color: var(--c-amber);
  letter-spacing: 2px;
}
.rating-num {
  font-weight: 700;
  color: #ffffff;
}
.review-count-link {
  color: var(--c-text-light);
  text-decoration: underline;
  opacity: 0.85;
  margin-left: 0.25rem;
}
.pdp-headline {
  font-family: var(--f-display);
  font-size: 2.35rem;
  line-height: 1.18;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
}
.pdp-definition {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #d1e7dd;
  border-left: 3px solid var(--c-accent);
  padding-left: 1rem;
}
.pdp-definition strong {
  color: #ffffff;
}

/* Package Selector */
.pdp-packages-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
  border: none;
  padding: 0;
}
.package-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  box-sizing: border-box;
  width: 100%;
}
.package-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.35);
}
.package-card.selected {
  background: rgba(46, 125, 50, 0.25);
  border-color: var(--c-amber);
  box-shadow: 0 0 0 1px var(--c-amber);
}
.pkg-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.pkg-radio {
  width: 22px;
  height: 22px;
  accent-color: var(--c-amber);
  cursor: pointer;
  flex-shrink: 0;
}
.pkg-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  word-break: break-word;
}
.pkg-subtitle {
  font-size: 0.85rem;
  color: #c0ded0;
  word-break: break-word;
}
.pkg-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.pkg-price-unit {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--f-body);
  white-space: nowrap;
}
.pkg-price-unit span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c0ded0;
}
.pkg-savings-tag {
  display: inline-block;
  background: var(--c-save);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pkg-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  background: var(--c-amber);
  color: #111111;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* Dynamic Order Summary Box */
.order-summary-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  margin-top: 0.25rem;
  width: 100%;
  box-sizing: border-box;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.summary-line.total-line {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.summary-line .was-price {
  text-decoration: line-through;
  color: #9cb5a8;
  margin-right: 0.5rem;
}
.summary-line .shipping-note {
  font-size: 0.9rem;
  color: #a7f3d0;
  font-weight: 600;
}

/* CTA Button */
.pdp-cta-btn {
  display: block;
  width: 100%;
  background: var(--c-amber);
  color: #111111;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  padding: 1.15rem 2rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
  border: 2px solid #ffffff;
  box-sizing: border-box;
}
.pdp-cta-btn:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
}

/* Microcopy & Trust Row */
.pdp-microcopy {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #c0ded0;
  text-align: center;
  width: 100%;
}
.pdp-stock-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #a7f3d0;
}
.stock-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  flex-shrink: 0;
}
.pdp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.775rem;
  color: #e2f0e8;
  gap: 0.25rem;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  fill: var(--c-amber);
}

/* Trust Strip Section */
.trust-strip-section {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
  padding: 1.5rem 0;
  width: 100%;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary);
}
.trust-badge-card svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: var(--c-accent);
}

/* Content Sections */
.section {
  padding: 4.5rem 0;
  width: 100%;
  box-sizing: border-box;
}
.section.alt-bg {
  background: #ffffff;
}
.section.dark-bg {
  background: var(--c-bg-dark);
  color: var(--c-text-light);
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  box-sizing: border-box;
}
.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--f-display);
  font-size: 2.25rem;
  line-height: 1.22;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.section.dark-bg .section-title {
  color: #ffffff;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
}
.section.dark-bg .section-desc {
  color: #c0ded0;
}

/* Three Benefits / Why BrainMary */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}
.benefit-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
}
.benefit-title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 0.75rem;
  word-break: break-word;
}
.benefit-text {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Spec Table GEO Block */
.spec-box {
  background: #ffffff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}
.spec-header {
  background: var(--c-bg-forest);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
}
.spec-table tr {
  border-bottom: 1px solid var(--c-border);
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table tr:nth-child(even) {
  background: #fafdfb;
}
.spec-table th {
  width: 28%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  vertical-align: top;
  border-right: 1px solid var(--c-border);
}
.spec-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.5;
}

/* TL;DR / Short Version Box */
.tldr-box {
  background: #f0f7f3;
  border-left: 5px solid var(--c-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
  width: 100%;
}
.tldr-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tldr-text {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.6;
}

/* Supplement Facts Panel (FDA Label Style) */
.supplement-facts-panel {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 1.25rem 1.5rem;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  font-family: var(--f-body);
  color: #000000;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  overflow-x: auto;
}
.sf-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  border-bottom: 8px solid #000000;
  padding-bottom: 0.35rem;
  margin-bottom: 0.5rem;
}
.sf-serving {
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 4px solid #000000;
  padding-bottom: 0.35rem;
  margin-bottom: 0.5rem;
}
.sf-heading-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 800;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.25rem;
}
.sf-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #777777;
}
.sf-row.bold {
  font-weight: 700;
}
.sf-row.thick-bottom {
  border-bottom: 5px solid #000000;
}
.sf-footer {
  font-size: 0.775rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* Review Wall */
.review-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  box-sizing: border-box;
  width: 100%;
}
.rating-big-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--c-border);
  padding-right: 2rem;
}
.rating-big-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-primary-dark);
}
.rating-bars-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  width: 100%;
}
.bar-track {
  flex: 1;
  height: 10px;
  background: #e2ede6;
  border-radius: var(--radius-pill);
  overflow: hidden;
  min-width: 60px;
}
.bar-fill {
  height: 100%;
  background: var(--c-amber);
  border-radius: var(--radius-pill);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.customer-review-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}
.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rev-author {
  font-weight: 700;
  color: var(--c-primary-dark);
}
.rev-location {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-save);
  background: var(--c-save-bg);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.rev-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.rev-body {
  font-size: 0.925rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* FAQ Details Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.faq-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}
.faq-card summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 1rem;
}
.faq-card summary::-webkit-details-marker {
  display: none;
}
.faq-card summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-card[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.65;
  border-top: 1px solid #f0f7f3;
  padding-top: 1rem;
  word-break: break-word;
}

/* Guarantee Risk Reversal Band */
.guarantee-band {
  background: linear-gradient(135deg, #143d2b 0%, #0d2b1f 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  box-sizing: border-box;
  width: 100%;
}
.guarantee-seal-img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}
.guarantee-content h3 {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--c-amber);
}
.guarantee-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e2ede6;
}

/* References Section */
.references-box {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 3rem;
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
}
.references-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.references-list {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  word-break: break-word;
}
.references-list a {
  color: var(--c-primary);
  text-decoration: underline;
  word-break: break-all;
}

/* Sticky Add to Cart Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #091e15;
  color: #ffffff;
  border-top: 2px solid var(--c-amber);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
  padding: 0.75rem 1.25rem;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}
.sticky-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.sticky-info-title {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-info-sub {
  font-size: 0.8rem;
  color: var(--c-amber);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta {
  background: var(--c-amber);
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-cta:hover {
  background: #fbbf24;
  transform: scale(1.03);
}

/* Footer */
.site-footer {
  background: #081711;
  color: #9cb5a8;
  padding: 4.5rem 0 2.5rem;
  font-size: 0.875rem;
  border-top: 1px solid var(--c-border-dark);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  box-sizing: border-box;
}
.footer-brand h4 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1rem;
  word-break: break-word;
}
.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a:hover {
  color: var(--c-amber);
}
.footer-disclaimers {
  border-top: 1px solid var(--c-border-dark);
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.775rem;
  line-height: 1.55;
  color: #7b998a;
  word-break: break-word;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Rebrand Bridge (onward.html) ---------- */
.bridge {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  background: var(--c-bg);
  box-sizing: border-box;
}
.bridge-card {
  width: 100%;
  max-width: 620px;
  padding: 36px 30px;
  border: 1px solid var(--c-border);
  border-top: 5px solid var(--c-primary);
  border-radius: var(--radius-md);
  text-align: center;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}
.bridge-flag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  background: var(--c-amber);
}
.bridge-card h1 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 4.5vw, 2.15rem);
  font-family: var(--f-display);
  color: var(--c-primary-dark);
  font-weight: 700;
  line-height: 1.25;
}
.bridge-lede {
  margin: 0 auto 22px;
  max-width: 48ch;
  color: var(--c-text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.bridge-shot {
  margin: 0 auto 22px;
}
.bridge-shot img {
  width: min(240px, 65vw);
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.16));
}
.bridge-same {
  margin: 0 auto 26px;
  padding: 18px 22px;
  max-width: 48ch;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  text-align: left;
  font-size: 0.95rem;
  background: #f0f7f3;
  list-style: disc inside;
  box-sizing: border-box;
}
.bridge-same li {
  margin-bottom: 0.45em;
  line-height: 1.5;
  color: var(--c-text);
}
.bridge-same li:last-child {
  margin-bottom: 0;
}
.btn-bridge {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--c-amber);
  color: #111111;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  text-decoration: none;
  box-sizing: border-box;
}
.btn-bridge:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
}
.bridge-foot {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.bridge-foot a {
  color: var(--c-primary);
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .main-nav, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .guarantee-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .guarantee-seal-img {
    margin: 0 auto;
  }
  .review-stats-grid {
    grid-template-columns: 1fr;
  }
  .rating-big-box {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 680px) {
  .hero-buy-box::before {
    display: none;
  }
  .hero-buy-box {
    padding: 2rem 0 2.5rem;
  }
  .pdp-headline {
    font-size: 1.75rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .guarantee-band {
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .bridge-card {
    padding: 28px 18px;
  }
  .bridge-same {
    padding: 14px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .package-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.25rem 1rem 1rem;
  }
  .pkg-left {
    width: 100%;
  }
  .pkg-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
  }
  .pkg-badge {
    right: 10px;
    top: -10px;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
  .spec-table {
    min-width: 460px;
  }
  .spec-table th {
    width: 40%;
    padding: 0.75rem 1rem;
  }
  .spec-table td {
    padding: 0.75rem 1rem;
  }
  .sticky-bar {
    padding: 0.45rem 0.75rem;
    gap: 0.4rem;
  }
  .sticky-thumb {
    width: 32px;
    height: 32px;
  }
  .sticky-info-title {
    font-size: 0.8rem;
    max-width: 150px;
  }
  .sticky-info-sub {
    font-size: 0.7rem;
    max-width: 150px;
  }
  .sticky-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }
  .rating-big-num {
    font-size: 3rem;
  }
}
