/* ===== Relief On The Go — public site ===== */

:root {
  --navy: #1B3A5C;
  --navy-deep: #13294A;
  --teal: #3B8FA0;
  --teal-hover: #2E7486;
  --white: #FFFFFF;
  --sand: #F5F0EA;
  --sand-deep: #EBE2D6;
  --mist: #E8F5F7;
  --cream: #FAF6F1;
  --dark: #1A2533;
  --slate: #6B7B8D;
  --slate-soft: #A6B0BC;
  --line: #E6E9EE;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(26, 37, 51, 0.04);
  --shadow: 0 10px 30px rgba(26, 37, 51, 0.07);
  --shadow-lg: 0 24px 60px rgba(26, 37, 51, 0.10);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ===== Accessibility helpers ===== */
.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: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; outline: 2px solid var(--teal); outline-offset: 2px; }

main { display: block; }
main:focus { outline: none; }

/* Focus rings — keyboard only */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
.product-card:focus-visible { outline-offset: 6px; border-radius: var(--radius); }
.moment-card:focus-visible { outline-offset: 6px; border-radius: var(--radius); }
.faq-item summary:focus-visible { outline-offset: 4px; border-radius: 4px; }
.nav-toggle:focus-visible { outline-offset: 3px; border-radius: 10px; }
.nav-logo:focus-visible { outline-offset: 6px; border-radius: 6px; }
.site-footer a:focus-visible { outline-color: var(--teal); outline-offset: 4px; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6, .sans, .nav a, .btn, .eyebrow {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

h1, h2, h3, h4 { color: var(--navy); letter-spacing: -0.01em; }
h1 { font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; }
h2 { font-weight: 700; font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.15; }
h3 { font-weight: 700; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.25; }
h4 { font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em; }

p { color: var(--slate); font-size: 1.03rem; }
p.lead {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--dark);
  line-height: 1.55;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--teal);
  display: inline-block;
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(59, 143, 160, 0.25);
}
.btn-primary:hover { background: var(--teal-hover); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost { color: var(--navy); padding: 14px 0; }
.btn-ghost:hover { color: var(--teal); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  gap: 32px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta .btn { padding: 10px 20px; font-size: 0.82rem; }

/* Mobile nav */
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy);
}
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-cta { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy h1 em {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.hero-copy p.lead { margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 70%; height: 30%;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(27, 58, 92, 0.18) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 1;
}
.hero-visual img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(27, 58, 92, 0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-visual .badge {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-visual .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero-visual .badge-1 { top: 12%; left: -4%; }
.hero-visual .badge-2 { bottom: 16%; right: -6%; }

.hero-trust {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero-trust-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
}
.hero-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.hero-trust-logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.hero-trust-logos img:hover { transform: scale(1.06); }

@media (max-width: 900px) {
  .hero { padding: 40px 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4 / 3.8; }
  .hero-trust { gap: 24px; }
  .hero-trust-logos { gap: 40px; }
  .hero-trust-logos img { height: 48px; }
  .hero-trust-label { white-space: normal; }
}

/* ===== Moments (lifestyle cards) ===== */
.moments {
  background: var(--cream);
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.moment-card {
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.4s var(--ease);
}
.moment-card:hover { transform: translateY(-4px); }
.moment-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--mist);
  position: relative;
}
.moment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.moment-card:hover .moment-media img { transform: scale(1.04); }
.moment-card h3 { font-size: 1.15rem; margin-bottom: 10px; padding: 0 4px; }
.moment-card p { font-size: 0.95rem; line-height: 1.55; color: var(--slate); padding: 0 4px; }

@media (max-width: 900px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .moments-grid { grid-template-columns: 1fr; } }

/* ===== Product grid (home + Products page) — Apple-style ===== */
.products-section { padding: 110px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.product-card {
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.4s var(--ease);
  text-align: center;
  padding: 24px 12px;
}
.product-card:hover { transform: translateY(-6px); }

.product-media {
  background: var(--white);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
  margin-bottom: 28px;
}
.product-media::after {
  content: '';
  position: absolute;
  width: 60%; height: 14%;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(27, 58, 92, 0.16) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.product-card:hover .product-media::after { opacity: 1; }
.product-media img {
  max-height: 88%;
  max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(27, 58, 92, 0.10));
  transition: transform 0.5s var(--ease);
  position: relative; z-index: 2;
}
/* Wider, shorter products (e.g. AXIV blisters) scale up to match box-shaped products visually */
.product-media--blister img {
  max-width: 165%;
  max-height: 165%;
}
.product-card:hover .product-media img { transform: scale(1.05); }

.product-body { padding: 0; }
.product-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.product-sub {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 22px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 0;
  border-top: none;
}
.product-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--slate-soft);
  text-transform: uppercase;
}
.product-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--ease);
}
.product-card:hover .product-link { color: var(--teal-hover); }
.product-link svg { transition: transform 0.25s var(--ease); }
.product-card:hover .product-link svg { transform: translateX(4px); }

@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* Subtle "coming soon" placeholder card */
.product-card--soon {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 24px;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease);
}
.product-card--soon:hover { transform: none; opacity: 0.7; }
.soon-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--slate-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--slate);
}
.soon-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
}

/* ===== Promise / Values band ===== */
.promise {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(59, 143, 160, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(59, 143, 160, 0.08) 0%, transparent 55%);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.promise h2 { color: var(--white); margin-bottom: 18px; }
.promise h2 em {
  font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--teal);
}
.promise p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.promise .eyebrow { color: var(--teal); margin-bottom: 16px; }

.promise-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.pillar-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.pillar h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.pillar p { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin-bottom: 0; }

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; gap: 40px; }
  .promise-pillars { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--sand);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { max-width: 600px; }
.cta-inner h2 em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--teal); }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 0.92rem; max-width: 320px; line-height: 1.6; font-family: Georgia, serif; font-style: italic; }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { color: inherit; font-size: inherit; font-family: inherit; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Page hero (interior pages) ===== */
.page-hero {
  padding: 80px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { max-width: 820px; margin-bottom: 16px; }
.page-hero h1 em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--teal); }
.page-hero p.lead { max-width: 680px; }

/* ===== Product detail page ===== */
.product-detail { padding: 60px 0 40px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-media {
  position: sticky;
  top: 100px;
  aspect-ratio: 4 / 4.4;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  padding: 0;
}
.product-detail-media::before {
  content: '';
  position: absolute;
  width: 70%; height: 24%;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(27, 58, 92, 0.18) 0%, transparent 70%);
  filter: blur(28px);
  z-index: 1;
}
.product-detail-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(27, 58, 92, 0.18));
  position: relative; z-index: 2;
}
.product-detail-media--blister img {
  max-width: 175%;
  max-height: 175%;
}
.product-detail-media .product-brand-mark {
  position: absolute;
  top: 28px; left: 28px;
  height: 28px; width: auto;
  opacity: 0.7;
}

.product-detail-info .eyebrow { margin-bottom: 14px; }
.product-detail-info h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.product-detail-info h1 em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--teal); }
.product-detail-sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 28px;
}
.product-specs {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.spec .spec-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}
.spec .spec-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--navy);
}

.product-detail-info .desc {
  font-size: 1.02rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 28px;
}
.product-detail-info .desc p + p { margin-top: 14px; }
.product-detail-info .desc ul {
  margin: 10px 0 0 22px;
  padding: 0;
  list-style: disc;
}
.product-detail-info .desc li { margin-bottom: 4px; }
.product-detail-info .desc li:last-child { margin-bottom: 0; }
.product-detail-info .desc .tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.product-detail-info .desc .footnote {
  font-size: 0.85rem;
  color: var(--slate);
  font-style: italic;
  margin-top: 8px;
}

.use-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.use-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--mist);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}
.use-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-media { position: static; padding: 0; }
}

/* ===== Drug Facts panel ===== */
.drug-facts {
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: var(--radius-sm);
  padding: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.drug-facts-head {
  border-bottom: 6px solid var(--dark);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.drug-facts-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.drug-facts-pending {
  text-align: center;
  padding: 36px 20px;
}
.drug-facts-pending .pending-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.drug-facts-pending h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.drug-facts-pending p { color: var(--slate); font-size: 0.98rem; max-width: 520px; margin: 0 auto; }

/* Drug Facts (when populated) */
.drug-facts-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.55;
}
.drug-facts-row:last-child { border-bottom: none; }
.drug-facts-row b { font-weight: 700; }
.drug-facts-row p + p { margin-top: 10px; }
.drug-facts-row b + p,
.drug-facts-row b + ul,
.drug-facts-row p + ul,
.drug-facts-row ul + p { margin-top: 8px; }
.drug-facts-row ul {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}
.drug-facts-row li {
  margin-bottom: 4px;
  line-height: 1.55;
}
.drug-facts-row li:last-child { margin-bottom: 0; }
.drug-facts-row .footnote {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 14px;
  font-style: italic;
}
.drug-facts-row table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.9rem;
}
.drug-facts-row th,
.drug-facts-row td {
  padding: 10px 12px;
  border: 1px solid var(--dark);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.drug-facts-row thead th {
  font-weight: 700;
  background: rgba(26, 37, 51, 0.06);
}
.drug-facts-row tbody th {
  font-weight: 600;
  width: 48%;
}

.drug-facts-section {
  border-top: 4px solid var(--dark);
  padding: 18px 0 6px;
}
.drug-facts-section:first-of-type { border-top: none; padding-top: 4px; }
.drug-facts-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.drug-facts-section .drug-facts-row:last-child { border-bottom: none; }

.drug-facts-section-pending {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--slate);
  padding: 12px 0 18px;
  font-style: italic;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .eyebrow { margin-bottom: 10px; }
.section-heading h2 { margin-bottom: 10px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  position: relative;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { color: var(--teal); }
.faq-answer {
  padding: 0 0 28px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-answer p + p { margin-top: 12px; }

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-visual {
  aspect-ratio: 5 / 4;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  position: relative;
}
.about-visual::before {
  content: '';
  position: absolute;
  width: 60%; height: 22%;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(27, 58, 92, 0.16) 0%, transparent 70%);
  filter: blur(26px);
  z-index: 1;
}
.about-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(27, 58, 92, 0.18));
  position: relative; z-index: 2;
}
.about-text h2 { margin-bottom: 18px; }
.about-text h2 em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--teal); }
.about-text p { margin-bottom: 16px; font-size: 1.02rem; color: var(--dark); line-height: 1.7; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== Stat band ===== */
.stat-band {
  padding: 72px 0;
  background: var(--mist);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
}

@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ===== Related products (on detail page) ===== */
.related { padding: 110px 0 120px; background: var(--white); border-top: 1px solid var(--line); }

/* ===== Utilities ===== */
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.center { text-align: center; }
.disclaimer { font-size: 0.82rem; color: var(--slate-soft); font-family: 'Montserrat', sans-serif; }

/* ===== Fade-in-up reveal =====
   Default state is visible so no-JS users (and bots) see all content.
   When JS marks <html class="js">, elements become hidden until an
   IntersectionObserver adds .is-visible as they scroll into view. */
.fade-up { opacity: 1; transform: none; }
.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.js .fade-up.d-1 { transition-delay: 0.1s; }
.js .fade-up.d-2 { transition-delay: 0.2s; }
.js .fade-up.d-3 { transition-delay: 0.3s; }
.js .fade-up.d-4 { transition-delay: 0.4s; }
.js .fade-up.is-visible { opacity: 1; transform: none; }

/* ===== Reduced motion =====
   Respect the user's OS preference. Kills the floating hero, scroll-reveals,
   hover lifts, and image scales — but keeps focus-ring transitions usable. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-visual img { animation: none; }
  .js .fade-up { opacity: 1; transform: none; transition: none; }
  .product-card:hover,
  .moment-card:hover,
  .btn:hover { transform: none; }
  .product-card:hover .product-media img,
  .moment-card:hover .moment-media img,
  .hero-trust-logos img:hover { transform: none; }
}
