/* ============================================================
   AminoVita Shell — shared nav + footer styles (Phase 2)
   Used by all pages; one source of truth.
   ============================================================ */

/* ---------- Compliance ticker bar (animated) ---------- */
.av-ticker-bar {
  background: #161b35;
  overflow: hidden;
  padding: 9px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.av-ticker-track {
  display: flex;
  width: max-content;
  animation: av-ticker 45s linear infinite;
  will-change: transform;
}
.av-ticker-track:hover { animation-play-state: paused; }
.av-ticker-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.av-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  color: rgba(252, 248, 245, 0.78);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.av-ticker-sep { color: rgba(252, 248, 245, 0.28); font-size: 11px; }
.av-ticker-pip {
  display: inline-block;
  background: #2f6b3a;
  color: #fcf8f5;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.16em;
}
@keyframes av-ticker {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .av-ticker-track { animation: none; }
}

/* ---------- Main nav (sticky, frosted on scroll) ---------- */
.av-mainnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fcf8f5;
  border-bottom: 1px solid rgba(31, 38, 71, 0.10);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, border-color 220ms ease;
  isolation: isolate;
}
.av-mainnav.scrolled {
  background: rgba(252, 248, 245, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
          backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 6px 24px rgba(31, 38, 71, 0.08);
  border-bottom-color: rgba(31, 38, 71, 0.06);
}
.av-mainnav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  transition: padding 200ms ease;
}
.av-mainnav.scrolled .av-mainnav-inner { padding: 12px 40px; }

.av-logo-link { display: inline-flex; align-items: center; }
.av-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: height 200ms ease;
}
.av-mainnav.scrolled .av-logo-img { height: 38px; }

.av-nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
.av-nav-links a {
  color: #1f2647;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 16px;
  white-space: nowrap;
  transition: color 180ms ease;
}
.av-nav-links a:hover { color: #D4AF37; }
.av-nav-sep { color: rgba(31, 38, 71, 0.18); font-size: 14px; user-select: none; }

.av-nav-icons { display: flex; align-items: center; gap: 4px; }
.av-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1f2647;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: color 180ms ease;
}
.av-icon-btn:hover { color: #D4AF37; }
.av-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #D4AF37;
  color: #1f2647;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  border: 1.5px solid #fcf8f5;
  font-family: 'DM Sans', sans-serif;
}
.av-cart-badge:empty { display: none; }

@media (max-width: 900px) {
  .av-nav-links { display: none; }
  .av-mainnav-inner { grid-template-columns: auto auto; }
}

/* ============================================================
   Footer
   ============================================================ */
.av-footer {
  background: #161b35;
  position: relative;
  overflow: hidden;
  color: #fcf8f5;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.av-footer-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.av-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 80px 32px;
}
.av-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 80px;
}
.av-footer-brand { max-width: 480px; }
.av-footer-logo { margin-bottom: 22px; }
.av-footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.av-footer-tagline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.32;
  color: #fcf8f5;
  margin: 0 0 30px;
  letter-spacing: -0.005em;
  font-style: italic;
}
.av-footer-newsletter { margin-bottom: 24px; }
.av-newsletter-label {
  font-size: 12.5px;
  color: #fcf8f5;
  margin: 0 0 12px;
  font-weight: 600;
}
.av-newsletter-form {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(252, 248, 245, 0.12);
  border-radius: 4px;
  overflow: hidden;
  max-width: 420px;
  background: transparent;
  margin-bottom: 10px;
}
.av-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fcf8f5;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 18px;
}
.av-newsletter-input::placeholder { color: rgba(252, 248, 245, 0.45); }
.av-newsletter-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 18px;
  color: #D4AF37;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  transition: background 180ms ease;
}
.av-newsletter-btn:hover { background: rgba(212, 175, 55, 0.10); }
.av-newsletter-fineprint {
  font-size: 11.5px;
  color: rgba(252, 248, 245, 0.45);
  margin: 0;
}
.av-footer-fda {
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(252, 248, 245, 0.45);
  font-style: italic;
  border: 1px solid rgba(252, 248, 245, 0.10);
  padding: 12px 14px;
  border-radius: 4px;
  max-width: 420px;
}

.av-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}
.av-footer-col h4 {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 18px;
  font-family: 'DM Sans', sans-serif;
}
.av-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.av-footer-col li { margin-bottom: 10px; }
.av-footer-col a {
  color: #fcf8f5;
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.005em;
  transition: color 150ms ease;
}
.av-footer-col a:hover { color: #D4AF37; }

.av-footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(252, 248, 245, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(252, 248, 245, 0.45);
}
.av-footer-tagline-bottom {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .av-footer-inner { padding: 56px 40px 28px; }
  .av-footer-top { grid-template-columns: 1fr; gap: 48px; }
  .av-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
  .av-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .av-footer-inner { padding: 48px 24px 24px; }
  .av-footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .av-footer-tagline { font-size: 18px; }
}

/* ============================================================
   HOME PAGE SECTIONS — ports Jake's home-v1.html design
   Built to match Jake's design proportions at desktop ≥1280px.
   ============================================================ */

/* ---------- HERO ---------- */
.av-hero {
  position: relative;
  min-height: 760px;
  background: linear-gradient(180deg, #1f2647 0%, #384168 100%);
  font-family: 'DM Sans', sans-serif;
  color: #fcf8f5;
  overflow: hidden;
}
.av-hero-spotlight {
  position: absolute;
  top: 44%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0) 60%);
  pointer-events: none;
}
.av-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.av-hero-eyebrow {
  position: relative;
  z-index: 2;
  padding: 36px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.av-hero-rule { display: inline-block; height: 1px; width: 28px; background: #D4AF37; }
.av-hero-kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4AF37;
}
.av-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 80px 0;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.av-hero-copy { max-width: 480px; }
.av-hero-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: #fcf8f5;
  margin: 0 0 22px;
}
.av-hero-em { font-style: italic; color: #D4AF37; }
.av-hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252,248,245,0.72);
  margin: 0 0 28px;
  max-width: 420px;
}
.av-hero-ctas { display: flex; align-items: center; gap: 22px; }
.av-cta-primary {
  background: #D4AF37;
  color: #1f2647;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 44px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.av-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(212,175,55,0.30); }
.av-cta-secondary {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.5);
  padding-bottom: 5px;
  cursor: pointer;
}
.av-hero-product { display: flex; justify-content: center; position: relative; }
.av-hero-jar {
  width: 460px;
  height: auto;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.55));
  position: relative;
  z-index: 2;
}
.av-hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(212,175,55,0.25);
  background: rgba(31,38,71,0.55);
  padding: 20px 80px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  z-index: 2;
}
.av-hero-strip-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  border-right: 1px solid rgba(212,175,55,0.25);
  padding-right: 28px;
  line-height: 1.4;
}
.av-hero-strip-stat {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  gap: 6px;
}
.av-hero-num {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: #D4AF37;
}
.av-hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fcf8f5;
}
.av-hero-stat-sub {
  font-size: 10.5px;
  color: rgba(252,248,245,0.55);
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .av-hero { min-height: auto; padding-bottom: 280px; }
  .av-hero-split { grid-template-columns: 1fr; padding: 32px 24px 0; gap: 32px; }
  .av-hero-h1 { font-size: 44px; }
  .av-hero-jar { width: 280px; }
  .av-hero-strip { grid-template-columns: 1fr 1fr; padding: 24px; gap: 16px; }
  .av-hero-strip-label { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid rgba(212,175,55,0.25); padding: 0 0 12px; }
}

/* ---------- SOCIAL PROOF ---------- */
.av-social {
  background: #fcf8f5;
  color: #384168;
  font-family: 'DM Sans', sans-serif;
  padding: 44px 64px 40px;
  text-align: center;
}
.av-social-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  max-width: 640px;
  margin: 0 auto 22px;
  letter-spacing: -0.005em;
}
.av-social-headline em { font-style: italic; color: #D4AF37; }
.av-social-pillars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(56,65,104,0.62);
}
.av-social-diamond {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #D4AF37;
  transform: rotate(45deg);
}

/* ---------- HOW IT WORKS ---------- */
.av-how {
  background: #1f2647;
  color: #fcf8f5;
  font-family: 'DM Sans', sans-serif;
  padding: 64px 0 56px;
  position: relative;
  scroll-margin-top: 80px;
}
.av-how-grain {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.av-how-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.av-how-header { text-align: center; margin-bottom: 44px; max-width: 760px; margin-inline: auto; }
.av-how-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 14px;
}
.av-how-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fcf8f5;
  margin: 0 0 16px;
}
.av-how-h2 em { font-style: italic; color: #D4AF37; }
.av-how-sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(252,248,245,0.62);
  margin: 0 auto;
  max-width: 580px;
}
.av-stacks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.av-stack-card {
  all: unset;
  display: block;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  background: #2a3258;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  position: relative;
}
.av-stack-card:hover { background: #313a64; border-color: rgba(212,175,55,0.30); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.av-stack-card.open { background: #2a3258; border-color: rgba(212,175,55,0.30); }
.av-stack-label {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
}
.av-stack-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(252,248,245,0.62);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.av-stack-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  color: #fcf8f5;
  padding-right: 28px;
  letter-spacing: -0.01em;
}
.av-stack-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms ease, opacity 300ms ease, padding-top 300ms ease;
  padding-top: 0;
}
.av-stack-card.open .av-stack-body { max-height: 800px; opacity: 1; padding-top: 18px; }
.av-stack-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(252,248,245,0.62);
  margin: 0;
}
.av-stack-ingredients {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(252,248,245,0.10);
}
.av-ingredient-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 8px 0;
  align-items: baseline;
  border-top: 1px solid rgba(252,248,245,0.10);
  font-size: 12px;
  color: rgba(252,248,245,0.45);
  letter-spacing: 0.01em;
}
.av-ingredient-row:first-child { border-top: none; }
.av-ingredient-row .dose {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  color: #fcf8f5;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.av-stack-chevron {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease;
}
.av-stack-card.open .av-stack-chevron { transform: rotate(180deg); }
.av-how-cta-wrap { text-align: center; margin-top: 44px; }
.av-cta-outline {
  display: inline-block;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}
.av-cta-outline:hover { background: #D4AF37; color: #1f2647; }
.av-how-cta-tag {
  margin-top: 14px;
  font-size: 11.5px;
  color: rgba(252,248,245,0.45);
  font-family: 'DM Serif Display', serif;
}
.av-how-cta-tag em { font-style: italic; }

@media (max-width: 900px) {
  .av-how-inner { padding: 0 24px; }
  .av-how-h2 { font-size: 32px; }
  .av-stacks-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- PRODUCTS ---------- */
.av-products {
  background: #1f2647;
  color: #fcf8f5;
  font-family: 'DM Sans', sans-serif;
  padding: 64px 0 72px;
}
.av-products-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.av-products-header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}
.av-products-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #fcf8f5;
  margin: 0;
}
.av-products-h2 em { font-style: italic; color: #D4AF37; }
.av-products-sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(252,248,245,0.62);
  margin: 0;
  max-width: 380px;
}
.av-products-shopall {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding-bottom: 4px;
  white-space: nowrap;
}
.av-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.av-product-card {
  background: #2a3258;
  border: 1px solid rgba(252,248,245,0.10);
  border-radius: 18px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 460px;
  box-sizing: border-box;
  opacity: 0.92;
}
.av-product-card.live { border-color: rgba(212,175,55,0.20); opacity: 1; }
.av-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.av-product-badge.new { background: #D4AF37; color: #1f2647; }
.av-product-badge.soon { background: rgba(252,248,245,0.10); color: #fcf8f5; }
.av-product-code {
  display: inline-block;
  margin: 24px 0 14px;
  border: 1px solid rgba(212,175,55,0.20);
  color: #D4AF37;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.av-product-code.dim { border-color: rgba(252,248,245,0.10); color: rgba(252,248,245,0.45); }
.av-product-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  color: #fcf8f5;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.av-product-tagline {
  font-size: 11.5px;
  color: rgba(252,248,245,0.45);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.av-product-imgwrap { flex: 1; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.av-product-img { width: 180px; height: auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.45)); }
.av-product-img.dim { filter: drop-shadow(0 14px 24px rgba(0,0,0,0.45)) grayscale(0.4) brightness(0.78); opacity: 0.78; }
.av-product-cta {
  display: inline-block;
  background: transparent;
  color: rgba(252,248,245,0.45);
  border: 1px solid rgba(252,248,245,0.10);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  margin-bottom: 12px;
  transition: opacity 180ms ease;
}
.av-product-cta.live { background: #fcf8f5; color: #1f2647; border: none; cursor: pointer; }
.av-product-cta.live:hover { opacity: 0.88; }
.av-product-price { font-size: 11.5px; color: rgba(252,248,245,0.62); }

@media (max-width: 1100px) {
  .av-products-inner { padding: 0 24px; }
  .av-products-header { grid-template-columns: 1fr; gap: 18px; }
  .av-products-h2 { font-size: 32px; }
  .av-products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .av-products-grid { grid-template-columns: 1fr; }
}

/* ---------- GUIDES ---------- */
.av-guides {
  background: #fcf8f5;
  color: #384168;
  font-family: 'DM Sans', sans-serif;
  padding: 64px 0 72px;
}
.av-guides-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.av-guides-header { max-width: 760px; margin-bottom: 36px; }
.av-guides-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 14px;
}
.av-guides-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: #384168;
  margin: 0 0 22px;
}
.av-guides-h2 em { font-style: italic; color: #D4AF37; }
.av-guides-sub {
  font-size: 15px;
  color: rgba(56,65,104,0.62);
  line-height: 1.6;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  margin: 0;
}
.av-guides-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.av-guide-tile {
  display: block;
  text-decoration: none;
  color: #384168;
}
.av-guide-img {
  width: 100%;
  height: 240px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.av-guide-img[data-tone="1"] { background: linear-gradient(135deg, #e9e2d4 0%, #c9b88e 140%); }
.av-guide-img[data-tone="2"] { background: linear-gradient(135deg, #dfd6c5 0%, #a8916b 140%); }
.av-guide-img[data-tone="3"] { background: linear-gradient(135deg, #ece7df 0%, #384168 140%); }
.av-guide-img[data-tone="4"] { background: linear-gradient(135deg, #e3d9c6 0%, #1f2647 140%); }
.av-guide-img[data-tone="5"] { background: linear-gradient(135deg, #f0ebe1 0%, #d49b1a 140%); }
.av-guide-img[data-tone="6"] { background: linear-gradient(135deg, #d8cdb6 0%, #384168 140%); }
.av-guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 18px 0 10px;
}
.av-guide-meta span:last-child { color: rgba(56,65,104,0.45); font-weight: 500; }
.av-guide-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.18;
  color: #384168;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.av-guide-link {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #384168;
  border-bottom: 1px solid #D4AF37;
  padding-bottom: 3px;
}

@media (max-width: 1100px) {
  .av-guides-inner { padding: 0 24px; }
  .av-guides-h2 { font-size: 28px; }
  .av-guides-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .av-guides-rail { grid-template-columns: 1fr; }
}

/* ---------- EMAIL CAPTURE BANNER (between guides + footer) ---------- */
.av-email-banner {
  background: #161b35;
  color: #fcf8f5;
  font-family: 'DM Sans', sans-serif;
  height: 360px;
  position: relative;
  overflow: hidden;
}
.av-email-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(56,65,104,0.55) 0%, rgba(31,38,71,0.92) 50%, rgba(15,20,40,1) 100%);
}
.av-email-grain {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.av-email-jar-l { position: absolute; left: 60px; bottom: -30px; z-index: 1; }
.av-email-jar-r { position: absolute; right: 60px; bottom: -30px; z-index: 1; }
.av-email-jar-l img, .av-email-jar-r img { width: 200px; filter: drop-shadow(0 14px 28px rgba(0,0,0,0.6)); display: block; }
.av-email-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 320px;
  z-index: 2;
}
.av-email-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.012em;
  color: #fcf8f5;
}
.av-email-h2 em { font-style: italic; color: #D4AF37; }
.av-email-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(252,248,245,0.62);
  margin: 0 0 24px;
  max-width: 460px;
}
.av-email-form {
  display: flex;
  align-items: center;
  background: rgba(252,248,245,0.06);
  border: 1px solid rgba(252,248,245,0.10);
  border-radius: 999px;
  padding: 4px;
  width: 100%;
  max-width: 540px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.av-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fcf8f5;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 22px;
  letter-spacing: 0.005em;
}
.av-email-input::placeholder { color: rgba(252,248,245,0.45); }
.av-email-submit {
  background: #fcf8f5;
  color: #1f2647;
  border: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 180ms ease;
}
.av-email-submit:hover { opacity: 0.88; }

@media (max-width: 900px) {
  .av-email-banner { height: auto; padding: 64px 24px 72px; }
  .av-email-jar-l, .av-email-jar-r { display: none; }
  .av-email-content { position: relative; padding: 0; }
  .av-email-h2 { font-size: 28px; }
}

/* ============================================================
   RUO PEPTIDES PAGE — sections specific to ruo-peptides.html
   ============================================================ */

/* ---------- RUO HERO (bg image + overlay) ---------- */
.av-ruo-hero {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: #fcf8f5;
}
.av-ruo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,38,71,0.92) 0%, rgba(31,38,71,0.65) 50%, rgba(31,38,71,0) 100%);
  pointer-events: none;
}
.av-ruo-hero-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.av-ruo-hero-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.014em;
  color: #fcf8f5;
  margin: 0 0 20px;
  font-weight: 400;
}
.av-ruo-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(252,248,245,0.92);
  margin: 0 0 32px;
}
.av-ruo-hero-cta {
  display: inline-block;
  background: #D4AF37;
  color: #1f2647;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.av-ruo-hero-cta:hover {
  background: #e0bd47;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.30);
}

@media (max-width: 900px) {
  .av-ruo-hero { height: 380px; padding: 0 24px; }
  .av-ruo-hero-h1 { font-size: 38px; }
}

/* ---------- DIVIDER BAR ---------- */
.av-divider-bar {
  background: #fcf8f5;
  padding: 28px 40px;
  border-top: 1px solid rgba(31,38,71,0.08);
  border-bottom: 1px solid rgba(31,38,71,0.08);
}
.av-divider-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: #384168;
  flex-wrap: wrap;
}
.av-divider-dot { color: #D4AF37; font-size: 18px; }

/* ---------- BENEFITS (full-width image) ---------- */
.av-benefits {
  background: #1f2647;
  min-height: 500px;
  display: block;
}
.av-benefits img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- FEATURED COMPOUNDS ---------- */
.av-featured {
  background: #1f2647;
  padding: 90px 0 110px;
  color: #fcf8f5;
}
.av-featured-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.av-featured-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 18px;
}
.av-featured-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: #fcf8f5;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.av-featured-rule {
  width: 64px;
  height: 1px;
  background: #D4AF37;
  margin: 0 auto 60px;
  opacity: 0.7;
}
.av-compound-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.av-compound-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: rgba(252,248,245,0.02);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 4px;
  padding: 36px 24px 30px;
  transition: all 220ms ease;
  cursor: pointer;
  position: relative;
}
.av-compound-tile:hover {
  border-color: rgba(212,175,55,0.55);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.20) inset;
}
.av-compound-img {
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.av-compound-img img {
  max-height: 100%;
  max-width: 70%;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.55));
  transition: filter 220ms ease, transform 220ms ease;
}
.av-compound-tile:hover .av-compound-img img {
  filter: drop-shadow(0 14px 30px rgba(212,175,55,0.30)) drop-shadow(0 8px 18px rgba(0,0,0,0.55));
  transform: scale(1.04);
}
.av-compound-kicker {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(252,248,245,0.62);
  margin-bottom: 10px;
  text-align: center;
}
.av-compound-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #D4AF37;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  text-align: center;
}
.av-compound-blurb {
  font-size: 12.5px;
  color: rgba(252,248,245,0.72);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
.av-compound-price {
  font-size: 16px;
  font-weight: 700;
  color: #fcf8f5;
  text-align: center;
}
.av-featured-cta-wrap { text-align: center; }
.av-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  background: #D4AF37;
  color: #1f2647;
  padding: 18px 44px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 220ms ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.20);
}
.av-featured-cta:hover {
  background: #e0bd47;
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.22), 0 0 32px rgba(212,175,55,0.45), 0 10px 28px rgba(0,0,0,0.30);
}

@media (max-width: 1100px) {
  .av-featured-inner { padding: 0 24px; }
  .av-featured-h2 { font-size: 36px; }
  .av-compound-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .av-compound-grid { grid-template-columns: 1fr; }
}

/* ---------- GUIDES CTA on RUO ---------- */
.av-guides-cta-wrap { text-align: center; margin-top: 40px; }
.av-guides-cta {
  display: inline-block;
  background: #384168;
  color: #fcf8f5;
  border: none;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms ease;
}
.av-guides-cta:hover { background: #1f2647; }

/* ============================================================
   CHECKOUT — split-pane order summary + payment
   ============================================================ */
.av-checkout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - 96px);
  max-width: 1440px;
  margin: 0 auto;
  background: #fcf8f5;
}
.av-checkout-left { background: #fcf8f5; }
.av-checkout-right {
  background: linear-gradient(180deg, #1f2647 0%, #161c38 100%);
  position: relative;
  overflow: hidden;
}
.av-checkout-right-grain { display: none; }
.av-checkout-right-spotlight { display: none; }
.av-checkout-right .av-checkout-pane,
.av-checkout-pane.dark { color: #fcf8f5; }
.av-checkout-pane {
  padding: 52px 56px 60px;
  position: relative;
  z-index: 1;
}

.av-checkout-back {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(31,38,71,0.62);
  text-decoration: none;
  margin-bottom: 14px;
  display: inline-block;
  transition: color 180ms ease;
}
.av-checkout-back:hover { color: #1f2647; }
.av-checkout-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  letter-spacing: -0.014em;
  color: #1f2647;
  margin: 0 0 6px;
  font-weight: 400;
}
.av-checkout-sub { font-size: 13px; color: rgba(31,38,71,0.62); margin: 0 0 28px; }

/* Order line */
.av-order-line {
  background: #fcf8f5;
  border: 1px solid rgba(31,38,71,0.10);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
}
.av-order-img {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  background: linear-gradient(135deg, #384168, #161c38);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.av-order-img img { width: 80%; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); }
.av-order-qty-pill {
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #D4AF37;
  color: #1f2647;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-order-name { font-size: 14.5px; font-weight: 600; color: #1f2647; margin-bottom: 4px; }
.av-order-sub { font-size: 12px; color: rgba(31,38,71,0.62); margin-bottom: 10px; }
.av-order-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.av-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3ece2;
  border: 1px solid rgba(31,38,71,0.10);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  color: #1f2647;
}
.av-pill .muted { color: rgba(31,38,71,0.62); }
.av-pill button {
  background: none;
  border: none;
  cursor: pointer;
  color: #1f2647;
  font-size: 13px;
  width: 14px;
  padding: 0;
  line-height: 1;
}
.av-order-price { text-align: right; }
.av-order-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(31,38,71,0.62);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: color 180ms;
}
.av-order-remove:hover { color: #1f2647; }
.av-order-strike { font-size: 12px; color: rgba(31,38,71,0.45); text-decoration: line-through; }
.av-order-final { font-size: 17px; font-weight: 700; color: #1f2647; }

/* Discount field */
.av-discount-row {
  background: #f3ece2;
  border: 1px solid rgba(31,38,71,0.10);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
}
.av-discount-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-discount-title { font-size: 14px; font-weight: 600; color: #1f2647; }
.av-discount-sub { font-size: 12px; color: rgba(31,38,71,0.62); }
.av-discount-input { display: flex; gap: 8px; align-items: center; }
.av-discount-input input {
  background: #fcf8f5;
  border: 1px solid rgba(31,38,71,0.10);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f2647;
  outline: none;
  width: 140px;
}
.av-discount-input button {
  background: #1f2647;
  color: #fcf8f5;
  border: none;
  cursor: pointer;
  padding: 11px 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 8px;
}

/* Totals */
.av-totals {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(31,38,71,0.10);
}
.av-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #1f2647;
}
.av-totals-row .muted { color: rgba(31,38,71,0.45); font-size: 12px; }
.av-totals-row.total {
  border-top: 1px solid rgba(31,38,71,0.10);
  margin-top: 6px;
  padding-top: 16px;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.av-checkout-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(31,38,71,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(31,38,71,0.55);
}

/* ---------- Right pane (payment) ---------- */
.av-pay-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  letter-spacing: -0.014em;
  color: #fcf8f5;
  margin: 0 0 22px;
  font-weight: 400;
}
.av-pay-tabs {
  display: flex;
  background: rgba(252,248,245,0.04);
  border: 1px solid rgba(252,248,245,0.14);
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
}
.av-pay-tab {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: rgba(252,248,245,0.55);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.02em;
  font-family: inherit;
}
.av-pay-tab.active {
  background: rgba(252,248,245,0.06);
  color: #fcf8f5;
  border-bottom-color: #D4AF37;
}

.av-pay-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.av-pay-option {
  background: transparent;
  border: 1px solid rgba(252,248,245,0.14);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(252,248,245,0.78);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  min-height: 70px;
  transition: all 180ms ease;
  letter-spacing: 0.02em;
  font-family: inherit;
}
.av-pay-option.active {
  background: rgba(212,175,55,0.10);
  border-color: #D4AF37;
  color: #fcf8f5;
}

.av-pay-form { display: flex; flex-direction: column; gap: 14px; }
.av-field { display: block; }
.av-field-label {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(252,248,245,0.78);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.av-field input,
.av-select select {
  width: 100%;
  box-sizing: border-box;
  background: rgba(252,248,245,0.04);
  border: 1px solid rgba(252,248,245,0.14);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 13.5px;
  color: #fcf8f5;
  outline: none;
  transition: border-color 180ms ease;
}
.av-field input:focus,
.av-select select:focus { border-color: #D4AF37; }
.av-field input::placeholder { color: rgba(252,248,245,0.30); }
.av-select { position: relative; }
.av-select select { appearance: none; -webkit-appearance: none; padding-right: 32px; cursor: pointer; }
.av-select::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(252,248,245,0.55);
  font-size: 10px;
}
.av-field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.av-field-row {
  display: flex;
  align-items: center;
  background: rgba(252,248,245,0.04);
  border: 1px solid rgba(252,248,245,0.14);
  border-radius: 8px;
  padding-right: 10px;
}
.av-field-row input { border: none; background: transparent; }
.av-card-brands { display: flex; gap: 4px; align-items: center; }
.av-card-brands .brand-visa { background: #1A1F71; color: #fff; font-size: 9px; font-weight: 800; font-style: italic; padding: 3px 6px; border-radius: 3px; letter-spacing: 0.03em; }
.av-card-brands .brand-mc { display: inline-flex; align-items: center; background: #fff; border-radius: 3px; padding: 0 4px; height: 16px; }
.av-card-brands .brand-mc i { display: block; width: 10px; height: 10px; border-radius: 50%; }
.av-card-brands .brand-mc .b-red { background: #EB001B; margin-right: -3px; }
.av-card-brands .brand-mc .b-yel { background: #F79E1B; margin-left: -3px; opacity: 0.85; }
.av-card-brands .brand-amex { background: #006FCF; color: #fff; font-size: 8px; font-weight: 800; padding: 3px 5px; border-radius: 3px; letter-spacing: 0.04em; }

.av-pay-submit {
  background: #D4AF37;
  color: #1f2647;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  margin-top: 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.av-pay-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}
.av-pay-fineprint {
  font-size: 11px;
  color: rgba(252,248,245,0.45);
  margin: 4px 0 0;
  text-align: center;
}
.av-pay-fineprint a { color: rgba(252,248,245,0.78); text-decoration: underline; }

@media (max-width: 1000px) {
  .av-checkout { grid-template-columns: 1fr; }
  .av-checkout-pane { padding: 32px 24px; }
}

/* ============================================================
   CHECKOUT — Section headers, shipping options, payment toggle
   ============================================================ */
.av-pay-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(252,248,245,0.10);
}
.av-pay-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.av-pay-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: #fcf8f5;
  margin: 0 0 18px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.av-pay-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.40);
  color: #D4AF37;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.av-field-trio { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; }

/* Shipping radio cards */
.av-ship-options { display: flex; flex-direction: column; gap: 10px; }
.av-ship-card {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(252,248,245,0.04);
  border: 1px solid rgba(252,248,245,0.14);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}
.av-ship-card:hover { border-color: rgba(212,175,55,0.40); }
.av-ship-card:has(input:checked) {
  border-color: #D4AF37;
  background: rgba(212,175,55,0.08);
}
.av-ship-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(252,248,245,0.30);
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.av-ship-card input[type="radio"]:checked {
  border-color: #D4AF37;
}
.av-ship-card input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #D4AF37;
}
.av-ship-card-label { font-size: 13.5px; font-weight: 600; color: #fcf8f5; }
.av-ship-card-eta { font-size: 11.5px; color: rgba(252,248,245,0.55); margin-top: 2px; }
.av-ship-card-price { font-size: 14px; font-weight: 600; color: #fcf8f5; }
.av-free { color: #D4AF37; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
.av-ship-note {
  font-size: 11.5px;
  color: rgba(252,248,245,0.55);
  margin: 12px 0 0;
  font-style: italic;
}

/* Checkbox */
.av-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(252,248,245,0.78);
  cursor: pointer;
  margin-top: 6px;
}
.av-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(252,248,245,0.30);
  border-radius: 3px;
  background: transparent;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.av-checkbox input[type="checkbox"]:checked {
  background: #D4AF37;
  border-color: #D4AF37;
}
.av-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #1f2647;
  border-bottom: 2px solid #1f2647;
  transform: rotate(45deg);
}

/* Payment alt-method messages */
.av-pay-card-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.av-pay-card-fields[hidden] { display: none; }
.av-pay-alt-msg {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: rgba(252,248,245,0.78);
  line-height: 1.5;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .av-field-trio { grid-template-columns: 1fr; }
}

/* ============================================================
   AMINOAM PRODUCT PAGE
   ============================================================ */
.am-hero {
  background: #fcf8f5;
  padding: 32px 80px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.am-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(31,38,71,0.55);
  margin-bottom: 28px;
}
.am-breadcrumb a { color: rgba(31,38,71,0.55); text-decoration: none; }
.am-breadcrumb a:hover { color: #1f2647; }
.am-breadcrumb span { margin: 0 10px; }
.am-breadcrumb .current { color: #1f2647; }

.am-hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  column-gap: 64px;
  align-items: start;
}

/* GALLERY */
.am-gallery { display: flex; flex-direction: column; gap: 14px; }
.am-hero-shot {
  width: 100%;
  height: 540px;
  background: radial-gradient(ellipse at 50% 45%, #384168 0%, #1f2647 60%, #161c38 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.am-jar-main {
  position: relative;
  width: 360px;
  height: auto;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.55));
}
.am-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.am-thumb {
  height: 250px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(31,38,71,0.55);
}
.am-thumb-1 { background: linear-gradient(135deg, #e9e2d4 0%, #c9b88e 140%); }
.am-thumb-2 { background: linear-gradient(135deg, #dfd6c5 0%, #a8916b 140%); color: rgba(252,248,245,0.7); }
.am-thumb-3 { background: linear-gradient(135deg, #e3d9c6 0%, #1f2647 140%); color: rgba(252,248,245,0.7); }
.am-thumb-4 { background: linear-gradient(135deg, #f0ebe1 0%, #d49b1a 140%); color: rgba(31,38,71,0.62); }

/* BUY BOX */
.am-buybox-wrap { position: sticky; top: 96px; }
.am-buybox { font-family: 'DM Sans', sans-serif; color: #1f2647; }
.am-name-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.am-code-pill {
  display: inline-block;
  border: 1px solid rgba(31,38,71,0.16);
  color: rgba(31,38,71,0.62);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.am-name {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  letter-spacing: -0.014em;
  font-weight: 400;
  margin: 0;
  display: inline-block;
  color: #1f2647;
}
.am-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; font-size: 13px; }
.am-star { color: #D4AF37; font-size: 14px; }
.am-stars-text { color: rgba(31,38,71,0.62); margin-left: 8px; font-size: 12.5px; }
.am-stars-text strong { color: #1f2647; }
.am-lede { font-size: 15px; line-height: 1.65; color: #384168; margin: 0 0 18px; }

.am-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.am-price { font-size: 26px; font-weight: 700; color: #1f2647; }
.am-bestseller {
  display: inline-block;
  background: #D4AF37;
  color: #1f2647;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.am-supply { font-size: 12.5px; color: rgba(31,38,71,0.62); margin: 0 0 22px; line-height: 1.55; }

/* TIERS */
.am-tiers { margin-bottom: 14px; }
.am-tier {
  width: 100%;
  text-align: left;
  background: #fcf8f5;
  color: #1f2647;
  border: 1px solid rgba(31,38,71,0.10);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, background 180ms ease;
}
.am-tier:hover { border-color: rgba(212,175,55,0.5); }
.am-tier.active { border-color: #1f2647; }
.am-tier[data-tier="sub"].active { background: #1f2647; color: #fcf8f5; }
.am-tier-banner {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(212,175,55,0.18);
  color: #d49b1a;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  font-weight: 700;
  text-transform: uppercase;
}
.am-tier[data-tier="sub"].active .am-tier-banner { display: flex; }
.am-bestvalue {
  background: #D4AF37;
  color: #1f2647;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.am-tier-body { padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px; }
.am-tier-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(31,38,71,0.30);
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.am-tier.active .am-tier-radio { border-color: #D4AF37; }
.am-tier.active .am-tier-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #D4AF37;
}
.am-tier-content { flex: 1; min-width: 0; }
.am-tier-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.am-tier-title-wrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.am-tier-title { font-size: 16px; font-weight: 600; }
.am-savechip {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: #d49b1a;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.am-tier-pricewrap { display: flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.am-tier-price { font-size: 17px; font-weight: 700; }
.am-tier-strike { font-size: 13px; text-decoration: line-through; color: rgba(31,38,71,0.45); }
.am-tier[data-tier="sub"].active .am-tier-strike { color: rgba(252,248,245,0.55); }
.am-tier-sub { font-size: 12px; margin-top: 4px; color: rgba(31,38,71,0.62); }
.am-tier[data-tier="sub"].active .am-tier-sub { color: rgba(252,248,245,0.7); }

/* CTA */
.am-cta {
  width: 100%;
  background: #1f2647;
  color: #fcf8f5;
  border: none;
  border-radius: 999px;
  padding: 18px 24px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}
.am-cta:hover {
  box-shadow: 0 0 0 4px rgba(212,175,55,0.22), 0 0 24px 2px rgba(212,175,55,0.4);
  transform: translateY(-1px);
}
.am-guarantee { text-align: center; font-size: 11.5px; color: rgba(31,38,71,0.62); margin: 12px 0 0; letter-spacing: 0.04em; }

/* Accordions in buy box */
.am-accordions { margin-top: 22px; }
.am-acc { border-bottom: 1px solid rgba(31,38,71,0.10); }
.am-acc summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #1f2647;
}
.am-acc summary::-webkit-details-marker { display: none; }
.am-acc-icon { font-size: 22px; font-weight: 300; transition: transform 200ms ease; }
.am-acc[open] .am-acc-icon { transform: rotate(45deg); }
.am-acc ul, .am-acc p { padding: 0 0 22px; color: #384168; font-size: 14px; line-height: 1.7; }
.am-acc ul { padding-left: 18px; }
.am-acc-link {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1f2647;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .am-hero { padding: 24px 24px 60px; }
  .am-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .am-buybox-wrap { position: static; }
  .am-hero-shot { height: 400px; }
  .am-jar-main { width: 280px; }
}

/* ---------- WHY AMINOAM ---------- */
.am-why {
  background: #1f2647;
  position: relative;
  color: #fcf8f5;
  padding: 88px 0;
}
.am-why-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; text-align: center; }
.am-why-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 14px;
}
.am-why-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 56px;
  color: #fcf8f5;
}
.am-why-h2 em { font-style: italic; color: #D4AF37; }
.am-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.am-why-card {
  background: #2a3258;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease;
}
.am-why-card:hover { transform: translateY(-2px); border-color: rgba(212,175,55,0.4); }
.am-why-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 14px;
}
.am-why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fcf8f5;
  margin-bottom: 14px;
}
.am-why-card p { font-size: 14px; line-height: 1.7; color: rgba(252,248,245,0.62); margin: 0; }

@media (max-width: 1100px) {
  .am-why-inner { padding: 0 24px; }
  .am-why-h2 { font-size: 32px; }
  .am-why-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- FAQ ---------- */
.am-faq {
  background: #fcf8f5;
  padding: 88px 0;
}
.am-faq-inner { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.am-faq-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 14px;
  text-align: center;
}
.am-faq-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: #1f2647;
  margin: 0 0 48px;
  text-align: center;
}
.am-faq-list { display: flex; flex-direction: column; }
.am-faq-item {
  border-top: 1px solid rgba(31,38,71,0.10);
  padding: 0;
}
.am-faq-item:last-child { border-bottom: 1px solid rgba(31,38,71,0.10); }
.am-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: #1f2647;
}
.am-faq-item summary::-webkit-details-marker { display: none; }
.am-faq-item p {
  padding: 0 0 24px;
  color: #384168;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
  max-width: 720px;
}
.am-faq-item p a { color: #1f2647; text-decoration: underline; }
.am-faq-item .am-acc-icon { color: #D4AF37; }
.am-faq-item[open] .am-acc-icon { transform: rotate(45deg); }

/* ============================================================
   SUBSCRIBE & SAVE PAGE
   ============================================================ */
.sub-hero {
  background: linear-gradient(180deg, #1f2647 0%, #161b35 100%);
  color: #fcf8f5;
  position: relative;
  overflow: hidden;
  padding: 96px 80px 100px;
}
.sub-hero-grain {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.sub-hero-spotlight {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 60%);
}
.sub-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.sub-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 32px;
}
.sub-hero-rule { display: inline-block; height: 1px; width: 28px; background: #D4AF37; }
.sub-hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  color: #fcf8f5;
  font-weight: 400;
}
.sub-hero-h1 em { font-style: italic; color: #D4AF37; }
.sub-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(252,248,245,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
}
.sub-hero-ctas { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }
.sub-cta-primary {
  display: inline-block;
  background: #D4AF37;
  color: #1f2647;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 44px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.sub-cta-primary:hover {
  background: #e0bd47;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.30);
}
.sub-cta-secondary {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.5);
  padding-bottom: 5px;
}

@media (max-width: 900px) {
  .sub-hero { padding: 64px 24px 72px; }
  .sub-hero-h1 { font-size: 44px; }
}

/* ---------- Benefits 4-up ---------- */
.sub-benefits {
  background: #fcf8f5;
  padding: 80px 0;
  border-top: 1px solid rgba(31,38,71,0.08);
}
.sub-benefits-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.sub-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sub-benefit {
  background: #fcf8f5;
  border: 1px solid rgba(31,38,71,0.10);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.sub-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 12px 30px rgba(31,38,71,0.06);
}
.sub-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sub-benefit-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
  color: #1f2647;
  margin-bottom: 8px;
  letter-spacing: -0.012em;
}
.sub-benefit-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 12px;
}
.sub-benefit p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(31,38,71,0.62);
  margin: 0;
}

@media (max-width: 1100px) {
  .sub-benefits-inner { padding: 0 24px; }
  .sub-benefits-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 600px) {
  .sub-benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- How It Works (3-step) ---------- */
.sub-how {
  background: #1f2647;
  position: relative;
  color: #fcf8f5;
  padding: 96px 0;
  overflow: hidden;
}
.sub-how-grain {
  position: absolute; inset: 0; opacity: 0.10; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.sub-how-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.sub-how-header { text-align: center; margin-bottom: 56px; }
.sub-how-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 14px;
}
.sub-how-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: #fcf8f5;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
}
.sub-how-h2 em { font-style: italic; color: #D4AF37; }
.sub-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sub-how-step {
  background: #2a3258;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 36px 32px;
}
.sub-how-step-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 36px;
  color: #D4AF37;
  margin-bottom: 16px;
}
.sub-how-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fcf8f5;
  margin-bottom: 14px;
}
.sub-how-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(252,248,245,0.62);
  margin: 0;
}

@media (max-width: 1100px) {
  .sub-how-inner { padding: 0 24px; }
  .sub-how-h2 { font-size: 32px; }
  .sub-how-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Available to Subscribe ---------- */
.sub-products {
  background: #fcf8f5;
  padding: 96px 0;
}
.sub-products-inner { max-width: 1180px; margin: 0 auto; padding: 0 80px; text-align: center; }
.sub-products-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 14px;
}
.sub-products-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.014em;
  color: #1f2647;
  margin: 0 0 16px;
}
.sub-products-h2 em { font-style: italic; color: #D4AF37; }
.sub-products-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(31,38,71,0.62);
  max-width: 580px;
  margin: 0 auto 56px;
}
.sub-products-card {
  background: linear-gradient(180deg, #1f2647 0%, #161b35 100%);
  color: #fcf8f5;
  border-radius: 18px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.20);
}
.sub-products-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.sub-products-card > * { position: relative; z-index: 1; }
.sub-products-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-products-card-img img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
}
.sub-products-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 12px;
}
.sub-products-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: #fcf8f5;
  margin: 0 0 18px;
  font-weight: 400;
}
.sub-products-card-blurb {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(252,248,245,0.72);
  margin: 0 0 28px;
}
.sub-products-card-pricing {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sub-products-card-price { font-size: 32px; font-weight: 700; color: #fcf8f5; }
.sub-products-card-strike { font-size: 17px; text-decoration: line-through; color: rgba(252,248,245,0.45); margin-left: 10px; }
.sub-products-card-per { font-size: 13px; color: rgba(252,248,245,0.62); margin-left: 4px; }

@media (max-width: 1100px) {
  .sub-products-inner { padding: 0 24px; }
  .sub-products-h2 { font-size: 32px; }
  .sub-products-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; text-align: center; }
  .sub-products-card-pricing { justify-content: center; }
}

/* ---------- Final CTA band ---------- */
.sub-final {
  background: #161b35;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  text-align: center;
}
.sub-final-grain {
  position: absolute; inset: 0; opacity: 0.10; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.sub-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.sub-final-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: #fcf8f5;
  margin: 0 0 16px;
}
.sub-final-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(252,248,245,0.62);
  margin: 0 0 28px;
}
.sub-cta-final { padding: 18px 56px; font-size: 13px; }
.sub-final-fineprint {
  font-size: 12px;
  color: rgba(252,248,245,0.45);
  margin: 18px 0 0;
}

/* ============================================================
   BLOG & LEARN PAGE
   ============================================================ */
.bl-hero {
  background: linear-gradient(180deg, #1f2647 0%, #161b35 100%);
  color: #fcf8f5;
  position: relative;
  overflow: hidden;
  padding: 96px 80px 88px;
}
.bl-hero-grain {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.bl-hero-spotlight {
  position: absolute; top: 30%; left: -100px; width: 500px; height: 500px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 60%);
}
.bl-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; text-align: center; }
.bl-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; color: #D4AF37; margin: 0 0 18px;
}
.bl-hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: #fcf8f5;
  margin: 0 0 24px;
  font-weight: 400;
}
.bl-hero-h1 em { font-style: italic; color: #D4AF37; }
.bl-hero-sub {
  font-size: 16px; line-height: 1.65;
  color: rgba(252,248,245,0.72);
  max-width: 580px; margin: 0 auto;
}

@media (max-width: 900px) {
  .bl-hero { padding: 64px 24px 64px; }
  .bl-hero-h1 { font-size: 40px; }
}

/* ---------- Filter pills ---------- */
.bl-filter {
  background: #fcf8f5;
  position: sticky;
  top: 78px;
  z-index: 50;
  border-bottom: 1px solid rgba(31,38,71,0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.bl-filter-inner { max-width: 1440px; margin: 0 auto; padding: 16px 40px; }
.bl-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.bl-pill {
  background: transparent;
  border: 1px solid rgba(31,38,71,0.12);
  color: rgba(31,38,71,0.62);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 200ms ease;
}
.bl-pill:hover {
  border-color: #D4AF37;
  color: #1f2647;
}
.bl-pill.active {
  background: #1f2647;
  border-color: #1f2647;
  color: #fcf8f5;
}
.bl-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,38,71,0.08);
  color: rgba(31,38,71,0.62);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0;
}
.bl-pill.active .bl-count {
  background: rgba(212,175,55,0.30);
  color: #D4AF37;
}

@media (max-width: 700px) {
  .bl-filter-inner { padding: 12px 16px; }
  .bl-pill { font-size: 11px; padding: 8px 14px; }
}

/* ---------- Main grid ---------- */
.bl-main { background: #fcf8f5; padding: 56px 0 80px; }
.bl-main-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.bl-section { margin-bottom: 72px; }
.bl-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.bl-section-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; color: #D4AF37; margin: 0 0 12px;
}
.bl-section-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.014em;
  color: #1f2647;
  margin: 0 0 12px;
}
.bl-section-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(31,38,71,0.62);
  margin: 0;
}
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Article cards */
.bl-card {
  display: block;
  text-decoration: none;
  color: #1f2647;
  transition: transform 220ms ease;
}
.bl-card:hover { transform: translateY(-4px); }
.bl-card-img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  margin-bottom: 18px;
}
.bl-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.16;
  pointer-events: none;
}
.bl-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.20) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.bl-card-tag {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252,248,245,0.85);
  background: rgba(31,38,71,0.55);
  padding: 4px 9px;
  border-radius: 3px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.bl-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 10px;
}
.bl-card-meta span:last-child {
  color: rgba(31,38,71,0.45);
  font-weight: 500;
  letter-spacing: 0.10em;
}
.bl-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.22;
  color: #1f2647;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  transition: color 180ms ease;
}
.bl-card:hover .bl-card-title { color: #384168; }
.bl-card-link {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1f2647;
  border-bottom: 1px solid #D4AF37;
  padding-bottom: 3px;
}

/* Card gradient palettes — different per category for visual variety */
/* Performance — navy-blues to deep blue */
.bl-tone-perf-1 { background: linear-gradient(135deg, #2e3a72 0%, #161c38 140%); }
.bl-tone-perf-2 { background: linear-gradient(135deg, #3d4d8c 0%, #1f2647 140%); }
.bl-tone-perf-3 { background: linear-gradient(135deg, #6b7aaf 0%, #1f2647 140%); }
.bl-tone-perf-4 { background: linear-gradient(135deg, #8a96c4 0%, #384168 140%); }

/* Recovery — warm dusty mauves and tan */
.bl-tone-rec-1 { background: linear-gradient(135deg, #d8b8a8 0%, #5a3a4a 140%); }
.bl-tone-rec-2 { background: linear-gradient(135deg, #c9a99c 0%, #6b4756 140%); }
.bl-tone-rec-3 { background: linear-gradient(135deg, #b89494 0%, #4a2f4a 140%); }
.bl-tone-rec-4 { background: linear-gradient(135deg, #e0c0b0 0%, #1f2647 140%); }

/* Longevity — gold/amber/bronze */
.bl-tone-long-1 { background: linear-gradient(135deg, #d4af37 0%, #6b4a1c 140%); }
.bl-tone-long-2 { background: linear-gradient(135deg, #e0c068 0%, #1f2647 140%); }
.bl-tone-long-3 { background: linear-gradient(135deg, #c9a04a 0%, #5a3e1c 140%); }
.bl-tone-long-4 { background: linear-gradient(135deg, #f0d488 0%, #b8860b 140%); }

/* Metabolic — coral/orange/warm */
.bl-tone-met-1 { background: linear-gradient(135deg, #e8a888 0%, #8a4a3a 140%); }
.bl-tone-met-2 { background: linear-gradient(135deg, #d49464 0%, #4a2a1c 140%); }
.bl-tone-met-3 { background: linear-gradient(135deg, #f0b894 0%, #1f2647 140%); }

/* Cognitive & Gut — teal/sage/green */
.bl-tone-cog-1 { background: linear-gradient(135deg, #88a89c 0%, #2a4a44 140%); }
.bl-tone-cog-2 { background: linear-gradient(135deg, #6b8a7a 0%, #1f2647 140%); }
.bl-tone-cog-3 { background: linear-gradient(135deg, #a8c4b0 0%, #3a5a4a 140%); }
.bl-tone-cog-4 { background: linear-gradient(135deg, #94b89c 0%, #2a3a3a 140%); }

/* Research — slate / gray / monochrome */
.bl-tone-res-1 { background: linear-gradient(135deg, #b0b8c4 0%, #161c38 140%); }
.bl-tone-res-2 { background: linear-gradient(135deg, #94a0b0 0%, #2a3258 140%); }
.bl-tone-res-3 { background: linear-gradient(135deg, #c8d0dc 0%, #384168 140%); }
.bl-tone-res-4 { background: linear-gradient(135deg, #8090a8 0%, #1f2647 140%); }

.bl-empty {
  text-align: center;
  font-size: 14px;
  color: rgba(31,38,71,0.45);
  font-style: italic;
  padding: 60px 20px;
}

@media (max-width: 1100px) {
  .bl-main-inner { padding: 0 24px; }
  .bl-section-h2 { font-size: 28px; }
  .bl-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 700px) {
  .bl-grid { grid-template-columns: 1fr; }
  .bl-card-img { height: 180px; }
}

/* ---------- Empty cart state (checkout) ---------- */
.av-cart-empty {
  background: #fcf8f5;
  border: 1px dashed rgba(31,38,71,0.20);
  border-radius: 14px;
  padding: 56px 32px;
  text-align: center;
  color: rgba(31,38,71,0.62);
}
.av-cart-empty svg { display: block; margin: 0 auto 18px; }
.av-cart-empty h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #1f2647;
  margin: 0 0 6px;
}
.av-cart-empty p {
  font-size: 13.5px;
  margin: 0 0 22px;
  color: rgba(31,38,71,0.55);
}
.av-cart-empty-cta {
  display: inline-block;
  background: #1f2647;
  color: #fcf8f5;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 999px;
  transition: background 200ms ease, transform 200ms ease;
}
.av-cart-empty-cta:hover {
  background: #161b35;
  transform: translateY(-1px);
}
