:root {
  --navy-950: #04111f;
  --navy-900: #071827;
  --navy-850: #0b1d2d;
  --navy-800: #102437;
  --cyan-500: #25c9dc;
  --cyan-400: #49d8e7;
  --violet-500: #7c4dff;
  --violet-400: #956cff;
  --warm-50: #faf8f5;
  --warm-100: #f6f3ef;
  --warm-200: #eee9e3;
  --text-on-dark: #f7f9fb;
  --text-on-dark-muted: #aeb9c5;
  --text-on-light: #081522;
  --text-on-light-muted: #66717d;
  --text-on-light-strong-muted: #596572;
  --border-dark: rgba(255,255,255,0.13);
  --border-light: #dce1e5;
  --border-soft: #dfe5e8;
  --link-violet: #5b35ca;
  --success: #22c77a;
  --warning: #f0a43b;
  --danger: #ef5d68;
  --brand-gradient: linear-gradient(110deg, var(--cyan-500) 0%, #4bbce7 45%, var(--violet-500) 100%);
  --focus-ring: 0 0 0 3px rgba(37, 201, 220, 0.34);
  --navy: var(--navy-950);
  --navy-deep: var(--navy-900);
  --navy-mid: var(--navy-800);
  --cyan: var(--cyan-500);
  --cyan-bright: var(--cyan-400);
  --violet: var(--violet-500);
  --violet-bright: var(--violet-400);
  --off-white: var(--warm-50);
  --warm-grey: var(--warm-100);
  --ink: var(--text-on-light);
  --muted: var(--text-on-light-muted);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--warm-100);
  color: var(--text-on-light);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: clip;
}

.surface-dark {
  background: var(--navy-950) !important;
  color: var(--text-on-dark) !important;
  border-color: var(--border-dark) !important;
}
.surface-dark :where(h1, h2, h3, h4, h5, h6, strong, label) { color: var(--text-on-dark) !important; }
.surface-dark :where(p, li, small, .muted, .subtitle, .caption) { color: var(--text-on-dark-muted) !important; }
.surface-dark a { color: var(--cyan-400); }
.surface-light {
  background: var(--warm-100) !important;
  color: var(--text-on-light) !important;
  border-color: var(--border-light) !important;
}
.surface-light :where(h1, h2, h3, h4, h5, h6, strong, label) { color: var(--text-on-light) !important; }
.surface-light :where(p, li, small, .muted, .subtitle, .caption) { color: var(--text-on-light-muted) !important; }
.card-dark {
  background: var(--navy-850) !important;
  color: var(--text-on-dark) !important;
  border: 1px solid var(--border-dark) !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2) !important;
}
.card-light {
  background: #fff !important;
  color: var(--text-on-light) !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 6px 8px rgba(8, 21, 34, 0.06) !important;
}

h1, h2, h3, h4 { color: inherit; text-wrap: balance; }
p, li { text-wrap: pretty; }
h1 { font-size: clamp(2.35rem, 5vw, 5.25rem); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 3.25rem); line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.25; }
p { line-height: 1.65; }

a, button, input, select, textarea { font: inherit; }
body a { color: var(--link-violet) !important; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

.ticker-wrap {
  background: var(--brand-gradient);
  padding: 8px 0;
}

.ticker-item {
  color: var(--navy) !important;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.official-bar {
  background: var(--navy-mid) !important;
  border-bottom: 1px solid rgba(73, 216, 231, 0.2) !important;
  padding: 10px 24px !important;
}
.official-bar div { color: var(--cyan-bright) !important; margin-bottom: 2px !important; }
.official-bar p { color: rgba(250, 249, 247, 0.78) !important; font-size: 13px !important; }
.official-inline-bar {
  background: var(--warm-grey) !important;
  border-color: var(--border-soft) !important;
}
.official-inline-bar span { color: var(--muted) !important; }
.official-inline-bar strong { color: var(--ink) !important; }
.official-inline-bar svg { stroke: var(--violet) !important; }
.deals-banner {
  background: var(--navy-mid) !important;
  border-color: rgba(73, 216, 231, 0.14) !important;
}
.deals-banner span { color: rgba(250, 249, 247, 0.78) !important; }
.deals-banner span:first-child { color: var(--cyan-bright) !important; background: rgba(37, 201, 220, 0.1) !important; border-color: rgba(37, 201, 220, 0.28) !important; }
.deals-banner strong, .deals-banner span:last-child { color: var(--cyan-bright) !important; }

.topbar {
  background: rgba(4, 17, 31, 0.97) !important;
  border-bottom: 1px solid rgba(73, 216, 231, 0.16) !important;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 56px) !important;
  box-shadow: 0 6px 8px rgba(1, 9, 17, 0.18);
}

.topbar.scrolled { background: rgba(4, 17, 31, 0.98) !important; }
.header-logo { height: 62px !important; filter: brightness(0) invert(1); }
.topbar.scrolled .header-logo { height: 56px !important; }

.nav-links { gap: clamp(13px, 1.45vw, 26px) !important; }
.nav-links a {
  color: rgba(250, 249, 247, 0.78) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--cyan-bright) !important; text-shadow: none !important; }
.nav-links .nav-cta {
  border: 1px solid rgba(73, 216, 231, 0.72) !important;
  color: var(--cyan-bright) !important;
  border-radius: 5px !important;
  padding: 10px 16px !important;
}
.nav-links .nav-cta:hover { background: var(--cyan) !important; color: var(--navy) !important; }

.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--off-white) !important; }
.mobile-nav { background: var(--navy) !important; }
.mobile-nav a { color: rgba(250, 249, 247, 0.86) !important; }
.mobile-nav a:hover { color: var(--cyan-bright) !important; }
.mobile-nav-close { color: var(--off-white) !important; }
.hamburger { flex-direction: column; gap: 5px; background: transparent; border: 0; }
#mobile-nav-shared { display: none; }
#mobile-nav-shared.open { display: flex; }
#mobile-nav-shared .mobile-nav-close { background: transparent !important; border: 0; }
.mobile-cart-control {
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(73, 216, 231, 0.42);
  border-radius: 999px;
  color: var(--off-white) !important;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary,
.checkout-btn,
.mobile-checkout-bar-btn,
.add-btn,
.bundle-add-btn,
.notify-submit {
  background: var(--brand-gradient) !important;
  color: var(--navy) !important;
  border: 0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-weight: 800 !important;
}

.btn-primary:hover,
.checkout-btn:hover,
.mobile-checkout-bar-btn:hover,
.add-btn:hover,
.bundle-add-btn:hover,
.notify-submit:hover { filter: brightness(1.07); transform: translateY(-1px); }

.btn-secondary,
.btn-outline,
.secondary-link {
  background: transparent !important;
  border: 1px solid rgba(37, 201, 220, 0.66) !important;
  color: var(--cyan-bright) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}
.btn-secondary.member { border-color: rgba(149, 108, 255, 0.72) !important; color: #b9a5ff !important; }
.surface-light :where(.btn-secondary, .btn-outline, .secondary-link),
.why-section :where(.btn-secondary, .btn-outline, .secondary-link),
.card-light :where(.btn-secondary, .btn-outline, .secondary-link),
.card :where(.secondary-link) { color: var(--navy-900) !important; border-color: var(--navy-900) !important; }
.nav {
  background: var(--navy-950) !important;
  color: var(--text-on-dark) !important;
  border-bottom: 1px solid var(--border-dark) !important;
}
.nav .nav-logo img,
.nav .header-logo { filter: brightness(0) invert(1); }
.nav .nav-links a { color: rgba(247, 249, 251, 0.82) !important; }
.nav .nav-links a:hover { color: var(--cyan-400) !important; }
.nav .nav-cta { background: transparent !important; color: var(--cyan-400) !important; border: 1px solid var(--cyan-400) !important; }

/* Homepage hero */
body.home-page .hero {
  min-height: 690px;
  padding: clamp(72px, 9vw, 118px) clamp(24px, 5vw, 72px) !important;
  background:
    radial-gradient(circle at 78% 42%, rgba(124, 77, 255, 0.18), transparent 29%),
    radial-gradient(circle at 62% 78%, rgba(37, 201, 220, 0.12), transparent 26%),
    var(--navy) !important;
  text-align: left !important;
  align-items: stretch !important;
}
body.home-page .hero::before {
  background-image: linear-gradient(90deg, rgba(4, 17, 31, 0.96) 0%, rgba(4, 17, 31, 0.82) 45%, rgba(4, 17, 31, 0.22) 100%), url('novabackground.webp') !important;
  opacity: 0.38 !important;
}
body.home-page .hero::after { display: none; }
body.home-page .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  max-width: 1320px !important;
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 2; }
.hero-kicker {
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
body.home-page .hero h1 {
  color: var(--off-white) !important;
  font-size: clamp(48px, 6.3vw, 84px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 0.99 !important;
  margin: 0 0 28px !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
}
.hero-accent {
  color: var(--cyan-bright);
  display: block;
}
body.home-page .hero-sub {
  color: rgba(250, 249, 247, 0.72) !important;
  font-size: clamp(16px, 1.4vw, 19px) !important;
  line-height: 1.65 !important;
  margin: 0 0 34px !important;
  max-width: 610px !important;
}
body.home-page .hero-btns { justify-content: flex-start !important; margin-bottom: 42px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 18px 34px; }
.hero-feature { display: grid; grid-template-columns: 34px auto; gap: 10px; align-items: center; color: var(--off-white); }
.hero-feature-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 216, 231, 0.34);
  border-radius: 50%;
  color: var(--cyan-bright);
}
.hero-feature strong { display: block; font-size: 13px; line-height: 1.2; }
.hero-feature span:last-child { color: rgba(250, 249, 247, 0.56); font-size: 12px; }
.hero-products {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}
.hero-products::before {
  content: '';
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  left: 12%;
  top: 8%;
  border: 1px solid rgba(73, 216, 231, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(37, 201, 220, 0.06);
}
.hero-vial {
  position: absolute;
  width: min(45%, 230px);
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.42));
  z-index: 2;
}
.hero-vial.reta { left: 2%; bottom: 5%; transform: rotate(-6deg); }
.hero-vial.tirz { left: 30%; bottom: 12%; width: min(51%, 260px); z-index: 3; }
.hero-vial.sema { right: 0; bottom: 4%; transform: rotate(6deg); }
.hero-products-label {
  position: absolute;
  right: 7%;
  top: 13%;
  max-width: 160px;
  color: rgba(250, 249, 247, 0.62);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.products-section,
.section,
.testimonials-section,
.notify-section { background: var(--off-white) !important; color: var(--ink) !important; }
.products-section { padding-left: clamp(20px, 4vw, 56px) !important; padding-right: clamp(20px, 4vw, 56px) !important; }
.products-header .section-h2,
.section-top h2,
.card h2,
.product-name { color: var(--ink) !important; }
.section-italic,
.eyebrow,
.product-tag { color: var(--violet) !important; }
.body-text,
.product-desc,
.section-top p,
.card-subtitle,
.item-meta { color: var(--muted) !important; }
.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  border: 0 !important;
  background: transparent !important;
}
.product-card {
  background: #fff !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 6px 8px rgba(8, 21, 34, 0.07) !important;
  overflow: hidden;
}
.product-card:hover { border-color: rgba(37, 201, 220, 0.72) !important; transform: translateY(-3px); }
.product-img,
.product-image,
.product-card img {
  background: linear-gradient(145deg, #f8fafb, #eef3f5) !important;
  border-radius: 8px;
  object-fit: contain;
}
.product-price { color: var(--ink) !important; }
.product-link { color: var(--violet) !important; }
.product-card h3,
.product-card .product-title { color: var(--text-on-light) !important; }
.product-learn-more { color: var(--link-violet) !important; }
.category-nav,
.trust-bar { background: var(--warm-grey) !important; border-color: var(--border-soft) !important; }
.category-card { background: #fff !important; border: 1px solid var(--border-soft) !important; border-radius: 12px !important; }
.category-card h3 { color: var(--ink) !important; }
.category-card p, .category-card-count { color: var(--muted) !important; }
.category-card-cta, .trust-item::before { color: var(--violet) !important; }
.bundles-section { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.bundles-section > :where(h1, h2, h3, p),
.bundles-section .bundles-header :where(h1, h2, h3, p) { color: var(--text-on-light) !important; }
.bundle-card {
  background: #fff !important;
  color: var(--text-on-light) !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 6px 8px rgba(8, 21, 34, 0.06) !important;
}
.bundle-card :where(.bundle-name, .bundle-price, li, strong) { color: var(--text-on-light) !important; }
.bundle-card .bundle-divider { border-color: var(--border-light) !important; }
.bundle-btn,
.submit-btn,
.register-btn,
.lookup-btn,
.generate-btn { background: var(--brand-gradient) !important; color: var(--navy-950) !important; border: 0 !important; }
.bundles-section p { color: var(--text-on-light-strong-muted) !important; }
#compounds { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
#compounds h2 { color: var(--text-on-light) !important; }
#compounds p { color: var(--text-on-light-muted) !important; }
#compounds > div > div > div:first-child { color: var(--link-violet) !important; }
.section > div[style*="#F0FAFA"] { background: var(--warm-200) !important; border-color: var(--border-light) !important; color: var(--text-on-light) !important; }
.section > div[style*="#F0FAFA"] span { color: var(--text-on-light) !important; }
.section > div[style*="#F0FAFA"] a { color: var(--link-violet) !important; }
.filter-btn.active { background: var(--navy-900) !important; color: var(--text-on-dark) !important; border-color: var(--navy-900) !important; }
.filter-btn { color: var(--text-on-dark-muted) !important; }
.search-icon { color: var(--text-on-light-strong-muted) !important; }
a[href="#compounds"] { background: var(--navy-850) !important; border-color: var(--border-dark) !important; }
a[href="#compounds"] span { color: var(--text-on-dark) !important; }
a[href="#compounds"] span:first-child,
a[href="#compounds"] span:last-child,
a[href="#compounds"] strong { color: var(--cyan-400) !important; }

.card {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 8px rgba(8, 21, 34, 0.06) !important;
}
.item-name, .item-total, .summary-total { color: var(--ink) !important; }
.cart-qty-btn { background: #fff !important; color: var(--ink) !important; }
.cart-qty-num { color: var(--ink) !important; }
.summary-row { color: var(--muted) !important; }
input, select, textarea {
  background: #fff !important;
  border-color: #c8d1d7 !important;
  color: var(--ink) !important;
  border-radius: 6px !important;
  min-height: 46px;
}
label { color: var(--muted); }
.progress-bar { background: var(--navy-deep) !important; color: rgba(250, 249, 247, 0.62) !important; }
.progress-step.active { color: var(--cyan-bright) !important; }
.mobile-checkout-bar { background: var(--navy) !important; }

body:not(.home-page) .hero {
  background: var(--navy) !important;
  color: var(--off-white) !important;
}
body:not(.home-page) .hero h1 { color: var(--off-white) !important; }
body:not(.home-page) .hero p { color: rgba(250, 249, 247, 0.68) !important; }

.footer {
  background: var(--navy-deep) !important;
  border-top-color: rgba(73, 216, 231, 0.14) !important;
  color: rgba(250, 249, 247, 0.68) !important;
}
.footer-logo { filter: brightness(0) invert(1); }
.footer a { color: rgba(250, 249, 247, 0.68) !important; }
.footer a:hover { color: var(--cyan-bright) !important; }
.footer-copy, .footer-tagline { color: rgba(250, 249, 247, 0.48) !important; }

.cookie-accept { background: var(--cyan) !important; color: var(--navy) !important; }
.cookie-decline { color: var(--off-white) !important; border-color: rgba(250, 249, 247, 0.32) !important; }

.why-section,
.library-section,
.articles-section,
.faq-section,
.page-wrap,
.members-header,
.members-main,
.main,
main { background-color: var(--warm-100); color: var(--text-on-light); }

.why-section :where(h1, h2, h3, h4, strong),
.library-section :where(h1, h2, h3, h4, strong),
.articles-section :where(h1, h2, h3, h4, strong),
.faq-section :where(h1, h2, h3, h4, strong),
.page-wrap :where(h1, h2, h3, h4, strong) { color: var(--text-on-light) !important; }

.why-section :where(p, li),
.library-section :where(p, li),
.articles-section :where(p, li),
.faq-section :where(p, li),
.page-wrap :where(p, li) { color: var(--text-on-light-muted) !important; }

.article-card,
.faq-card,
.lookup-card,
.order-card,
.step-card,
.tier-card,
.sidebar-card,
.guide-card,
.stat-card,
.amb-hero-card,
.section-block,
.product-info,
.product-panel,
.info-card,
.content-card {
  background: #fff !important;
  color: var(--text-on-light) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 8px rgba(8, 21, 34, 0.06) !important;
}

:where(.article-card, .faq-card, .lookup-card, .order-card, .step-card, .tier-card, .sidebar-card, .guide-card, .stat-card, .amb-hero-card, .section-block, .product-info, .product-panel, .info-card, .content-card)
  :where(h1, h2, h3, h4, strong, .article-title, .card-title, .guide-card-name, .stat-value) {
  color: var(--text-on-light) !important;
}

:where(.article-card, .faq-card, .lookup-card, .order-card, .step-card, .tier-card, .sidebar-card, .guide-card, .stat-card, .amb-hero-card, .section-block, .product-info, .product-panel, .info-card, .content-card)
  :where(p, li, small, .article-excerpt, .article-date, .card-teaser, .guide-desc, .stat-label) {
  color: var(--text-on-light-muted) !important;
}

.article-tag,
.card-tag,
.card-category,
.section-label,
.page-eyebrow,
.faq-category-label { color: var(--violet-500) !important; }
.article-read-more,
.card-link,
.guide-buy { color: var(--link-violet) !important; text-decoration: underline; text-underline-offset: 3px; }

.product-hero,
.product-header,
.detail-hero,
.page-hero { background: var(--navy-950) !important; color: var(--text-on-dark) !important; }
:where(.product-hero, .product-header, .detail-hero, .page-hero) :where(h1, h2, h3, strong, .price, .product-price) { color: var(--text-on-dark) !important; }
:where(.product-hero, .product-header, .detail-hero, .page-hero) :where(p, li, .subtitle, .product-desc) { color: var(--text-on-dark-muted) !important; }

.page-checkout .section > .card:last-child {
  background: var(--navy-850) !important;
  color: var(--text-on-dark) !important;
  border-color: var(--border-dark) !important;
}
.page-checkout .section > .card:last-child :where(h2, strong, .summary-total, .item-total) { color: var(--text-on-dark) !important; }
.page-checkout .section > .card:last-child :where(p, .summary-row, .card-subtitle) { color: var(--text-on-dark-muted) !important; }
.page-checkout .section > .card:last-child input { background: var(--navy-800) !important; color: var(--text-on-dark) !important; border-color: var(--border-dark) !important; }
.page-checkout .field-wrap label span { color: var(--text-on-light-muted) !important; }
.page-checkout label span,
.page-checkout .reassurance span,
.page-checkout .card > div span { color: var(--text-on-light-strong-muted) !important; }
.page-checkout [style*="#A0A8B4"] { color: var(--text-on-light-strong-muted) !important; }
.page-checkout .section > .card:last-child :where(span, p, .summary-row) { color: var(--text-on-dark-muted) !important; }
.page-checkout .section > .card:last-child :where(strong, .summary-total, .summary-total span) { color: var(--text-on-dark) !important; }
.page-checkout .secure-note span { color: var(--text-on-light-muted) !important; }

input::placeholder,
textarea::placeholder { color: #6d7782 !important; opacity: 1; }
.surface-dark input,
.surface-dark select,
.surface-dark textarea,
.card-dark input,
.card-dark select,
.card-dark textarea,
.stack-builder input,
.stack-builder select,
.stack-builder textarea {
  background: var(--navy-800) !important;
  color: var(--text-on-dark) !important;
  border-color: var(--border-dark) !important;
}
.surface-dark input::placeholder,
.surface-dark textarea::placeholder,
.card-dark input::placeholder,
.card-dark textarea::placeholder,
.stack-builder input::placeholder,
.stack-builder textarea::placeholder { color: var(--text-on-dark-muted) !important; }
.field-wrap input:focus ~ label,
.field-wrap input:not(:placeholder-shown) ~ label,
.field-wrap textarea:focus ~ label,
.field-wrap textarea:not(:placeholder-shown) ~ label { color: #267985 !important; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--cyan-500); }
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed !important;
  filter: saturate(0.35) !important;
  opacity: 0.58 !important;
}

/* Semantic status system */
.in-stock,
.status-complete,
.status-confirmed,
.status-paid,
.status-verified,
.cashout-status-paid { color: #147b4b !important; }
.status-pending,
.status-awaiting,
.limited-stock,
.cashout-status-pending { color: #8a5800 !important; }
.status-error,
.status-failed,
.status-unavailable,
.out-of-stock,
.cashout-status-rejected { color: #b52e3b !important; }
.notice-overlay { background: rgba(1, 8, 15, 0.88) !important; }
.notice-box {
  background: var(--navy-950) !important;
  color: var(--text-on-dark) !important;
  border: 1px solid var(--border-dark) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48) !important;
}
.notice-eyebrow,
.notice-channels-label,
.notice-official-label { color: var(--cyan-400) !important; }
.notice-box h2,
.notice-check-label,
.notice-check-label strong { color: var(--text-on-dark) !important; }
.notice-body,
.notice-small,
.notice-official-text { color: var(--text-on-dark-muted) !important; }
.notice-checks,
.notice-official { background: var(--navy-850) !important; border: 1px solid var(--border-dark) !important; }
.notice-check-box { background: var(--navy-800) !important; border: 1px solid rgba(247, 249, 251, 0.5) !important; }
.notice-check-item input:checked ~ .notice-check-box { background: var(--cyan-500) !important; border-color: var(--cyan-500) !important; }
.notice-divider { border-color: var(--border-dark) !important; }
.notice-channel { color: var(--text-on-dark-muted) !important; }
.notice-channel span:first-child { color: var(--text-on-dark) !important; }
.notice-channel a { color: var(--cyan-400) !important; }
.notice-btn { background: var(--brand-gradient) !important; color: var(--navy-950) !important; }
.notice-btn:disabled { background: #334555 !important; color: #c3ccd5 !important; }
.notice-exit-btn { background: transparent !important; color: var(--text-on-dark) !important; border: 1px solid rgba(247, 249, 251, 0.38) !important; }
.notice-exit-btn:hover { border-color: var(--cyan-400) !important; color: var(--cyan-400) !important; }

.modal-overlay { background: rgba(1, 8, 15, 0.78) !important; }
.modal { background: var(--navy-900) !important; color: var(--text-on-dark) !important; border: 1px solid var(--border-dark) !important; }
.modal :where(h1, h2, h3, strong, label, .modal-price) { color: var(--text-on-dark) !important; }
.modal p { color: var(--text-on-dark-muted) !important; }
.modal-add-btn { background: var(--brand-gradient) !important; color: var(--navy-950) !important; }
.modal-skip-btn { color: var(--text-on-dark) !important; border-color: var(--border-dark) !important; }

.page-stack-builder,
.page-stack-builder main,
.page-stack-builder .builder-section,
.page-stack-builder .results-section { background: var(--navy-950) !important; color: var(--text-on-dark) !important; }
.page-stack-builder :where(h1, h2, h3, h4, strong, label, .goal-name) { color: var(--text-on-dark) !important; }
.page-stack-builder :where(p, li, .subtitle, .helper, .goal-desc) { color: var(--text-on-dark-muted) !important; }
.page-stack-builder :where(.goal-card, .result-card, .compound-card, .notes-card) { background: var(--navy-850) !important; color: var(--text-on-dark) !important; border-color: var(--border-dark) !important; }
.page-product-detail { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.page-product-detail .hero { background: var(--navy-950) !important; color: var(--text-on-dark) !important; }
.page-product-detail .hero :where(h1, h2, h3, strong, .spec-value) { color: var(--text-on-dark) !important; }
.page-product-detail .hero :where(p, li, .hero-desc, .spec-label, .breadcrumb) { color: var(--text-on-dark-muted) !important; }
.page-product-detail .hero .breadcrumb a { color: var(--cyan-400) !important; }
.page-product-detail .product-card {
  background: var(--navy-850) !important;
  color: var(--text-on-dark) !important;
  border: 1px solid var(--border-dark) !important;
}
.page-product-detail .product-card :where(.product-card-price, .product-card-name, li, strong) { color: var(--text-on-dark) !important; }
.page-product-detail .product-card :where(.card-whatsapp, .trust-label) { color: var(--text-on-dark-muted) !important; }
.page-product-detail .product-card .card-cta:not(.launch-notify-btn) { color: var(--navy-950) !important; }
.page-product-detail .content,
.page-product-detail .content .section { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.page-product-detail .content :where(h1, h2, h3, h4, strong, .faq-q, .related-name, .related-price) { color: var(--text-on-light) !important; }
.page-product-detail .content :where(p, li, td, .faq-a) { color: var(--text-on-light-muted) !important; }
.page-product-detail :where(.highlight-card, .faq-item, .related-card) { background: #fff !important; color: var(--text-on-light) !important; border-color: var(--border-light) !important; }
.page-product-detail .trust-row { border-color: var(--border-dark) !important; }

.page-verify { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.page-verify .verify-item { background: var(--navy-850) !important; border-color: var(--border-dark) !important; }
.page-verify .verify-label,
.page-verify .verify-value,
.page-verify .verify-value a { color: var(--text-on-dark) !important; }
.page-verify .verify-note { color: var(--text-on-dark-muted) !important; }
.page-verify :where(.payment-box, .scam-box) { background: var(--navy-950) !important; color: var(--text-on-dark) !important; border-color: var(--border-dark) !important; }
.page-verify :where(.payment-box, .scam-box) :where(h1, h2, h3, h4, strong) { color: var(--text-on-dark) !important; }
.page-verify :where(.payment-box, .scam-box) :where(p, li, .payment-method-sub, .scam-sign-text) { color: var(--text-on-dark-muted) !important; }
.page-verify .guarantee { background: var(--warm-200) !important; color: var(--text-on-light) !important; }
.page-verify .guarantee :where(h1, h2, h3, strong) { color: var(--text-on-light) !important; }
.page-verify .guarantee p { color: #4d5965 !important; }
.page-verify .guarantee a { color: var(--link-violet) !important; }
.page-members { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.page-members .members-title,
.page-members .guide-card-name { color: var(--text-on-light) !important; }
.page-members .members-welcome { color: var(--text-on-light-muted) !important; }
.page-members .gate-card { background: var(--navy-900) !important; color: var(--text-on-dark) !important; border: 1px solid var(--border-dark) !important; }
.page-members .gate-card :where(h1, h2, h3, strong, label) { color: var(--text-on-dark) !important; }
.page-members .gate-card :where(p, .gate-sub) { color: var(--text-on-dark-muted) !important; }
.page-members .gate-card input { background: var(--navy-800) !important; color: var(--text-on-dark) !important; border-color: var(--border-dark) !important; }
.page-members .gate-tabs button { color: var(--text-on-dark-muted) !important; }
.page-members .gate-tabs button.active { color: var(--text-on-dark) !important; border-color: var(--cyan-400) !important; }
.page-members #tab-register,
.page-members #tab-signin { color: var(--text-on-dark-muted) !important; }
.page-members #tab-register[style*="var(--accent)"],
.page-members #tab-signin[style*="var(--accent)"] { color: var(--text-on-dark) !important; }
.page-ambassador .how-section { background: var(--navy-950) !important; color: var(--text-on-dark) !important; }
.page-ambassador .how-section :where(h1, h2, h3, strong) { color: var(--text-on-dark) !important; }
.page-ambassador .how-section p { color: var(--text-on-dark-muted) !important; }
.page-ambassador .lookup-btn { color: var(--navy-950) !important; }
.page-ambassador a { color: var(--link-violet); }

.page-legal { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.page-legal .page-hero { background: var(--navy-950) !important; color: var(--text-on-dark) !important; }
.page-legal .page-hero :where(h1, h2, h3, strong) { color: var(--text-on-dark) !important; }
.page-legal .page-hero :where(p, .page-hero-sub) { color: var(--text-on-dark-muted) !important; }
.page-legal :where(.content-wrap, .content-inner) { background: var(--warm-100) !important; color: var(--text-on-light) !important; }
.page-legal :where(.intro-card, .policy-card) { background: #fff !important; color: var(--text-on-light) !important; border-color: var(--border-light) !important; }
.page-legal :where(.intro-card, .policy-card) :where(h1, h2, h3, h4, strong, .intro-title) { color: var(--text-on-light) !important; }
.page-legal :where(.intro-card, .policy-card) :where(p, li, td, .intro-meta) { color: var(--text-on-light-muted) !important; }
.page-legal :where(.intro-card, .policy-card) a,
.page-legal .legal-basis-chip { color: var(--link-violet) !important; }

.footer :where(.footer-nav-title, .footer-contact-title, h2, h3, h4),
footer :where(.footer-nav-title, .footer-contact-title, h2, h3, h4) { color: var(--text-on-dark) !important; }
.footer :where(.footer-copy, .footer-tagline, .footer-bottom, p, small),
footer :where(.footer-copy, .footer-tagline, .footer-bottom, p, small, span) { color: var(--text-on-dark-muted) !important; }
.footer a,
footer a { color: var(--text-on-dark-muted) !important; }
.footer a:hover,
footer a:hover { color: var(--cyan-400) !important; }
.footer a[href*="peptidesupermarket"] span,
footer a[href*="peptidesupermarket"] span,
.footer a[href*="peptidesupermarket"] strong,
footer a[href*="peptidesupermarket"] strong { color: #166534 !important; }
.disclaimer { background: var(--navy-900) !important; color: var(--text-on-dark) !important; }
.disclaimer :where(h1, h2, h3, h4, strong) { color: var(--text-on-dark) !important; }
.disclaimer :where(p, li, .disclaimer-intro) { color: var(--text-on-dark-muted) !important; }
.footer-bottom-wrap { border-color: var(--border-dark) !important; }
.wa-float { box-shadow: 0 4px 8px rgba(4, 17, 31, 0.26) !important; }
.cookie-banner {
  max-width: min(620px, calc(100vw - 32px));
  bottom: 16px !important;
  background: var(--navy-mid) !important;
  color: var(--off-white) !important;
  border-color: rgba(73, 216, 231, 0.2) !important;
}
.cookie-banner :where(p, span) { color: var(--text-on-dark-muted) !important; }
body > div[style*="#7f1d1d"] { background: var(--navy-800) !important; border-color: var(--border-dark) !important; }
body > div[style*="#7f1d1d"] :where(div, p, strong) { color: var(--text-on-dark) !important; }

@media (max-width: 720px) {
  .footer-inner { padding-left: 20px !important; padding-right: 20px !important; }
  .footer-bottom { align-items: flex-start !important; }
  .order-card { display: block !important; }
  .order-card > * { width: 100% !important; }
  .cookie-banner { left: 16px !important; right: 16px !important; width: auto !important; }
}

@media (max-width: 1180px) {
  .topbar .nav-links { display: none !important; }
  .topbar .hamburger { display: flex !important; }
  .topbar .mobile-cart-control { display: inline-flex; margin-left: auto; }
  body.home-page .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr); gap: 30px; }
  .hero-products { min-height: 440px; }
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 900px) {
  body.home-page .hero { min-height: auto; padding-top: 72px !important; }
  body.home-page .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-products { min-height: 430px; width: min(100%, 620px); margin: 0 auto; }
}

@media (max-width: 768px) {
  body.home-page .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  body.home-page .hero-copy {
    display: contents;
  }

  .hero-products::before {
    display: none;
  }

  .hero-products-label {
    display: none;
  }

  .hero-products {
    order: 2;
    width: min(96%, 600px);
    min-height: clamp(260px, 68vw, 360px);
    margin: 0 auto;
  }

  .hero-vial {
    height: auto;
    object-fit: contain;
  }

  .hero-features {
    display: grid;
    position: static;
    order: 3;
    width: min(100%, 520px);
    margin: 8px auto 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-feature,
  .hero-feature:last-child {
    position: static;
    grid-column: auto;
    min-height: 44px;
  }

  .mobile-nav {
    max-height: 100dvh;
    overflow-y: auto;
    justify-content: flex-start !important;
    padding-top: calc(76px + env(safe-area-inset-top)) !important;
    padding-right: 24px !important;
    padding-bottom: calc(116px + env(safe-area-inset-bottom)) !important;
    padding-left: 24px !important;
    gap: 20px !important;
    overscroll-behavior: contain;
  }

  #mobile-nav-shared {
    position: fixed;
    inset: 0;
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    background: var(--navy);
  }

  .mobile-nav-close {
    position: fixed !important;
    top: calc(18px + env(safe-area-inset-top)) !important;
    right: 20px !important;
    width: 44px;
    height: 44px;
  }

  .nav .nav-links { display: none !important; }
  .nav .hamburger { display: flex !important; }
  .nav .mobile-cart-control { display: inline-flex; margin-left: auto; }
  .topbar, .nav { gap: 8px; }
  .mobile-nav a { min-height: 44px; display: flex !important; align-items: center; }

  #nova-consent-manage {
    box-sizing: border-box;
    animation: nova-privacy-collapse 1ms step-end 6s forwards;
  }
  #nova-consent-manage::after {
    content: "⚙";
    font-size: 0;
    animation: nova-privacy-label 1ms step-end 6s forwards;
  }
  body:has(.mobile-nav.open) #nova-consent-manage {
    animation: none !important;
    top: calc(22px + env(safe-area-inset-top));
    right: auto;
    bottom: auto;
    left: 20px;
    z-index: 10001;
  }
  body:has(.mobile-nav.open) #nova-consent-manage::after {
    content: none;
    animation: none;
  }
  body:has(.mobile-nav.open) .mobile-wa-float,
  body:has(.mobile-nav.open) .wa-float { display: none !important; }
}

@keyframes nova-privacy-collapse {
  to {
    top: 50%;
    right: 0;
    bottom: auto;
    padding: 7px 5px;
    border-radius: 5px 0 0 5px;
    width: 32px;
    height: 44px;
    font-size: 0;
    transform: translateY(-50%);
  }
}

@keyframes nova-privacy-label {
  to { font-size: 15px; }
}

@media (max-width: 640px) {
  :root {
    --mobile-header-height: 66px;
  }

  .ticker-wrap { padding: 7px 0; }
  .topbar {
    min-height: var(--mobile-header-height);
    padding: 0 18px !important;
  }
  .header-logo { height: 52px !important; }
  .mobile-cart-control { min-width: 76px; padding: 0 10px; font-size: 12px; }
  body.home-page .hero { padding: 58px 20px 42px !important; }
  body.home-page .hero h1 { font-size: clamp(42px, 13vw, 58px) !important; }
  body.home-page .hero-sub { font-size: 16px !important; }
  body.home-page .hero-btns { display: grid !important; grid-template-columns: 1fr; }
  body.home-page .hero-btns a { justify-content: center; text-align: center; width: 100%; }
  .hero-features { display: grid; }
  .hero-products { min-height: clamp(205px, 52vw, 230px); }
  .hero-vial { width: min(38%, 160px); }
  .hero-vial.reta { left: 1%; bottom: 4%; }
  .hero-vial.tirz {
    left: 29%;
    bottom: 9%;
    width: min(42%, 178px);
  }
  .hero-vial.sema { right: 1%; bottom: 4%; }
  .hero-products-label { display: none; }
  .why-img-wrap { transform: none !important; }
  .products-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .product-card { padding: 20px !important; }
  .section { padding-left: 16px !important; padding-right: 16px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Cart page */
.page-cart {
  background: var(--warm-100);
  color: var(--text-on-light);
}

.page-cart .hero {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 48px);
  border-bottom: 1px solid var(--border-dark);
}

.page-cart .hero-inner {
  max-width: 1180px;
}

.page-cart .hero .eyebrow {
  margin-bottom: 14px;
  color: var(--cyan-400);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.page-cart .hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.035em;
}

.page-cart .hero p {
  max-width: 650px;
  color: var(--text-on-dark-muted) !important;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.page-cart .section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0 clamp(64px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.8fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.page-cart .card {
  padding: clamp(24px, 3vw, 36px) !important;
  border-radius: 14px !important;
}

.page-cart .cart-items-card {
  background: #fff !important;
  border-color: var(--border-light) !important;
  box-shadow: 0 6px 8px rgba(8, 21, 34, 0.06) !important;
}

.page-cart .card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.page-cart .cart-items-card h2 {
  color: var(--text-on-light) !important;
}

.page-cart .card-subtitle {
  max-width: 52ch;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.65;
}

.page-cart .cart-items-card .card-subtitle {
  color: var(--text-on-light-muted) !important;
}

.page-cart .cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.page-cart .cart-item:first-of-type {
  padding-top: 4px;
}

.page-cart .cart-item:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

.page-cart .item-info {
  min-width: 0;
}

.page-cart .cart-items-card .item-name {
  margin-bottom: 7px;
  color: var(--text-on-light) !important;
  font-size: 1.125rem !important;
  font-weight: 800 !important;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.page-cart .cart-items-card .item-meta {
  color: var(--text-on-light-muted) !important;
  font-size: 0.9375rem !important;
  line-height: 1.55;
}

.page-cart .item-controls {
  display: grid;
  grid-template-columns: auto minmax(116px, auto);
  grid-template-areas:
    "quantity total"
    "remove remove";
  gap: 10px 18px;
  align-items: center;
  justify-items: end;
  flex-shrink: 0;
}

.page-cart .cart-qty {
  grid-area: quantity;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border-light) !important;
  border-radius: 8px;
  background: #fff;
}

.page-cart .cart-qty-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: #fff !important;
  color: var(--text-on-light) !important;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-cart .cart-qty-btn:hover {
  background: var(--warm-100) !important;
  color: var(--violet-500) !important;
}

.page-cart .cart-qty-btn:active {
  background: var(--warm-200) !important;
}

.page-cart .cart-qty-num {
  width: 42px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  color: var(--text-on-light) !important;
  font-size: 0.9375rem;
  font-weight: 800;
  user-select: none;
}

.page-cart .included-bac-qty {
  min-width: 68px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fff;
  color: var(--text-on-light);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.page-cart .cart-items-card .item-total {
  grid-area: total;
  color: var(--text-on-light) !important;
  font-size: 1.125rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.page-cart .remove-btn {
  grid-area: remove;
  min-height: 32px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: var(--danger) !important;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-cart .remove-btn:hover {
  color: #c93f4b !important;
}

.page-cart #cart-summary {
  position: sticky;
  top: 112px;
  padding: clamp(26px, 3vw, 34px) !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 14px !important;
  background: var(--navy-850) !important;
  box-shadow: 0 8px 8px rgba(4, 17, 31, 0.2) !important;
}

.page-cart #cart-summary h2 {
  color: var(--text-on-dark) !important;
}

.page-cart #cart-summary .card-subtitle {
  color: var(--text-on-dark-muted) !important;
}

.page-cart .summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: var(--text-on-dark-muted) !important;
  font-size: 1rem;
  font-weight: 600;
}

.page-cart .summary-row span:last-child {
  color: var(--text-on-dark) !important;
  font-weight: 700;
}

.page-cart .shipping-note {
  margin: -4px 0 22px;
  color: var(--text-on-dark-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.page-cart .summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-on-dark) !important;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.page-cart .summary-total span:last-child {
  color: var(--cyan-400) !important;
  text-align: right;
}

.page-cart .delivery-check {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  background: var(--navy-800);
}

.page-cart .delivery-check-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-on-dark) !important;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-cart .delivery-check-row {
  display: flex;
  gap: 10px;
}

.page-cart .delivery-check-row input {
  min-width: 0;
  min-height: 50px;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(247, 249, 251, 0.28) !important;
  border-radius: 8px !important;
  background: var(--navy-900) !important;
  color: var(--text-on-dark) !important;
  font-size: 1rem;
}

.page-cart .delivery-check-row input::placeholder {
  color: var(--text-on-dark-muted) !important;
}

.page-cart .delivery-check-row input:focus {
  border-color: var(--cyan-400) !important;
  box-shadow: var(--focus-ring) !important;
}

.page-cart .delivery-check-btn {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--cyan-400);
  border-radius: 8px;
  background: transparent;
  color: var(--cyan-400);
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-cart .delivery-check-btn:hover {
  background: var(--cyan-400);
  color: var(--navy-950);
}

.page-cart .delivery-result {
  display: none;
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-cart .delivery-result.ok {
  color: #6ee7a9;
}

.page-cart .delivery-result.warn {
  color: #ffc36b;
}

.page-cart .cart-support {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--text-on-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.page-cart .cart-support-icon {
  flex: 0 0 auto;
  font-size: 1.125rem;
  line-height: 1.4;
}

.page-cart .cart-support a {
  color: var(--cyan-400) !important;
  font-weight: 700;
  text-underline-offset: 3px;
}

.page-cart .checkout-btn,
.page-cart .mobile-checkout-bar-btn {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-gradient) !important;
  color: var(--navy-950) !important;
  font-weight: 800 !important;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), filter 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-cart .checkout-btn {
  width: 100%;
  margin-top: 22px;
  padding: 14px 20px;
  font-size: 1rem;
}

.page-cart .checkout-btn:hover,
.page-cart .mobile-checkout-bar-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.page-cart .checkout-btn:active,
.page-cart .mobile-checkout-bar-btn:active {
  transform: translateY(0);
}

.page-cart #cart-summary .secondary-link {
  display: block;
  width: fit-content;
  min-height: 44px;
  margin: 12px auto 0;
  padding: 11px 8px;
  color: var(--text-on-dark-muted) !important;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}

.page-cart #cart-summary .secondary-link:hover {
  color: var(--cyan-400) !important;
}

.page-cart .empty-state {
  padding: 10px 0 4px;
  color: var(--text-on-light-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.page-cart .small-note {
  margin-top: 18px;
  color: var(--text-on-light-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.page-cart .mobile-checkout-bar {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px max(16px, env(safe-area-inset-right)) calc(12px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  border-top: 1px solid var(--border-dark);
  background: var(--navy-950) !important;
  box-shadow: 0 -6px 8px rgba(4, 17, 31, 0.2);
}

.page-cart .mobile-checkout-bar-label {
  margin-bottom: 2px;
  color: var(--text-on-dark-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.page-cart .mobile-checkout-bar-value {
  color: var(--text-on-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.page-cart .mobile-checkout-bar-btn {
  padding: 12px 22px;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.page-cart .footer {
  padding-bottom: 24px;
  background: var(--navy-900) !important;
  color: var(--text-on-dark-muted) !important;
}

.page-cart .footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.page-cart .footer-logo {
  width: auto;
  height: 76px;
  opacity: 0.96;
}

.page-cart .footer-copy {
  color: var(--text-on-dark-muted) !important;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: right;
}

.page-cart .footer-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.page-cart .footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-on-dark-muted) !important;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.page-cart .footer-links a:hover {
  color: var(--cyan-400) !important;
}

.page-cart .footer-channel-note {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  background: var(--navy-850);
  color: var(--text-on-dark-muted);
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: center;
}

.page-cart .footer-channel-note svg {
  flex: 0 0 auto;
  color: var(--cyan-400);
}

.page-cart .footer-channel-note strong {
  color: var(--text-on-dark) !important;
}

@media (max-width: 1024px) {
  .page-cart .section {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
    gap: 24px;
  }

  .page-cart .item-controls {
    grid-template-columns: auto;
    grid-template-areas:
      "total"
      "quantity"
      "remove";
  }
}

@media (max-width: 768px) {
  .page-cart .section {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .page-cart #cart-summary {
    position: static;
  }

  .page-cart .mobile-checkout-bar {
    display: flex;
  }

  .page-cart .footer-inner {
    width: min(100% - 32px, 680px);
    align-items: flex-start;
    flex-direction: column;
  }

  .page-cart .footer-copy {
    text-align: left;
  }

  .page-cart .footer-links {
    justify-content: flex-start;
  }

  .page-cart .footer-channel-note {
    width: min(100% - 32px, 680px);
  }
}

@media (max-width: 520px) {
  .page-cart .hero {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .page-cart .hero h1 {
    font-size: 2.45rem;
  }

  .page-cart .section {
    width: calc(100% - 24px);
    padding-bottom: 52px;
  }

  .page-cart .card {
    padding: 22px 18px !important;
  }

  .page-cart .cart-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-cart .item-controls {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "quantity total"
      "remove remove";
    justify-items: stretch;
  }

  .page-cart .cart-qty {
    justify-self: start;
  }

  .page-cart .cart-items-card .item-total {
    justify-self: end;
    align-self: center;
  }

  .page-cart .remove-btn {
    justify-self: end;
  }

  .page-cart .delivery-check-row {
    flex-direction: column;
  }

  .page-cart .delivery-check-btn {
    width: 100%;
  }

  .page-cart .summary-total {
    font-size: 1.65rem;
  }

  .page-cart .mobile-checkout-bar-btn {
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-cart .footer-channel-note {
    width: calc(100% - 24px);
    align-items: flex-start;
    text-align: left;
  }
}

/* Premium badge system */
:root {
  --badge-height: 26px;
  --badge-padding-x: 10px;
  --badge-radius: 7px;
  --badge-font-size: 10px;
  --badge-font-weight: 800;
  --badge-letter-spacing: 0.09em;
  --badge-shadow: 0 3px 8px rgba(4, 17, 31, 0.18);
  --badge-cyan: var(--cyan-400);
  --badge-violet: #6b3ee8;
  --badge-mint: #b9f1d0;
  --badge-amber: #f3bd58;
  --badge-charcoal: #364554;
  --badge-coral: #b93849;
}

:where(
  .best-seller-badge,
  .category-card-badge,
  .bundle-popular,
  .popular-tag,
  .urgency-badge,
  .stock-badge,
  .sold-out-badge,
  .low-stock-badge,
  .promo-sale-badge,
  .promo-tag,
  .coming-soon-badge,
  .count-badge,
  .hero-badge,
  .category-badge,
  .nav-badge,
  .members-badge,
  .guide-cat-badge,
  .order-badge,
  .success-badge,
  .badge-secure,
  .scam-badge,
  .tier-tag,
  .bundle-tier,
  .bundle-save,
  .status-badge,
  #product-count-badge,
  .product-tag,
  .article-tag,
  .card-tag,
  .guide-tag,
  .topbar-tag,
  .badge,
  .badge.badge-seller,
  .badge.badge-oos
) {
  box-sizing: border-box !important;
  min-height: var(--badge-height) !important;
  height: var(--badge-height) !important;
  width: max-content;
  max-width: 100%;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 0 var(--badge-padding-x) !important;
  border-radius: var(--badge-radius) !important;
  border: 1px solid transparent !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: var(--badge-font-size) !important;
  font-weight: var(--badge-font-weight) !important;
  line-height: 1 !important;
  letter-spacing: var(--badge-letter-spacing) !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
  box-shadow: var(--badge-shadow) !important;
  -webkit-font-smoothing: antialiased;
  z-index: 8 !important;
  transition: transform 160ms ease, filter 160ms ease !important;
}

:where(
  .best-seller-badge,
  .category-card-badge,
  .badge.badge-seller
) {
  background: var(--badge-cyan) !important;
  color: var(--navy-950) !important;
}

:where(.bundle-popular, .popular-tag) {
  background: linear-gradient(110deg, var(--cyan-400) 0%, #6fc4ea 48%, var(--violet-400) 100%) !important;
  color: var(--navy-950) !important;
}

:where(.bundle-popular.badge-new, .badge-new) {
  background: var(--badge-violet) !important;
  color: var(--text-on-dark) !important;
}

:where(.urgency-badge, .high-demand-badge) {
  background: var(--navy-900) !important;
  border-color: var(--cyan-400) !important;
  color: var(--text-on-dark) !important;
}

:where(.badge-limited, .low-stock-badge, .status-badge.pending, .status-badge.awaiting, .success-badge) {
  background: var(--badge-amber) !important;
  border-color: transparent !important;
  color: var(--navy-950) !important;
}

:where(.stock-badge, .in-stock-badge, .dispatch-badge, .order-badge) {
  background: var(--badge-mint) !important;
  color: var(--navy-950) !important;
}

.launch-announcement {
  padding: clamp(28px, 4vw, 52px) 24px;
  background: var(--navy-900);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.launch-announcement-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy-850);
  border: 1px solid rgba(37, 201, 220, 0.28);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.launch-announcement-copy { max-width: 760px; }
.launch-announcement-eyebrow {
  margin-bottom: 12px;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.launch-announcement h2 {
  margin: 0 0 14px;
  color: var(--text-on-dark);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.2;
}
.launch-announcement p {
  margin: 6px 0;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}
.launch-announcement p strong { color: var(--text-on-dark); }
.launch-announcement .btn-primary { flex: 0 0 auto; }

.home-catalogue-section + .home-catalogue-section { margin-top: clamp(36px, 5vw, 64px); }
.home-catalogue-section .products-header { margin-bottom: 28px; }
.home-catalogue-soon .products-header { margin-bottom: 20px; }
.home-catalogue-intro {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.home-catalogue-grid {
  align-items: stretch;
  min-height: 360px;
}
.home-catalogue-grid:empty {
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  background: var(--navy-900);
}
.home-catalogue-grid:empty::after {
  content: "Loading catalogue…";
  min-height: 360px;
  display: grid;
  place-items: center;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
}
.home-catalogue-grid .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-product-image-link {
  display: block;
  color: inherit !important;
  text-decoration: none;
}
.home-product-image-link .product-img {
  width: 100%;
}
.home-product-image-link:hover .product-img {
  transform: scale(1.04);
}
.home-product-title-link {
  color: var(--text-on-light) !important;
  text-decoration: none;
}
.home-product-title-link:hover {
  color: var(--link-violet) !important;
}
.home-catalogue-grid .product-card h3 {
  min-height: 3em;
}
.home-catalogue-grid .launch-availability {
  margin-top: 14px;
}
.home-price-block {
  margin: 20px 0 22px;
}
.home-catalogue-grid .product-desc {
  flex: 1 1 auto;
  margin-bottom: 24px;
}
.home-catalogue-grid .price {
  margin: 0;
  color: var(--text-on-light) !important;
  font-size: clamp(1.65rem, 2.2vw, 2rem) !important;
  font-weight: 850 !important;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.home-catalogue-grid .price-note {
  margin: 6px 0 0;
  color: var(--text-on-light-muted) !important;
  font-size: 0.84rem !important;
  font-weight: 600;
  line-height: 1.3;
}
.home-card-actions {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.home-card-actions .home-add-to-cart,
.home-card-actions .launch-notify-btn {
  width: 100%;
  min-height: 46px;
}
.home-card-actions .product-learn-more {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  font-size: 0.82rem;
}
.home-add-to-cart:disabled {
  cursor: wait;
  opacity: 0.82;
}
.home-cart-feedback {
  min-height: 2.6em;
  color: var(--text-on-light-muted);
  font-size: 0.78rem;
  line-height: 1.3;
  text-align: center;
}
.home-catalogue-fallback { margin: 32px 0 0; text-align: center; }
.home-catalogue-fallback a { color: var(--cyan-400); }

/* Live storefront presentation: carry the approved premium system through the catalogue. */
.home-page .why-section,
.home-page .products-section,
.page-products .category-nav,
.page-products .bundles-section,
.page-products #compounds,
.page-products .section {
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 201, 220, 0.08), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(124, 77, 255, 0.08), transparent 30%),
    var(--navy-950) !important;
  color: var(--text-on-dark) !important;
}

.home-page .why-section {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.home-page .why-section :where(.section-h2, h2, strong),
.home-page .products-section .section-h2,
.page-products .catalogue-section-header h2,
.page-products #compounds h2,
.page-products .bundles-section h2 {
  color: var(--text-on-dark) !important;
}
.home-page .why-section :where(.body-text, p),
.home-page .products-section .home-catalogue-intro,
.page-products .catalogue-section-header p,
.page-products #compounds p,
.page-products .bundles-section p {
  color: var(--text-on-dark-muted) !important;
}
.home-page .why-section .section-italic,
.page-products .catalogue-section-status,
.page-products .catalogue-section-count {
  color: var(--cyan-400) !important;
}
.home-page .why-section .btn-outline {
  border-color: var(--cyan-400) !important;
  color: var(--cyan-400) !important;
}
.home-page .why-section .btn-outline:hover {
  background: var(--cyan-400) !important;
  color: var(--navy-950) !important;
}

.home-page .products-section,
.page-products .section {
  padding-block: clamp(64px, 8vw, 96px) !important;
}
.page-products .catalogue-sections {
  gap: clamp(56px, 7vw, 88px);
}
.page-products .catalogue-section-header {
  border-bottom-color: rgba(73, 216, 231, 0.24);
}
.page-products #coming-soon-products {
  padding-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--border-dark);
}
.page-products #coming-soon-products .catalogue-section-header,
.home-page .home-catalogue-soon {
  opacity: 0.82;
}

.home-page .product-card,
.page-products .product-card,
.page-products .bundle-card,
.page-products .category-card {
  background: linear-gradient(155deg, rgba(16, 36, 55, 0.98), rgba(7, 24, 39, 0.98)) !important;
  border-color: var(--border-dark) !important;
  color: var(--text-on-dark) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2) !important;
}
.home-page .product-card:hover,
.page-products .product-card:hover,
.page-products .bundle-card:hover,
.page-products .category-card:hover {
  background: linear-gradient(155deg, rgba(20, 45, 67, 0.99), rgba(10, 30, 48, 0.99)) !important;
  border-color: rgba(73, 216, 231, 0.62) !important;
}
.home-page .product-card :where(h3, .price, .product-title),
.page-products .product-card :where(h3, .price, .product-title),
.page-products .bundle-card :where(.bundle-name, .bundle-price, li, strong),
.page-products .category-card h3 {
  color: var(--text-on-dark) !important;
}
.home-page .product-card :where(.product-desc, .price-note, .launch-availability-note),
.page-products .product-card :where(.product-desc, .price-note, .launch-availability-note),
.page-products .category-card :where(p, .category-card-count) {
  color: var(--text-on-dark-muted) !important;
}
.home-page .product-card :where(.product-img, .product-image, img),
.page-products .product-card :where(.product-img, .product-image, img) {
  background: linear-gradient(145deg, rgba(250, 248, 245, 0.96), rgba(226, 234, 239, 0.94)) !important;
}
.home-page .product-card .product-learn-more,
.page-products .product-card .product-learn-more,
.home-page .home-product-title-link {
  color: var(--cyan-400) !important;
}
.page-products #coming-soon-grid .product-card {
  opacity: 0.68;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .home-page .why-section,
  .home-page .products-section,
  .page-products .section {
    padding-inline: 20px !important;
  }
  .page-products .catalogue-sections { gap: 52px; }
  .page-products #coming-soon-products { padding-top: 28px; }
}

.home-trust-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 56px);
  background: var(--warm-100);
  color: var(--text-on-light);
}
.home-trust-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}
.home-trust-header {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}
.home-trust-header h2 {
  margin: 0;
  color: var(--text-on-light);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.home-trust-card {
  min-width: 0;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
}
.home-trust-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 1.6rem;
  line-height: 1;
}
.home-trust-card h3 {
  margin: 0 0 10px;
  color: var(--text-on-light);
  font-size: 1rem;
  line-height: 1.35;
}
.home-trust-card p {
  margin: 0;
  color: var(--text-on-light-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.home-trust-card strong { color: var(--text-on-light); }

@media (max-width: 1024px) {
  .home-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .home-trust-grid { grid-template-columns: 1fr; }
  .home-trust-card { padding: 22px 20px; }
}

.launch-availability {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 12px 0;
}

.launch-availability-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.launch-availability-badge.launch-in-stock {
  background: var(--badge-mint);
  color: var(--navy-950);
}
.launch-availability-badge.launching-soon {
  background: var(--badge-amber);
  color: var(--navy-950);
}
.launch-availability-note {
  color: var(--text-on-light-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.launch-notify-btn {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: var(--navy-900);
  border: 1px solid var(--violet-400);
  border-radius: 8px;
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.launch-notify-btn:hover {
  background: var(--navy-800);
  border-color: var(--cyan-400);
  color: var(--text-on-dark);
  transform: translateY(-1px);
}
.launch-notify-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.page-product-detail .product-card .product-detail-primary-cta {
  width: 100%;
  min-height: 46px;
  margin: 0 0 12px;
  padding: 13px 20px;
  background: linear-gradient(110deg, var(--cyan-500) 0%, #4bbce7 45%, var(--violet-400) 100%);
  border: 0;
  border-radius: 10px;
  color: var(--navy-950);
  box-shadow: 0 8px 20px rgba(4, 17, 31, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.page-product-detail .product-card .product-detail-primary-cta:hover {
  background: linear-gradient(110deg, var(--cyan-500) 0%, #4bbce7 45%, var(--violet-400) 100%);
  border-color: transparent;
  color: var(--navy-950);
  filter: brightness(1.07);
  transform: translateY(-1px);
}
.page-product-detail .product-card .product-detail-primary-cta:active {
  filter: brightness(0.98);
  transform: translateY(0);
}
.page-product-detail .product-card .product-detail-primary-cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 8px 20px rgba(4, 17, 31, 0.22);
}
.page-product-detail .product-card .product-detail-primary-cta:disabled {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.72;
  transform: none;
}
.page-product-detail .product-interest-link {
  min-height: 44px;
  padding: 10px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--cyan-400);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease;
}
.page-product-detail .product-interest-link:hover {
  color: var(--cyan-400);
  border-color: var(--violet-400);
}
.page-product-detail .product-interest-link:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 4px;
}
.product-detail-cart-feedback {
  min-height: 1.4em;
  margin: 0 0 10px;
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.launch-status-banner {
  background: var(--navy-900);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid rgba(37, 201, 220, 0.24);
  color: var(--text-on-dark);
}
.launch-status-banner[hidden] { display: none; }
.launch-status-banner-inner {
  max-width: 1300px;
  min-height: 58px;
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  gap: 12px 18px;
}
.launch-status-banner-title {
  flex: 0 0 auto;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.launch-status-banner-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.launch-status-banner-copy strong {
  color: var(--text-on-dark);
  font-weight: 700;
}
.launch-status-banner-copy-mobile { display: none; }
.launch-status-banner-dismiss {
  width: 38px;
  height: 38px;
  margin-left: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}
.launch-status-banner-dismiss:hover {
  background: var(--navy-800);
  border-color: var(--cyan-400);
  color: var(--text-on-dark);
}
.launch-status-banner-dismiss:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.interest-modal[hidden] { display: none; }
.interest-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 17, 31, 0.78);
}
.interest-modal-dialog {
  position: relative;
  width: min(100%, 480px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  background: var(--warm-50);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(4, 17, 31, 0.28);
  color: var(--text-on-light);
}
.interest-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-on-light-muted);
  cursor: pointer;
  font-size: 1.1rem;
}
.interest-modal-close:hover {
  border-color: var(--cyan-500);
  color: var(--text-on-light);
}
.interest-modal-close:focus-visible,
.interest-modal-form :where(input, button):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.interest-modal-label {
  margin: 0 52px 8px 0;
  color: var(--cyan-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.interest-modal-dialog h2 {
  margin: 0 52px 8px 0;
  color: var(--navy-950);
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.2;
}
.interest-modal-intro {
  margin: 0 0 24px;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}
.interest-modal-product {
  color: var(--navy-950);
  font-weight: 700;
}
.interest-modal-form {
  display: grid;
  gap: 16px;
}
.interest-modal-field {
  display: grid;
  gap: 7px;
}
.interest-modal-field label {
  color: var(--text-on-light);
  font-size: 0.88rem;
  font-weight: 700;
}
.interest-modal-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-on-light);
  font-size: 1rem;
}
.interest-modal-field input::placeholder { color: var(--text-on-light-strong-muted); }
.interest-modal-field input[aria-invalid="true"] { border-color: var(--danger); }
.interest-modal-submit,
.interest-modal-done {
  min-height: 48px;
  padding: 12px 20px;
  background: var(--brand-gradient);
  border: 0;
  border-radius: 8px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
}
.interest-modal-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.interest-modal-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--danger);
  font-size: 0.88rem;
  line-height: 1.5;
}
.interest-modal-success {
  padding: 22px 0 0;
  text-align: center;
}
.interest-modal-success[hidden] { display: none; }
.interest-modal-success h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.4rem;
}
.interest-modal-success p {
  margin: 0 0 22px;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

.pre-launch-transaction-page {
  overflow: hidden;
}

.pre-launch-transaction-page > :not(#pre-launch-lock):not(script):not(style) {
  display: none !important;
}

.pre-launch-lock {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: clamp(24px, 5vw, 64px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 15%, rgba(37, 201, 220, 0.13), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(124, 77, 255, 0.14), transparent 36%),
    var(--navy-deep);
}

.pre-launch-lock-panel {
  width: min(100%, 680px);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(73, 216, 231, 0.28);
  border-radius: 16px;
  background: var(--navy);
  color: var(--warm-white);
  text-align: center;
}

.pre-launch-lock-label {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pre-launch-lock-panel h1 {
  max-width: 15ch;
  margin: 0 auto 20px;
  color: var(--warm-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.pre-launch-lock-panel p {
  max-width: 58ch;
  margin: 0 auto 12px;
  color: rgba(250, 249, 247, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.pre-launch-lock-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.pre-launch-lock-action:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.pre-launch-lock-action:focus-visible {
  outline: 3px solid var(--warm-white);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .launch-status-banner-inner {
    padding: 12px 20px;
    align-items: flex-start;
  }
  .launch-status-banner-title { padding-top: 3px; }
  .launch-status-banner-copy {
    display: grid;
    gap: 2px;
  }
  .launch-status-banner-dismiss {
    width: 36px;
    height: 36px;
  }
  .interest-modal {
    padding: 14px;
    align-items: flex-end;
  }
  .interest-modal-dialog {
    max-height: calc(100vh - 28px);
    padding: 28px 22px 24px;
  }
}

@media (max-width: 600px) {
  .launch-status-banner-inner {
    position: relative;
    display: block;
    min-height: 100px;
    padding: 10px 62px 10px 16px;
  }
  .launch-status-banner-title {
    display: block;
    padding: 0;
    margin-bottom: 3px;
    font-size: 0.7rem;
    line-height: 1.3;
  }
  .launch-status-banner-copy-desktop { display: none; }
  .launch-status-banner-copy-mobile {
    display: grid;
    gap: 1px;
    color: var(--text-on-dark-muted);
    font-size: 0.8rem;
    line-height: 1.35;
  }
  .launch-status-banner-copy-mobile a {
    width: fit-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--cyan-400);
    font-weight: 800;
    text-decoration: none;
  }
  .launch-status-banner-copy-mobile a:focus-visible {
    outline: 2px solid var(--cyan-400);
    outline-offset: 2px;
  }
  .launch-status-banner-dismiss {
    position: absolute;
    top: 8px;
    right: max(10px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
  }

  body.home-page .hero {
    padding: 42px 20px 46px !important;
  }
  body.home-page .hero-btns {
    margin-bottom: 18px !important;
    padding-inline: 48px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-inline: 42px;
  }
  .hero-feature,
  .hero-feature:last-child {
    grid-column: auto;
    min-height: 44px;
  }

  .page-products .product-card .product-img {
    width: 100%;
    height: 246px;
    padding: 2px;
    object-fit: contain;
    object-position: center;
  }
  .home-page .product-card .product-img {
    width: 100%;
    height: 202px;
    padding: 6px;
    object-fit: contain;
    object-position: center;
  }
}

.product-detail-availability {
  margin: 22px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.product-detail-availability .launch-availability-note { color: var(--text-on-dark-muted); }
.product-detail-availability p {
  flex-basis: 100%;
  margin: 0;
  color: var(--text-on-dark-muted);
}

table .launch-availability-badge {
  margin: 6px 0 4px 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .launch-announcement { padding-inline: 16px; }
  .launch-announcement-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .launch-announcement .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  .launch-announcement {
    padding: 36px 20px calc(88px + env(safe-area-inset-bottom));
  }
  .launch-announcement-inner {
    width: 100%;
    padding: 24px 20px 28px;
    box-sizing: border-box;
  }
  .launch-announcement h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.125rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .launch-announcement .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 32px);
    max-width: 100%;
    min-height: 56px;
    margin: 6px auto 0;
    padding: 14px 18px;
    box-sizing: border-box;
    text-align: center;
  }

  .mobile-wa-float {
    left: calc(8px + env(safe-area-inset-left)) !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    width: 44px !important;
    height: 44px !important;
  }
  .mobile-wa-float svg {
    width: 22px;
    height: 22px;
  }
  #tawk-bubble-container,
  #tawkchat-minified-wrapper,
  .tawk-min-container {
    display: none !important;
  }
}

:where(.status-badge.complete, .status-badge.confirmed, .status-badge.paid, .status-badge.verified) {
  background: var(--badge-mint) !important;
  color: var(--navy-950) !important;
}

:where(.status-badge.failed, .status-badge.unavailable) {
  background: var(--badge-coral) !important;
  color: var(--text-on-dark) !important;
}

:where(.stock-badge.out-of-stock, .stock-badge.oos, .sold-out-badge, .badge.badge-oos, .coming-soon-badge) {
  background: var(--badge-charcoal) !important;
  color: var(--text-on-dark) !important;
}

:where(.promo-sale-badge, .sale-badge) {
  background: var(--badge-coral) !important;
  color: var(--text-on-dark) !important;
}

:where(.promo-tag) {
  background: var(--badge-amber) !important;
  color: var(--navy-950) !important;
}

:where(.hero-badge, .category-badge, .nav-badge, .members-badge, .count-badge, .badge-secure, #product-count-badge) {
  background: var(--navy-850) !important;
  border-color: var(--cyan-400) !important;
  color: var(--text-on-dark) !important;
}

:where(.bundle-tier, .bundle-save, .tier-tag) {
  background: var(--navy-900) !important;
  border-color: var(--violet-400) !important;
  color: var(--text-on-dark) !important;
}

:where(.guide-cat-badge) {
  background: var(--badge-violet) !important;
  color: var(--text-on-dark) !important;
}

:where(.product-tag, .article-tag, .card-tag, .guide-tag, .topbar-tag) {
  background: var(--navy-850) !important;
  border-color: var(--violet-400) !important;
  color: var(--text-on-dark) !important;
}

:where(.scam-badge) {
  background: var(--badge-coral) !important;
  color: var(--text-on-dark) !important;
}
.scam-badge span { color: inherit !important; }

.stock-badge::before {
  width: 6px !important;
  height: 6px !important;
  margin: 0 !important;
  background: currentColor !important;
  box-shadow: none !important;
}

.home-page .product-card,
.page-products .product-card {
  position: relative;
  padding-top: 58px !important;
}
.home-page .product-card > .best-seller-badge,
.page-products .product-card > .best-seller-badge {
  position: absolute !important;
  top: 18px !important;
  left: 20px !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  transform: none !important;
}
.home-page .product-card > .promo-sale-badge,
.page-products .product-card > .promo-sale-badge {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  transform: none !important;
  animation: none !important;
}
.home-page .product-card > :where(.product-img, .product-image, img),
.page-products .product-card > :where(.product-img, .product-image, img) { position: relative; z-index: 1; }

.category-card-badge {
  top: 12px !important;
  left: 12px !important;
  margin: 0 !important;
  transform: none !important;
}

.bundle-popular,
.popular-tag {
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  margin: 0 !important;
  transform: none !important;
}
.bundle-card.featured {
  padding-top: 54px !important;
  border-color: var(--violet-400) !important;
}

:where(
  .best-seller-badge,
  .category-card-badge,
  .bundle-popular,
  .popular-tag,
  .urgency-badge,
  .stock-badge,
  .sold-out-badge,
  .low-stock-badge,
  .promo-sale-badge,
  .promo-tag,
  .coming-soon-badge,
  .count-badge,
  .hero-badge,
  .category-badge,
  .nav-badge,
  .members-badge,
  .guide-cat-badge,
  .order-badge,
  .success-badge,
  .badge-secure,
  .scam-badge,
  .tier-tag,
  .bundle-tier,
  .bundle-save,
  .status-badge,
  #product-count-badge,
  .product-tag,
  .article-tag,
  .card-tag,
  .guide-tag,
  .topbar-tag,
  .badge,
  .badge.badge-seller,
  .badge.badge-oos
):hover {
  filter: brightness(1.04) !important;
  transform: translateY(-1px) !important;
}

:where(
  .best-seller-badge,
  .category-card-badge,
  .bundle-popular,
  .popular-tag,
  .urgency-badge,
  .stock-badge,
  .sold-out-badge,
  .low-stock-badge,
  .promo-sale-badge,
  .promo-tag,
  .coming-soon-badge,
  .count-badge,
  .hero-badge,
  .category-badge,
  .nav-badge,
  .members-badge,
  .guide-cat-badge,
  .order-badge,
  .success-badge,
  .badge-secure,
  .scam-badge,
  .tier-tag,
  .bundle-tier,
  .bundle-save,
  .status-badge,
  #product-count-badge,
  .product-tag,
  .article-tag,
  .card-tag,
  .guide-tag,
  .topbar-tag,
  .badge,
  .badge.badge-seller,
  .badge.badge-oos
):focus-visible {
  outline: 2px solid var(--cyan-400) !important;
  outline-offset: 3px !important;
}

@media (max-width: 640px) {
  :root { --badge-height: 24px; --badge-padding-x: 9px; --badge-font-size: 9px; }
  .home-page .product-card,
  .page-products .product-card { padding-top: 54px !important; }
  .home-page .product-card > .best-seller-badge,
  .home-page .product-card > .promo-sale-badge,
  .page-products .product-card > .best-seller-badge,
  .page-products .product-card > .promo-sale-badge { top: 16px !important; }
  .home-page .product-card > .best-seller-badge,
  .page-products .product-card > .best-seller-badge { left: 16px !important; }
  .home-page .product-card > .promo-sale-badge,
  .page-products .product-card > .promo-sale-badge { right: 16px !important; }
}

/* Stack Builder workspace */
.page-stack-builder {
  background: var(--navy-950) !important;
  color: var(--text-on-dark) !important;
}

.page-stack-builder .hero {
  padding: 76px 24px 58px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 201, 220, 0.14), transparent 46%),
    radial-gradient(circle at 82% 22%, rgba(124, 77, 255, 0.12), transparent 28%),
    var(--navy-950) !important;
}
.page-stack-builder .hero::before { display: none !important; }
.page-stack-builder .hero-inner { max-width: 760px !important; }
.page-stack-builder .hero .eyebrow {
  margin-bottom: 20px !important;
  background: var(--navy-850) !important;
  border-color: var(--border-dark) !important;
  color: var(--cyan-400) !important;
  box-shadow: none !important;
}
.page-stack-builder .hero h1 {
  margin-bottom: 18px !important;
  color: var(--text-on-dark) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4.25rem) !important;
  letter-spacing: -0.035em !important;
}
.page-stack-builder .hero h1 span { color: var(--cyan-400) !important; }
.page-stack-builder .hero p {
  max-width: 650px !important;
  color: var(--text-on-dark-muted) !important;
  font-size: 16px !important;
}

.page-stack-builder .builder {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px !important;
  margin: 0 auto 72px !important;
  padding: 40px clamp(24px, 4vw, 52px) 52px !important;
  background: var(--navy-900) !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.22) !important;
}
.page-stack-builder .step { margin-bottom: 42px !important; }
.page-stack-builder .step-label {
  margin-bottom: 9px !important;
  color: var(--cyan-400) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
}
.page-stack-builder .step-title {
  margin-bottom: 20px !important;
  color: var(--text-on-dark) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.page-stack-builder .goals-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.page-stack-builder .goal-card {
  position: relative;
  min-width: 0;
  min-height: 150px;
  padding: 24px 16px !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 12px !important;
  background: var(--navy-850) !important;
  color: var(--text-on-dark) !important;
  box-shadow: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  appearance: none;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1), border-color 180ms ease, background-color 180ms ease !important;
}
.page-stack-builder .goal-card:hover {
  background: var(--navy-800) !important;
  border-color: rgba(73, 216, 231, 0.58) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}
.page-stack-builder .goal-card.selected {
  background: var(--navy-800) !important;
  border-color: var(--cyan-400) !important;
  box-shadow: 0 0 0 2px rgba(37, 201, 220, 0.16) !important;
}
.page-stack-builder .goal-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan-400);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 900;
}
.page-stack-builder .goal-icon { font-size: 31px !important; line-height: 1 !important; }
.page-stack-builder .goal-name,
.page-stack-builder .goal-card.selected .goal-name {
  color: var(--text-on-dark) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.page-stack-builder .experience-pills {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 5px !important;
  background: var(--navy-950) !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 12px !important;
}
.page-stack-builder .exp-pill {
  min-height: 48px;
  padding: 12px 20px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--text-on-dark-muted) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  cursor: pointer;
  appearance: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease !important;
}
.page-stack-builder .exp-pill:hover {
  background: var(--navy-850) !important;
  color: var(--text-on-dark) !important;
}
.page-stack-builder .exp-pill.selected {
  background: var(--navy-800) !important;
  border-color: var(--cyan-400) !important;
  color: var(--text-on-dark) !important;
}
.page-stack-builder .exp-pill.selected::before {
  content: '✓';
  margin-right: 8px;
  color: var(--cyan-400);
  font-weight: 900;
}

.page-stack-builder .notes-input {
  min-height: 126px !important;
  padding: 16px 18px !important;
  background: var(--navy-950) !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 10px !important;
  color: var(--text-on-dark) !important;
  caret-color: var(--cyan-400);
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}
.page-stack-builder .notes-input::placeholder {
  color: var(--text-on-dark-muted) !important;
  opacity: 1 !important;
}
.page-stack-builder .notes-input:hover { border-color: rgba(73, 216, 231, 0.46) !important; }
.page-stack-builder .notes-input:focus { border-color: var(--cyan-400) !important; }

.page-stack-builder .generate-btn {
  min-height: 58px;
  padding: 17px 24px !important;
  background: var(--brand-gradient) !important;
  border-radius: 8px !important;
  color: var(--navy-950) !important;
  box-shadow: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1), filter 180ms ease !important;
}
.page-stack-builder .generate-btn:hover:not(:disabled) {
  box-shadow: none !important;
  filter: brightness(1.06);
  transform: translateY(-1px) !important;
}
.page-stack-builder .generate-btn:active:not(:disabled) { transform: translateY(0) !important; }
.page-stack-builder .generate-btn:disabled {
  background: #40505f !important;
  color: #d9e0e6 !important;
  opacity: 1 !important;
}
.page-stack-builder .spinner {
  border-color: rgba(4, 17, 31, 0.26) !important;
  border-top-color: var(--navy-950) !important;
}
.page-stack-builder .divider { border-color: var(--border-dark) !important; margin: 48px 0 !important; }

.page-stack-builder .results { color: var(--text-on-dark) !important; }
.page-stack-builder .results-header { margin-bottom: 28px !important; text-align: left !important; }
.page-stack-builder .results-header h2 { color: var(--text-on-dark) !important; }
.page-stack-builder .results-header p { color: var(--text-on-dark-muted) !important; font-size: 14px !important; }
.page-stack-builder :where(.stack-intro, .compound-card, .stack-notes, .results-cta) {
  background: var(--navy-850) !important;
  border: 1px solid var(--border-dark) !important;
  color: var(--text-on-dark) !important;
  box-shadow: none !important;
}
.page-stack-builder :where(.stack-intro p, .compound-why, .stack-notes p, .results-cta p, .meta-item) {
  color: var(--text-on-dark-muted) !important;
}
.page-stack-builder :where(.stack-notes h3, .results-cta h3, .meta-item strong) { color: var(--text-on-dark) !important; }
.page-stack-builder .compound-card:hover { border-color: rgba(73, 216, 231, 0.48) !important; }
.page-stack-builder .compound-name { color: var(--cyan-400) !important; }
.page-stack-builder .compound-category {
  background: var(--navy-950) !important;
  border-color: rgba(149, 108, 255, 0.56) !important;
  color: var(--text-on-dark) !important;
}
.page-stack-builder .results-cta { padding: 34px !important; border-radius: 12px !important; }
.page-stack-builder .cta-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}
.page-stack-builder .cta-btn-primary {
  background: var(--brand-gradient) !important;
  color: var(--navy-950) !important;
  box-shadow: none !important;
}
.page-stack-builder .cta-btn-secondary,
.page-stack-builder .rebuild-btn {
  background: transparent !important;
  border: 1px solid var(--border-dark) !important;
  color: var(--text-on-dark) !important;
  box-shadow: none !important;
}
.page-stack-builder :where(.cta-btn-secondary, .rebuild-btn):hover {
  border-color: var(--cyan-400) !important;
  color: var(--cyan-400) !important;
}
.page-stack-builder .rebuild-btn { min-height: 48px; font-family: 'Inter', system-ui, sans-serif !important; }
.page-stack-builder .error-msg {
  background: #351b24 !important;
  border-color: #f28b95 !important;
  color: #ffd9dc !important;
}

.page-stack-builder .disclaimer {
  max-width: 1180px !important;
  margin: 0 auto 64px !important;
  padding: 24px clamp(20px, 4vw, 34px) !important;
  background: var(--navy-900) !important;
  border: 1px solid var(--border-dark) !important;
  border-radius: 12px !important;
  color: var(--text-on-dark-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  text-align: left !important;
}

@media (max-width: 1024px) {
  .page-stack-builder .goals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 640px) {
  .page-stack-builder .hero { padding: 54px 20px 38px !important; }
  .page-stack-builder .hero h1 { font-size: 2.45rem !important; }
  .page-stack-builder .builder {
    width: calc(100% - 28px);
    margin-bottom: 42px !important;
    padding: 30px 16px 36px !important;
    border-radius: 12px !important;
  }
  .page-stack-builder .step { margin-bottom: 36px !important; }
  .page-stack-builder .goals-grid { grid-template-columns: 1fr !important; }
  .page-stack-builder .goal-card { min-height: 118px; }
  .page-stack-builder .experience-pills { grid-template-columns: 1fr !important; }
  .page-stack-builder .exp-pill { width: 100%; }
  .page-stack-builder .results-cta { padding: 26px 18px !important; }
  .page-stack-builder .cta-btns,
  .page-stack-builder .cta-btn { width: 100% !important; }
  .page-stack-builder .disclaimer {
    width: calc(100% - 28px);
    margin-bottom: 42px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-stack-builder :where(.goal-card, .exp-pill, .generate-btn, .results) {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Site footer */
.site-footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 !important;
  background: var(--navy-950) !important;
  color: var(--text-on-dark) !important;
  border-top: 1px solid var(--border-dark) !important;
  text-align: left !important;
}
.site-footer-inner {
  width: min(1280px, calc(100% - 48px));
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: clamp(64px, 7vw, 92px) 0 0 !important;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(2, minmax(150px, 0.85fr)) minmax(210px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.site-footer-brand { max-width: 360px; }
.site-footer-logo-link {
  display: inline-flex;
  margin: -8px 0 22px;
  padding: 8px;
  border-radius: 6px;
}
.site-footer-logo {
  display: block;
  width: auto;
  height: 76px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer-brand > p {
  max-width: 34ch;
  margin: 0 0 24px;
  color: var(--text-on-dark-muted) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.site-footer-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer-trust li {
  position: relative;
  margin: 0;
  padding-left: 15px;
  color: var(--text-on-dark-muted) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}
.site-footer-trust li::before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-400);
}
.site-footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.site-footer-column h2 {
  margin: 0 0 10px !important;
  color: var(--text-on-dark) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.site-footer-column a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 2px 0 4px;
  color: var(--text-on-dark-muted) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  transition: color 180ms ease !important;
}
.site-footer-column a:hover { color: var(--cyan-400) !important; }
.site-footer-column a[aria-current='page'] { color: var(--text-on-dark) !important; }
.site-footer-column a[aria-current='page']::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
}
.site-footer-research-label {
  margin: 6px 0 0 !important;
  padding: 7px 10px;
  background: var(--navy-850);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  color: var(--text-on-dark) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}
.site-footer-legal {
  margin-top: clamp(44px, 6vw, 68px);
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.site-footer-legal p {
  max-width: 92ch;
  margin: 0;
  color: var(--text-on-dark-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}
.site-footer-legal-extra { margin-top: 8px !important; }
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 88px 34px;
}
.site-footer-bottom p {
  margin: 0;
  color: var(--text-on-dark-muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}
.site-footer-bottom span {
  margin-left: 12px;
  color: var(--text-on-dark) !important;
}
.site-footer :where(a, button):focus-visible {
  outline: 2px solid var(--cyan-400) !important;
  outline-offset: 4px !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 56px;
  }
  .site-footer-brand { max-width: 440px; }
}

@media (max-width: 600px) {
  .site-footer-inner {
    width: calc(100% - 40px);
    padding-top: 54px !important;
  }
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .site-footer-logo { height: 68px !important; }
  .site-footer-trust { grid-template-columns: 1fr; }
  .site-footer-legal { margin-top: 48px; }
  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 0 112px;
  }
  .site-footer-bottom span {
    display: block;
    margin: 3px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-column a { transition: none !important; }
}

.category-card,
.category-card-foot {
  color: var(--text-on-light) !important;
}

.icon-tiktok {
  background: var(--navy-800) !important;
  border-color: var(--cyan-500) !important;
}
.icon-tiktok svg { fill: var(--text-on-dark) !important; }

.article-hero {
  background: var(--navy-950) !important;
  color: var(--text-on-dark) !important;
}
.article-hero :where(h1, h2, h3, strong) { color: var(--text-on-dark) !important; }
.article-hero :where(p, .article-meta) { color: var(--text-on-dark-muted) !important; }
.article-hero a { color: var(--cyan-400) !important; }

.hero-steps .step-text strong { color: var(--text-on-dark) !important; }
.hero-steps .step-text span { color: var(--text-on-dark-muted) !important; }
.hero-cta { color: var(--navy-950) !important; }
.ref-table th {
  color: var(--navy-900) !important;
  background: var(--warm-200) !important;
}

.comm-tab { color: var(--text-on-dark-muted) !important; }
.comm-tab.active { color: var(--navy-950) !important; }
.referral-hero .c,
.referral-hero .p,
.how-eyebrow { color: var(--violet-500) !important; }

.pillar .pillar-h3 { color: var(--text-on-light) !important; }
.pillar .pillar-p { color: var(--text-on-light-muted) !important; }
.guides .section-h2 { color: var(--text-on-dark) !important; }
.guides .guide-card {
  background: var(--navy-850) !important;
  border-color: var(--border-dark) !important;
}
.guides .guide-h3 { color: var(--text-on-dark) !important; }
.guides .guide-p { color: var(--text-on-dark-muted) !important; }
.guides .guide-tag,
.guides .guide-link { color: var(--cyan-400) !important; }
.insta-icon,
.btn-insta { background: var(--brand-gradient) !important; }

.page-product-detail .spec-label {
  font-size: 11px !important;
  line-height: 1.35 !important;
}
.page-product-detail .trust-label {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

:where(
  .topbar,
  .header-logo,
  .product-img,
  .product-image,
  .product-card,
  .category-card,
  .bundle-card,
  .policy-card,
  .tier-card,
  .testimonial-card,
  .faq-chevron,
  [data-whatsapp-link]
) {
  transition-duration: 180ms !important;
}

.why-img-wrap img {
  width: min(84%, 520px) !important;
  height: auto !important;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  animation: none !important;
  transition: filter 180ms ease !important;
  box-shadow: 0 10px 24px rgba(4, 17, 31, 0.18) !important;
}
.testimonial-card:hover {
  box-shadow: 0 10px 24px rgba(4, 17, 31, 0.14) !important;
}

body:has(> .wrap > .link-btn) {
  display: block;
  padding: 40px 0 0;
}
body:has(> .wrap > .link-btn) > .wrap {
  max-width: 460px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

@media (max-width: 640px) {
  .hamburger {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark) !important;
  }
  .hamburger span { transition-duration: 180ms !important; }

  :where(
    .btn-primary:not(.launch-announcement .btn-primary),
    .btn-secondary,
    .btn-outline,
    .btn-ghost,
    .checkout-btn,
    .mobile-checkout-bar-btn,
    .add-btn,
    .bundle-add-btn,
    .bundle-btn,
    .submit-btn,
    .register-btn,
    .lookup-btn,
    .generate-btn,
    .notify-submit,
    .filter-btn,
    .comm-tab,
    .bac-btn,
    .amount-btn,
    .notice-btn,
    .notice-exit-btn,
    .cookie-accept,
    .cookie-decline
  ) {
    min-height: 44px !important;
  }

  :where(.product-link, .card-link, .breadcrumb, .secondary-link, .links a) {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  .links a {
    min-width: 44px;
    justify-content: center;
  }
  :where(.qty-btn, .cart-qty-btn) {
    min-width: 44px !important;
    min-height: 44px !important;
  }
  .calc-card button[onclick^='setVial'] {
    min-height: 44px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .topbar,
    .header-logo,
    .product-img,
    .product-image,
    .product-card,
    .category-card,
    .bundle-card,
    .policy-card,
    .tier-card,
    .testimonial-card,
    .faq-chevron,
    [data-whatsapp-link]
  ) {
    transition: none !important;
  }
}
