/*

Theme Name: Elevate Labs

Theme URI: https://elevatelabs.health

Author: OpenAI Codex

Description: Premium WordPress, WooCommerce, and Elementor theme for Elevate Labs.

Version: 2.0.0

Requires at least: 6.0

Tested up to: 6.5

License: GPL-2.0-or-later

Text Domain: signal-peptide-labs

*/

:root {
  --bg: #ece6dc;
  --bg-soft: #f7f2ea;
  --bg-mist: #dde4e8;
  --ink: #11171c;
  --muted: #55626c;
  --line: rgba(17, 23, 28, 0.12);
  --line-strong: rgba(17, 23, 28, 0.2);
  --white: #fffaf5;
  --accent: #c58943;
  --accent-deep: #8a5125;
  --cool: #87a7bc;
  --hero-base: #0b141b;
  --hero-mid: #122733;
  --hero-glow: rgba(197, 137, 67, 0.45);
  --shadow-soft: 0 28px 80px rgba(6, 19, 29, 0.14);
  --shadow-deep: 0 40px 120px rgba(4, 12, 18, 0.32);
  --radius-lg: 2rem;
  --radius-md: 1.35rem;
  --radius-pill: 999px;
  --content-max: 1280px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(197, 137, 67, 0.14), transparent 28%),
    linear-gradient(180deg, #efe8dd 0%, #f7f2ea 32%, #e0e7ea 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 23, 28, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 28, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.site-header,
.signal-bar,
.section,
.final-cta,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
}

.entry-title,
.page-title,
.archive-title,
.wp-block-post-title,
.woocommerce-products-header__title.page-title {
  display: none !important;
}

.woocommerce-products-header:empty {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(236, 230, 220, 0.9), rgba(236, 230, 220, 0.68));
}

.admin-bar .site-header {
  top: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  background:
    linear-gradient(140deg, rgba(197, 137, 67, 0.95), rgba(125, 180, 210, 0.95)),
    var(--hero-base);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(96, 73, 27, 0.28);
}

.brand-lockup {
  display: grid;
  gap: 0.18rem;
}

.brand-lockup strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav,
.header-actions,
.hero-actions,
.hero-notes,
.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav {
  gap: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav .site-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .site-nav-list li {
  margin: 0;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 0.9rem;
  color: var(--muted);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1rem;
  background: rgba(255, 250, 245, 0.76);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding-inline: 0.45rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  min-height: calc(100svh - 5.5rem);
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, rgba(197, 137, 67, 0.25), transparent 16rem),
    radial-gradient(circle at 82% 78%, rgba(125, 180, 210, 0.22), transparent 18rem),
    linear-gradient(140deg, rgba(6, 14, 18, 0.98), rgba(11, 20, 27, 0.88) 45%, rgba(16, 34, 44, 0.82)),
    var(--hero-base);
  color: var(--white);
  border-radius: 0 0 2.6rem 2.6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  opacity: 0.24;
}

.hero-copy,
.hero-visual,
.ticker {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1.45rem;
  max-width: 34rem;
  padding: 1rem 0 6rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 23, 28, 0.58);
}

.hero .eyebrow,
.eyebrow-light {
  color: rgba(255, 250, 245, 0.66);
}

.hero-brand {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 250, 245, 0.92);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  max-width: 11ch;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.hero-lede,
.section-heading p:last-child,
.stack-panel > p,
.process-copy > p:nth-of-type(2),
.final-copy > p:last-of-type,
.faq-list p,
.site-footer p:last-child {
  color: rgba(255, 250, 245, 0.78);
  line-height: 1.72;
  font-size: 1rem;
}

.section-heading p:last-child,
.stack-panel > p,
.faq-list p,
.site-footer p:last-child {
  color: var(--muted);
}

.hero-actions {
  gap: 0.9rem;
}

.button,
.filter-button,
.stack-tab {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.stack-tab:hover,
.stack-tab:focus-visible,
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(145deg, var(--accent), #d7ac71);
  color: #22150a;
  box-shadow: 0 18px 40px rgba(197, 137, 67, 0.24);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.08);
  border: 1px solid rgba(255, 250, 245, 0.18);
  color: var(--white);
}

.button-light {
  background: rgba(255, 250, 245, 0.94);
  color: var(--ink);
}

.hero-notes {
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-notes li,
.visual-chip,
.filter-button {
  border: 1px solid rgba(255, 250, 245, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 245, 0.08);
  padding: 0.7rem 0.95rem;
  font-size: 0.82rem;
  color: rgba(255, 250, 245, 0.88);
}

.hero-visual {
  position: relative;
  min-height: 38rem;
  perspective: 1200px;
}

.visual-grid,
.scan-line {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}

.visual-grid {
  background:
    radial-gradient(circle at center, rgba(125, 180, 210, 0.22), transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  filter: blur(0.2px);
  opacity: 0.9;
}

.specimen {
  position: absolute;
  right: 11%;
  bottom: 4%;
  width: min(30rem, 70%);
  aspect-ratio: 0.78;
  transform-style: preserve-3d;
  transform: rotateY(-12deg) rotateX(6deg);
}

.specimen-cap,
.specimen-neck,
.specimen-body,
.specimen-fill,
.specimen-shine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.specimen-cap {
  top: 0;
  width: 34%;
  height: 14%;
  border-radius: 1.1rem 1.1rem 0.7rem 0.7rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(152, 181, 196, 0.46)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 250, 245, 0.32);
  box-shadow: inset 0 -10px 18px rgba(6, 14, 18, 0.26);
}

.specimen-neck {
  top: 11%;
  width: 21%;
  height: 12%;
  border-radius: 0 0 1.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.7), rgba(130, 159, 173, 0.28));
  border-inline: 1px solid rgba(255, 250, 245, 0.24);
}

.specimen-body {
  top: 18%;
  width: 72%;
  height: 78%;
  overflow: hidden;
  border-radius: 2rem 2rem 2.6rem 2.6rem;
  background:
    linear-gradient(180deg, rgba(250, 250, 248, 0.28), rgba(148, 172, 186, 0.1)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 250, 245, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -20px 40px rgba(6, 14, 18, 0.22),
    0 28px 80px rgba(3, 8, 12, 0.44);
  backdrop-filter: blur(12px);
}

.specimen-body::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 250, 245, 0.12);
}

.specimen-fill {
  bottom: 0;
  width: 100%;
  height: 44%;
  border-radius: 38% 38% 2.2rem 2.2rem;
  background:
    linear-gradient(180deg, rgba(230, 184, 120, 0.88), rgba(135, 91, 39, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 40%);
  box-shadow: inset 0 16px 40px rgba(255, 246, 223, 0.16);
}

.specimen-shine {
  top: 14%;
  width: 18%;
  height: 68%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.03));
  filter: blur(1px);
}

.specimen-label {
  position: absolute;
  left: 50%;
  bottom: 11%;
  width: calc(100% - 3rem);
  transform: translateX(-50%);
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(12, 20, 27, 0.7);
  border: 1px solid rgba(255, 250, 245, 0.18);
}

.label-code,
.visual-chip span,
.product-meta,
.product-code,
.stack-tab small,
.process-steps span,
.assay-kicker,
.spec-sheet p {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.specimen-label strong {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.specimen-label small {
  color: rgba(255, 250, 245, 0.7);
}

.visual-chip {
  position: absolute;
  display: grid;
  gap: 0.25rem;
  min-width: 10.5rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(4, 12, 18, 0.24);
}

.visual-chip strong {
  font-size: 0.95rem;
}

.chip-top {
  top: 14%;
  left: 7%;
}

.chip-bottom {
  left: 16%;
  bottom: 10%;
}

.chip-side {
  top: 42%;
  right: 2%;
}

.orbital {
  position: absolute;
  display: inline-flex;
  align-items: center;
  max-width: 12rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 250, 245, 0.7);
}

.orbital::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  margin-right: 0.7rem;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 245, 0.55));
}

.orbital-left {
  left: 4%;
  top: 20%;
}

.orbital-right {
  right: 7%;
  top: 62%;
  text-align: right;
}

.orbital-right::before {
  order: 2;
  margin-right: 0;
  margin-left: 0.7rem;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid rgba(255, 250, 245, 0.12);
  background: rgba(255, 250, 245, 0.04);
}

.ticker-track {
  display: inline-flex;
  gap: 2.8rem;
  white-space: nowrap;
  color: rgba(255, 250, 245, 0.6);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: drift 28s linear infinite;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem 0 0;
}

.signal-bar article {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.3rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(17, 23, 28, 0.08);
  background: rgba(255, 250, 245, 0.64);
  box-shadow: var(--shadow-soft);
}

.signal-bar span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-bar strong {
  font-size: 1rem;
  line-height: 1.5;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-cream {
  background: transparent;
}

.section-mist {
  background: transparent;
}

.section-dark {
  width: min(calc(100% - 2rem), 1500px);
  padding-inline: min(3.5vw, 3rem);
  border-radius: 2.6rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(197, 137, 67, 0.18), transparent 20rem),
    radial-gradient(circle at 25% 78%, rgba(125, 180, 210, 0.16), transparent 18rem),
    linear-gradient(180deg, #0c151c, #142733);
  color: var(--white);
}

.section-heading,
.section-heading-compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading p:last-child,
.section-heading-compact p:last-child {
  max-width: 32rem;
  margin: 0;
}

.proof-layout,
.process-layout,
.stacks-layout {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.proof-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
}

.proof-table,
.assay-panel,
.stack-panel,
.product-card,
.spec-sheet {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.proof-table {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.82);
}

.proof-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.proof-row-head {
  border-top: 0;
  background: rgba(17, 23, 28, 0.04);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-row span:nth-child(2) {
  color: var(--accent-deep);
  font-weight: 600;
}

.assay-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top, rgba(197, 137, 67, 0.14), transparent 45%),
    rgba(255, 250, 245, 0.92);
  border: 1px solid var(--line);
}

.assay-panel h3 {
  margin-bottom: 0.5rem;
}

.assay-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.assay-stat span {
  color: var(--muted);
}

.assay-stat strong {
  font-size: 1.2rem;
}

.assay-bar {
  height: 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(17, 23, 28, 0.08);
  overflow: hidden;
}

.assay-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8cb0c8, #d3a46a);
}

.assay-note {
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.filter-row {
  gap: 0.7rem;
  margin: 2rem 0;
}

.filter-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.76);
  box-shadow: var(--shadow-soft);
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 21rem;
  padding: 1.35rem;
  border: 1px solid rgba(17, 23, 28, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.76)),
    var(--white);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(125, 180, 210, 0.24), transparent 40%),
    radial-gradient(circle at bottom left, rgba(197, 137, 67, 0.14), transparent 30%);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.product-meta {
  color: var(--muted);
}

.product-code {
  color: var(--accent-deep);
}

.product-card h3 {
  font-size: 1.35rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  font-size: 0.9rem;
}

.product-details span {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.product-details strong {
  color: var(--ink);
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.product-price {
  display: grid;
  gap: 0.18rem;
}

.product-price span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-price strong {
  font-size: 1.3rem;
}

.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.05rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
}

.stacks-layout {
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
}

.stack-tabs {
  display: grid;
  gap: 0.75rem;
}

.stack-tab {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  text-align: left;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.72);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.stack-tab small {
  color: var(--muted);
}

.stack-tab.is-active {
  background: linear-gradient(180deg, rgba(17, 23, 28, 0.98), rgba(17, 23, 28, 0.88));
  color: var(--white);
  border-color: rgba(255, 250, 245, 0.06);
}

.stack-tab.is-active small {
  color: rgba(255, 250, 245, 0.62);
}

.stack-panel {
  display: grid;
  gap: 1.3rem;
  min-height: 26rem;
  padding: 1.8rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(197, 137, 67, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.94), rgba(255, 250, 245, 0.86));
}

.stack-badges,
.stack-collection {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stack-badges span,
.stack-collection span {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.84);
  font-size: 0.86rem;
}

.stack-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stack-metrics article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid var(--line);
}

.stack-metrics span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stack-metrics strong {
  font-size: 1.1rem;
}

.process-layout {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  align-items: center;
}

.process-copy h2,
.final-copy h2 {
  max-width: 12ch;
}

.process-copy > p:nth-of-type(2),
.final-copy > p:last-of-type {
  max-width: 34rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.process-steps article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 1px solid rgba(255, 250, 245, 0.18);
}

.process-steps span {
  color: rgba(255, 250, 245, 0.5);
}

.process-steps strong {
  font-size: 1.1rem;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 250, 245, 0.7);
  line-height: 1.7;
}

.process-visual {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 250, 245, 0.08);
  background:
    radial-gradient(circle at top, rgba(125, 180, 210, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.scan-line {
  background:
    linear-gradient(90deg, transparent, rgba(255, 250, 245, 0.22), transparent),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  animation: scan 6s linear infinite;
  opacity: 0.65;
}

.spec-sheet {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 1.5rem;
  padding: 1.3rem;
  background: rgba(10, 20, 27, 0.62);
  border: 1px solid rgba(255, 250, 245, 0.12);
}

.spec-sheet strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.2rem;
}

.spec-sheet ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: rgba(255, 250, 245, 0.72);
  line-height: 1.8;
}

.storage-tower {
  position: absolute;
  bottom: 1.5rem;
  right: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(18rem, calc(100% - 3rem));
}

.storage-tower span {
  display: block;
  aspect-ratio: 0.6;
  border-radius: 1.4rem 1.4rem 2rem 2rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.3), rgba(125, 180, 210, 0.08)),
    linear-gradient(180deg, rgba(197, 137, 67, 0.6), rgba(85, 53, 25, 0.65));
  border: 1px solid rgba(255, 250, 245, 0.16);
  box-shadow: inset 0 18px 20px rgba(255, 255, 255, 0.08);
}

.storage-tower span:nth-child(1),
.storage-tower span:nth-child(4) {
  transform: translateY(1rem);
}

.storage-tower span:nth-child(3),
.storage-tower span:nth-child(6) {
  transform: translateY(-0.5rem);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.3rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent-deep);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.85rem 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  padding: clamp(3rem, 7vw, 5rem);
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(125, 180, 210, 0.24), transparent 26%),
    radial-gradient(circle at bottom right, rgba(197, 137, 67, 0.24), transparent 22%),
    linear-gradient(160deg, #10212b, #162c39);
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.final-actions {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.final-actions p {
  margin: 0;
  color: rgba(255, 250, 245, 0.68);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  min-width: 14rem;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(10, 20, 27, 0.92);
  color: var(--white);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scan {
  0% {
    transform: translateY(-8%);
  }

  50% {
    transform: translateY(8%);
  }

  100% {
    transform: translateY(-8%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .proof-layout,
  .stacks-layout,
  .process-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 5.4rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .specimen {
    right: auto;
    left: 50%;
    width: min(24rem, 82%);
    transform: translateX(-50%) rotateY(-8deg) rotateX(5deg);
  }

  .chip-top {
    left: 2%;
  }

  .chip-side {
    right: 0;
  }

  .signal-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    order: 3;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.2rem;
  }

  .site-nav .site-nav-list {
    flex-wrap: nowrap;
    width: max-content;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    border-radius: 0 0 2rem 2rem;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .stack-metrics {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .signal-bar,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 1rem), var(--content-max));
  }

  .hero {
    width: 100%;
    padding-inline: 0.75rem;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .visual-chip,
  .orbital {
    display: none;
  }

  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.3rem;
  }

  .filter-button {
    white-space: nowrap;
  }

  .final-cta {
    padding: 2rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.product-card[hidden] {
  display: none;
}

.product-media {
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(125, 180, 210, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.94), rgba(228, 220, 209, 0.72));
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wc-site-main {
  min-height: 60vh;
}

.wc-shell,
.page-shell {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.wc-shell-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.wc-shell-heading p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.wc-shell-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0;
}

.wc-content {
  display: grid;
  gap: 1.75rem;
}

.aminogenix-archive-intro {
  margin-bottom: 0.4rem;
}

.aminogenix-archive-nav {
  margin-bottom: 0.35rem;
}

.aminogenix-archive-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.aminogenix-archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.aminogenix-archive-toolbar .woocommerce-result-count,
.aminogenix-archive-toolbar .woocommerce-ordering {
  margin: 0;
}

.aminogenix-archive-toolbar .woocommerce-notices-wrapper {
  flex: 1 0 100%;
}

.aminogenix-archive-toolbar .woocommerce-ordering {
  margin-left: auto;
}

.page-content {
  padding: 1.7rem;
}

.page-content > *:first-child {
  margin-top: 0;
}

.page-content > *:last-child {
  margin-bottom: 0;
}

.woocommerce-breadcrumb {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin: 0 0 1rem;
  color: var(--muted);
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty,
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: rgba(255, 250, 245, 0.88);
  color: var(--ink);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  float: none;
  width: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 24rem;
  padding: 1.35rem;
  border: 1px solid rgba(17, 23, 28, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.76)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.aminogenix-loop-card {
  overflow: hidden;
}

.aminogenix-loop-card .product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.aminogenix-loop-card .product-top > div {
  display: grid;
  gap: 0.32rem;
  align-content: start;
  min-height: 5.5rem;
}

.aminogenix-loop-card .product-meta {
  min-height: 2.5rem;
}

.aminogenix-loop-card .product-code {
  white-space: nowrap;
  align-self: start;
}

.aminogenix-loop-card .aminogenix-loop-card__title-link {
  color: inherit;
}

.aminogenix-loop-card h3 {
  min-height: 2.1em;
  font-size: clamp(1.28rem, 1.75vw, 1.7rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
}

.aminogenix-loop-card .aminogenix-loop-card__excerpt {
  min-height: 6.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aminogenix-loop-card .product-details {
  margin-top: auto;
}

.aminogenix-loop-card .product-price {
  min-height: 4.25rem;
  align-content: end;
}

.aminogenix-loop-card .product-action {
  min-width: 11rem;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  margin: 0 0 1rem;
  border-radius: 1.4rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.35rem;
  line-height: 1.2;
  padding: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--accent-deep);
  font-size: 1.25rem;
  font-weight: 600;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.checkout-button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
  transform: translateY(-2px);
  background: #1d2830;
  color: var(--white);
}

.woocommerce a.added_to_cart {
  margin-top: 0.85rem;
  color: var(--accent-deep);
}

.woocommerce span.onsale {
  left: 1rem;
  top: 1rem;
  min-width: auto;
  min-height: auto;
  margin: 0;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(17, 23, 28, 0.92);
  color: var(--white);
  line-height: 1;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  margin: 0 0 1.4rem;
  padding: 1rem 1.2rem 1rem 3rem;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 1.2rem;
  background: rgba(255, 250, 245, 0.88);
  color: var(--ink);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
  top: 1rem;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce div.product div.images img {
  border-radius: 2rem;
}

.woocommerce div.product .product_title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce .woocommerce-product-details__short-description {
  color: var(--muted);
  line-height: 1.75;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
}

.woocommerce div.product form.cart .quantity {
  margin: 0;
}

.woocommerce div.product .stock {
  color: var(--accent-deep);
}

.woocommerce .product_meta {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.woocommerce .product_meta a {
  color: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 2rem 0 1rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 245, 0.84);
  color: var(--ink);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: var(--ink);
  color: var(--white);
}

.woocommerce table.shop_table {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.84);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 1rem;
  border-color: var(--line);
}

.woocommerce table.shop_table td.product-thumbnail img {
  width: 4.25rem;
  border-radius: 1rem;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.woocommerce .cart-collaterals,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: rgba(255, 250, 245, 0.84);
  box-shadow: var(--shadow-soft);
}

.woocommerce .cart-collaterals,
.woocommerce .woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 1.5rem;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce .woocommerce-checkout-review-order {
  padding: 1.5rem;
}

.woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(15rem, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 250, 245, 0.86);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--ink);
  color: var(--white);
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 0.6rem;
  padding: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 2.8rem;
  min-height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 245, 0.84);
  color: var(--ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ink);
  color: var(--white);
}

.woocommerce .related.products,
.woocommerce .up-sells,
.woocommerce .cross-sells {
  margin-top: 3rem;
}

.woocommerce .related.products > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 1.2rem;
}

@media (max-width: 1080px) {
  .wc-shell-heading,
  .woocommerce div.product,
  .woocommerce form.checkout,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .wc-shell-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    padding: 0.8rem;
  }
}

/* Theme refinement: lighter premium health direction + stronger mobile fit */

:root {
  --bg: #f2f2eb;
  --bg-soft: #fbfbf6;
  --bg-mist: #eaf1ec;
  --ink: #20332c;
  --muted: #647770;
  --line: rgba(32, 51, 44, 0.1);
  --line-strong: rgba(32, 51, 44, 0.18);
  --white: #ffffff;
  --accent: #91a885;
  --accent-deep: #5f7464;
  --cool: #abc6bc;
  --hero-base: #eef4ef;
  --hero-mid: #dee9e2;
  --hero-glow: rgba(145, 168, 133, 0.3);
  --shadow-soft: 0 22px 70px rgba(74, 98, 84, 0.08);
  --shadow-deep: 0 34px 90px rgba(74, 98, 84, 0.14);
}

body {
  background:
    radial-gradient(circle at top, rgba(214, 203, 179, 0.24), transparent 26%),
    linear-gradient(180deg, #f8f7f1 0%, #f7f7f2 34%, #edf3ee 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(32, 51, 44, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 51, 44, 0.018) 1px, transparent 1px);
}

.site-header {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(32, 51, 44, 0.08);
  background: linear-gradient(180deg, rgba(248, 247, 241, 0.92), rgba(248, 247, 241, 0.74));
  box-shadow: 0 10px 30px rgba(74, 98, 84, 0.05);
}

.brand-mark {
  background: linear-gradient(145deg, rgba(145, 168, 133, 0.96), rgba(214, 203, 179, 0.96));
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(95, 116, 100, 0.18);
}

.cart-button {
  background: rgba(255, 255, 255, 0.84);
}

.cart-count,
.filter-button.is-active,
.stack-tab.is-active,
.product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  background: var(--accent-deep);
  color: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(171, 198, 188, 0.42), transparent 18rem),
    radial-gradient(circle at 80% 76%, rgba(214, 203, 179, 0.36), transparent 18rem),
    linear-gradient(145deg, #fbfcf8 0%, #edf4ef 48%, #e7efe9 100%);
  color: var(--ink);
}

.hero::before {
  background:
    linear-gradient(rgba(32, 51, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 51, 44, 0.035) 1px, transparent 1px);
  opacity: 0.34;
}

.hero .eyebrow,
.eyebrow-light,
.hero-brand,
.hero-lede,
.orbital,
.ticker-track,
.final-actions p,
.process-copy > p:nth-of-type(2),
.process-steps p {
  color: var(--muted);
}

.hero-notes li,
.visual-chip {
  border: 1px solid rgba(32, 51, 44, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(74, 98, 84, 0.08);
}

.button-primary {
  background: linear-gradient(145deg, #91a885, #d9ceb9);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(145, 168, 133, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(32, 51, 44, 0.1);
  color: var(--ink);
}

.visual-grid {
  background:
    radial-gradient(circle at center, rgba(171, 198, 188, 0.32), transparent 40%),
    linear-gradient(rgba(32, 51, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 51, 44, 0.035) 1px, transparent 1px);
}

.specimen-cap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(180, 197, 188, 0.56)),
    rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 -10px 18px rgba(91, 109, 98, 0.14);
}

.specimen-neck {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(181, 197, 188, 0.34));
  border-inline: 1px solid rgba(255, 255, 255, 0.54);
}

.specimen-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(191, 208, 199, 0.18)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -18px 34px rgba(91, 109, 98, 0.1),
    0 24px 60px rgba(74, 98, 84, 0.18);
}

.specimen-fill {
  background:
    linear-gradient(180deg, rgba(206, 220, 173, 0.9), rgba(123, 144, 95, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 40%);
}

.specimen-label {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 51, 44, 0.08);
  color: var(--ink);
}

.specimen-label small {
  color: var(--muted);
}

.label-code,
.product-code {
  color: var(--accent-deep);
}

.orbital::before {
  background: linear-gradient(90deg, transparent, rgba(32, 51, 44, 0.28));
}

.ticker {
  border-top: 1px solid rgba(32, 51, 44, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.signal-bar article,
.proof-table,
.assay-panel,
.stack-panel,
.product-card,
.faq-list details,
.woocommerce table.shop_table,
.woocommerce .cart-collaterals,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.page-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 244, 0.82)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.assay-panel {
  background:
    radial-gradient(circle at top, rgba(214, 203, 179, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 244, 0.84));
}

.assay-bar span {
  background: linear-gradient(90deg, #98b9ab, #d4c7ac);
}

.section-dark,
.final-cta {
  background:
    radial-gradient(circle at 84% 18%, rgba(171, 198, 188, 0.32), transparent 21rem),
    radial-gradient(circle at 18% 76%, rgba(214, 203, 179, 0.24), transparent 18rem),
    linear-gradient(180deg, #fafaf5, #edf3ee);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.section-dark .eyebrow-light,
.final-cta .eyebrow-light {
  color: rgba(95, 116, 100, 0.78);
}

.process-steps article {
  border-left: 1px solid rgba(32, 51, 44, 0.12);
}

.process-steps span {
  color: rgba(95, 116, 100, 0.7);
}

.process-steps strong,
.process-copy h2,
.final-copy h2 {
  color: var(--ink);
}

.process-visual {
  border: 1px solid rgba(32, 51, 44, 0.08);
  background:
    radial-gradient(circle at top, rgba(171, 198, 188, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 247, 243, 0.84));
}

.scan-line {
  background:
    linear-gradient(90deg, transparent, rgba(95, 116, 100, 0.18), transparent),
    linear-gradient(rgba(32, 51, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 51, 44, 0.035) 1px, transparent 1px);
}

.spec-sheet {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 51, 44, 0.08);
}

.spec-sheet ul,
.spec-sheet p {
  color: var(--muted);
}

.storage-tower span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(171, 198, 188, 0.18)),
    linear-gradient(180deg, rgba(214, 203, 179, 0.74), rgba(145, 168, 133, 0.54));
  border: 1px solid rgba(32, 51, 44, 0.08);
  box-shadow: inset 0 16px 18px rgba(255, 255, 255, 0.18);
}

.final-cta .button-primary,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.checkout-button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: #4f6757;
  color: var(--white);
}

.toast {
  background: rgba(32, 51, 44, 0.94);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 960px) {
  .section {
    padding: clamp(3.2rem, 8vw, 4.6rem) 0;
  }

  .section-heading,
  .section-heading-compact,
  .wc-shell-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero {
    gap: 1.5rem;
    padding: 1.5rem 1rem 0;
  }

  .hero-copy {
    gap: 1.1rem;
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .product-action,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce a.checkout-button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 0.6rem;
  }

  .product-top,
  .product-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .process-visual {
    min-height: 24rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 0.7rem;
    padding: 0.8rem 0;
  }

  .brand-lockup strong {
    font-size: 0.92rem;
  }

  .site-nav {
    gap: 0.55rem;
    padding-bottom: 0.15rem;
  }

  .site-nav .site-nav-list {
    gap: 0.55rem;
  }

  .site-nav a {
    white-space: nowrap;
    padding: 0.58rem 0.8rem;
    border: 1px solid rgba(32, 51, 44, 0.08);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.74);
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero {
    padding: 1.15rem 0.9rem 0;
    border-radius: 0 0 1.7rem 1.7rem;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .specimen {
    width: min(19rem, 78%);
    bottom: 1%;
  }

  .ticker {
    display: none;
  }

  .signal-bar {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .signal-bar article,
  .proof-row,
  .assay-panel,
  .stack-panel,
  .faq-list details,
  .product-card,
  .woocommerce .cart-collaterals,
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce .woocommerce-checkout-review-order,
  .woocommerce .woocommerce-checkout #customer_details,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 1rem;
  }

  .filter-row {
    margin: 1.2rem 0 1rem;
    gap: 0.55rem;
  }

  .filter-button {
    padding: 0.65rem 0.85rem;
  }

  .process-visual {
    min-height: 20rem;
  }

  .spec-sheet {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    padding: 1rem;
  }

  .storage-tower {
    width: min(14rem, calc(100% - 2rem));
    gap: 0.7rem;
  }

  .woocommerce form.checkout,
  .woocommerce-account .woocommerce {
    gap: 1rem;
  }

  .woocommerce-cart table.cart td.actions .coupon,
  .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .site-header,
  .signal-bar,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 0.9rem), var(--content-max));
  }

  .hero {
    padding-inline: 0.7rem;
    padding-top: 1rem;
  }

  .hero-copy {
    gap: 0.95rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
    max-width: 10ch;
  }

  h2,
  .wc-shell-title,
  .woocommerce div.product .product_title {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .hero-lede,
  .section-heading p:last-child,
  .section-heading-compact p:last-child,
  .stack-panel > p,
  .process-copy > p:nth-of-type(2),
  .final-copy > p:last-of-type,
  .faq-list p,
  .wc-shell-heading p:last-child {
    font-size: 0.95rem;
    line-height: 1.64;
  }

  .hero-visual {
    min-height: 18rem;
  }

  .specimen {
    width: min(15rem, 78%);
  }

  .visual-chip,
  .orbital {
    display: none;
  }

  .proof-layout,
  .stacks-layout,
  .process-layout,
  .final-cta,
  .woocommerce div.product {
    gap: 1rem;
  }

  .product-media,
  .woocommerce ul.products li.product a img {
    aspect-ratio: 1 / 0.9;
  }

  .product-price,
  .product-bottom {
    width: 100%;
  }

  .stack-tab,
  .stack-badges span,
  .stack-collection span {
    width: 100%;
  }

  .stack-metrics article {
    padding: 0.9rem;
  }

  .storage-tower {
    width: min(11.5rem, calc(100% - 2rem));
  }

  .final-cta {
    padding: 1.6rem 1rem;
  }

  .site-footer {
    gap: 0.45rem;
    padding-bottom: 1.6rem;
  }
}

.elementor-site-main {
  min-height: 60vh;
}

.elementor-site-main > .elementor,
.elementor-site-main > [data-elementor-type] {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(17, 23, 28, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 245, 0.88);
  box-shadow: 0 18px 38px rgba(6, 19, 29, 0.12);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 250, 245, 0.98);
  border-color: rgba(17, 23, 28, 0.2);
}

.nav-toggle-bar {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 821px) {
  .site-nav {
    display: flex !important;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.8rem;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.55rem;
    border: 1px solid rgba(17, 23, 28, 0.09);
    border-radius: 1.35rem;
    background:
      linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(247, 242, 234, 0.94));
    box-shadow: 0 24px 56px rgba(6, 19, 29, 0.12);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav .site-nav-list {
    display: grid;
    gap: 0.45rem;
    width: 100%;
  }

  .site-nav .site-nav-list li {
    width: 100%;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    white-space: normal;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(32, 51, 44, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.74);
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-lockup small {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .cart-button {
    padding-inline: 0.9rem;
  }
}

/* Logo palette alignment: Elevate Labs mark */

:root {
  --bg: #eff9fb;
  --bg-soft: #fbfeff;
  --bg-mist: #e6f7f8;
  --ink: #123d69;
  --muted: #5a7895;
  --line: rgba(18, 61, 105, 0.1);
  --line-strong: rgba(18, 61, 105, 0.18);
  --white: #ffffff;
  --accent: #22cfc1;
  --accent-deep: #0d5b97;
  --cool: #79e5d7;
  --hero-base: #f4fcfd;
  --hero-mid: #e4f7f8;
  --hero-glow: rgba(34, 207, 193, 0.28);
  --shadow-soft: 0 22px 70px rgba(18, 61, 105, 0.08);
  --shadow-deep: 0 34px 90px rgba(18, 61, 105, 0.16);
}

body {
  background:
    radial-gradient(circle at top, rgba(121, 229, 215, 0.24), transparent 26%),
    linear-gradient(180deg, #fbfeff 0%, #f3fbfc 34%, #e7f6f8 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(18, 61, 105, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 105, 0.018) 1px, transparent 1px);
}

.site-header {
  border-bottom: 1px solid rgba(18, 61, 105, 0.08);
  background: linear-gradient(180deg, rgba(251, 254, 255, 0.94), rgba(251, 254, 255, 0.78));
  box-shadow: 0 10px 30px rgba(18, 61, 105, 0.05);
}

.brand-mark {
  background: linear-gradient(145deg, rgba(13, 91, 151, 0.98), rgba(34, 207, 193, 0.98));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(13, 91, 151, 0.2);
}

.brand-lockup strong {
  color: var(--accent-deep);
}

.cart-button {
  border-color: rgba(18, 61, 105, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.cart-count,
.filter-button.is-active,
.stack-tab.is-active,
.product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  background: linear-gradient(145deg, var(--accent-deep), #167dc0);
  color: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(121, 229, 215, 0.52), transparent 18rem),
    radial-gradient(circle at 80% 76%, rgba(13, 91, 151, 0.12), transparent 18rem),
    linear-gradient(145deg, #fcffff 0%, #eefbfc 48%, #e3f5f7 100%);
  color: var(--ink);
}

.hero::before {
  background:
    linear-gradient(rgba(18, 61, 105, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 105, 0.032) 1px, transparent 1px);
  opacity: 0.34;
}

.hero .eyebrow,
.eyebrow-light,
.hero-brand,
.hero-lede,
.orbital,
.ticker-track,
.final-actions p,
.process-copy > p:nth-of-type(2),
.process-steps p {
  color: var(--muted);
}

.hero-notes li,
.visual-chip {
  border: 1px solid rgba(18, 61, 105, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(18, 61, 105, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(13, 91, 151, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 61, 105, 0.1);
  color: var(--accent-deep);
}

.visual-grid {
  background:
    radial-gradient(circle at center, rgba(121, 229, 215, 0.32), transparent 40%),
    linear-gradient(rgba(18, 61, 105, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 105, 0.035) 1px, transparent 1px);
}

.specimen-cap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(165, 231, 223, 0.48)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 -10px 18px rgba(18, 61, 105, 0.12);
}

.specimen-neck {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(121, 229, 215, 0.22));
  border-inline: 1px solid rgba(255, 255, 255, 0.54);
}

.specimen-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(182, 237, 232, 0.16)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -18px 34px rgba(18, 61, 105, 0.08),
    0 24px 60px rgba(18, 61, 105, 0.18);
}

.specimen-fill {
  background:
    linear-gradient(180deg, rgba(121, 229, 215, 0.9), rgba(13, 91, 151, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 40%);
}

.specimen-label {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 61, 105, 0.08);
  color: var(--ink);
}

.specimen-label small {
  color: var(--muted);
}

.label-code,
.product-code {
  color: var(--accent-deep);
}

.orbital::before {
  background: linear-gradient(90deg, transparent, rgba(18, 61, 105, 0.28));
}

.ticker {
  border-top: 1px solid rgba(18, 61, 105, 0.08);
  background: rgba(255, 255, 255, 0.46);
}

.signal-bar article,
.proof-table,
.assay-panel,
.stack-panel,
.product-card,
.faq-list details,
.woocommerce table.shop_table,
.woocommerce .cart-collaterals,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.page-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 251, 252, 0.84)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.product-card::before {
  background:
    radial-gradient(circle at top right, rgba(121, 229, 215, 0.26), transparent 40%),
    radial-gradient(circle at bottom left, rgba(13, 91, 151, 0.14), transparent 30%);
}

.assay-panel {
  background:
    radial-gradient(circle at top, rgba(121, 229, 215, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 251, 252, 0.86));
}

.assay-bar span {
  background: linear-gradient(90deg, #1a85c7, #28d5c3);
}

.stack-panel {
  background:
    radial-gradient(circle at top right, rgba(121, 229, 215, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 252, 0.88));
}

.section-dark,
.final-cta {
  background:
    radial-gradient(circle at 84% 18%, rgba(121, 229, 215, 0.32), transparent 21rem),
    radial-gradient(circle at 18% 76%, rgba(13, 91, 151, 0.16), transparent 18rem),
    linear-gradient(180deg, #fbfeff, #eef9fb);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.section-dark .eyebrow-light,
.final-cta .eyebrow-light {
  color: rgba(13, 91, 151, 0.72);
}

.process-steps article {
  border-left: 1px solid rgba(18, 61, 105, 0.12);
}

.process-steps span {
  color: rgba(13, 91, 151, 0.68);
}

.process-steps strong,
.process-copy h2,
.final-copy h2 {
  color: var(--ink);
}

.process-visual {
  border: 1px solid rgba(18, 61, 105, 0.08);
  background:
    radial-gradient(circle at top, rgba(121, 229, 215, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(242, 250, 252, 0.84));
}

.scan-line {
  background:
    linear-gradient(90deg, transparent, rgba(13, 91, 151, 0.15), transparent),
    linear-gradient(rgba(18, 61, 105, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 105, 0.035) 1px, transparent 1px);
}

.spec-sheet {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 61, 105, 0.08);
}

.spec-sheet ul,
.spec-sheet p {
  color: var(--muted);
}

.storage-tower span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(121, 229, 215, 0.16)),
    linear-gradient(180deg, rgba(113, 166, 214, 0.64), rgba(34, 207, 193, 0.52));
  border: 1px solid rgba(18, 61, 105, 0.08);
  box-shadow: inset 0 16px 18px rgba(255, 255, 255, 0.18);
}

.product-media {
  background:
    radial-gradient(circle at top right, rgba(121, 229, 215, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(229, 246, 249, 0.82));
}

.final-cta .button-primary,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.checkout-button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: #084c82;
  color: var(--white);
}

.toast {
  background: rgba(8, 76, 130, 0.94);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  background: rgba(255, 255, 255, 0.94);
}

.nav-toggle {
  border-color: rgba(18, 61, 105, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(13, 91, 151, 0.1);
}

.nav-toggle-bar {
  background: var(--accent-deep);
}

@media (max-width: 820px) {
  .site-nav {
    border-color: rgba(18, 61, 105, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 251, 252, 0.95));
    box-shadow: 0 24px 56px rgba(13, 91, 151, 0.12);
  }

  .site-nav a {
    border-color: rgba(18, 61, 105, 0.08);
    background: rgba(255, 255, 255, 0.82);
  }
}

/* Premium typography, header structure, and built-out page layout */

body {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.012em;
  word-spacing: 0.02em;
}

p,
li {
  letter-spacing: -0.01em;
  word-spacing: 0.015em;
}

h1,
h2,
h3,
.wc-shell-title,
.woocommerce div.product .product_title,
.woocommerce .related.products > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2 {
  font-family: "Instrument Serif", serif;
  letter-spacing: -0.045em;
}

.eyebrow,
.hero-brand,
.label-code,
.product-meta,
.product-code,
.stack-tab small,
.process-steps span,
.assay-kicker,
.spec-sheet p {
  letter-spacing: 0.18em;
}

.site-header {
  gap: 1.6rem;
  align-items: center;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
}

.custom-logo-link,
.brand-logo-image {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.custom-logo-link img,
.brand-logo-image img {
  display: block;
  width: auto;
  height: clamp(2.85rem, 4vw, 3.8rem);
  max-width: min(19rem, 34vw);
  object-fit: contain;
}

.site-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.site-nav .site-nav-list {
  justify-content: center;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-ancestor > a {
  color: var(--accent-deep);
}

.header-actions {
  flex: 0 0 auto;
  margin-left: auto;
}

.header-actions .text-link,
.cart-button,
.button,
.product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-copy,
.page-banner,
.statement-panel,
.feature-copy,
.info-card,
.feature-list article,
.faq-category,
.checklist-card {
  text-wrap: pretty;
}

.product-grid,
.woocommerce ul.products,
.woocommerce-page ul.products {
  gap: 1.2rem;
}

.product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  gap: 1.15rem;
  padding: 1.5rem;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  letter-spacing: -0.03em;
}

.product-card p {
  line-height: 1.78;
}

.product-details {
  gap: 0.95rem;
}

.product-bottom {
  align-items: flex-end;
  padding-top: 0.2rem;
}

.page-template-shell {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.page-banner,
.faq-category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.page-banner p:last-child {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
}

.info-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.feature-list article,
.statement-panel,
.checklist-card,
.faq-category,
.shop-shortcode-shell {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 252, 0.84)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.info-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.info-card h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.info-card p:last-child,
.feature-list p,
.statement-panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.1rem;
  align-items: start;
}

.feature-copy {
  display: grid;
  gap: 0.9rem;
}

.feature-copy h2,
.statement-panel h2 {
  max-width: 13ch;
}

.feature-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

.feature-list strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.feature-list p {
  margin-top: 0.42rem;
}

.statement-panel {
  display: grid;
  gap: 0.85rem;
}

.page-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.faq-shell {
  display: grid;
  gap: 1.2rem;
}

.faq-category {
  gap: 1rem;
}

.faq-category h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: none;
}

.faq-category-list {
  display: grid;
  gap: 0.75rem;
}

.faq-category details {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.8);
}

.faq-category summary {
  font-weight: 700;
  letter-spacing: -0.015em;
}

.faq-category p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.coa-checklist {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.74;
}

.shop-shortcode-shell .woocommerce {
  margin: 0;
}

.site-footer-rich {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 0.9fr);
  align-items: start;
  gap: 1.4rem;
  padding-top: 1.8rem;
}

.footer-branding,
.footer-note {
  display: grid;
  gap: 0.45rem;
}

.footer-brand {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--accent-deep);
}

.footer-branding p:last-child,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 1080px) {
  .page-banner,
  .faq-category-heading,
  .split-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .info-grid-three,
  .info-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-rich {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.75rem 0.6rem;
  }

  .site-branding {
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-left: 0;
  }

  .nav-toggle {
    order: 3;
    justify-self: end;
  }

  .site-nav {
    order: 4;
    justify-content: flex-start;
  }

  .site-nav .site-nav-list {
    justify-content: flex-start;
  }

  .custom-logo-link img,
  .brand-logo-image img {
    height: 2.45rem;
    max-width: 11.8rem;
  }

  .page-banner p:last-child {
    font-size: 0.98rem;
  }

  .info-grid-three,
  .info-grid-four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    letter-spacing: -0.008em;
    word-spacing: 0.01em;
  }

  .custom-logo-link img,
  .brand-logo-image img {
    height: 2.15rem;
    max-width: 10rem;
  }

  .page-actions .button {
    width: 100%;
  }
}

/* Final storefront polish for live spacing, logo balance, and FAQ resilience */

:root {
  --anchor-offset: clamp(7rem, 10vw, 8.5rem);
}

#proof,
#featured,
#collections,
#faq,
.page-banner,
.wc-shell-heading {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  padding-block: 1.1rem;
}

.brand-logo-image {
  overflow: hidden;
}

.brand-logo-image img {
  height: clamp(3.35rem, 4.8vw, 4.7rem);
  max-width: min(21rem, 36vw);
  margin-inline: -0.25rem -1rem;
  transform: scale(1.2);
  transform-origin: left center;
}

.hero {
  min-height: min(56rem, calc(100svh - 2.5rem));
  padding: clamp(3rem, 5vw, 5rem) clamp(1.2rem, 3vw, 2.2rem) 4.8rem;
}

.hero-copy {
  align-content: start;
  gap: 1.2rem;
  max-width: 35rem;
  padding: clamp(2.2rem, 5vw, 3.6rem) 0 2.4rem;
}

.hero h1 {
  max-width: 9.2ch;
}

.hero-lede {
  max-width: 33rem;
}

.hero-visual {
  min-height: 35rem;
}

.section-heading,
.section-heading-compact {
  align-items: end;
  gap: clamp(1.35rem, 3vw, 2.5rem);
}

.section-heading h2,
.section-heading-compact h2 {
  max-width: 10.5ch;
}

#featured .section-heading.section-heading-compact p:last-child {
  max-width: 33rem;
}

.filter-row {
  margin: 1.55rem 0 1.2rem;
}

.product-grid,
.woocommerce ul.products,
.woocommerce-page ul.products {
  gap: 1.45rem;
  align-items: stretch;
}

.product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  min-height: 100%;
  gap: 1rem;
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: 1.75rem;
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 0.94;
}

.product-card p {
  font-size: 0.98rem;
  line-height: 1.64;
}

.product-details {
  gap: 0.75rem 0.9rem;
}

.product-details span {
  padding-top: 0.72rem;
}

.product-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
}

.product-action,
.woocommerce ul.products li.product a.button,
.woocommerce-page ul.products li.product a.button {
  min-width: 10rem;
  justify-content: center;
  white-space: nowrap;
  padding-inline: 1.15rem;
}

.faq-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.statement-panel {
  margin-top: 0.35rem;
}

@media (min-width: 1180px) {
  .product-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1179px) {
  .product-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 1.3rem;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .brand-logo-image img {
    height: 2.85rem;
    max-width: 13rem;
    margin-inline: -0.15rem -0.55rem;
    transform: scale(1.14);
  }

  .hero {
    padding-top: 2.25rem;
    gap: 1.8rem;
  }

  .hero-copy {
    padding-top: 0.2rem;
  }

  .product-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .product-top,
  .product-bottom {
    grid-template-columns: 1fr;
  }

  .product-action,
  .woocommerce ul.products li.product a.button,
  .woocommerce-page ul.products li.product a.button {
    width: 100%;
  }
}

/* Header clarity, card alignment, and stronger shop merchandising */

.site-header {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1.1rem, 2.6vw, 2.2rem);
  padding-block: 0.95rem;
  border-bottom: 1px solid rgba(13, 91, 151, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(247, 252, 254, 0.97));
  box-shadow: 0 14px 40px rgba(13, 91, 151, 0.08);
  backdrop-filter: blur(14px) saturate(135%);
  isolation: isolate;
}

.site-nav,
.site-nav .site-nav-list {
  min-width: 0;
}

.site-nav .site-nav-list {
  justify-content: center;
}

.site-header .site-nav a {
  font-weight: 800;
}

.brand-logo-image {
  border-radius: 1.05rem;
}

.final-cta {
  align-items: center;
}

.final-copy > p:last-of-type,
.final-actions p {
  color: var(--muted);
}

.final-actions p {
  max-width: 34rem;
}

.final-cta .button-light,
.final-cta .button-primary.button-light {
  background: linear-gradient(135deg, #0d5b97, #22cfc1);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(13, 91, 151, 0.18);
}

.final-cta .button-light:hover,
.final-cta .button-primary.button-light:hover {
  background: linear-gradient(135deg, #0a4e82, #18b8ab);
  color: var(--white);
}

.wc-shell,
.page-shell {
  padding-top: clamp(5rem, 8vw, 6.6rem);
}

.page-banner {
  align-items: start;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.page-banner .wc-shell-title,
.wc-shell-heading .wc-shell-title {
  max-width: 10.5ch;
  font-size: clamp(2.8rem, 5.25vw, 4.75rem);
}

.product-grid .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-grid .product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.product-grid .product-top > div {
  display: grid;
  gap: 0.32rem;
  align-content: start;
  min-height: 5.5rem;
}

.product-grid .product-meta {
  min-height: 2.5rem;
}

.product-grid .product-code {
  white-space: nowrap;
  align-self: start;
}

.product-grid .product-card h3 {
  min-height: 2.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid .product-card p {
  min-height: 6.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid .product-details {
  margin-top: auto;
}

.product-grid .product-price {
  min-height: 4.25rem;
  align-content: end;
}

.product-grid .product-action {
  min-width: 11rem;
}

.shop-shortcode-shell {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(13, 91, 151, 0.08);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.88)),
    var(--white);
  box-shadow: 0 20px 52px rgba(13, 91, 151, 0.08);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 1.25rem;
}

.woocommerce .woocommerce-ordering select {
  min-width: 14rem;
  background: rgba(255, 255, 255, 0.94);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 31rem;
  padding: 1.35rem;
  gap: 1rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(13, 91, 151, 0.08);
  box-shadow: 0 18px 46px rgba(13, 91, 151, 0.08);
}

.woocommerce ul.products li.product > a:first-of-type,
.woocommerce-page ul.products li.product > a:first-of-type,
.aminogenix-loop-card .aminogenix-loop-card__media {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.95rem;
  color: inherit;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  aspect-ratio: 1 / 0.9;
  margin: 0;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.98), rgba(240, 248, 251, 0.9)),
    var(--white);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.15em;
  font-size: clamp(1.28rem, 1.75vw, 1.7rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(13, 91, 151, 0.08);
  font-size: 1.05rem;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: rgba(32, 51, 44, 0.48);
  text-decoration-thickness: 2px;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  color: #0d5b97;
  text-decoration: none;
  font-weight: 800;
}

.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product > a.added_to_cart,
.woocommerce-page ul.products li.product > a.button,
.woocommerce-page ul.products li.product > a.added_to_cart {
  width: 100%;
  margin-top: 1rem;
  min-height: 3.35rem;
}

.aminogenix-loop-card .product-bottom {
  margin-top: auto;
}

.aminogenix-loop-card .product-bottom .product-action {
  width: auto;
  min-height: 3.35rem;
}

.woocommerce span.onsale {
  top: 1.1rem;
  right: 1.1rem;
  left: auto;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(13, 91, 151, 0.14);
  background: linear-gradient(135deg, #0d5b97, #22cfc1);
  box-shadow: 0 16px 34px rgba(13, 91, 151, 0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 1rem;
  }

  .product-grid .product-top > div {
    min-height: 4.8rem;
  }

  .product-grid .product-card p {
    min-height: 6.1rem;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 28rem;
  }

  .aminogenix-archive-toolbar .woocommerce-ordering {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 0.8rem;
    backdrop-filter: blur(10px);
  }

  .product-grid .product-top > div,
  .product-grid .product-card p,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: auto;
  }
}

/* Single-product cleanup, related product alignment, and premium footer polish */

.woocommerce div.product {
  row-gap: clamp(2rem, 4vw, 3rem);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .up-sells,
.woocommerce div.product .cross-sells {
  grid-column: 1 / -1;
  float: none;
  width: 100%;
  clear: both;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 0.2rem;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  border: 1px solid rgba(13, 91, 151, 0.08);
  border-radius: 2.15rem;
  background:
    radial-gradient(circle at top right, rgba(34, 207, 193, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 252, 0.9));
  box-shadow: 0 24px 72px rgba(13, 91, 151, 0.08);
}

.woocommerce div.product .woocommerce-tabs::after {
  content: "";
  display: block;
  clear: both;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs .panel > *:first-child,
.woocommerce div.product .woocommerce-tabs .panel p:first-child {
  margin-top: 0;
}

.woocommerce div.product .woocommerce-tabs .panel > *:last-child {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li {
  color: var(--muted);
}

.woocommerce div.product .woocommerce-product-details__short-description p:empty,
.woocommerce div.product .woocommerce-tabs .panel p:empty {
  display: none;
}

.woocommerce div.product .woocommerce-tabs .panel ul {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.2rem;
}

.woocommerce .related.products,
.woocommerce .up-sells,
.woocommerce .cross-sells {
  padding: clamp(1.45rem, 3vw, 2.2rem);
  border: 1px solid rgba(13, 91, 151, 0.08);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(34, 207, 193, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 252, 0.88));
  box-shadow: 0 24px 72px rgba(13, 91, 151, 0.08);
}

.woocommerce .related.products > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2 {
  margin: 0 0 1.35rem;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
  color: #183b67;
}

.woocommerce .related.products ul.products,
.woocommerce .up-sells ul.products,
.woocommerce .cross-sells ul.products {
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.woocommerce .related.products ul.products li.product,
.woocommerce .up-sells ul.products li.product,
.woocommerce .cross-sells ul.products li.product {
  min-height: 28.5rem;
  height: 100%;
  padding: 1.2rem;
  border-radius: 1.8rem;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  min-height: 3.6rem;
}

.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product > a.added_to_cart,
.woocommerce-page ul.products li.product > a.button,
.woocommerce-page ul.products li.product > a.added_to_cart {
  margin-top: 0.35rem;
  align-self: stretch;
  justify-content: center;
}

.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title,
.woocommerce .up-sells ul.products li.product .woocommerce-loop-product__title,
.woocommerce .cross-sells ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.15em;
}

.woocommerce .related.products .onsale,
.woocommerce .up-sells .onsale,
.woocommerce .cross-sells .onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
  left: auto;
  right: 0.95rem;
  top: 0.95rem;
  padding: 0.58rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, #0d5b97, #22cfc1);
  box-shadow: 0 16px 34px rgba(13, 91, 151, 0.22);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer-rich {
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(13, 91, 151, 0.08);
  border-radius: 2.25rem;
  background:
    radial-gradient(circle at top right, rgba(34, 207, 193, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 249, 252, 0.92));
  box-shadow: 0 22px 66px rgba(13, 91, 151, 0.08);
}

.footer-branding,
.footer-note-wrap {
  min-width: 0;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-mark .brand-logo-image,
.footer-logo-mark .brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo-mark img {
  width: clamp(3.25rem, 6vw, 4.5rem);
  height: auto;
  display: block;
}

.footer-brand-copy {
  display: grid;
  gap: 0.28rem;
}

.footer-kicker,
.footer-note-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f8da7;
}

.footer-brand {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  letter-spacing: -0.04em;
  color: #183b67;
}

.footer-branding p:last-child,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.footer-nav {
  gap: 0.65rem;
  justify-content: center;
}

.footer-nav a {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(13, 91, 151, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #295684;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.footer-nav a:hover {
  border-color: rgba(13, 91, 151, 0.18);
  background: #1d5d95;
  color: var(--white);
  transform: translateY(-1px);
}

.footer-note-wrap {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
}

@media (max-width: 1180px) {
  .woocommerce .related.products ul.products,
  .woocommerce .up-sells ul.products,
  .woocommerce .cross-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-footer-rich {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-note-wrap {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .woocommerce .related.products ul.products,
  .woocommerce .up-sells ul.products,
  .woocommerce .cross-sells ul.products {
    grid-template-columns: 1fr;
  }

  .footer-brand-lockup {
    align-items: flex-start;
  }
}

/* Cart drawer, control polish, and alignment refinements */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

p,
li,
label,
input,
select,
textarea,
button {
  letter-spacing: -0.012em;
  word-spacing: 0.02em;
}

.button,
.product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

body.cart-panel-open {
  overflow: hidden;
}

.cart-button {
  min-height: 3.15rem;
  padding: 0.78rem 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cart-button-toggle {
  cursor: pointer;
}

.site-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  border: 0;
  background: rgba(8, 16, 24, 0.34);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.site-cart-panel {
  position: fixed;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: min(30rem, calc(100vw - 1rem));
  padding: 1.15rem;
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(34, 207, 193, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 249, 252, 0.95));
  box-shadow: 0 30px 90px rgba(8, 19, 30, 0.22);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(1.5rem);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

body.cart-panel-open .site-cart-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.cart-panel-open .site-cart-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.site-cart-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.site-cart-panel__header .eyebrow {
  margin-bottom: 0.3rem;
}

.site-cart-panel__kicker {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-cart-panel__close {
  position: relative;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(8, 19, 30, 0.08);
}

.site-cart-panel__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #183b67;
}

.site-cart-panel__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-cart-panel__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-cart-panel__content {
  min-height: 0;
  overflow: auto;
  padding-right: 0.15rem;
}

.mini-cart-shell {
  display: grid;
  gap: 1rem;
  min-height: 100%;
}

.mini-cart-overview {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.mini-cart-title {
  max-width: none;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.mini-cart-pill {
  display: grid;
  gap: 0.15rem;
  min-width: 5.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.mini-cart-pill span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f8da7;
}

.mini-cart-pill strong {
  font-size: 1.15rem;
  color: #183b67;
}

.site-cart-panel .woocommerce-mini-cart,
.site-cart-panel .woocommerce ul.cart_list,
.site-cart-panel .woocommerce ul.product_list_widget {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-cart-panel .woocommerce ul.cart_list li,
.site-cart-panel .woocommerce ul.product_list_widget li {
  position: relative;
  min-height: 4.6rem;
  margin: 0;
  padding: 0 1.85rem 1rem 5rem;
  border-bottom: 1px solid rgba(13, 91, 151, 0.08);
}

.site-cart-panel .woocommerce ul.cart_list li:last-child,
.site-cart-panel .woocommerce ul.product_list_widget li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-cart-panel .woocommerce ul.cart_list li img,
.site-cart-panel .woocommerce ul.product_list_widget li img {
  position: absolute;
  top: 0;
  left: 0;
  float: none;
  width: 4rem;
  height: 4rem;
  margin: 0;
  object-fit: cover;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.98), rgba(240, 248, 251, 0.9)),
    var(--white);
}

.site-cart-panel .woocommerce ul.cart_list li a:not(.remove),
.site-cart-panel .woocommerce ul.product_list_widget li a:not(.remove) {
  display: block;
  padding-right: 0.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #183b67;
}

.site-cart-panel .woocommerce ul.cart_list li .remove,
.site-cart-panel .woocommerce ul.product_list_widget li .remove {
  position: absolute;
  top: 0;
  right: 0;
  left: auto !important;
  display: grid !important;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(13, 91, 151, 0.08);
  color: #295684 !important;
  font-size: 1rem;
  line-height: 1;
}

.site-cart-panel .woocommerce ul.cart_list li .quantity,
.site-cart-panel .woocommerce ul.product_list_widget li .quantity {
  display: block;
  margin-top: 0.42rem;
  color: var(--muted);
  line-height: 1.55;
}

.site-cart-panel .woocommerce-mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 91, 151, 0.08);
  color: var(--muted);
}

.site-cart-panel .woocommerce-mini-cart__total strong {
  color: #183b67;
}

.site-cart-panel .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.95rem 0 0;
}

.site-cart-panel .woocommerce-mini-cart__buttons .button {
  width: 100%;
  min-height: 3.25rem;
}

.site-cart-panel .woocommerce-mini-cart__empty-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-cart-empty-actions .button {
  width: 100%;
}

.aminogenix-archive-toolbar {
  row-gap: 1rem;
}

.woocommerce .woocommerce-ordering {
  position: relative;
}

.woocommerce .woocommerce-ordering::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #295684;
  border-bottom: 2px solid #295684;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.woocommerce .woocommerce-ordering select {
  width: auto;
  max-width: 100%;
  min-width: 18rem;
  padding: 0.95rem 3rem 0.95rem 1.15rem;
  border: 1px solid rgba(13, 91, 151, 0.12);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.88)),
    var(--white);
  box-shadow: 0 14px 36px rgba(13, 91, 151, 0.08);
  color: #183b67;
  font-weight: 700;
}

.woocommerce div.product .summary {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.woocommerce div.product .summary > * {
  margin-top: 0;
  margin-bottom: 0;
}

.woocommerce div.product .product_title {
  text-wrap: balance;
}

.woocommerce div.product form.cart table.variations {
  width: 100%;
  margin: 0.5rem 0 1rem;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
}

.woocommerce div.product form.cart table.variations tbody,
.woocommerce div.product form.cart table.variations tr,
.woocommerce div.product form.cart table.variations th,
.woocommerce div.product form.cart table.variations td {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}

.woocommerce div.product form.cart table.variations th.label label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f8da7;
}

.woocommerce div.product form.cart table.variations td.value {
  position: relative;
}

.woocommerce div.product form.cart table.variations td.value::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #295684;
  border-bottom: 2px solid #295684;
  transform: rotate(45deg);
  pointer-events: none;
}

.woocommerce div.product form.cart table.variations select {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.95rem 3rem 0.95rem 1.1rem;
  border: 1px solid rgba(13, 91, 151, 0.12);
  border-radius: 1.2rem;
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.88)),
    var(--white);
  box-shadow: 0 14px 36px rgba(13, 91, 151, 0.08);
  color: #183b67;
  font-weight: 700;
}

.woocommerce div.product form.cart .reset_variations {
  display: inline-flex;
  margin-top: 0.65rem;
  font-weight: 700;
  color: #295684;
}

.woocommerce div.product form.cart .single_variation_wrap {
  display: grid;
  gap: 0.85rem;
  width: 100%;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.85rem;
  width: 100%;
}

.woocommerce div.product form.cart .woocommerce-variation-price,
.woocommerce div.product form.cart .woocommerce-variation-description {
  margin: 0;
  color: var(--muted);
}

.woocommerce div.product form.cart .quantity {
  flex: 0 0 10rem;
}

.woocommerce div.product form.cart .quantity .qty {
  min-height: 3.45rem;
  border-radius: 1.2rem;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  min-width: 12rem;
}

.product-grid .product-card,
.aminogenix-loop-card {
  height: 100%;
}

.product-grid .product-meta,
.aminogenix-loop-card .product-meta {
  min-height: 3rem;
  line-height: 1.35;
}

.product-grid .product-card h3,
.aminogenix-loop-card h3 {
  min-height: 0;
  overflow: visible;
  display: block;
  line-height: 1.02;
  text-wrap: balance;
}

.product-grid .product-card p,
.aminogenix-loop-card .aminogenix-loop-card__excerpt {
  min-height: 0;
  line-height: 1.72;
}

.product-grid .product-bottom,
.aminogenix-loop-card .product-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.9rem;
}

.product-grid .product-action,
.aminogenix-loop-card .product-action {
  min-width: 11.5rem;
  justify-self: end;
}

@media (max-width: 980px) {
  .site-cart-panel {
    top: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: min(28rem, calc(100vw - 0.75rem));
  }
}

@media (max-width: 820px) {
  .woocommerce .woocommerce-ordering select {
    min-width: 100%;
    width: 100%;
  }

  .site-cart-panel {
    top: auto;
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
    width: auto;
    max-height: calc(100vh - 1.2rem);
    border-radius: 1.6rem;
  }

  .site-cart-panel .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr;
  }

  .product-grid .product-bottom,
  .aminogenix-loop-card .product-bottom {
    grid-template-columns: 1fr;
  }

  .product-grid .product-action,
  .aminogenix-loop-card .product-action {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

/* Version 1.4.1: header refinement, flagship carousel, premium FAQ, and contact polish */

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem clamp(0.9rem, 2vw, 1.6rem);
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 2.7vw, 2.4rem);
}

.site-header .site-nav {
  justify-self: center;
  min-width: 0;
}

.site-header .site-nav-list {
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.7rem, 1.7vw, 1.4rem);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: max-content;
}

.account-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.82rem 1.12rem;
  border: 1px solid rgba(13, 91, 151, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 249, 252, 0.94));
  box-shadow: 0 14px 34px rgba(13, 91, 151, 0.08);
  color: #183b67;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.account-button:hover,
.account-button:focus-visible,
.cart-button:hover,
.cart-button:focus-visible {
  border-color: rgba(13, 91, 151, 0.22);
  color: #16365f;
  transform: translateY(-1px);
}

.account-button__icon {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: currentColor;
}

.account-button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.account-button__label {
  white-space: nowrap;
}

.flagship-carousel-shell {
  display: grid;
  gap: 1.35rem;
}

.flagship-carousel-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
}

.flagship-carousel-copy {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}

.flagship-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(13, 91, 151, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(13, 91, 151, 0.08);
  color: #183b67;
  font-size: 1rem;
}

.carousel-control:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.carousel-status {
  min-width: 4.9rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #4a7296;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.flagship-carousel {
  position: relative;
}

.flagship-carousel-track {
  --carousel-gap: 1.25rem;
  --carousel-visible: 4;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, calc((100% - ((var(--carousel-visible) - 1) * var(--carousel-gap))) / var(--carousel-visible)));
  gap: var(--carousel-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.35rem 0 0.6rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 91, 151, 0.3) transparent;
}

.flagship-carousel-track > * {
  min-width: 0;
  scroll-snap-align: start;
}

.flagship-carousel-track::-webkit-scrollbar {
  height: 0.45rem;
}

.flagship-carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(13, 91, 151, 0.25);
}

.flagship-carousel-track .product-card,
.product-grid .product-card,
.aminogenix-loop-card {
  display: grid;
  grid-template-rows: auto auto minmax(7.7rem, auto) minmax(8.8rem, auto) auto;
  align-content: start;
  height: 100%;
}

.flagship-carousel-track .product-media,
.product-grid .product-media,
.aminogenix-loop-card .product-media {
  display: block;
  overflow: hidden;
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(247, 251, 253, 0.98), rgba(239, 247, 250, 0.92));
}

.flagship-carousel-track .product-media img,
.product-grid .product-media img,
.aminogenix-loop-card .product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.flagship-carousel-track .product-top,
.product-grid .product-top,
.aminogenix-loop-card .product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
  min-height: 7rem;
}

.flagship-carousel-track .product-top > div,
.product-grid .product-top > div,
.aminogenix-loop-card .product-top > div {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  min-width: 0;
}

.flagship-carousel-track .product-meta,
.product-grid .product-meta,
.aminogenix-loop-card .product-meta {
  min-height: 2.6rem;
  align-content: start;
  line-height: 1.4;
}

.flagship-carousel-track .product-code,
.product-grid .product-code,
.aminogenix-loop-card .product-code {
  align-self: start;
  min-width: 7.5ch;
  text-align: right;
  white-space: nowrap;
}

.flagship-carousel-track .product-card h3,
.product-grid .product-card h3,
.aminogenix-loop-card h3 {
  min-height: 4.12em;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.03;
  text-wrap: balance;
}

.flagship-carousel-track .product-card p,
.product-grid .product-card p,
.aminogenix-loop-card .aminogenix-loop-card__excerpt {
  min-height: 6.9rem;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.7;
}

.flagship-carousel-track .product-details,
.product-grid .product-details,
.aminogenix-loop-card .product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  align-content: start;
  min-height: 8.6rem;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 91, 151, 0.08);
}

.flagship-carousel-track .product-details span,
.product-grid .product-details span,
.aminogenix-loop-card .product-details span {
  display: grid;
  gap: 0.22rem;
}

.flagship-carousel-track .product-bottom,
.product-grid .product-bottom,
.aminogenix-loop-card .product-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10.8rem, 11.8rem);
  gap: 0.95rem;
  align-items: end;
  margin-top: auto;
}

.flagship-carousel-track .product-price,
.product-grid .product-price,
.aminogenix-loop-card .product-price {
  display: grid;
  gap: 0.28rem;
  min-height: 4.45rem;
  align-content: end;
}

.flagship-carousel-track .product-price strong,
.product-grid .product-price strong,
.aminogenix-loop-card .product-price strong {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: baseline;
}

.flagship-carousel-track .product-action,
.product-grid .product-action,
.aminogenix-loop-card .product-action {
  width: 100%;
  min-width: 0;
  min-height: 3.15rem;
  padding-inline: 1rem;
  text-align: center;
}

.faq-list,
.faq-shell {
  gap: 1.35rem;
}

.faq-category,
.statement-panel {
  border: 1px solid rgba(13, 91, 151, 0.08);
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at top right, rgba(34, 207, 193, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 250, 252, 0.9));
  box-shadow: 0 22px 54px rgba(13, 91, 151, 0.08);
}

.faq-category {
  padding: clamp(1.45rem, 2.8vw, 2rem);
}

.faq-category-heading {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.faq-category h2 {
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.faq-category-list,
.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-category details,
.faq-list details {
  padding: 1.08rem 1.15rem;
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.faq-category details:hover,
.faq-list details:hover {
  border-color: rgba(13, 91, 151, 0.18);
  box-shadow: 0 14px 34px rgba(13, 91, 151, 0.08);
  transform: translateY(-1px);
}

.faq-category summary,
.faq-list summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.faq-category summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-category summary::before,
.faq-list summary::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22cfc1, #0d5b97);
  box-shadow: 0 0 0 0.3rem rgba(34, 207, 193, 0.12);
}

.faq-category summary::after,
.faq-list summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(13, 91, 151, 0.08);
  color: #214f81;
  font-size: 1rem;
  font-weight: 700;
}

.faq-category details[open] summary::after,
.faq-list details[open] summary::after {
  content: "−";
}

.faq-category p,
.faq-list p {
  margin: 0.9rem 0 0;
  padding-left: 1.45rem;
  color: var(--muted);
  line-height: 1.72;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 34rem);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3.4rem);
}

.contact-cta__intro {
  display: grid;
  gap: 0.95rem;
}

.contact-cta__details {
  display: grid;
  gap: 1.15rem;
}

.contact-cta__channels {
  display: grid;
  gap: 0.8rem;
}

.contact-cta__line {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.contact-cta__line:hover,
.contact-cta__line:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.contact-cta__line span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(203, 231, 245, 0.72);
}

.contact-cta__line strong {
  font-size: 1rem;
  line-height: 1.4;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-cta__actions .button {
  min-height: 3.3rem;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.contact-cta__note {
  margin: 0;
  color: rgba(222, 239, 247, 0.84);
  line-height: 1.7;
}

.site-footer-rich {
  grid-template-columns: minmax(0, 1.1fr) auto minmax(14rem, 19rem);
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer-brand-copy p:last-child,
.footer-note {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .flagship-carousel-track {
    --carousel-visible: 3;
  }
}

@media (max-width: 980px) {
  .contact-cta,
  .flagship-carousel-toolbar,
  .site-footer-rich {
    grid-template-columns: 1fr;
  }

  .flagship-carousel-controls {
    justify-content: flex-start;
  }

  .flagship-carousel-track {
    --carousel-visible: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 0.75rem;
  }

  .header-actions {
    min-width: 0;
  }

  .account-button {
    min-width: 3.2rem;
    padding-inline: 0.9rem;
  }

  .account-button__label {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .flagship-carousel-track {
    --carousel-visible: 1.3;
  }

  .flagship-carousel-track .product-bottom,
  .product-grid .product-bottom,
  .aminogenix-loop-card .product-bottom {
    grid-template-columns: 1fr;
  }

  .flagship-carousel-track .product-details,
  .product-grid .product-details,
  .aminogenix-loop-card .product-details {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .cart-button {
    padding-inline: 0.92rem;
  }

  .flagship-carousel-track {
    --carousel-visible: 1.08;
  }

  .flagship-carousel-track .product-card,
  .product-grid .product-card,
  .aminogenix-loop-card {
    grid-template-rows: auto auto auto auto auto;
  }

  .flagship-carousel-track .product-card h3,
  .product-grid .product-card h3,
  .aminogenix-loop-card h3,
  .flagship-carousel-track .product-card p,
  .product-grid .product-card p,
  .aminogenix-loop-card .aminogenix-loop-card__excerpt {
    min-height: 0;
  }

  .flagship-carousel-track .product-details,
  .product-grid .product-details,
  .aminogenix-loop-card .product-details,
  .contact-cta__actions {
    grid-template-columns: 1fr;
  }

  .contact-cta__actions {
    display: grid;
  }

  .faq-category,
  .statement-panel {
    padding: 1.2rem;
  }
}

/* Version 1.4.2: launch polish, darker premium palette, sharper typography, curated carousel, and stronger Woo alignment */

:root {
  --bg: #dbe7ee;
  --bg-soft: #eef4f7;
  --bg-mist: #cfdee7;
  --ink: #10263d;
  --muted: #566f86;
  --line: rgba(16, 38, 61, 0.12);
  --line-strong: rgba(16, 38, 61, 0.22);
  --white: #f9fcfd;
  --accent: #27d4c5;
  --accent-deep: #163b69;
  --cool: #6f90a7;
  --hero-base: #d6e3eb;
  --hero-mid: #bfd3df;
  --hero-glow: rgba(39, 212, 197, 0.24);
  --shadow-soft: 0 26px 68px rgba(9, 28, 44, 0.12);
  --shadow-deep: 0 44px 100px rgba(9, 28, 44, 0.18);
}

html,
body,
button,
input,
select,
textarea {
  font-family: "Space Grotesk", "Sora", sans-serif;
}

body {
  color: var(--ink);
  background-image:
    radial-gradient(circle at top center, rgba(39, 212, 197, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(250, 253, 255, 0.95), rgba(218, 231, 238, 0.96));
}

h1,
h2,
h3,
h4,
.hero h1,
.hero-brand,
.wc-shell-title,
.mini-cart-title,
.woocommerce .related.products > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2,
.faq-category h2,
.statement-panel h2,
.footer-brand,
.product-card h3,
.aminogenix-loop-card h3 {
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  letter-spacing: -0.045em;
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 15rem) 1fr minmax(17rem, 24rem) auto;
  align-items: center;
  gap: 1rem;
  padding-inline: clamp(1rem, 2.8vw, 2.5rem);
  border-bottom: 1px solid rgba(16, 38, 61, 0.08);
  background: linear-gradient(180deg, rgba(251, 253, 254, 0.96), rgba(242, 248, 251, 0.92));
  box-shadow: 0 16px 38px rgba(16, 38, 61, 0.08);
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-header .site-nav {
  min-width: 0;
}

.site-nav .site-nav-list {
  gap: clamp(0.9rem, 1.8vw, 1.65rem);
}

.site-header .site-nav a {
  color: #254b73;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-actions {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.8rem;
}

.account-button,
.cart-button {
  border-color: rgba(16, 38, 61, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #1e466f;
  box-shadow: 0 12px 26px rgba(16, 38, 61, 0.05);
}

.account-button__icon,
.cart-count {
  color: currentColor;
}

.hero {
  overflow: clip;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.72), rgba(221, 236, 243, 0.56)),
    linear-gradient(135deg, rgba(18, 56, 87, 0.04), rgba(39, 212, 197, 0.08));
}

.hero::before {
  opacity: 0.6;
}

.hero-copy {
  max-width: 39rem;
}

.hero .eyebrow,
.hero-brand,
.hero-lede,
.hero-notes li {
  color: #355d83;
}

.hero h1 {
  max-width: 12ch;
  color: #143558;
  font-size: clamp(3.35rem, 7vw, 6.2rem);
  line-height: 0.92;
}

.hero-visual {
  position: relative;
  min-height: clamp(31rem, 48vw, 44rem);
}

.hero-lab-art {
  position: absolute;
  right: clamp(0.5rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  width: min(35rem, 92%);
  max-width: none;
  opacity: 0.9;
  filter: drop-shadow(0 30px 56px rgba(16, 38, 61, 0.18));
}

.hero-visual .specimen,
.hero-visual .visual-chip,
.hero-visual .orbital,
.hero-visual .visual-grid {
  position: relative;
  z-index: 2;
}

.visual-chip,
.orbital {
  backdrop-filter: blur(14px);
}

.section-heading p:last-child,
.section-heading-compact p:last-child,
.flagship-carousel-copy,
.contact-cta__intro p:last-child,
.footer-brand-copy p:last-child,
.footer-note,
.statement-panel p,
.assay-note,
.process-copy > p,
.page-banner > p {
  color: var(--muted);
}

.flagship-carousel-shell {
  gap: 1.55rem;
}

.flagship-carousel-toolbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.flagship-carousel-copy {
  max-width: 41rem;
  font-size: 1rem;
}

.flagship-carousel-track {
  --carousel-gap: 1.25rem;
  --carousel-visible: 4;
  grid-auto-columns: calc((100% - (var(--carousel-gap) * (var(--carousel-visible) - 1))) / var(--carousel-visible));
  align-items: stretch;
}

.flagship-carousel-track .product-card,
.woocommerce ul.products li.product.aminogenix-loop-card,
.woocommerce-page ul.products li.product.aminogenix-loop-card {
  min-width: 0;
  border: 1px solid rgba(16, 38, 61, 0.08);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 249, 252, 0.94));
  box-shadow: 0 24px 52px rgba(16, 38, 61, 0.08);
}

.flagship-carousel-track .product-card,
.product-grid .product-card,
.aminogenix-loop-card {
  grid-template-rows: auto minmax(7.1rem, 7.1rem) minmax(4.2rem, 4.2rem) minmax(8.8rem, 8.8rem) auto;
  gap: 1rem;
  padding: 1rem;
}

.flagship-carousel-track .product-media,
.product-grid .product-media,
.aminogenix-loop-card .product-media {
  border-radius: 1.6rem;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(240, 247, 250, 0.98), rgba(228, 239, 245, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flagship-carousel-track .product-media img,
.product-grid .product-media img,
.aminogenix-loop-card .product-media img,
.woocommerce div.product div.images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.flagship-carousel-track .product-top,
.product-grid .product-top,
.aminogenix-loop-card .product-top {
  min-height: 7.1rem;
}

.flagship-carousel-track .product-meta,
.product-grid .product-meta,
.aminogenix-loop-card .product-meta {
  min-height: 2.8rem;
  color: #6d8aa1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flagship-carousel-track .product-code,
.product-grid .product-code,
.aminogenix-loop-card .product-code {
  min-width: 7.8ch;
  color: #3b648c;
  font-size: 0.8rem;
  font-weight: 700;
}

.flagship-carousel-track .product-card h3,
.product-grid .product-card h3,
.aminogenix-loop-card h3 {
  min-height: 2.8em;
  max-height: 2.8em;
  font-size: clamp(1.6rem, 2vw, 2.05rem);
  line-height: 0.95;
  -webkit-line-clamp: 2;
}

.flagship-carousel-track .product-card p,
.product-grid .product-card p,
.aminogenix-loop-card .aminogenix-loop-card__excerpt {
  min-height: 6.8rem;
  max-height: 6.8rem;
  color: #59768e;
  font-size: 0.98rem;
  line-height: 1.72;
  -webkit-line-clamp: 4;
}

.flagship-carousel-track .product-details,
.product-grid .product-details,
.aminogenix-loop-card .product-details {
  min-height: 8.8rem;
  padding-top: 0.95rem;
  gap: 0.9rem 1rem;
}

.flagship-carousel-track .product-details span,
.product-grid .product-details span,
.aminogenix-loop-card .product-details span {
  color: #6b879d;
  font-size: 0.92rem;
}

.flagship-carousel-track .product-details strong,
.product-grid .product-details strong,
.aminogenix-loop-card .product-details strong {
  color: #163b69;
  font-size: 0.98rem;
}

.flagship-carousel-track .product-bottom,
.product-grid .product-bottom,
.aminogenix-loop-card .product-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(11.2rem, 11.2rem);
  gap: 1rem;
}

.flagship-carousel-track .product-price,
.product-grid .product-price,
.aminogenix-loop-card .product-price {
  min-height: 4.5rem;
}

.flagship-carousel-track .product-price span,
.product-grid .product-price span,
.aminogenix-loop-card .product-price span {
  color: #6f8ba1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flagship-carousel-track .product-price strong,
.product-grid .product-price strong,
.aminogenix-loop-card .product-price strong {
  color: #173d68;
  font-size: 1.1rem;
  line-height: 1.2;
}

.flagship-carousel-track .product-action,
.product-grid .product-action,
.aminogenix-loop-card .product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.2rem;
  padding-inline: 1rem;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}

.carousel-control {
  border-color: rgba(16, 38, 61, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #183f68;
}

.carousel-status {
  color: #51718a;
}

.contact-cta {
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1fr);
  border: 1px solid rgba(16, 38, 61, 0.08);
  background: linear-gradient(180deg, rgba(251, 253, 254, 0.98), rgba(239, 247, 250, 0.95));
  box-shadow: 0 30px 72px rgba(16, 38, 61, 0.08);
}

.contact-cta .eyebrow,
.contact-cta h2,
.contact-cta p,
.contact-cta__line,
.contact-cta__line span,
.contact-cta__note,
.button-outline-light {
  color: var(--ink);
}

.contact-cta__line {
  border-color: rgba(16, 38, 61, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.contact-cta__line span {
  color: #6b889d;
}

.button-outline-light {
  border-color: rgba(16, 38, 61, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.contact-cta__note {
  color: #627a8e;
}

.site-footer-rich {
  border-top: 1px solid rgba(16, 38, 61, 0.08);
  background: linear-gradient(180deg, rgba(250, 253, 255, 0.96), rgba(239, 247, 250, 0.9));
}

.footer-brand-copy .footer-brand {
  color: #15365a;
}

.footer-nav a {
  font-weight: 700;
}

.woocommerce-account .woocommerce,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100% !important;
  float: none !important;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  order: 1;
  position: sticky;
  top: 7.4rem;
}

.woocommerce-account .woocommerce-MyAccount-content {
  order: 2;
  min-width: 0;
  padding: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  font-weight: 700;
}

.woocommerce div.product form.cart table.variations select {
  font-weight: 700;
}

@media (min-width: 1101px) {
  .site-header .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: minmax(8rem, 13rem) 1fr auto auto;
  }

  .flagship-carousel-track {
    --carousel-visible: 3;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-header .site-nav {
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .flagship-carousel-track {
    --carousel-visible: 2;
  }

  .contact-cta,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.75rem;
  }

  .site-header .site-nav {
    position: static;
    transform: none;
    grid-column: 1 / -1;
  }

  .account-button {
    width: 3.15rem;
    min-width: 3.15rem;
    padding: 0;
    border-radius: 999px;
  }

  .account-button__label {
    display: none;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  .hero-visual {
    min-height: 28rem;
  }

  .hero-lab-art {
    width: min(28rem, 96%);
  }

  .flagship-carousel-track .product-card,
  .product-grid .product-card,
  .aminogenix-loop-card {
    grid-template-rows: auto minmax(6.6rem, 6.6rem) minmax(4rem, 4rem) minmax(8.2rem, 8.2rem) auto;
  }
}

@media (max-width: 640px) {
  .flagship-carousel-track {
    --carousel-visible: 1.15;
  }

  .cart-button {
    min-width: 0;
    padding-inline: 0.95rem;
  }

  .flagship-carousel-track .product-card,
  .product-grid .product-card,
  .aminogenix-loop-card {
    grid-template-rows: auto minmax(6.2rem, 6.2rem) minmax(3.9rem, 3.9rem) minmax(8rem, 8rem) auto;
    padding: 0.95rem;
  }

  .flagship-carousel-track .product-card h3,
  .product-grid .product-card h3,
  .aminogenix-loop-card h3 {
    font-size: 1.45rem;
  }

  .flagship-carousel-track .product-card p,
  .product-grid .product-card p,
  .aminogenix-loop-card .aminogenix-loop-card__excerpt {
    font-size: 0.92rem;
  }

  .flagship-carousel-track .product-bottom,
  .product-grid .product-bottom,
  .aminogenix-loop-card .product-bottom {
    grid-template-columns: 1fr;
  }

  .contact-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Version 1.4.5: true slider behavior, tighter launch copy, stronger SEO defaults, and sharper premium polish */

html,
body,
button,
input,
select,
textarea {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

body {
  color: #15304b;
  background-image:
    radial-gradient(circle at top center, rgba(60, 198, 204, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(246, 251, 254, 0.96), rgba(212, 228, 238, 0.96));
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.hero-brand,
.wc-shell-title,
.mini-cart-title,
.woocommerce .related.products > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2,
.faq-category h2,
.statement-panel h2,
.footer-brand,
.product-card h3,
.aminogenix-loop-card h3,
.site-nav a,
.button,
.product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  font-family: "Archivo", "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.wc-shell-title,
.mini-cart-title,
.woocommerce .related.products > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2,
.faq-category h2,
.statement-panel h2,
.footer-brand,
.product-card h3,
.aminogenix-loop-card h3 {
  letter-spacing: -0.055em;
}

p,
li,
label,
input,
select,
textarea,
button {
  letter-spacing: -0.015em;
  word-spacing: 0.02em;
}

.hero h1 {
  max-width: 8.6ch;
  color: #13355d;
  font-size: clamp(3.15rem, 6.2vw, 6.25rem);
  font-weight: 800;
  line-height: 0.9;
}

.hero-brand,
.hero .eyebrow,
.hero-lede,
.hero-notes li,
.section-heading p:last-child,
.section-heading-compact p:last-child,
.flagship-carousel-copy,
.contact-cta__intro p:last-child,
.footer-brand-copy p:last-child,
.footer-note,
.statement-panel p,
.assay-note,
.process-copy > p,
.page-banner > p {
  color: #55728e;
}

@media (min-width: 981px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.5rem;
    padding-inline: clamp(1.2rem, 2.5vw, 2.6rem);
  }

  .site-branding {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
  }

  .site-header .site-nav {
    position: static;
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    transform: none;
  }

  .site-header .site-nav-list {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(1.05rem, 1.7vw, 1.65rem);
  }

  .site-header .site-nav a {
    color: #244a73;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    gap: 0.8rem;
    min-width: max-content;
    white-space: nowrap;
  }
}

.account-button,
.cart-button {
  min-height: 3.15rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(16, 38, 61, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: #1d446c;
  box-shadow: 0 14px 30px rgba(16, 38, 61, 0.05);
}

.account-button__icon,
.cart-count {
  color: currentColor;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.account-button:hover,
.account-button:focus-visible,
.cart-button:hover,
.cart-button:focus-visible {
  color: #153a62;
}

.product-price,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #153b67;
}

.product-price strong,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.product-price strong .amount,
.woocommerce ul.products li.product .price .amount,
.woocommerce-page ul.products li.product .price .amount {
  color: #14395f;
  font-size: 1.04em;
}

.product-price strong del,
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: #7d92a7;
  opacity: 1;
}

.product-price strong ins,
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  color: #0f3358;
  text-decoration: none;
}

.flagship-carousel-shell {
  gap: 1.4rem;
}

.flagship-carousel {
  position: relative;
  overflow: hidden;
}

.flagship-carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  --carousel-gap: 1.35rem;
  gap: var(--carousel-gap);
  padding-bottom: 0.35rem;
  align-items: stretch;
  overflow: visible !important;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.flagship-carousel-track > [data-carousel-item] {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  width: calc((100% - (var(--carousel-gap) * 2)) / 3);
}

.flagship-carousel-track .product-card {
  grid-template-rows: auto minmax(5.6rem, 5.6rem) minmax(5.6rem, 5.6rem) minmax(7.8rem, 7.8rem) auto;
  gap: 0.95rem;
  padding: 1rem;
}

.flagship-carousel-track .product-top {
  min-height: 5.6rem;
}

.flagship-carousel-track .product-meta {
  min-height: 2.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.flagship-carousel-track .product-code {
  min-width: 6.8ch;
  font-size: 0.74rem;
}

.flagship-carousel-track .product-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 2.15em;
  max-height: 2.15em;
  overflow: hidden;
  font-size: clamp(1.28rem, 1.45vw, 1.55rem);
  font-weight: 800;
  line-height: 1.02;
  -webkit-line-clamp: 2;
  text-wrap: balance;
}

.flagship-carousel-track .product-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 5.6rem;
  max-height: 5.6rem;
  overflow: hidden;
  color: #5f7891;
  font-size: 0.9rem;
  line-height: 1.56;
  -webkit-line-clamp: 4;
}

.flagship-carousel-track .product-details {
  min-height: 7.8rem;
  gap: 0.8rem 1rem;
}

.flagship-carousel-track .product-details span {
  font-size: 0.86rem;
}

.flagship-carousel-track .product-details strong {
  font-size: 0.9rem;
}

.flagship-carousel-track .product-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(10.5rem, 10.5rem);
  gap: 0.85rem;
  align-items: end;
}

.flagship-carousel-track .product-price {
  min-height: 4.35rem;
}

.flagship-carousel-track .product-price span {
  font-size: 0.72rem;
}

.flagship-carousel-track .product-price strong {
  font-size: 1.08rem;
}

.flagship-carousel-track .product-action {
  min-height: 3.15rem;
  padding-inline: 0.9rem;
  font-size: 0.95rem;
}

.site-cart-panel .woocommerce-mini-cart__buttons .button,
.site-cart-panel .woocommerce-mini-cart__buttons .checkout,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #14375d, #346ca4);
  color: #f8fbfd !important;
  font-family: "Archivo", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 20px 34px rgba(16, 38, 61, 0.15);
}

.site-cart-panel .woocommerce-mini-cart__buttons .button:hover,
.site-cart-panel .woocommerce-mini-cart__buttons .checkout:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.site-cart-panel .woocommerce-mini-cart__buttons .button:focus-visible,
.site-cart-panel .woocommerce-mini-cart__buttons .checkout:focus-visible,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus-visible {
  background: linear-gradient(135deg, #112f50, #2c5d90);
  color: #ffffff !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  border: 1px solid rgba(16, 38, 61, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 52px rgba(16, 38, 61, 0.08);
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-cart .cart-collaterals .cart_totals th,
.woocommerce-cart .cart-collaterals .cart_totals td {
  color: #153a60;
}

@media (max-width: 1200px) {
  .flagship-carousel-track > [data-carousel-item] {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
    width: calc((100% - var(--carousel-gap)) / 2);
  }
}

@media (max-width: 980px) {
  .flagship-carousel-track > [data-carousel-item] {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
    width: calc((100% - var(--carousel-gap)) / 2);
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 0.75rem;
  }

  .account-button {
    width: 3.15rem;
    min-width: 3.15rem;
    padding-inline: 0;
  }

  .account-button__label {
    display: none;
  }

  .flagship-carousel-track > [data-carousel-item] {
    flex-basis: 100%;
    width: 100%;
  }

  .flagship-carousel-track .product-card {
    grid-template-rows: auto minmax(5.2rem, 5.2rem) minmax(5.2rem, 5.2rem) minmax(7.2rem, 7.2rem) auto;
  }

  .flagship-carousel-track .product-bottom {
    grid-template-columns: 1fr;
  }
}

/* Version 1.4.6: final mobile polish, harder card alignment, cleaner copy rhythm, and subtle scroll depth */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

section[id],
.page-banner,
.contact-cta {
  scroll-margin-top: 7rem;
}

body {
  text-rendering: optimizeLegibility;
}

.site-header,
.header-actions,
.product-card,
.aminogenix-loop-card,
.flagship-carousel-shell,
.page-banner,
.contact-cta {
  min-width: 0;
}

.site-header,
.header-actions {
  flex-wrap: nowrap;
}

.site-header {
  min-height: 5.7rem;
}

.site-branding .custom-logo-link img,
.site-branding .brand-logo-image img {
  width: auto;
  max-width: min(17rem, 26vw);
  object-fit: contain;
}

.page-banner,
.flagship-carousel-shell,
.contact-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-banner > *,
.flagship-carousel-shell > *,
.contact-cta > * {
  position: relative;
  z-index: 1;
}

.page-banner::after,
.flagship-carousel-shell::after,
.contact-cta::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% auto;
  width: clamp(12rem, 26vw, 21rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 205, 211, 0.2) 0%, rgba(78, 205, 211, 0) 72%);
  transform: translate3d(0, calc((var(--scroll-progress, 0.5) - 0.5) * -2.4rem), 0);
  transition: transform 0.18s linear, opacity 0.18s linear;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.page-banner {
  align-items: start;
  gap: clamp(1rem, 2.8vw, 2rem);
}

.page-banner .wc-shell-title,
.wc-shell-heading .wc-shell-title {
  max-width: 8.7ch;
  font-size: clamp(2.55rem, 5.1vw, 4.7rem);
  line-height: 0.92;
}

.page-banner > p {
  max-width: 31rem;
  font-size: 1rem;
  line-height: 1.64;
}

.product-top,
.aminogenix-loop-card .product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.72rem;
}

.product-top > div,
.aminogenix-loop-card .product-top > div {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.product-meta,
.product-code {
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.product-meta {
  min-height: 1.9rem;
}

.product-code {
  align-self: start;
  padding-top: 0.08rem;
  text-align: right;
  white-space: nowrap;
}

.woocommerce ul.products li.product.aminogenix-loop-card,
.woocommerce-page ul.products li.product.aminogenix-loop-card,
.product-grid .product-card {
  display: grid;
  grid-template-rows: auto minmax(5.45rem, 5.45rem) minmax(3.2rem, 3.2rem) minmax(7.45rem, 7.45rem) minmax(4.2rem, 4.2rem);
  gap: 0.92rem;
  height: 100%;
  padding: 1rem;
}

.woocommerce ul.products li.product.aminogenix-loop-card .product-media,
.product-grid .product-media {
  aspect-ratio: 1 / 1;
}

.flagship-carousel-track .product-card {
  display: grid;
  grid-template-rows: auto minmax(4.65rem, 4.65rem) minmax(3.7rem, 3.7rem) minmax(6.9rem, 6.9rem) minmax(4.05rem, 4.05rem);
  gap: 0.88rem;
  height: 100%;
  padding: 0.98rem;
}

.flagship-carousel-track .product-media {
  aspect-ratio: 5 / 4;
}

.flagship-carousel-track > [data-carousel-item] {
  min-width: 0;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.aminogenix-loop-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.34em;
  max-height: 2.34em;
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.woocommerce ul.products li.product.aminogenix-loop-card h3,
.product-grid .product-card h3 {
  font-size: clamp(1.16rem, 1.5vw, 1.48rem);
}

.flagship-carousel-track .product-card h3 {
  font-size: clamp(1.08rem, 1.15vw, 1.3rem);
}

.product-card p,
.aminogenix-loop-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 3.15rem;
  max-height: 3.15rem;
  margin: 0;
  line-height: 1.54;
}

.flagship-carousel-track .product-card p {
  -webkit-line-clamp: 3;
  min-height: 3.7rem;
  max-height: 3.7rem;
}

.product-details,
.aminogenix-loop-card .product-details,
.flagship-carousel-track .product-details {
  min-height: 7.35rem;
  gap: 0.78rem 0.92rem;
}

.flagship-carousel-track .product-details {
  min-height: 6.9rem;
}

.product-details span,
.aminogenix-loop-card .product-details span,
.flagship-carousel-track .product-details span {
  min-width: 0;
  padding-top: 0.7rem;
  line-height: 1.16;
}

.product-details strong,
.aminogenix-loop-card .product-details strong,
.flagship-carousel-track .product-details strong {
  display: block;
  margin-top: 0.08rem;
  line-height: 1.22;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.product-bottom,
.aminogenix-loop-card .product-bottom,
.flagship-carousel-track .product-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10.9rem, 10.9rem);
  align-items: end;
  gap: 0.9rem;
  min-height: 4.2rem;
  margin-top: auto;
}

.product-price,
.aminogenix-loop-card .product-price,
.flagship-carousel-track .product-price {
  display: grid;
  align-content: end;
  min-height: 4.2rem;
  gap: 0.18rem;
}

.product-price span,
.aminogenix-loop-card .product-price span,
.flagship-carousel-track .product-price span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.product-price strong,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16rem 0.38rem;
  min-height: 2.72rem;
  line-height: 1.08;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-size: 1.12rem;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount,
.woocommerce-page ul.products li.product .price .woocommerce-Price-amount,
.product-price .woocommerce-Price-amount {
  display: inline-block;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount bdi,
.woocommerce-page ul.products li.product .price .woocommerce-Price-amount bdi,
.product-price .woocommerce-Price-amount bdi {
  display: inline-block;
  white-space: nowrap;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
.product-price strong del {
  margin-right: 0.35rem;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins,
.product-price strong ins {
  text-decoration: none;
}

.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product > a.added_to_cart,
.woocommerce-page ul.products li.product > a.button,
.woocommerce-page ul.products li.product > a.added_to_cart,
.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.08rem;
  padding-inline: 1rem;
  text-align: center;
  line-height: 1.02;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.flagship-carousel-track .product-action {
  min-height: 3.02rem;
}

.flagship-carousel-track {
  padding-bottom: 0.55rem;
}

.flagship-carousel-shell {
  gap: 1.25rem;
}

.flagship-carousel-toolbar {
  align-items: end;
  gap: 1rem;
}

.flagship-carousel-copy {
  max-width: 32rem;
}

.faq-category details,
.faq-category summary,
.contact-cta__line,
.product-card,
.woocommerce ul.products li.product.aminogenix-loop-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease;
}

.faq-category details:hover,
.faq-category details:focus-within,
.contact-cta__line:hover,
.contact-cta__line:focus-visible {
  transform: translateY(-2px);
}

.aminogenix-loop-card__title-link,
.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

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

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

@media (min-width: 821px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.4rem;
    row-gap: 0;
  }

  .site-branding {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .site-nav {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 2;
    justify-self: center;
  }

  .site-header .site-nav-list {
    justify-content: center;
    gap: clamp(1rem, 1.8vw, 1.5rem);
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    align-items: center;
    gap: 0.7rem;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .woocommerce ul.products li.product.aminogenix-loop-card,
  .woocommerce-page ul.products li.product.aminogenix-loop-card,
  .product-grid .product-card {
    grid-template-rows: auto minmax(5rem, 5rem) minmax(3.15rem, 3.15rem) minmax(7rem, 7rem) minmax(4.1rem, 4.1rem);
  }

  .flagship-carousel-track .product-card {
    grid-template-rows: auto minmax(4.45rem, 4.45rem) minmax(3.55rem, 3.55rem) minmax(6.7rem, 6.7rem) minmax(4rem, 4rem);
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.7rem;
    min-height: 0;
    padding: 0.82rem 0.95rem;
  }

  .site-branding {
    grid-column: 1;
    min-width: 0;
  }

  .site-branding .custom-logo-link img,
  .site-branding .brand-logo-image img {
    height: 2.15rem;
    max-width: 5.8rem;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    flex-wrap: nowrap;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 2.95rem;
    min-width: 2.95rem;
    height: 2.95rem;
    justify-self: end;
  }

  .account-button {
    width: 2.95rem;
    min-width: 2.95rem;
    min-height: 2.95rem;
    padding: 0;
  }

  .account-button__label {
    display: none;
  }

  .cart-button {
    min-height: 2.95rem;
    padding: 0.72rem 0.88rem;
    font-size: 0.88rem;
    gap: 0.48rem;
  }

  .cart-count {
    min-width: 1.48rem;
    height: 1.48rem;
    padding-inline: 0.3rem;
    font-size: 0.75rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    margin-top: 0.1rem;
    padding: 0.6rem;
    border-radius: 1.25rem;
  }

  .site-nav .site-nav-list {
    display: grid;
    gap: 0.48rem;
    width: 100%;
  }

  .site-nav a {
    min-height: 2.9rem;
    padding: 0.78rem 0.92rem;
  }

  .wc-shell,
  .page-shell {
    padding-top: clamp(4.1rem, 16vw, 5rem);
  }

  .page-banner,
  .faq-category-heading {
    display: grid;
    gap: 0.82rem;
  }

  .page-banner .wc-shell-title,
  .wc-shell-heading .wc-shell-title {
    max-width: 7.1ch;
    font-size: clamp(2.05rem, 11vw, 3.2rem);
    line-height: 0.94;
  }

  .page-banner > p {
    max-width: 24rem;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .hero h1 {
    max-width: 6.9ch;
    font-size: clamp(2.5rem, 11.2vw, 4rem);
    line-height: 0.94;
  }

  .woocommerce ul.products li.product.aminogenix-loop-card,
  .woocommerce-page ul.products li.product.aminogenix-loop-card,
  .product-grid .product-card,
  .flagship-carousel-track .product-card {
    grid-template-rows: auto minmax(4.5rem, 4.5rem) minmax(3rem, 3rem) minmax(6.6rem, 6.6rem) auto;
    gap: 0.84rem;
    padding: 0.92rem;
  }

  .flagship-carousel-track > [data-carousel-item] {
    flex-basis: 100%;
    width: 100%;
  }

  .flagship-carousel-track .product-media,
  .woocommerce ul.products li.product.aminogenix-loop-card .product-media,
  .product-grid .product-media {
    aspect-ratio: 6 / 5;
  }

  .product-card h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .aminogenix-loop-card h3 {
    min-height: 2.32em;
    max-height: 2.32em;
    font-size: clamp(1.16rem, 5vw, 1.4rem);
  }

  .product-card p,
  .aminogenix-loop-card__excerpt {
    min-height: 3rem;
    max-height: 3rem;
    font-size: 0.9rem;
  }

  .product-details,
  .flagship-carousel-track .product-details {
    min-height: 6.6rem;
    gap: 0.72rem 0.84rem;
  }

  .product-bottom,
  .aminogenix-loop-card .product-bottom,
  .flagship-carousel-track .product-bottom {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    min-height: 0;
  }

  .product-price,
  .aminogenix-loop-card .product-price,
  .flagship-carousel-track .product-price {
    min-height: 0;
  }

  .product-price strong,
  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price {
    min-height: 2.45rem;
    font-size: 1.04rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 0.82rem;
  }

  .site-branding .custom-logo-link img,
  .site-branding .brand-logo-image img {
    height: 2rem;
    max-width: 5.3rem;
  }

  .header-actions {
    gap: 0.42rem;
  }

  .cart-button {
    padding-inline: 0.8rem;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .flagship-carousel-track .product-card,
  .woocommerce ul.products li.product.aminogenix-loop-card,
  .woocommerce-page ul.products li.product.aminogenix-loop-card,
  .product-grid .product-card {
    padding: 0.9rem;
  }

  .flagship-carousel-shell::after,
  .page-banner::after,
  .contact-cta::after {
    width: 13rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner::after,
  .flagship-carousel-shell::after,
  .contact-cta::after {
    transition: none;
    transform: none;
  }
}

/* Version 1.4.9: final card structure authority for shop and carousel */

.woocommerce ul.products li.product.aminogenix-loop-card,
.woocommerce-page ul.products li.product.aminogenix-loop-card,
.product-grid .product-card,
.flagship-carousel-track .product-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.94rem !important;
  height: 100%;
  min-height: 0;
  padding: 1rem;
  overflow: hidden;
}

.woocommerce ul.products li.product.aminogenix-loop-card .product-media,
.woocommerce-page ul.products li.product.aminogenix-loop-card .product-media,
.product-grid .product-media,
.flagship-carousel-track .product-media {
  display: block !important;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
}

.woocommerce ul.products li.product.aminogenix-loop-card .product-media,
.woocommerce-page ul.products li.product.aminogenix-loop-card .product-media,
.product-grid .product-media {
  aspect-ratio: 1 / 0.94;
}

.flagship-carousel-track .product-media {
  aspect-ratio: 1 / 0.88;
}

.product-top,
.aminogenix-loop-card .product-top,
.flagship-carousel-track .product-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  min-height: 0 !important;
}

.product-heading,
.product-top > .product-heading,
.aminogenix-loop-card .product-top > .product-heading,
.flagship-carousel-track .product-top > .product-heading {
  display: grid !important;
  gap: 0.62rem !important;
  min-width: 0;
  min-height: 0 !important;
  width: 100%;
}

.product-meta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.72rem;
  min-width: 0;
}

.product-meta,
.product-code {
  min-width: 0;
  line-height: 1.18;
}

.product-meta {
  min-height: 0 !important;
}

.product-code {
  display: none !important;
  max-width: 12ch;
  min-width: 0 !important;
  padding-top: 0 !important;
  text-align: right;
  white-space: normal;
  text-wrap: balance;
}

.woocommerce .product_meta .sku_wrapper,
.woocommerce .product_meta .sku,
.woocommerce-page .product_meta .sku_wrapper,
.woocommerce-page .product_meta .sku {
  display: none !important;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.aminogenix-loop-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0 !important;
  min-width: 0;
  min-height: 3.18em;
  max-height: 3.18em;
  line-height: 1.11;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.woocommerce ul.products li.product.aminogenix-loop-card h3,
.woocommerce-page ul.products li.product.aminogenix-loop-card h3,
.product-grid .product-card h3 {
  font-size: clamp(1.12rem, 1.2vw, 1.34rem);
}

.flagship-carousel-track .product-card h3 {
  font-size: clamp(1.05rem, 1.05vw, 1.22rem);
}

.aminogenix-loop-card__title-link,
.product-card h3 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card p,
.aminogenix-loop-card__excerpt,
.flagship-carousel-track .product-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 !important;
  min-width: 0;
  min-height: 3rem;
  max-height: 3rem;
  line-height: 1.5;
}

.product-details,
.aminogenix-loop-card .product-details,
.flagship-carousel-track .product-details {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.9rem !important;
  min-height: 6.45rem !important;
}

.product-details span,
.aminogenix-loop-card .product-details span,
.flagship-carousel-track .product-details span {
  display: grid !important;
  align-content: start;
  gap: 0.16rem;
  min-width: 0;
  padding-top: 0.66rem !important;
  line-height: 1.14;
}

.product-details strong,
.aminogenix-loop-card .product-details strong,
.flagship-carousel-track .product-details strong {
  display: block;
  min-width: 0;
  line-height: 1.22;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.product-bottom,
.aminogenix-loop-card .product-bottom,
.flagship-carousel-track .product-bottom {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(10.35rem, 10.35rem);
  align-items: end;
  gap: 0.82rem !important;
  min-height: 0 !important;
  margin-top: auto;
}

.product-price,
.aminogenix-loop-card .product-price,
.flagship-carousel-track .product-price {
  display: grid !important;
  align-content: end;
  gap: 0.18rem;
  min-height: 0 !important;
}

.product-price span,
.aminogenix-loop-card .product-price span,
.flagship-carousel-track .product-price span {
  font-size: 0.71rem !important;
  letter-spacing: 0.16em;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.product-price strong {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.18rem 0.36rem;
  min-height: 0 !important;
  margin: 0 !important;
  line-height: 1.08;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-size: 1.06rem;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount,
.woocommerce-page ul.products li.product .price .woocommerce-Price-amount,
.product-price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price .woocommerce-Price-amount bdi,
.woocommerce-page ul.products li.product .price .woocommerce-Price-amount bdi,
.product-price .woocommerce-Price-amount bdi {
  display: inline-block;
  white-space: nowrap;
}

.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product > a.added_to_cart,
.woocommerce-page ul.products li.product > a.button,
.woocommerce-page ul.products li.product > a.added_to_cart,
.product-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.02rem;
  padding-inline: 0.95rem;
  text-align: center;
  line-height: 1.02;
  white-space: nowrap;
}

.flagship-carousel-track {
  --carousel-gap: 1.2rem;
}

.flagship-carousel-track > [data-carousel-item] {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  width: calc((100% - (var(--carousel-gap) * 2)) / 3);
  min-width: 0;
}

@media (max-width: 1320px) {
  .flagship-carousel-track > [data-carousel-item] {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
    width: calc((100% - var(--carousel-gap)) / 2);
  }
}

@media (max-width: 980px) {
  .woocommerce ul.products li.product.aminogenix-loop-card,
  .woocommerce-page ul.products li.product.aminogenix-loop-card,
  .product-grid .product-card,
  .flagship-carousel-track .product-card {
    padding: 0.96rem;
  }

  .woocommerce ul.products li.product.aminogenix-loop-card h3,
  .woocommerce-page ul.products li.product.aminogenix-loop-card h3,
  .product-grid .product-card h3 {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
  }

  .flagship-carousel-track .product-card h3 {
    font-size: clamp(1rem, 1.85vw, 1.16rem);
  }
}

@media (max-width: 820px) {
  .woocommerce ul.products li.product.aminogenix-loop-card,
  .woocommerce-page ul.products li.product.aminogenix-loop-card,
  .product-grid .product-card,
  .flagship-carousel-track .product-card {
    padding: 0.92rem;
  }

  .flagship-carousel-track > [data-carousel-item] {
    flex-basis: 100%;
    width: 100%;
  }

  .woocommerce ul.products li.product.aminogenix-loop-card .product-media,
  .woocommerce-page ul.products li.product.aminogenix-loop-card .product-media,
  .product-grid .product-media,
  .flagship-carousel-track .product-media {
    aspect-ratio: 1 / 0.82;
  }

  .product-meta-row {
    gap: 0.55rem;
  }

  .product-code {
    max-width: 9.5ch;
    font-size: 0.68rem;
  }

  .product-card h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .aminogenix-loop-card h3 {
    min-height: 3.24em;
    max-height: 3.24em;
    font-size: clamp(1.08rem, 4.8vw, 1.24rem);
  }

  .product-card p,
  .aminogenix-loop-card__excerpt,
  .flagship-carousel-track .product-card p {
    min-height: 2.9rem;
    max-height: 2.9rem;
    font-size: 0.9rem;
  }

  .product-details,
  .aminogenix-loop-card .product-details,
  .flagship-carousel-track .product-details {
    min-height: 6.2rem !important;
    gap: 0.68rem 0.82rem !important;
  }

  .product-bottom,
  .aminogenix-loop-card .product-bottom,
  .flagship-carousel-track .product-bottom {
    grid-template-columns: 1fr;
    gap: 0.72rem !important;
  }
}

@media (max-width: 420px) {
  .product-meta-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .product-code {
    max-width: none;
    text-align: left;
  }

  .product-card h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .aminogenix-loop-card h3 {
    font-size: 1.06rem;
  }
}

/* Version 1.5.0: launch polish for SEO-supporting UX, checkout confidence, and account flow */

.woocommerce-notices-wrapper,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password {
  margin-bottom: 1.25rem;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border: 1px solid rgba(13, 91, 151, 0.12);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.9)),
    var(--white);
  box-shadow: 0 14px 36px rgba(13, 91, 151, 0.08);
  color: #183b67;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  color: #295684;
}

.commerce-note {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(34, 207, 193, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 249, 252, 0.92));
  box-shadow: 0 20px 48px rgba(8, 19, 30, 0.08);
}

.commerce-note > div {
  display: grid;
  gap: 0.28rem;
}

.commerce-note h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 0.98;
}

.commerce-note p:last-child {
  margin: 0;
  max-width: 52rem;
  line-height: 1.65;
  color: #46667f;
}

.commerce-note a {
  color: #183b67;
  font-weight: 700;
}

.woocommerce div.product .woocommerce-product-rating,
.woocommerce div.product .stock,
.woocommerce div.product .woocommerce-review-link {
  color: #557892;
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
  color: #4b6b83;
  line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content .commerce-note + p {
  margin-top: 0.2rem;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password,
.woocommerce form.checkout_coupon {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: rgba(255, 250, 245, 0.84);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.woocommerce #customer_details .form-row label,
.woocommerce form.login .form-row label,
.woocommerce form.register .form-row label,
.woocommerce form.lost_reset_password .form-row label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f8da7;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  border: 1px solid rgba(13, 91, 151, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.woocommerce-checkout #payment,
.woocommerce-checkout-review-order-table,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
  border: 1px solid rgba(13, 91, 151, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 1rem;
  background: rgba(244, 251, 253, 0.88);
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout-review-order h3,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  text-wrap: balance;
}

@media (max-width: 820px) {
  .commerce-note {
    padding: 1.05rem 1rem;
    border-radius: 1.35rem;
  }

  .commerce-note h2 {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }
}

/* Version 2.0.0: Elevate Labs dark biotech overrides */

:root {
  --bg: #05080d;
  --bg-soft: #0c131c;
  --bg-mist: #101924;
  --ink: #f3f8ff;
  --muted: #92a5b8;
  --line: rgba(158, 197, 227, 0.14);
  --line-strong: rgba(158, 197, 227, 0.22);
  --white: #f7fbff;
  --accent: #54ddff;
  --accent-deep: #0f9ec8;
  --cool: #7fbad3;
  --hero-base: #061018;
  --hero-mid: #0d1f2b;
  --hero-glow: rgba(84, 221, 255, 0.28);
  --shadow-soft: 0 28px 84px rgba(0, 0, 0, 0.42);
  --shadow-deep: 0 48px 140px rgba(0, 0, 0, 0.56);
  --content-max: 1320px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(84, 221, 255, 0.12), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(44, 102, 154, 0.2), transparent 28%),
    linear-gradient(180deg, #05080d 0%, #071018 38%, #0a121b 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(154, 196, 228, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 196, 228, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-brand,
.brand-lockup strong,
.brand-lockup small,
.footer-brand,
.wc-shell-title,
.product-card h3,
.faq-category h2,
.mini-cart-title {
  font-family: "Space Grotesk", sans-serif;
}

.site-trust-bar {
  width: min(calc(100% - 2rem), var(--content-max));
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 17, 26, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.site-trust-bar span {
  color: #d6eefb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header,
.signal-bar,
.section,
.final-cta,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-max));
}

.site-header {
  top: 1rem;
  margin-top: 0.95rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  background: rgba(8, 14, 22, 0.84);
  box-shadow: var(--shadow-soft);
}

.admin-bar .site-header {
  top: 46px;
}

.brand-mark,
.footer-logo-mark .brand-mark {
  background:
    linear-gradient(140deg, rgba(84, 221, 255, 0.95), rgba(18, 63, 92, 0.95)),
    var(--hero-base);
  box-shadow: 0 18px 48px rgba(84, 221, 255, 0.18);
}

.brand-lockup small,
.site-nav,
.header-actions,
.footer-kicker,
.footer-note {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #dff7ff;
}

.account-button,
.cart-button,
.faq-category details,
.contact-cta__line,
.coa-card,
.single-product-note,
.info-card,
.statement-panel,
.feature-list article,
.checklist-card,
.proof-table,
.assay-panel,
.stack-panel,
.stack-tab,
.site-cart-panel,
.commerce-note,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password,
.woocommerce form.checkout_coupon,
.woocommerce-checkout #payment,
.woocommerce-checkout-review-order-table,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce ul.products li.product.aminogenix-loop-card,
.woocommerce-page ul.products li.product.aminogenix-loop-card,
.single-product .product .summary,
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .product_meta {
  background: linear-gradient(180deg, rgba(10, 18, 27, 0.94), rgba(7, 13, 20, 0.9));
  border-color: rgba(158, 197, 227, 0.14);
  box-shadow: var(--shadow-soft);
}

.section-cream,
.section-mist,
.page-shell,
.wc-content,
.page-template-shell,
.page .section {
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.82), rgba(6, 10, 16, 0.76));
  border: 1px solid rgba(158, 197, 227, 0.12);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.section-dark,
.contact-cta,
.site-footer {
  background:
    radial-gradient(circle at top right, rgba(84, 221, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.96), rgba(6, 10, 16, 0.96));
  border: 1px solid rgba(158, 197, 227, 0.12);
  border-radius: 2rem;
}

.hero {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(158, 197, 227, 0.12);
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(84, 221, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(6, 16, 24, 0.96), rgba(9, 18, 28, 0.88));
  box-shadow: var(--shadow-deep);
}

.hero-brand {
  color: #ffffff;
  letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.page-banner h1,
.statement-panel h2,
.contact-cta h2,
.process-copy h2,
.faq-category h2,
.single-product-note h3,
.coa-card h3 {
  color: #f7fbff;
  text-wrap: balance;
}

.hero-lede,
.section-heading p,
.page-banner p,
.statement-panel p,
.process-copy p,
.feature-copy p,
.info-card p,
.product-card p,
.faq-list p,
.faq-category p,
.coa-card p,
.contact-cta p,
.footer-brand-copy p {
  color: #a7bbcd;
}

.eyebrow,
.footer-kicker,
.product-meta,
.assay-kicker,
.site-cart-panel__kicker {
  color: #8ee9ff;
  letter-spacing: 0.16em;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button {
  border-radius: 999px;
  border: 1px solid rgba(84, 221, 255, 0.16);
  background: linear-gradient(135deg, #54ddff 0%, #0e88a8 100%);
  color: #041018;
  box-shadow: 0 18px 40px rgba(84, 221, 255, 0.18);
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.checkout-button:hover {
  background: linear-gradient(135deg, #7ce7ff 0%, #1aaed6 100%);
  color: #041018;
}

.button-secondary,
.button-outline-light,
.product-action.product_type_variable,
.product-action.product_type_simple {
  background: rgba(255, 255, 255, 0.03);
  color: #e7f7ff;
}

.signal-bar {
  gap: 1rem;
}

.signal-bar article,
.proof-row,
.assay-panel,
.info-card,
.feature-list article,
.checklist-card,
.coa-card,
.single-product-note {
  border-radius: 1.6rem;
}

.proof-row-head {
  color: #f6fbff;
}

.assay-bar {
  background: rgba(255, 255, 255, 0.08);
}

.assay-bar span,
.specimen-fill,
.scan-line,
.visual-chip strong,
.cart-count {
  background: linear-gradient(135deg, #8ee9ff, #1ba9cf);
  color: #041018;
}

.product-card,
.aminogenix-loop-card {
  border: 1px solid rgba(158, 197, 227, 0.12);
  background: linear-gradient(180deg, rgba(10, 18, 27, 0.96), rgba(7, 13, 20, 0.9));
}

.product-media,
.aminogenix-loop-card .product-media,
.aminogenix-loop-card .product-media img {
  background: linear-gradient(180deg, rgba(17, 34, 47, 0.85), rgba(8, 15, 23, 0.94));
}

.product-details span,
.product-price span,
.mini-cart-pill span {
  color: #88a1b5;
}

.product-details strong,
.product-price strong,
.mini-cart-pill strong,
.footer-brand,
.contact-cta__line strong {
  color: #f7fbff;
}

.stack-tab {
  color: #d4ebf8;
}

.stack-tab.is-active,
.coa-filter-row button.is-active {
  border-color: rgba(84, 221, 255, 0.24);
  background: linear-gradient(135deg, rgba(84, 221, 255, 0.18), rgba(84, 221, 255, 0.06));
  color: #f7fbff;
}

.stack-panel,
.spec-sheet,
.site-cart-panel,
.contact-cta__line,
.coa-card,
.single-product-note {
  backdrop-filter: blur(12px);
}

.faq-category details,
.faq-list details {
  background: rgba(12, 20, 30, 0.88);
  border-color: rgba(158, 197, 227, 0.12);
}

.faq-category summary,
.faq-list summary,
.site-nav a,
.footer-nav a {
  color: #f5fbff;
}

.page-banner,
.statement-panel,
.shop-shortcode-shell,
.split-panel,
.proof-layout,
.stacks-layout,
.process-layout,
.faq-shell {
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.coa-toolbar {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.coa-search {
  display: grid;
  gap: 0.5rem;
  color: #d5edf9;
  font-size: 0.9rem;
}

.coa-search input {
  min-height: 3.4rem;
  padding: 0 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(158, 197, 227, 0.14);
  background: rgba(8, 14, 22, 0.88);
  color: #f7fbff;
}

.coa-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.coa-filter-row button {
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid rgba(158, 197, 227, 0.14);
  border-radius: 999px;
  background: rgba(8, 14, 22, 0.84);
  color: #d8eef9;
}

.coa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.coa-card .button {
  width: fit-content;
}

.site-footer {
  padding: 2rem;
}

.footer-nav {
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav-secondary {
  margin-top: 0.75rem;
}

.footer-note-contact a {
  color: #8ee9ff;
}

.product-trust-strip,
.single-product-notes {
  display: grid;
  gap: 1rem;
}

.product-trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem 0 0.75rem;
}

.product-trust-strip span {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(158, 197, 227, 0.12);
  background: rgba(7, 13, 20, 0.86);
  color: #d9eef9;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-product-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.single-product-note {
  padding: 1.35rem;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background: rgba(8, 14, 22, 0.92);
  border-color: rgba(158, 197, 227, 0.16);
  color: #f5fbff;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table,
.woocommerce-cart .cart-collaterals .cart_totals {
  color: #d8edf8;
}

.woocommerce-cart table.cart img,
.woocommerce table.shop_table td.product-thumbnail img {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.site-cart-panel__content .woocommerce-mini-cart__buttons .button,
.site-cart-panel__content .woocommerce-mini-cart__buttons .checkout {
  width: 100%;
}

.contact-cta__actions,
.hero-actions,
.page-actions {
  gap: 0.85rem;
}

.index-card,
.empty-state {
  background: rgba(8, 14, 22, 0.86);
}

@media (max-width: 1100px) {
  .coa-grid,
  .single-product-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-trust-bar {
    justify-content: flex-start;
    border-radius: 1.2rem;
  }

  .site-header {
    top: 0.65rem;
  }

  .hero,
  .section-cream,
  .section-mist,
  .section-dark,
  .page-shell,
  .contact-cta,
  .site-footer {
    border-radius: 1.5rem;
  }

  .coa-grid,
  .single-product-notes {
    grid-template-columns: 1fr;
  }
}

/* Version 2.1.0: BioPulse-aligned refinements */

.site-trust-bar {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.8rem 1.2rem;
  justify-content: center;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(7, 12, 18, 0.96);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.site-trust-bar span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.site-header,
.hero-biopulse-foundation,
.signal-bar,
main#top > .section,
.site-footer {
  width: min(calc(100% - 2rem), 1180px);
}

.site-header {
  top: 0.9rem;
  margin-top: 0.9rem;
  padding: 1rem 1.35rem;
  border-radius: 1.2rem;
  background: rgba(7, 12, 18, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.hero-biopulse-foundation {
  position: relative;
  margin: 1.1rem auto 0;
  min-height: clamp(460px, 72vh, 620px);
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.4rem, 4vw, 3rem);
  text-align: center;
  border-radius: 1.7rem;
  border: 1px solid rgba(158, 197, 227, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(84, 221, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 13, 20, 0.97), rgba(9, 17, 26, 0.93));
  overflow: hidden;
}

.hero-biopulse-foundation::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 50%;
  width: min(520px, 72vw);
  height: min(520px, 72vw);
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(84, 221, 255, 0.16) 0%, rgba(84, 221, 255, 0.04) 38%, transparent 70%);
  pointer-events: none;
}

.hero-copy-centered {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
}

.hero-copy-centered .eyebrow {
  justify-content: center;
}

.hero-copy-centered h1 {
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-subheadline {
  margin-top: 0.9rem;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: #d8eef8;
}

.hero-lede {
  width: min(100%, 640px);
  margin: 1rem auto 0;
}

.hero-actions {
  justify-content: center;
  margin-top: 1.7rem;
}

.signal-bar-four {
  margin: 1rem auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.signal-bar-four article {
  min-height: 100%;
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(158, 197, 227, 0.12);
  border-radius: 1.15rem;
  background: rgba(8, 14, 22, 0.9);
}

.signal-bar-four article span {
  display: block;
  margin-bottom: 0.4rem;
  color: #86e2f8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-bar-four article strong {
  display: block;
  color: #f5fbff;
  font-size: 0.97rem;
  line-height: 1.5;
}

main#top > .section {
  margin: 1rem auto 0;
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border-radius: 1.5rem;
}

.section-heading-compact {
  align-items: end;
}

.section-heading-compact > p {
  max-width: 36rem;
}

.split-panel,
.page-banner,
.shop-shortcode-shell,
.faq-list,
.page-actions,
.info-grid {
  position: relative;
  z-index: 1;
}

.elevate-home-grid,
.elevate-fallback-grid,
.woocommerce ul.products {
  gap: 1rem;
}

.elevate-fallback-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products li.product.aminogenix-loop-card,
.elevate-fallback-grid .product-card {
  border-radius: 1.2rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products li.product.aminogenix-loop-card:hover,
.elevate-fallback-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 221, 255, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.aminogenix-archive-intro,
.page-banner {
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(158, 197, 227, 0.12);
}

.aminogenix-archive-nav {
  margin: 1.1rem 0 1.5rem;
}

.aminogenix-archive-toolbar {
  margin-bottom: 1rem;
}

.shop-page-panel,
.statement-panel {
  border-radius: 1.25rem;
}

.elevate-final-cta {
  display: grid;
  gap: 1.2rem;
}

.elevate-final-cta .page-actions {
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .signal-bar-four,
  .elevate-fallback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-trust-bar {
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0;
  }

  .site-header,
  .hero-biopulse-foundation,
  .signal-bar,
  main#top > .section,
  .site-footer {
    width: min(calc(100% - 1.2rem), 1180px);
  }

  .site-header {
    top: 0.55rem;
    padding: 0.9rem 1rem;
  }

  .hero-biopulse-foundation {
    min-height: auto;
    padding: 3.4rem 1.1rem;
    border-radius: 1.3rem;
  }

  .signal-bar-four,
  .elevate-fallback-grid {
    grid-template-columns: 1fr;
  }

  .elevate-final-cta .page-actions {
    justify-content: stretch;
  }
}

/* Version 2.2.0: premium contrast and homepage card polish */

body {
  color: #eef7ff;
}

body .section-heading p,
body .page-banner p,
body .feature-copy p,
body .info-card p,
body .statement-panel p,
body .checklist-card li,
body .faq-list p,
body .coa-card p,
body .footer-brand-copy p,
body .footer-note,
body .woocommerce div.product .woocommerce-product-details__short-description,
body .woocommerce div.product .woocommerce-product-details__short-description p,
body .woocommerce table.shop_table td,
body .woocommerce table.shop_table th,
body .woocommerce form .form-row label,
body .woocommerce .form-row label {
  color: #d0dfeb !important;
}

body .site-nav a,
body .footer-nav a,
body .faq-list summary,
body .faq-category summary,
body .account-button,
body .account-button__label,
body .cart-button,
body .cart-button:visited,
body .aminogenix-loop-card__title-link,
body .product-card h3 a {
  color: #f8fcff !important;
}

body .eyebrow,
body .product-meta,
body .footer-kicker,
body .product-price span,
body .product-details span,
body .site-cart-panel__kicker,
body .mini-cart-pill span {
  color: #98e8fb !important;
}

body .section-cream,
body .section-mist,
body .section-dark,
body .info-card,
body .checklist-card,
body .statement-panel,
body .faq-list details,
body .coa-card,
body .single-product-note {
  border-color: rgba(150, 206, 236, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

body .site-trust-bar {
  border-bottom-color: rgba(150, 206, 236, 0.16);
  background:
    linear-gradient(90deg, rgba(8, 15, 22, 0.98), rgba(10, 17, 26, 0.98)),
    radial-gradient(circle at center, rgba(84, 221, 255, 0.08), transparent 60%);
}

body .site-trust-bar span {
  color: #f2fbff;
  text-shadow: 0 0 24px rgba(84, 221, 255, 0.16);
}

body .signal-bar-four article {
  position: relative;
  padding: 1.35rem 1.25rem 1.45rem;
  border-color: rgba(145, 204, 236, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 19, 29, 0.98), rgba(7, 13, 20, 0.94));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

body .signal-bar-four article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(84, 221, 255, 0.95), rgba(84, 221, 255, 0));
}

body .signal-bar-four article::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(84, 221, 255, 0.18), transparent 68%);
  pointer-events: none;
}

body .signal-bar-four article span {
  position: relative;
  margin-bottom: 0.55rem;
  color: #8ee9ff;
}

body .signal-bar-four article strong {
  position: relative;
  color: #f8fdff;
  font-size: 1rem;
  line-height: 1.55;
}

body #catalog .woocommerce ul.products li.product.aminogenix-loop-card,
body #catalog .woocommerce-page ul.products li.product.aminogenix-loop-card,
body #catalog .elevate-fallback-grid .product-card {
  display: grid !important;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  gap: 0.9rem !important;
  padding: 1rem !important;
  border: 1px solid rgba(150, 206, 236, 0.16) !important;
  border-radius: 1.3rem !important;
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.98), rgba(7, 13, 20, 0.96)) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

body #catalog .woocommerce ul.products li.product.aminogenix-loop-card:hover,
body #catalog .woocommerce-page ul.products li.product.aminogenix-loop-card:hover,
body #catalog .elevate-fallback-grid .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(84, 221, 255, 0.3) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

body #catalog .product-media {
  position: relative;
  display: block !important;
  aspect-ratio: 1 / 0.8 !important;
  padding: 1rem;
  border: 1px solid rgba(150, 206, 236, 0.14);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 50% 8%, rgba(84, 221, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(11, 20, 31, 0.98), rgba(8, 15, 24, 0.96));
  overflow: hidden;
}

body #catalog .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

body #catalog .product-media img,
body #catalog .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3rem;
  border-radius: 0.9rem;
  background: rgba(8, 14, 22, 0.72);
}

body #catalog .product-card-image.is-elevate-placeholder {
  object-fit: contain;
  padding: 0.55rem;
  background: rgba(6, 11, 18, 0.88);
}

body #catalog .product-meta {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(84, 221, 255, 0.16);
  border-radius: 999px;
  background: rgba(84, 221, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body #catalog .product-card h3,
body #catalog .aminogenix-loop-card h3 {
  min-height: auto;
  max-height: none;
  -webkit-line-clamp: 2;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body #catalog .aminogenix-loop-card__excerpt,
body #catalog .elevate-fallback-grid .product-card > p {
  min-height: 3.8rem;
  max-height: none;
  -webkit-line-clamp: 3;
  color: #d8e6f2 !important;
  font-size: 0.96rem;
  line-height: 1.58;
}

body #catalog .product-card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body #catalog .product-card-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.62rem;
  border: 1px solid rgba(150, 206, 236, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #edf9ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body #catalog .product-details {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.65rem !important;
  min-height: auto !important;
}

body #catalog .product-details span {
  padding: 0.78rem 0.82rem !important;
  border: 1px solid rgba(150, 206, 236, 0.14);
  border-radius: 0.95rem;
  background: rgba(8, 14, 22, 0.88);
  gap: 0.2rem;
  font-size: 0.76rem;
  line-height: 1.18;
}

body #catalog .product-details strong {
  color: #f8fdff !important;
  font-size: 0.92rem;
}

body #catalog .product-bottom {
  grid-template-columns: 1fr !important;
  gap: 0.8rem !important;
  align-items: stretch !important;
}

body #catalog .product-price {
  gap: 0.25rem;
}

body #catalog .product-price strong,
body #catalog .woocommerce ul.products li.product .price {
  color: #ffffff !important;
  font-size: 1.45rem;
  line-height: 1;
}

body #catalog .product-action,
body #catalog .woocommerce ul.products li.product .button.product-action {
  display: inline-flex;
  width: 100%;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body .faq-list details:hover,
body .info-card:hover,
body .coa-card:hover {
  border-color: rgba(84, 221, 255, 0.22);
}

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

@media (max-width: 820px) {
  body #catalog .product-details {
    grid-template-columns: 1fr !important;
  }

  body #catalog .aminogenix-loop-card__excerpt,
  body #catalog .elevate-fallback-grid .product-card > p {
    min-height: 0;
  }
}

/* Version 2.3.0: final premium authority overrides */

:root {
  --header-offset: 0.75rem;
  --glass-bg: rgba(9, 14, 22, 0.82);
  --glass-line: rgba(162, 209, 235, 0.14);
  --surface-strong: rgba(10, 17, 26, 0.94);
  --surface-soft: rgba(12, 20, 31, 0.9);
  --text-strong: #f7fbff;
  --text-body: #d2e1ec;
  --text-soft: #9ab2c4;
  --cyan: #86e7ff;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-strong);
  background:
    radial-gradient(circle at 12% 0%, rgba(84, 221, 255, 0.12), transparent 20%),
    radial-gradient(circle at 88% 0%, rgba(44, 102, 154, 0.18), transparent 22%),
    linear-gradient(180deg, #04070b 0%, #071018 36%, #09131d 100%);
}

body::before {
  opacity: 0.55;
}

.site-trust-bar {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.72rem 1rem;
  border-bottom: 1px solid var(--glass-line);
  border-radius: 0;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(90deg, rgba(7, 11, 17, 0.98), rgba(11, 17, 26, 0.98));
  box-shadow: none;
}

.site-trust-bar span {
  color: #effbff !important;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky !important;
  top: var(--header-offset) !important;
  z-index: 120 !important;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), 1200px);
  margin: 0.85rem auto 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(162, 209, 235, 0.13);
  border-radius: 1.15rem;
  background: rgba(8, 13, 21, 0.8);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
body.header-scrolled .site-header {
  padding: 0.72rem 0.95rem;
  background: rgba(7, 12, 18, 0.92);
  border-color: rgba(134, 231, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.admin-bar .site-header {
  top: calc(var(--header-offset) + 32px) !important;
}

.site-branding {
  min-width: 0;
}

.site-nav {
  justify-self: center;
}

.site-nav-list {
  gap: 1.2rem;
}

.site-header .site-nav a {
  color: var(--text-strong) !important;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: var(--cyan) !important;
}

.header-actions {
  gap: 0.7rem;
}

.account-button,
.cart-button {
  min-height: 2.8rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(162, 209, 235, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
}

.nav-toggle {
  border-color: rgba(162, 209, 235, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.hero-biopulse-foundation,
.signal-bar,
main#top > .section,
.site-footer {
  width: min(calc(100% - 2rem), 1200px);
}

.hero-biopulse-foundation {
  min-height: clamp(420px, 70svh, 600px);
  padding: clamp(3.4rem, 7vw, 5.8rem) clamp(1.4rem, 4vw, 2.7rem);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(84, 221, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.96), rgba(9, 16, 25, 0.92));
}

.hero-copy-centered {
  width: min(100%, 760px);
}

.hero-copy-centered h1 {
  font-size: clamp(2.85rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-subheadline {
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  color: #e3f5fd;
}

.hero-lede {
  width: min(100%, 650px);
  color: var(--text-body);
}

.hero-actions {
  margin-top: 1.5rem;
}

.signal-bar-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.signal-bar-four article,
.info-card,
.coa-card,
.statement-panel,
.single-product-note,
.faq-list details,
.faq-category details {
  position: relative;
  overflow: hidden;
}

.signal-bar-four article::after,
.info-card::after,
.coa-card::after,
.statement-panel::after,
.single-product-note::after,
.faq-list details::after,
.faq-category details::after,
.aminogenix-loop-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(134, 231, 255, 0.11), transparent 45%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.signal-bar-four article:hover::after,
.info-card:hover::after,
.coa-card:hover::after,
.statement-panel:hover::after,
.single-product-note:hover::after,
.faq-list details:hover::after,
.faq-category details:hover::after,
.aminogenix-loop-card:hover::after,
.product-card:hover::after {
  opacity: 1;
}

.signal-bar-four article {
  min-height: 0;
  padding: 1.15rem 1.05rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(162, 209, 235, 0.14);
  background: linear-gradient(180deg, rgba(10, 17, 25, 0.98), rgba(8, 13, 20, 0.95));
}

.signal-bar-four article span {
  margin-bottom: 0.45rem;
  color: var(--cyan) !important;
  font-size: 0.72rem;
}

.signal-bar-four article strong {
  color: var(--text-strong);
  font-size: 0.96rem;
  line-height: 1.5;
}

main#top > .section {
  margin-top: 0.95rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: 1.4rem;
}

.section-heading-compact {
  align-items: end;
  gap: 1rem;
}

.section-heading h2,
.page-banner .wc-shell-title,
.statement-panel h2,
.single-product-note h3 {
  color: var(--text-strong);
}

.section-heading p,
.page-banner > p,
.feature-copy p,
.info-card p,
.statement-panel p,
.faq-list p,
.faq-category p,
.single-product-note p,
.footer-brand-copy p,
.footer-note {
  color: var(--text-body) !important;
}

.home-collection-shell {
  margin: 1.25rem 0 1.1rem;
}

.home-collection-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 240px);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.home-collection-rail::-webkit-scrollbar {
  display: none;
}

.collection-pill {
  display: grid;
  gap: 0.25rem;
  min-height: 6rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(162, 209, 235, 0.14);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(9, 16, 24, 0.96), rgba(8, 13, 20, 0.92));
  color: var(--text-strong);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collection-pill span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-pill strong {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.collection-pill:hover,
.collection-pill:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(134, 231, 255, 0.24);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.section-showcase {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.1rem;
}

.showcase-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 28rem;
  padding: 1.35rem;
  border: 1px solid rgba(162, 209, 235, 0.14);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(84, 221, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(11, 18, 27, 0.98), rgba(8, 13, 20, 0.94));
  overflow: hidden;
}

.showcase-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(134, 231, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.showcase-tile:hover::after {
  opacity: 1;
}

.showcase-tile-primary {
  min-height: 31rem;
}

.showcase-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.showcase-copy h3 {
  color: var(--text-strong);
  font-size: clamp(1.4rem, 2vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.showcase-tile-primary .showcase-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
}

.showcase-copy p:last-of-type {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.58;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.text-link-bright {
  color: #f3fbff;
}

.showcase-media {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 14rem;
  padding-top: 1rem;
  text-decoration: none;
}

.showcase-media::before {
  content: "";
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 38%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(84, 221, 255, 0.18), transparent 65%);
  filter: blur(18px);
  pointer-events: none;
}

.showcase-image {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  max-height: 280px;
  object-fit: contain;
}

.showcase-tile-primary .showcase-image {
  width: min(100%, 460px);
  max-height: 340px;
}

.woocommerce ul.products,
.woocommerce-page ul.products,
.elevate-home-grid,
.elevate-fallback-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.woocommerce ul.products.columns-4::before,
.woocommerce ul.products.columns-4::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product.aminogenix-loop-card,
.woocommerce-page ul.products li.product.aminogenix-loop-card,
.product-grid .product-card,
.flagship-carousel-track .product-card,
.elevate-fallback-grid .product-card {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  display: grid !important;
  grid-template-rows: auto auto auto auto auto !important;
  gap: 0.72rem !important;
  padding: 0.88rem !important;
  border: 1px solid rgba(162, 209, 235, 0.14) !important;
  border-radius: 1.15rem !important;
  background: linear-gradient(180deg, rgba(9, 16, 24, 0.98), rgba(8, 13, 20, 0.95)) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.woocommerce ul.products li.product.aminogenix-loop-card:hover,
.woocommerce-page ul.products li.product.aminogenix-loop-card:hover,
.product-grid .product-card:hover,
.elevate-fallback-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(134, 231, 255, 0.24) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.woocommerce ul.products li.product.aminogenix-loop-card .product-media,
.woocommerce-page ul.products li.product.aminogenix-loop-card .product-media,
.product-grid .product-media,
.flagship-carousel-track .product-media,
.elevate-fallback-grid .product-media {
  aspect-ratio: 1 / 0.72 !important;
  padding: 0.8rem !important;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 50% 6%, rgba(84, 221, 255, 0.13), transparent 35%),
    linear-gradient(180deg, rgba(10, 18, 28, 0.98), rgba(8, 14, 22, 0.96));
}

.product-card-image,
.woocommerce ul.products li.product.aminogenix-loop-card .product-media img,
.woocommerce-page ul.products li.product.aminogenix-loop-card .product-media img,
.elevate-fallback-grid .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 0 !important;
  border-radius: 0.7rem;
}

.product-top,
.product-heading {
  gap: 0.4rem !important;
}

.product-meta-row {
  display: flex;
}

.product-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.75rem;
  padding: 0.22rem 0.58rem !important;
  border: 1px solid rgba(134, 231, 255, 0.16);
  border-radius: 999px;
  background: rgba(84, 221, 255, 0.08);
  color: var(--cyan) !important;
  font-size: 0.63rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3,
.aminogenix-loop-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 0 !important;
  max-height: none !important;
  -webkit-line-clamp: 2 !important;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em;
}

.aminogenix-loop-card__title-link,
.product-card h3 a {
  color: var(--text-strong) !important;
}

.aminogenix-loop-card__excerpt,
.product-card p {
  min-height: 0 !important;
  max-height: none !important;
  -webkit-line-clamp: 2 !important;
  color: var(--text-body) !important;
  font-size: 0.88rem !important;
  line-height: 1.52 !important;
}

.product-card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #edf9ff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.22rem 0.56rem;
  border-radius: 999px;
  background: rgba(134, 231, 255, 0.07);
  color: #dff7ff;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-bottom,
.aminogenix-loop-card .product-bottom,
.flagship-carousel-track .product-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) !important;
  gap: 0.7rem !important;
  align-items: end !important;
  margin-top: 0.1rem;
}

.product-price {
  gap: 0.16rem !important;
}

.product-price span {
  color: var(--text-soft) !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-price strong,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: var(--text-strong) !important;
  font-size: 1.18rem !important;
  line-height: 1 !important;
}

.product-actions-stack {
  display: grid;
  gap: 0.35rem;
}

.product-secondary-link {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-secondary-link:hover,
.product-secondary-link:focus-visible {
  color: #e7fcff;
}

.product-action,
.woocommerce ul.products li.product .button.product-action {
  width: 100%;
  min-height: 2.75rem !important;
  justify-content: center;
  font-size: 0.84rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-banner,
.statement-panel {
  border-radius: 1.2rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 17, 26, 0.92), rgba(8, 13, 20, 0.84));
}

.page-banner {
  padding: 0 0 1.25rem;
}

.info-grid {
  gap: 0.95rem;
}

.info-card,
.coa-card,
.faq-list details,
.faq-category details,
.single-product-note,
.statement-panel {
  border-radius: 1.15rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  background: linear-gradient(180deg, rgba(10, 17, 26, 0.95), rgba(8, 13, 20, 0.9));
}

.faq-list summary,
.faq-category summary {
  color: var(--text-strong) !important;
  font-size: 1rem;
  font-weight: 700;
}

.product-trust-strip span {
  background: rgba(9, 16, 24, 0.86);
  color: #e9fbff;
}

.single-product .product .summary,
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .product_meta,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order-table,
.woocommerce-checkout #payment,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password,
.commerce-note,
.site-cart-panel {
  border-radius: 1.2rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  background: linear-gradient(180deg, rgba(10, 17, 26, 0.95), rgba(8, 13, 20, 0.9));
}

.site-footer {
  display: grid;
  gap: 1.2rem;
  padding: 1.8rem;
  border-radius: 1.4rem;
}

.footer-brand-copy p,
.footer-note {
  max-width: 54rem;
}

@media (max-width: 1180px) {
  .signal-bar-four,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .elevate-home-grid,
  .elevate-fallback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-tile-primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    justify-self: end;
  }

  .signal-bar-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-bottom,
  .aminogenix-loop-card .product-bottom,
  .flagship-carousel-track .product-bottom {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }
}

@media (max-width: 820px) {
  .site-trust-bar {
    padding: 0.62rem 0.75rem;
    gap: 0.6rem;
  }

  .site-header,
  .hero-biopulse-foundation,
  .signal-bar,
  main#top > .section,
  .site-footer {
    width: min(calc(100% - 1rem), 1200px);
  }

  .admin-bar .site-header {
    top: calc(var(--header-offset) + 46px) !important;
  }

  .site-header {
    top: 0.5rem !important;
    grid-template-columns: auto auto;
    padding: 0.8rem 0.85rem;
    gap: 0.75rem;
  }

  .hero-biopulse-foundation {
    min-height: auto;
    padding: 3rem 1rem;
    border-radius: 1.2rem;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .signal-bar-four {
    grid-template-columns: 1fr !important;
  }

  .home-collection-rail {
    grid-auto-columns: minmax(210px, 84vw);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-tile,
  .showcase-tile-primary {
    min-height: 24rem;
    padding: 1.05rem;
  }

  .showcase-media {
    min-height: 11rem;
  }

  .site-footer {
    padding: 1.3rem;
  }
}

@media (max-width: 900px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .elevate-home-grid,
  .elevate-fallback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .elevate-home-grid,
  .elevate-fallback-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Version 2.4.0: homepage system cleanup and premium readability pass */
body .site-trust-bar {
  padding: 0.62rem 1rem;
  border: 1px solid rgba(134, 231, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 17, 26, 0.9), rgba(8, 14, 20, 0.88)),
    radial-gradient(circle at top, rgba(82, 212, 255, 0.12), transparent 48%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

body .site-trust-bar span {
  color: #edf8ff !important;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body .site-header {
  grid-template-columns: minmax(0, 16.5rem) minmax(0, 1fr) auto !important;
  gap: 1.2rem;
  padding: 0.98rem 1.2rem;
  border-color: rgba(162, 209, 235, 0.16);
  background: rgba(7, 12, 19, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

body .site-header.is-scrolled,
body.header-scrolled .site-header {
  background: rgba(6, 11, 18, 0.96);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
}

body .site-branding {
  min-width: 0;
  max-width: 16.5rem;
  overflow: visible;
}

body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image {
  display: block;
  width: min(100%, 16.5rem);
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  display: block;
  width: 100% !important;
  max-width: 16.5rem !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
}

body .site-header .site-nav {
  min-width: 0;
}

body .site-header .site-nav-list {
  justify-content: center;
  gap: 1rem;
}

body .site-header .site-nav a,
body .site-nav a {
  color: #eef8ff !important;
  opacity: 0.98;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

body .site-header .site-nav a:hover,
body .site-header .site-nav a:focus-visible,
body .site-nav a:hover,
body .site-nav a:focus-visible {
  color: #9fe6ff !important;
}

body .header-actions {
  gap: 0.65rem;
}

body .account-button,
body .cart-button {
  min-height: 2.9rem;
  border-color: rgba(162, 209, 235, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #eef8ff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body .account-button__label,
body .cart-button {
  font-size: 0.88rem;
}

body .nav-toggle {
  border-color: rgba(162, 209, 235, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

body .hero-lede,
body .section-heading > p,
body .trust-architecture-card p,
body .aminogenix-loop-card__excerpt,
body .info-card p,
body .faq-list p,
body .footer-brand-copy p,
body .footer-note {
  color: #c7d6e4 !important;
}

body .eyebrow,
body .section-heading .eyebrow,
body .trust-card-head .eyebrow {
  color: #9fe6ff !important;
}

body .premium-trust-architecture {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(162, 209, 235, 0.1);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(8, 14, 21, 0.96), rgba(7, 12, 18, 0.92)),
    radial-gradient(circle at top left, rgba(76, 208, 255, 0.12), transparent 36%);
}

body .premium-trust-architecture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.24;
  pointer-events: none;
}

body .premium-trust-architecture > * {
  position: relative;
  z-index: 1;
}

body .trust-architecture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: trust-card;
}

body .trust-architecture-card {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(162, 209, 235, 0.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(11, 18, 27, 0.98), rgba(8, 13, 20, 0.96)),
    radial-gradient(circle at top right, rgba(82, 212, 255, 0.08), transparent 40%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  counter-increment: trust-card;
}

body .trust-architecture-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 212, 255, 0.16), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

body .trust-architecture-card::after {
  content: "0" counter(trust-card);
  position: absolute;
  top: 1rem;
  right: 1.05rem;
  color: rgba(159, 230, 255, 0.15);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

body .trust-architecture-card-primary {
  border-color: rgba(134, 231, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(11, 22, 34, 0.98), rgba(8, 13, 20, 0.96)),
    radial-gradient(circle at top left, rgba(82, 212, 255, 0.18), transparent 38%);
}

body .trust-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

body .trust-card-accent {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.24rem 0.72rem;
  border: 1px solid rgba(134, 231, 255, 0.14);
  border-radius: 999px;
  background: rgba(134, 231, 255, 0.08);
  color: #eef9ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body .trust-architecture-card h3 {
  max-width: 20rem;
  color: #f3fbff;
  font-size: clamp(1.25rem, 1.7vw, 1.72rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

body .trust-card-points {
  display: grid;
  gap: 0.56rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .trust-card-points li {
  position: relative;
  padding-left: 1.1rem;
  color: #eef8ff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

body .trust-card-points li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #9fe6ff, #59cfff);
  box-shadow: 0 0 18px rgba(82, 212, 255, 0.4);
}

body #catalog .catalog-carousel-shell {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding: 1.35rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(9, 16, 24, 0.98), rgba(8, 13, 20, 0.95)),
    radial-gradient(circle at top right, rgba(82, 212, 255, 0.1), transparent 38%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

body #catalog .catalog-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.18;
  pointer-events: none;
}

body #catalog .catalog-carousel-shell > * {
  position: relative;
  z-index: 1;
}

body #catalog .catalog-carousel-head {
  align-items: end;
}

body #catalog .catalog-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

body #catalog .catalog-carousel-links {
  flex: 1 1 auto;
  min-width: 0;
}

body #catalog .catalog-carousel-collections .home-collection-rail {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: none;
}

body #catalog .catalog-carousel-collections .home-collection-rail::-webkit-scrollbar {
  display: none;
}

body #catalog .catalog-carousel-collections .collection-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 2rem;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #dcebf8;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body #catalog .catalog-carousel-collections .collection-pill span {
  color: #8eb6cc;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body #catalog .catalog-carousel-collections .collection-pill strong {
  color: #eef8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body #catalog .catalog-carousel-collections .collection-pill:hover,
body #catalog .catalog-carousel-collections .collection-pill:focus-visible {
  border-color: rgba(134, 231, 255, 0.26);
  color: #f2fbff;
}

body #catalog .carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

body #catalog .carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(14, 22, 32, 0.98), rgba(9, 16, 24, 0.94));
  color: #eef9ff;
}

body #catalog .carousel-control:hover,
body #catalog .carousel-control:focus-visible {
  border-color: rgba(134, 231, 255, 0.26);
  color: #9fe6ff;
}

body #catalog .carousel-status {
  min-width: 4rem;
  padding: 0 0.45rem;
  color: #eef8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

body #catalog .catalog-carousel-viewport {
  position: relative;
  overflow: hidden;
}

body #catalog .catalog-carousel-viewport::before,
body #catalog .catalog-carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1rem, 4vw, 2.6rem);
  z-index: 2;
  pointer-events: none;
}

body #catalog .catalog-carousel-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 13, 20, 0.98), rgba(8, 13, 20, 0));
}

body #catalog .catalog-carousel-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 13, 20, 0.98), rgba(8, 13, 20, 0));
}

body #catalog .flagship-carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 1rem !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  transform: translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}

body #catalog .flagship-carousel-track > [data-carousel-item] {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  list-style: none;
}

body #catalog .flagship-carousel-track .product-card {
  height: 100% !important;
  padding: 0.9rem !important;
  gap: 0.72rem !important;
  border-radius: 1.18rem !important;
}

body #catalog .flagship-carousel-track .product-media {
  aspect-ratio: 1 / 0.72 !important;
  padding: 0.72rem !important;
}

body #catalog .flagship-carousel-track .product-media img {
  width: 100%;
  height: 100%;
  max-height: 178px;
  object-fit: contain !important;
}

body #catalog .flagship-carousel-track .product-card h3 {
  font-size: clamp(1rem, 1.15vw, 1.22rem) !important;
}

body #catalog .flagship-carousel-track .aminogenix-loop-card__excerpt,
body #catalog .flagship-carousel-track .product-card p {
  color: #c8d8e6 !important;
  font-size: 0.84rem !important;
  line-height: 1.5 !important;
}

body #catalog .flagship-carousel-track .product-card-trust span,
body #catalog .flagship-carousel-track .product-card-meta span {
  font-size: 0.62rem;
}

body #catalog .flagship-carousel-track .product-bottom {
  margin-top: auto;
}

body #catalog .flagship-carousel-track .product-action,
body #catalog .woocommerce ul.products li.product .button.product-action {
  min-height: 2.65rem !important;
}

@media (max-width: 1320px) {
  body #catalog .flagship-carousel-track > [data-carousel-item] {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 1120px) {
  body .trust-architecture-grid {
    grid-template-columns: 1fr;
  }

  body .site-header {
    grid-template-columns: minmax(0, 13rem) minmax(0, 1fr) auto !important;
  }

  body .site-header .site-nav-list {
    gap: 0.8rem;
  }
}

@media (max-width: 820px) {
  body .site-trust-bar {
    width: min(calc(100% - 1rem), 1200px);
    margin: 0.45rem auto 0;
    padding: 0.65rem 0.8rem;
    justify-content: center;
  }

  body .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 0.7rem;
    padding: 0.82rem 0.85rem;
  }

  body .site-branding {
    max-width: 11rem;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    max-width: 11rem !important;
  }

  body .site-header .site-nav {
    grid-column: 1 / -1;
  }

  body .site-header .site-nav a {
    font-size: 0.98rem;
  }

  body .trust-architecture-card {
    padding: 1.15rem;
  }

  body #catalog .catalog-carousel-shell {
    padding: 1rem;
  }

  body #catalog .catalog-carousel-controls {
    align-items: stretch;
  }

  body #catalog .catalog-carousel-links,
  body #catalog .carousel-controls {
    width: 100%;
  }

  body #catalog .carousel-controls {
    justify-content: space-between;
  }

  body #catalog .flagship-carousel-track > [data-carousel-item] {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* Version 2.5.0: peptide-first typography and footer refinement */
body .section-heading h2,
body .section-heading-compact h2,
body .page-banner .wc-shell-title,
body .statement-panel h2 {
  max-width: 15ch;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body .section-heading > p,
body .section-heading-compact > p,
body .page-banner > p {
  max-width: 36rem;
}

body .premium-trust-architecture .section-heading.section-heading-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  align-items: end;
  gap: 1.15rem 1.5rem;
}

body .premium-trust-architecture .section-heading > div {
  max-width: 48rem;
}

body .premium-trust-architecture .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

body .premium-trust-architecture .section-heading > p {
  align-self: end;
  margin-bottom: 0.35rem;
}

body .trust-architecture-card h3 {
  max-width: none;
  font-size: clamp(1.18rem, 1.5vw, 1.58rem);
  line-height: 1.08;
}

body .site-footer.site-footer-rich {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr) minmax(0, 0.75fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 1.2rem;
  padding: 1.35rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at top right, rgba(82, 212, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.98), rgba(6, 11, 18, 0.96));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

body .footer-branding,
body .footer-column,
body .footer-note-wrap {
  min-width: 0;
}

body .footer-brand-lockup {
  align-items: flex-start;
  gap: 0.9rem;
}

body .footer-logo-mark img {
  width: clamp(3.2rem, 5vw, 4.4rem);
}

body .footer-brand-copy {
  gap: 0.35rem;
}

body .footer-kicker,
body .footer-note-label,
body .footer-column-title {
  margin: 0;
  color: #8dddfb;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body .footer-brand {
  color: #f2fbff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

body .footer-brand-copy p:last-child,
body .footer-note {
  color: #c6d7e5 !important;
  line-height: 1.65;
}

body .footer-compound-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

body .footer-compound-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.24rem 0.65rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #edf9ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .footer-column {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

body .footer-nav.footer-nav-stack {
  display: grid;
  gap: 0.55rem;
  justify-content: start;
}

body .footer-nav.footer-nav-stack a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #edf8ff;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color var(--transition), transform var(--transition);
}

body .footer-nav.footer-nav-stack a:hover,
body .footer-nav.footer-nav-stack a:focus-visible {
  background: transparent;
  color: #8dddfb;
  transform: translateX(2px);
}

body .footer-note-wrap {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
  text-align: left;
  padding: 0.95rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(10, 17, 26, 0.84), rgba(8, 13, 20, 0.82));
}

body .footer-note-contact a {
  color: #9fe6ff;
}

@media (max-width: 1120px) {
  body .site-footer.site-footer-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body .section-heading h2,
  body .section-heading-compact h2,
  body .page-banner .wc-shell-title,
  body .statement-panel h2 {
    max-width: 12ch;
  }

  body .premium-trust-architecture .section-heading.section-heading-compact {
    grid-template-columns: 1fr;
  }

  body .premium-trust-architecture .section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  body .site-footer.site-footer-rich {
    grid-template-columns: 1fr;
  }
}

/* Version 2.6.0: structural storefront cleanup, compact footer, and calmer card rhythm */
body .site-footer.site-footer-rich {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border-radius: 1.4rem;
}

body .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

body .footer-branding {
  gap: 0.85rem;
}

body .footer-brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

body .footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body .footer-brand-copy p:last-child {
  max-width: 34rem;
  font-size: 0.93rem;
  line-height: 1.58;
}

body .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body .footer-button {
  min-height: 2.75rem;
  padding: 0.8rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

body .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body .footer-column {
  gap: 0.65rem;
}

body .footer-nav.footer-nav-stack {
  gap: 0.45rem;
}

body .footer-nav.footer-nav-stack a {
  font-size: 0.88rem;
  line-height: 1.35;
}

body .footer-compound-tags {
  margin-top: 0;
  max-width: 28rem;
}

body .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 1rem;
  align-items: end;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(162, 209, 235, 0.12);
}

body .footer-note-wrap {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 0.35rem;
}

body .footer-note {
  max-width: 56rem;
  font-size: 0.84rem;
  line-height: 1.58;
}

body .footer-bottom-meta {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
  align-content: end;
}

body .footer-support-link {
  color: #eef8ff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

body .footer-support-link:hover,
body .footer-support-link:focus-visible {
  color: #9fe6ff;
}

body .footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.9rem;
}

body .footer-legal-links a {
  color: #c6d7e5;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

body .footer-legal-links a:hover,
body .footer-legal-links a:focus-visible {
  color: #9fe6ff;
}

body .page-banner,
body .info-card,
body .statement-panel,
body .faq-list details,
body .faq-category details,
body .single-product-note,
body .coa-card {
  border-radius: 1.2rem;
}

body .page-banner,
body .info-card,
body .statement-panel,
body .faq-list details,
body .faq-category details,
body .single-product-note,
body .coa-card,
body .product-card,
body .aminogenix-loop-card {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

body .page-banner > p,
body .statement-panel p:last-child,
body .info-card p:last-child,
body .faq-list p,
body .faq-category p,
body .single-product-note p,
body .coa-card p {
  max-width: 42rem;
}

body .woocommerce ul.products li.product.aminogenix-loop-card,
body .woocommerce-page ul.products li.product.aminogenix-loop-card,
body .product-grid .product-card,
body .flagship-carousel-track .product-card,
body .elevate-fallback-grid .product-card {
  grid-template-rows: auto auto auto auto !important;
  gap: 0.66rem !important;
  padding: 0.9rem !important;
  border-radius: 1.08rem !important;
}

body .woocommerce ul.products li.product.aminogenix-loop-card .product-media,
body .woocommerce-page ul.products li.product.aminogenix-loop-card .product-media,
body .product-grid .product-media,
body .flagship-carousel-track .product-media,
body .elevate-fallback-grid .product-media {
  aspect-ratio: 1 / 0.78 !important;
  padding: 0.72rem !important;
  border-radius: 0.9rem;
}

body .product-card h3,
body .aminogenix-loop-card h3,
body .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: clamp(1rem, 1.2vw, 1.22rem) !important;
  line-height: 1.05 !important;
}

body .aminogenix-loop-card__excerpt,
body .product-card p {
  -webkit-line-clamp: 2 !important;
  min-height: 2.7rem !important;
  max-height: 2.7rem !important;
  font-size: 0.84rem !important;
  line-height: 1.48 !important;
}

body .product-card-trust {
  gap: 0.38rem;
}

body .product-card-trust span {
  min-height: 1.72rem;
  padding: 0.18rem 0.48rem;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
}

body .product-card-meta {
  display: none !important;
}

body .product-bottom,
body .aminogenix-loop-card .product-bottom,
body .flagship-carousel-track .product-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(9.8rem, 10.2rem) !important;
  gap: 0.68rem !important;
  min-height: 0;
}

body .product-price,
body .aminogenix-loop-card .product-price,
body .flagship-carousel-track .product-price {
  min-height: 0;
}

body .product-price strong,
body .woocommerce ul.products li.product .price,
body .woocommerce-page ul.products li.product .price {
  min-height: 0;
  font-size: 1.08rem !important;
}

body .product-actions-stack {
  gap: 0.28rem;
}

body .product-secondary-link {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

body .product-action,
body .woocommerce ul.products li.product .button.product-action {
  min-height: 2.58rem !important;
  font-size: 0.8rem !important;
}

body #catalog .catalog-carousel-shell {
  padding: 1.15rem;
}

body #catalog .flagship-carousel-track > [data-carousel-item] {
  flex-basis: calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
}

body #catalog .flagship-carousel-track .product-card {
  padding: 0.88rem !important;
}

body #catalog .flagship-carousel-track .product-media {
  aspect-ratio: 1 / 0.82 !important;
}

body #catalog .flagship-carousel-track .aminogenix-loop-card__excerpt,
body #catalog .flagship-carousel-track .product-card p {
  min-height: 2.7rem !important;
  max-height: 2.7rem !important;
}

@media (max-width: 1100px) {
  body .footer-top {
    grid-template-columns: 1fr;
  }

  body .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body .footer-bottom-meta {
    justify-items: start;
  }

  body .footer-legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  body .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  body .footer-button {
    flex: 1 1 12rem;
  }

  body .product-bottom,
  body .aminogenix-loop-card .product-bottom,
  body .flagship-carousel-track .product-bottom {
    grid-template-columns: 1fr !important;
  }

  body .product-actions-stack {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body .footer-links {
    grid-template-columns: 1fr;
  }

  body .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body .footer-button {
    width: 100%;
  }

  body .footer-compound-tags {
    max-width: none;
  }

  body .footer-compound-tags span {
    font-size: 0.63rem;
  }
}

/* Version 2.6.1: fallback page polish, mobile nav cleanup, and WooCommerce surface consistency */
body .page-content-shell {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(10, 17, 26, 0.92), rgba(8, 13, 20, 0.86));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

body .page-content-shell > *:first-child {
  margin-top: 0;
}

body .page-content-shell > *:last-child {
  margin-bottom: 0;
}

body .commerce-note,
body .woocommerce form.login,
body .woocommerce form.register,
body .woocommerce form.lost_reset_password,
body .woocommerce form.checkout_coupon,
body .woocommerce-checkout #payment,
body .woocommerce-checkout-review-order-table,
body .woocommerce table.shop_table.woocommerce-checkout-review-order-table,
body .woocommerce-cart .cart-collaterals .cart_totals,
body .woocommerce-account .woocommerce-MyAccount-navigation,
body .woocommerce-account .woocommerce-MyAccount-content {
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(10, 18, 27, 0.96), rgba(7, 13, 20, 0.9)) !important;
  border: 1px solid rgba(158, 197, 227, 0.12) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

body .commerce-note p:last-child,
body .woocommerce-account .woocommerce-MyAccount-content > p,
body .woocommerce form.login,
body .woocommerce form.register,
body .woocommerce form.lost_reset_password,
body .woocommerce form.checkout_coupon {
  color: #c4d6e5;
}

body .woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 1rem;
}

body .woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.9rem;
  color: #eef8ff;
  text-decoration: none;
}

body .woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body .woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body .woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  background: rgba(84, 221, 255, 0.1);
  color: #9fe6ff;
}

body .mini-cart-shell {
  gap: 0.9rem;
}

body .mini-cart-overview {
  align-items: end;
}

body .mini-cart-title {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 0.95;
}

body .mini-cart-pill {
  min-width: 6.4rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(158, 197, 227, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

body .page-content-shell h1,
body .page-content-shell h2,
body .page-content-shell h3 {
  color: #f4fbff;
  text-wrap: balance;
}

body .page-content-shell p,
body .page-content-shell li,
body .entry-content,
body .entry-content p {
  color: #c6d8e6;
  line-height: 1.7;
}

body .site-cart-panel .woocommerce ul.cart_list li,
body .site-cart-panel .woocommerce ul.product_list_widget li {
  min-height: 4rem;
  padding: 0 1.65rem 0.85rem 4.4rem;
  border-bottom-color: rgba(158, 197, 227, 0.08);
}

body .site-cart-panel .woocommerce ul.cart_list li img,
body .site-cart-panel .woocommerce ul.product_list_widget li img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(17, 34, 47, 0.85), rgba(8, 15, 23, 0.94));
}

body .site-cart-panel .woocommerce ul.cart_list li a:not(.remove),
body .site-cart-panel .woocommerce ul.product_list_widget li a:not(.remove),
body .site-cart-panel .woocommerce ul.cart_list li .quantity,
body .site-cart-panel .woocommerce ul.product_list_widget li .quantity,
body .site-cart-panel .woocommerce-mini-cart__total,
body .site-cart-panel .woocommerce-mini-cart__empty-message {
  color: #d7ebf8;
}

body .site-cart-panel .woocommerce-mini-cart__buttons {
  gap: 0.6rem;
}

body .site-cart-panel .woocommerce-mini-cart__buttons .button,
body .site-cart-panel .woocommerce-mini-cart__buttons .checkout {
  min-height: 3rem;
}

body .single-product .product .summary {
  padding: clamp(1.1rem, 2vw, 1.4rem);
  border-radius: 1.35rem;
}

body .product-trust-strip {
  gap: 0.8rem;
}

body .product-trust-strip span {
  padding: 0.78rem 0.9rem;
  border-radius: 0.95rem;
  font-size: 0.74rem;
}

body .single-product-notes {
  gap: 0.9rem;
}

body .single-product-note {
  padding: 1.15rem;
}

body .aminogenix-archive-toolbar {
  gap: 0.85rem;
  margin-bottom: 0.4rem;
}

body .aminogenix-archive-toolbar .woocommerce-ordering select {
  min-height: 2.8rem;
  padding-inline: 0.9rem 2.2rem;
}

body .woocommerce-no-products-found,
body .woocommerce-info,
body .woocommerce-message,
body .woocommerce-error {
  border-radius: 1.15rem;
}

@media (max-width: 820px) {
  body .site-header .site-nav {
    padding: 0.55rem;
    border: 1px solid rgba(158, 197, 227, 0.12);
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(8, 14, 22, 0.98), rgba(6, 11, 18, 0.96));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  }

  body .site-header .site-nav .site-nav-list {
    gap: 0.4rem;
  }

  body .site-header .site-nav a {
    min-height: 2.7rem;
    padding: 0.72rem 0.82rem;
    border: 1px solid rgba(158, 197, 227, 0.08);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
  }

  body .mini-cart-overview {
    flex-direction: column;
    align-items: flex-start;
  }

  body .site-cart-panel .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr;
  }

  body .woocommerce-account .woocommerce-MyAccount-navigation,
  body .woocommerce-account .woocommerce-MyAccount-content {
    padding: 0.95rem;
  }
}

/* Version 2.6.2: isolated footer rebuild to replace legacy footer collisions */
body .site-footer.site-footer-rebuilt {
  display: block;
  margin-top: clamp(1.4rem, 3vw, 2.25rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(162, 209, 235, 0.14);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(84, 221, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.98), rgba(6, 10, 16, 0.96));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

body .site-footer.site-footer-rebuilt .el-footer-shell {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
}

body .site-footer.site-footer-rebuilt .el-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(22rem, 0.84fr);
  gap: 1.2rem 1.5rem;
  align-items: start;
}

body .site-footer.site-footer-rebuilt .el-footer-brand-panel,
body .site-footer.site-footer-rebuilt .el-footer-nav-panel,
body .site-footer.site-footer-rebuilt .el-footer-link-group,
body .site-footer.site-footer-rebuilt .el-footer-meta {
  min-width: 0;
}

body .site-footer.site-footer-rebuilt .el-footer-brand-panel {
  display: grid;
  gap: 0.95rem;
}

body .site-footer.site-footer-rebuilt .el-footer-brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
}

body .site-footer.site-footer-rebuilt .el-footer-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

body .site-footer.site-footer-rebuilt .el-footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.3rem;
  height: 4.3rem;
  border: 1px solid rgba(141, 221, 251, 0.18);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(13, 28, 40, 0.98), rgba(8, 15, 24, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(141, 221, 251, 0.05),
    0 16px 34px rgba(0, 0, 0, 0.28);
  color: #8dddfb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.58rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

body .site-footer.site-footer-rebuilt .el-footer-brand-copy {
  display: grid;
  gap: 0.45rem;
}

body .site-footer.site-footer-rebuilt .el-footer-brand-copy p,
body .site-footer.site-footer-rebuilt .el-footer-assurance p,
body .site-footer.site-footer-rebuilt .el-footer-disclaimer,
body .site-footer.site-footer-rebuilt .el-footer-copyright {
  margin: 0;
}

body .site-footer.site-footer-rebuilt .el-footer-eyebrow,
body .site-footer.site-footer-rebuilt .el-footer-group-title {
  color: #8dddfb;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body .site-footer.site-footer-rebuilt .el-footer-title {
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

body .site-footer.site-footer-rebuilt .el-footer-summary {
  max-width: 34rem;
  color: #bfd0de;
  font-size: 0.96rem;
  line-height: 1.6;
}

body .site-footer.site-footer-rebuilt .el-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body .site-footer.site-footer-rebuilt .el-footer-button {
  min-height: 2.8rem;
  padding: 0.78rem 1.08rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

body .site-footer.site-footer-rebuilt .el-footer-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body .site-footer.site-footer-rebuilt .el-footer-popular span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.18rem 0.6rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #edf8ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .site-footer.site-footer-rebuilt .el-footer-nav-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

body .site-footer.site-footer-rebuilt .el-footer-link-group {
  display: grid;
  gap: 0.58rem;
}

body .site-footer.site-footer-rebuilt .el-footer-links {
  display: grid;
  gap: 0.48rem;
}

body .site-footer.site-footer-rebuilt .el-footer-links a {
  color: #eef8ff;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

body .site-footer.site-footer-rebuilt .el-footer-links a:hover,
body .site-footer.site-footer-rebuilt .el-footer-links a:focus-visible {
  color: #8dddfb;
  transform: translateX(2px);
}

body .site-footer.site-footer-rebuilt .el-footer-assurance {
  display: grid;
  gap: 0.5rem;
  grid-column: 1 / -1;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(162, 209, 235, 0.12);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(10, 17, 26, 0.84), rgba(8, 13, 20, 0.82));
}

body .site-footer.site-footer-rebuilt .el-footer-assurance p:last-child {
  color: #bfd0de;
  font-size: 0.88rem;
  line-height: 1.58;
}

body .site-footer.site-footer-rebuilt .el-footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1.2rem;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(162, 209, 235, 0.12);
}

body .site-footer.site-footer-rebuilt .el-footer-disclaimer {
  max-width: 45rem;
  color: #b4c7d6;
  font-size: 0.8rem;
  line-height: 1.55;
}

body .site-footer.site-footer-rebuilt .el-footer-meta {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
}

body .site-footer.site-footer-rebuilt .el-footer-email {
  color: #f2fbff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

body .site-footer.site-footer-rebuilt .el-footer-email:hover,
body .site-footer.site-footer-rebuilt .el-footer-email:focus-visible {
  color: #8dddfb;
}

body .site-footer.site-footer-rebuilt .el-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.9rem;
}

body .site-footer.site-footer-rebuilt .el-footer-legal a {
  color: #c6d7e5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

body .site-footer.site-footer-rebuilt .el-footer-legal a:hover,
body .site-footer.site-footer-rebuilt .el-footer-legal a:focus-visible {
  color: #8dddfb;
}

body .site-footer.site-footer-rebuilt .el-footer-copyright {
  color: #8298aa;
  font-size: 0.74rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  body .site-footer.site-footer-rebuilt .el-footer-main,
  body .site-footer.site-footer-rebuilt .el-footer-bottom {
    grid-template-columns: 1fr;
  }

  body .site-footer.site-footer-rebuilt .el-footer-meta {
    justify-items: start;
  }

  body .site-footer.site-footer-rebuilt .el-footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body .site-footer.site-footer-rebuilt .el-footer-nav-panel {
    grid-template-columns: 1fr;
  }

  body .site-footer.site-footer-rebuilt .el-footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body .site-footer.site-footer-rebuilt .el-footer-button {
    width: 100%;
  }
}

/* Version 2.6.3: black-and-chrome brand override */
:root {
  --accent: #d7dce1;
  --accent-deep: #8c939b;
  --cool: #bcc3ca;
  --hero-glow: rgba(255, 255, 255, 0.14);
  --line: rgba(214, 220, 226, 0.14);
  --line-strong: rgba(214, 220, 226, 0.2);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(153, 153, 153, 0.12), transparent 26%),
    linear-gradient(180deg, #030405 0%, #090b0d 44%, #0d1013 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(205, 211, 218, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 211, 218, 0.025) 1px, transparent 1px);
}

body .site-trust-bar,
body .site-header,
body .hero,
body .section-cream,
body .section-mist,
body .section-dark,
body .contact-cta,
body .page-shell,
body .wc-content,
body .catalog-carousel-shell,
body .statement-panel,
body .info-card,
body .coa-card,
body .commerce-note,
body .product-card,
body .aminogenix-loop-card,
body .single-product .product .summary,
body .single-product .woocommerce-tabs,
body .single-product .related.products,
body .site-footer.site-footer-rebuilt {
  border-color: rgba(214, 220, 226, 0.14) !important;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(10, 11, 14, 0.96), rgba(6, 7, 9, 0.96)) !important;
}

body .site-trust-bar span,
body .eyebrow,
body .footer-kicker,
body .site-cart-panel__kicker,
body .product-meta,
body .assay-kicker,
body .site-footer.site-footer-rebuilt .el-footer-eyebrow,
body .site-footer.site-footer-rebuilt .el-footer-group-title,
body .site-footer.site-footer-rebuilt .el-footer-email:hover,
body .site-footer.site-footer-rebuilt .el-footer-email:focus-visible,
body .site-footer.site-footer-rebuilt .el-footer-legal a:hover,
body .site-footer.site-footer-rebuilt .el-footer-legal a:focus-visible {
  color: #dfe4e8 !important;
}

body .button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .woocommerce #respond input#submit,
body .woocommerce a.checkout-button,
body .cart-count,
body .assay-bar span,
body .visual-chip strong,
body .specimen-fill,
body .scan-line {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: linear-gradient(135deg, #f3f5f7 0%, #bcc3cb 34%, #7a8189 58%, #eff2f5 100%) !important;
  color: #050608 !important;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08) !important;
}

body .button:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover,
body .woocommerce #respond input#submit:hover,
body .woocommerce a.checkout-button:hover {
  background: linear-gradient(135deg, #ffffff 0%, #d7dce2 34%, #8a9199 58%, #f7f9fb 100%) !important;
  color: #040506 !important;
}

body .button-secondary,
body .button-outline-light,
body .product-action.product_type_variable,
body .product-action.product_type_simple,
body .account-button,
body .cart-button,
body .filter-button,
body .collection-pill,
body .product-card-trust span,
body .footer-compound-tags span {
  border-color: rgba(214, 220, 226, 0.14) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #eef2f5 !important;
  box-shadow: none !important;
}

body .site-nav a,
body .footer-nav a,
body .product-secondary-link,
body .footer-legal-links a,
body .site-footer.site-footer-rebuilt .el-footer-links a,
body .site-footer.site-footer-rebuilt .el-footer-email {
  color: #edf1f5 !important;
}

body .site-nav a:hover,
body .site-nav a:focus-visible,
body .footer-nav a:hover,
body .footer-nav a:focus-visible,
body .text-link:hover,
body .text-link:focus-visible,
body .site-footer.site-footer-rebuilt .el-footer-links a:hover,
body .site-footer.site-footer-rebuilt .el-footer-links a:focus-visible {
  color: #ffffff !important;
}

body .hero-brand,
body .hero h1,
body .section-heading h2,
body .page-banner h1,
body .statement-panel h2,
body .contact-cta h2,
body .process-copy h2,
body .faq-category h2,
body .single-product-note h3,
body .coa-card h3,
body .site-footer.site-footer-rebuilt .el-footer-title,
body .site-cart-panel .mini-cart-title,
body .product-price strong,
body .woocommerce ul.products li.product .price {
  color: #f5f7fa !important;
}

body .hero-lede,
body .section-heading p,
body .page-banner p,
body .statement-panel p,
body .process-copy p,
body .feature-copy p,
body .info-card p,
body .product-card p,
body .faq-list p,
body .faq-category p,
body .coa-card p,
body .contact-cta p,
body .footer-brand-copy p,
body .site-footer.site-footer-rebuilt .el-footer-summary,
body .site-footer.site-footer-rebuilt .el-footer-disclaimer,
body .site-footer.site-footer-rebuilt .el-footer-copyright,
body .site-footer.site-footer-rebuilt .el-footer-assurance p:last-child {
  color: #b7c0c9 !important;
}

body .brand-mark,
body .footer-logo-mark .brand-mark,
body .site-footer.site-footer-rebuilt .el-footer-mark {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: linear-gradient(145deg, #111317, #090a0d) !important;
  color: #f0f3f6 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(0, 0, 0, 0.34) !important;
}

body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image {
  width: min(100%, 17rem);
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  filter: drop-shadow(0 10px 24px rgba(255, 255, 255, 0.08));
}

/* Version 2.6.4: chrome logo balance and footer brand rebuild */
body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image {
  width: auto;
  max-width: min(20rem, 34vw);
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  height: clamp(2.7rem, 3.8vw, 3.7rem);
  max-width: min(18rem, 32vw);
  margin-inline: 0;
  transform: none;
}

body .site-footer.site-footer-rebuilt .el-footer-brand-lockup {
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

body .site-footer.site-footer-rebuilt .el-footer-logo {
  min-width: 0;
}

body .site-footer.site-footer-rebuilt .el-footer-logo .custom-logo-link,
body .site-footer.site-footer-rebuilt .el-footer-logo .brand-logo-image,
body .site-footer.site-footer-rebuilt .el-footer-logo .brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: min(100%, 18rem);
  border-radius: 0;
  background: none !important;
  box-shadow: none !important;
  text-decoration: none;
}

body .site-footer.site-footer-rebuilt .el-footer-logo .custom-logo-link img,
body .site-footer.site-footer-rebuilt .el-footer-logo .brand-logo-image img {
  display: block;
  width: 100%;
  max-width: 18rem;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(255, 255, 255, 0.08));
}

body .site-footer.site-footer-rebuilt .el-footer-brand-copy {
  gap: 0.5rem;
  max-width: 36rem;
}

body .site-footer.site-footer-rebuilt .el-footer-title {
  max-width: 18ch;
  line-height: 1.05;
}

body .site-footer.site-footer-rebuilt .el-footer-summary {
  max-width: 40rem;
}

@media (max-width: 820px) {
  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.3rem;
    max-width: 11.4rem;
  }

  body .site-footer.site-footer-rebuilt .el-footer-logo .custom-logo-link,
  body .site-footer.site-footer-rebuilt .el-footer-logo .brand-logo-image,
  body .site-footer.site-footer-rebuilt .el-footer-logo .brand {
    max-width: 14rem;
  }
}

@media (max-width: 640px) {
  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.05rem;
    max-width: 9.8rem;
  }

  body .site-footer.site-footer-rebuilt .el-footer-logo .custom-logo-link,
  body .site-footer.site-footer-rebuilt .el-footer-logo .brand-logo-image,
  body .site-footer.site-footer-rebuilt .el-footer-logo .brand {
    max-width: 12.5rem;
  }
}

/* Version 2.6.5: full-bleed DNA hero banner */
body .hero.hero-dna-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(52rem, calc(100svh - 1rem));
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(5.75rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3.5rem) clamp(2.75rem, 5vw, 4rem);
  border-radius: 0 0 2.2rem 2.2rem;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 6, 12, 0.88) 0%, rgba(1, 6, 12, 0.76) 26%, rgba(1, 6, 12, 0.3) 52%, rgba(1, 6, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(1, 6, 12, 0.1) 0%, rgba(1, 6, 12, 0.18) 42%, rgba(1, 6, 12, 0.7) 100%),
    url("assets/images/elevate-labs-hero-banner.png") center center / cover no-repeat !important;
}

body .hero.hero-dna-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  mask-image: none;
  background:
    radial-gradient(circle at 50% 58%, rgba(102, 225, 255, 0.28), transparent 0 20%),
    radial-gradient(circle at 16% 56%, rgba(62, 205, 255, 0.14), transparent 0 18%),
    linear-gradient(90deg, rgba(2, 8, 15, 0.55), rgba(2, 8, 15, 0.08) 56%, rgba(2, 8, 15, 0.42));
}

body .hero.hero-dna-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 8, 14, 0.94) 0%, rgba(3, 8, 14, 0.84) 16%, rgba(3, 8, 14, 0.48) 34%, rgba(3, 8, 14, 0.14) 58%, rgba(3, 8, 14, 0.2) 100%);
}

body .hero.hero-dna-banner .hero-copy {
  position: relative;
  z-index: 2;
  align-content: end;
  width: min(100%, 42rem);
  max-width: 42rem;
  margin: 0;
  padding: 0;
  gap: 0.8rem;
}

body .hero.hero-dna-banner .eyebrow,
body .hero.hero-dna-banner .hero-brand {
  color: rgba(232, 241, 248, 0.8) !important;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

body .hero.hero-dna-banner .hero-copy-centered .eyebrow {
  justify-content: flex-start;
}

body .hero.hero-dna-banner h1 {
  max-width: 10.8ch;
  color: #f7fbff !important;
  font-size: clamp(3.1rem, 6vw, 5.55rem);
  line-height: 0.92;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

body .hero.hero-dna-banner .hero-subheadline {
  display: none !important;
}

body .hero.hero-dna-banner .hero-lede {
  max-width: 28rem;
  color: rgba(214, 225, 235, 0.88) !important;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

body .hero.hero-dna-banner .hero-actions {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  body .hero.hero-dna-banner {
    min-height: min(48rem, calc(100svh - 0.5rem));
    padding: clamp(5.4rem, 16vw, 7rem) 1.1rem 2.5rem;
    background-position: 62% center !important;
  }

  body .hero.hero-dna-banner::after {
    background: linear-gradient(180deg, rgba(3, 8, 14, 0.2) 0%, rgba(3, 8, 14, 0.34) 26%, rgba(3, 8, 14, 0.82) 72%, rgba(3, 8, 14, 0.94) 100%);
  }

  body .hero.hero-dna-banner .hero-copy {
    width: min(100%, 30rem);
    max-width: 30rem;
  }
}

@media (max-width: 640px) {
  body .hero.hero-dna-banner {
    min-height: calc(100svh - 0.35rem);
    padding: 5.35rem 1rem 2.35rem;
    background-position: 64% center !important;
  }

  body .hero.hero-dna-banner .hero-copy {
    gap: 0.82rem;
  }

  body .hero.hero-dna-banner h1 {
    max-width: 8.2ch;
    font-size: clamp(2.5rem, 9vw, 3.8rem);
  }

  body .hero.hero-dna-banner .hero-lede {
    max-width: 24rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

/* Version 2.6.6: tighter sticky header */
body .site-trust-bar {
  min-height: 1.9rem;
  padding: 0.36rem clamp(0.9rem, 2vw, 1.6rem);
}

body .site-trust-bar span {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

body .site-header {
  padding-inline: clamp(0.95rem, 2.2vw, 1.65rem);
  padding-block: 0.62rem;
  min-height: 4.3rem;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  height: clamp(2.35rem, 3.1vw, 3rem);
  max-width: min(15rem, 26vw);
}

body .site-header .site-nav a,
body .account-button,
body .cart-button {
  font-size: 0.85rem;
}

body .account-button,
body .cart-button {
  min-height: 2.55rem;
  padding: 0.58rem 0.9rem;
}

body .cart-count {
  min-width: 1.45rem;
  height: 1.45rem;
  font-size: 0.72rem;
}

@media (max-width: 820px) {
  body .site-trust-bar {
    min-height: 1.65rem;
    padding-block: 0.28rem;
  }

  body .site-header {
    min-height: auto;
    padding-block: 0.5rem;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.05rem;
    max-width: 10.6rem;
  }
}

/* Version 2.6.7: full-width header shell */
body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  left: 0 !important;
  right: 0 !important;
  inset-inline: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
}

body .site-trust-bar {
  left: 0 !important;
  right: 0 !important;
  inset-inline: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
}

/* Version 2.6.8: wider hero title balance */
body .hero.hero-dna-banner .hero-copy,
body .hero.hero-dna-banner .hero-copy.hero-copy-centered {
  width: min(100%, 54rem);
  max-width: 54rem;
}

body .hero.hero-dna-banner h1 {
  max-width: 13.2ch;
  font-size: clamp(2.9rem, 5.2vw, 4.95rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body .hero.hero-dna-banner .hero-lede {
  max-width: 30rem;
}

@media (max-width: 900px) {
  body .hero.hero-dna-banner .hero-copy,
  body .hero.hero-dna-banner .hero-copy.hero-copy-centered {
    width: min(100%, 34rem);
    max-width: 34rem;
  }

  body .hero.hero-dna-banner h1 {
    max-width: 11.2ch;
    font-size: clamp(2.75rem, 7.2vw, 4.1rem);
  }
}

@media (max-width: 640px) {
  body .hero.hero-dna-banner .hero-copy,
  body .hero.hero-dna-banner .hero-copy.hero-copy-centered {
    width: min(100%, 24rem);
    max-width: 24rem;
  }

  body .hero.hero-dna-banner h1 {
    max-width: 9.2ch;
    font-size: clamp(2.35rem, 8.4vw, 3.45rem);
  }
}

/* Version 2.6.9: scrolling trust bar */
body .site-trust-bar {
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 220, 226, 0.14) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 12px 28px rgba(0, 0, 0, 0.18);
}

body .site-trust-bar__viewport {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

body .site-trust-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  gap: 1.35rem;
  white-space: nowrap;
  animation: elevateTrustMarquee 24s linear infinite;
}

body .site-trust-bar__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

body .site-trust-bar__track span::after {
  content: "•";
  margin-left: 1.35rem;
  color: rgba(255, 255, 255, 0.42);
}

body .site-trust-bar__track span:last-child::after {
  content: "•";
}

@keyframes elevateTrustMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body .site-trust-bar__track {
    animation: none;
  }
}

/* Version 2.7.0: stronger trust bar and wider hero balance */
body .site-trust-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.98) 0%, rgba(18, 24, 31, 0.98) 50%, rgba(7, 10, 14, 0.98) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(154, 192, 219, 0.18) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 34px rgba(0, 0, 0, 0.32);
}

body .site-trust-bar__track {
  gap: 1.6rem;
  padding-inline: 0.3rem;
  animation-duration: 20s;
}

body .site-trust-bar__track span {
  color: rgba(247, 250, 252, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body .site-trust-bar__track span::after {
  margin-left: 1.6rem;
  color: rgba(160, 210, 255, 0.62);
}

body .hero.hero-dna-banner .hero-copy,
body .hero.hero-dna-banner .hero-copy.hero-copy-centered {
  width: min(100%, 61rem);
  max-width: 61rem;
}

body .hero.hero-dna-banner h1 {
  max-width: 16.4ch;
  font-size: clamp(3.1rem, 5vw, 5.25rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

body .hero.hero-dna-banner .hero-lede {
  max-width: 41rem;
}

@media (max-width: 960px) {
  body .hero.hero-dna-banner .hero-copy,
  body .hero.hero-dna-banner .hero-copy.hero-copy-centered {
    width: min(100%, 43rem);
    max-width: 43rem;
  }

  body .hero.hero-dna-banner h1 {
    max-width: 13.5ch;
    font-size: clamp(2.85rem, 7vw, 4.45rem);
  }

  body .hero.hero-dna-banner .hero-lede {
    max-width: 31rem;
  }
}

@media (max-width: 640px) {
  body .site-trust-bar__track {
    gap: 1.2rem;
    animation-duration: 18s;
  }

  body .site-trust-bar__track span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  body .site-trust-bar__track span::after {
    margin-left: 1.2rem;
  }

  body .hero.hero-dna-banner .hero-copy,
  body .hero.hero-dna-banner .hero-copy.hero-copy-centered {
    width: min(100%, 24rem);
    max-width: 24rem;
  }

  body .hero.hero-dna-banner h1 {
    max-width: 10.3ch;
    font-size: clamp(2.35rem, 8vw, 3.55rem);
  }

  body .hero.hero-dna-banner .hero-lede {
    max-width: 24rem;
  }
}

/* Version 2.7.1: true full-bleed header shell */
body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  position: sticky !important;
  top: 2rem !important;
  left: 0 !important;
  right: 0 !important;
  inset-inline: 0 !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 0 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.96), rgba(7, 10, 14, 0.9)) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  overflow: visible;
}

body .admin-bar .site-header,
body.admin-bar .site-header {
  top: calc(32px + 2rem) !important;
}

body .site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 16.5rem) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  width: min(calc(100% - 2rem), 1280px);
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
}

body .site-header__inner .site-branding {
  min-width: 0;
  max-width: 16.5rem;
}

body .site-header__inner .site-nav {
  min-width: 0;
  justify-self: center;
}

body .site-header__inner .site-nav-list {
  justify-content: center;
  gap: 1rem;
}

body .site-header__inner .header-actions {
  gap: 0.65rem;
}

body .site-header__inner .nav-toggle {
  display: none;
}

@media (max-width: 1120px) {
  body .site-header__inner {
    grid-template-columns: minmax(0, 13rem) minmax(0, 1fr) auto;
  }
}

@media (max-width: 820px) {
  body .admin-bar .site-header,
  body.admin-bar .site-header {
    top: calc(46px + 1.7rem) !important;
  }

  body .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.7rem;
    width: min(calc(100% - 1rem), 1280px);
    padding: 0.82rem 0.85rem;
  }

  body .site-header__inner .site-branding {
    max-width: 11rem;
  }

  body .site-header__inner .site-nav {
    grid-column: 1 / -1;
  }

  body .site-header__inner .nav-toggle {
    display: inline-flex;
  }
}

/* Version 2.7.2: hide stock WordPress page titles */
body.page .entry-title,
body.page .page-title,
body.page .archive-title,
body.page .wp-block-post-title,
body.page .wp-block-query-title,
body.page .elementor-page-title,
body.page .elementor-widget-theme-post-title,
body.page .post-title,
body.page .page-header,
body.page .entry-header,
body.page .page .entry-header,
body.page .page .page-header {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
}

body.page .entry-header:empty,
body.page .page-header:empty {
  display: none !important;
}

/* Version 2.7.3: trust bar reset and stable marquee */
body .site-trust-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 140 !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: 2rem !important;
  margin: 0 0 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(9, 12, 16, 0.98), rgba(6, 8, 11, 0.96)) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 22px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(18px);
}

body .site-trust-bar__viewport {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

body .site-trust-bar__track {
  display: flex !important;
  align-items: center;
  width: max-content !important;
  min-width: max-content !important;
  gap: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  will-change: transform;
  animation: elevateTrustLoop 22s linear infinite !important;
}

body .site-trust-bar__group {
  display: flex !important;
  align-items: center;
  flex: 0 0 auto;
  gap: 1.6rem;
  padding: 0.52rem 1.15rem;
}

body .site-trust-bar__group span,
body .site-trust-bar__track span {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  flex: 0 0 auto;
  color: #eef3f7 !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  line-height: 1 !important;
  text-transform: uppercase;
  white-space: nowrap !important;
}

body .site-trust-bar__group span::after,
body .site-trust-bar__track span::after {
  content: "•";
  margin-left: 1.6rem;
  color: rgba(255, 255, 255, 0.36);
}

body .site-trust-bar__group span:last-child::after {
  content: "";
  margin-left: 0;
}

@keyframes elevateTrustLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 820px) {
  body .site-trust-bar {
    min-height: 1.8rem !important;
  }

  body .site-trust-bar__group {
    gap: 1.2rem;
    padding: 0.48rem 0.9rem;
  }

  body .site-trust-bar__group span,
  body .site-trust-bar__track span {
    font-size: 0.6rem !important;
    letter-spacing: 0.13em !important;
  }

  body .site-trust-bar__group span::after,
  body .site-trust-bar__track span::after {
    margin-left: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .site-trust-bar__track {
    animation: none !important;
  }
}

/* Version 2.7.4: FAQ page contrast and alignment fix */
body .faq-page-shell {
  position: relative;
}

body .faq-page-shell .page-banner {
  align-items: end;
  gap: clamp(1.3rem, 2.4vw, 2rem);
  padding-bottom: 1.4rem;
}

body .faq-page-shell .page-banner .wc-shell-title {
  max-width: 8.8ch;
  color: #f4f7fa !important;
}

body .faq-page-shell .faq-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

body .faq-page-shell .faq-category {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.3rem, 2.6vw, 1.7rem);
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(12, 14, 18, 0.98), rgba(7, 9, 12, 0.96)) !important;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

body .faq-page-shell .faq-category-heading {
  display: grid;
  gap: 0.48rem;
  margin-bottom: 0.15rem;
}

body .faq-page-shell .faq-category .eyebrow {
  color: #aeb8c1 !important;
  opacity: 0.92;
}

body .faq-page-shell .faq-category h2 {
  max-width: 9ch;
  color: #f5f7fa !important;
  font-size: clamp(1.75rem, 2.35vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

body .faq-page-shell .faq-category-list {
  display: grid;
  gap: 0.8rem;
}

body .faq-page-shell .faq-category details {
  padding: 0.98rem 1rem;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, rgba(20, 24, 31, 0.98), rgba(12, 15, 20, 0.96)) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

body .faq-page-shell .faq-category details:hover,
body .faq-page-shell .faq-category details:focus-within {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

body .faq-page-shell .faq-category details[open] {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background:
    linear-gradient(180deg, rgba(24, 29, 37, 0.98), rgba(14, 17, 22, 0.97)) !important;
}

body .faq-page-shell .faq-category summary {
  color: #f4f7fa !important;
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: -0.014em;
}

body .faq-page-shell .faq-category summary::before {
  background: linear-gradient(135deg, #f2f5f7, #aab3bc);
  box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.05);
}

body .faq-page-shell .faq-category summary::after {
  background: rgba(255, 255, 255, 0.06);
  color: #edf2f6;
}

body .faq-page-shell .faq-category p {
  margin: 0.88rem 0 0;
  padding-left: 1.45rem;
  color: #c7d0d8 !important;
  font-size: 0.94rem;
  line-height: 1.7;
}

body .faq-page-shell .faq-page-support {
  margin-top: 1.2rem;
}

@media (max-width: 1080px) {
  body .faq-page-shell .faq-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body .faq-page-shell .faq-category {
    padding: 1.1rem;
  }

  body .faq-page-shell .faq-category h2 {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  body .faq-page-shell .faq-category details {
    padding: 0.88rem 0.92rem;
  }

  body .faq-page-shell .faq-category summary {
    font-size: 0.93rem;
  }
}

/* Version 2.7.5: My Account page contrast fix */
body.woocommerce-account .woocommerce,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  color: #edf2f6;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce form.login,
body.woocommerce-account .woocommerce form.register,
body.woocommerce-account .woocommerce form.lost_reset_password {
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(12, 14, 18, 0.98), rgba(7, 9, 12, 0.96)) !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 1rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  gap: 0.55rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.72rem 0.92rem;
  border: 1px solid rgba(214, 220, 226, 0.1) !important;
  border-radius: 0.98rem;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #edf2f6 !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(28, 34, 42, 0.98), rgba(16, 20, 26, 0.96)) !important;
  color: #ffffff !important;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  padding: clamp(1.2rem, 2.2vw, 1.7rem) !important;
}

body.woocommerce-account .woocommerce-MyAccount-content > p,
body.woocommerce-account .woocommerce-MyAccount-content > div,
body.woocommerce-account .woocommerce-MyAccount-content li,
body.woocommerce-account .woocommerce-MyAccount-content label,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  color: #c7d0d8 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
  color: #f4f7fa !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover,
body.woocommerce-account .woocommerce-MyAccount-content a:focus-visible {
  color: #ffffff !important;
}

body.woocommerce-account .woocommerce-MyAccount-content strong,
body.woocommerce-account .woocommerce-MyAccount-content b,
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3,
body.woocommerce-account .woocommerce-MyAccount-content h4,
body.woocommerce-account .woocommerce-MyAccount-content legend {
  color: #f4f7fa !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .commerce-note,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
body.woocommerce-account .woocommerce-MyAccount-content fieldset,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-login,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-register {
  border: 1px solid rgba(214, 220, 226, 0.1) !important;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(20, 24, 31, 0.98), rgba(12, 15, 20, 0.96)) !important;
  color: #d5dde4 !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

body.woocommerce-account .woocommerce table.shop_table,
body.woocommerce-account .woocommerce table.shop_table th,
body.woocommerce-account .woocommerce table.shop_table td,
body.woocommerce-account .woocommerce .woocommerce-table,
body.woocommerce-account .woocommerce .woocommerce-table th,
body.woocommerce-account .woocommerce .woocommerce-table td {
  border-color: rgba(214, 220, 226, 0.1) !important;
  background: transparent !important;
  color: #d8dfe6 !important;
}

body.woocommerce-account .woocommerce input.input-text,
body.woocommerce-account .woocommerce textarea,
body.woocommerce-account .woocommerce select {
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #f2f6f9 !important;
  box-shadow: none !important;
}

body.woocommerce-account .woocommerce input.input-text::placeholder,
body.woocommerce-account .woocommerce textarea::placeholder {
  color: #93a0ab !important;
}

body.woocommerce-account .woocommerce form .form-row label {
  color: #b8c2ca !important;
}

body.woocommerce-account .woocommerce button.button,
body.woocommerce-account .woocommerce a.button,
body.woocommerce-account .woocommerce input.button {
  color: #050608 !important;
}

@media (max-width: 820px) {
  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content {
    padding: 1rem !important;
  }
}

/* Version 2.7.6: BioPulse-style top chrome with dark Elevate palette */
:root {
  --elevate-announcement-height: 1.65rem;
  --elevate-header-height: 4.85rem;
}

body .site-announcement-bar {
  position: sticky;
  top: 0;
  z-index: 170;
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  border-bottom: 1px solid rgba(214, 220, 226, 0.1);
  background: linear-gradient(90deg, rgba(18, 24, 30, 0.98), rgba(28, 36, 45, 0.98) 50%, rgba(18, 24, 30, 0.98));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

body .site-announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--elevate-announcement-height);
  width: min(calc(100% - 2rem), 1280px);
  margin: 0 auto;
  padding: 0.18rem 1rem;
  color: #d8e0e7;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  top: var(--elevate-announcement-height) !important;
  z-index: 165 !important;
  background: rgba(8, 10, 14, 0.97) !important;
  box-shadow: 0 1px 0 rgba(214, 220, 226, 0.08) inset, 0 1px 0 rgba(214, 220, 226, 0.06) !important;
}

body .admin-bar .site-announcement-bar,
body.admin-bar .site-announcement-bar {
  top: 32px;
}

body .admin-bar .site-header,
body.admin-bar .site-header {
  top: calc(32px + var(--elevate-announcement-height)) !important;
}

body .site-header__inner {
  width: min(calc(100% - 2.25rem), 1280px);
  min-height: var(--elevate-header-height);
  grid-template-columns: minmax(11rem, 13.6rem) 1fr auto;
  gap: 1.4rem;
  padding: 0.72rem 0;
}

body .site-header__inner .site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 13.6rem;
}

body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  width: auto !important;
  height: 2.85rem !important;
  max-width: 12.8rem !important;
  margin: 0 !important;
  transform: none !important;
  object-fit: contain;
}

body .site-header__inner .site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  width: 100%;
}

body .site-header__inner .site-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: clamp(1rem, 2vw, 1.9rem);
}

body .site-header .site-nav a {
  color: #edf2f6 !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 1;
  text-transform: none !important;
  white-space: nowrap;
}

body .site-header .site-nav a:hover,
body .site-header .site-nav a:focus-visible {
  color: #ffffff !important;
}

body .site-header__inner .header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
}

body .account-button,
body .cart-button {
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #eef2f6 !important;
  box-shadow: none !important;
}

body .account-button__icon {
  color: #eef2f6;
}

body .cart-count {
  min-width: 1.45rem;
  height: 1.45rem;
}

body .site-trust-bar {
  position: relative !important;
  top: auto !important;
  z-index: 150 !important;
  min-height: 0 !important;
  border-top: 1px solid rgba(214, 220, 226, 0.06) !important;
  border-bottom: 1px solid rgba(214, 220, 226, 0.1) !important;
  background: linear-gradient(90deg, rgba(12, 16, 21, 0.98), rgba(17, 23, 29, 0.98), rgba(12, 16, 21, 0.98)) !important;
  box-shadow: none !important;
}

body .site-trust-bar__viewport {
  max-width: 100%;
}

body .site-trust-bar__track {
  animation-duration: 26s !important;
}

body .site-trust-bar__group {
  gap: 1.85rem;
  padding: 0.42rem 1.35rem;
}

body .site-trust-bar__group span,
body .site-trust-bar__track span {
  color: #dbe2e8 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.16em !important;
}

body .site-trust-bar__group span::after,
body .site-trust-bar__track span::after {
  margin-left: 1.85rem;
  color: rgba(255, 255, 255, 0.28);
}

body .site-cart-backdrop {
  z-index: 210 !important;
}

body .site-cart-panel {
  top: calc(var(--elevate-announcement-height) + var(--elevate-header-height) + 0.6rem) !important;
  right: 1rem;
  bottom: 1rem;
  z-index: 220 !important;
  height: calc(100dvh - (var(--elevate-announcement-height) + var(--elevate-header-height) + 1.6rem));
}

@media (max-width: 1120px) {
  body .site-header__inner {
    grid-template-columns: minmax(10rem, 12rem) 1fr auto;
    gap: 1rem;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.55rem !important;
    max-width: 11.5rem !important;
  }

  body .site-header__inner .site-nav-list {
    gap: 1.15rem;
  }
}

@media (max-width: 820px) {
  :root {
    --elevate-announcement-height: 1.5rem;
    --elevate-header-height: 4.45rem;
  }

  body .admin-bar .site-announcement-bar,
  body.admin-bar .site-announcement-bar {
    top: 46px;
  }

  body .admin-bar .site-header,
  body.admin-bar .site-header {
    top: calc(46px + var(--elevate-announcement-height)) !important;
  }

  body .site-announcement-bar__inner {
    width: min(calc(100% - 1rem), 1280px);
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  body .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    width: min(calc(100% - 1rem), 1280px);
    min-height: auto;
    gap: 0.7rem;
    padding: 0.62rem 0;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.2rem !important;
    max-width: 9.75rem !important;
  }

  body .site-header__inner .site-nav {
    grid-column: 1 / -1;
    order: 4;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  body .site-header__inner .site-nav::-webkit-scrollbar {
    display: none;
  }

  body .site-header__inner .site-nav-list {
    justify-content: flex-start;
    width: max-content;
    gap: 1rem;
    padding-right: 0.5rem;
  }

  body .site-header__inner .nav-toggle {
    display: inline-flex;
  }

  body .account-button,
  body .cart-button {
    min-height: 2.35rem;
    padding: 0.45rem 0.78rem;
  }

  body .site-trust-bar__group {
    gap: 1.2rem;
    padding: 0.38rem 0.9rem;
  }

  body .site-trust-bar__group span,
  body .site-trust-bar__track span {
    font-size: 0.56rem !important;
    letter-spacing: 0.12em !important;
  }

  body .site-trust-bar__group span::after,
  body .site-trust-bar__track span::after {
    margin-left: 1.2rem;
  }

  body .site-cart-panel {
    top: calc(var(--elevate-announcement-height) + var(--elevate-header-height) + 0.45rem) !important;
    right: 0.5rem;
    width: min(30rem, calc(100vw - 1rem));
    height: calc(100dvh - (var(--elevate-announcement-height) + var(--elevate-header-height) + 1rem));
  }
}

/* Version 2.7.7: simplified top chrome after BioPulse pass */
:root {
  --elevate-trust-height: 1.75rem;
  --elevate-header-height: 4.7rem;
}

body .site-announcement-bar {
  display: none !important;
}

body .site-trust-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 180 !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: var(--elevate-trust-height) !important;
  margin: 0 0 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(214, 220, 226, 0.1) !important;
  background: linear-gradient(90deg, rgba(14, 18, 23, 0.98), rgba(18, 24, 31, 0.98), rgba(14, 18, 23, 0.98)) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
}

body .site-trust-bar__viewport {
  display: block !important;
  width: min(calc(100% - 1rem), 100%) !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

body .site-trust-bar__track {
  display: flex !important;
  align-items: center;
  width: max-content !important;
  gap: 0 !important;
  white-space: nowrap !important;
  animation: elevateTrustLoop 26s linear infinite !important;
}

body .site-trust-bar__group {
  display: flex !important;
  align-items: center;
  gap: 1.7rem;
  padding: 0.45rem 1.15rem;
  flex: 0 0 auto;
}

body .site-trust-bar__group span,
body .site-trust-bar__track span {
  color: #e4ebf0 !important;
  font-size: 0.61rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  line-height: 1 !important;
  text-transform: uppercase;
}

body .site-trust-bar__group span::after,
body .site-trust-bar__track span::after {
  margin-left: 1.7rem;
  color: rgba(255, 255, 255, 0.26);
}

body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  position: sticky !important;
  top: var(--elevate-trust-height) !important;
  left: 0 !important;
  right: 0 !important;
  inset-inline: 0 !important;
  z-index: 170 !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 0 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(214, 220, 226, 0.08) !important;
  border-radius: 0 !important;
  background: rgba(8, 10, 14, 0.97) !important;
  box-shadow: none !important;
  backdrop-filter: blur(20px);
}

body .admin-bar .site-trust-bar,
body.admin-bar .site-trust-bar {
  top: 32px !important;
}

body .admin-bar .site-header,
body.admin-bar .site-header {
  top: calc(32px + var(--elevate-trust-height)) !important;
}

body .site-header__inner {
  display: grid !important;
  grid-template-columns: minmax(10.75rem, 12.4rem) minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 1rem !important;
  width: min(calc(100% - 2.2rem), 1280px) !important;
  min-height: var(--elevate-header-height) !important;
  margin: 0 auto !important;
  padding: 0.68rem 0 !important;
}

body .site-header__inner .site-branding {
  display: flex !important;
  align-items: center;
  max-width: 12.4rem !important;
  min-width: 0;
}

body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  max-width: 100% !important;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  display: block;
  width: auto !important;
  height: 2.6rem !important;
  max-width: 11.8rem !important;
  margin: 0 !important;
  transform: none !important;
  object-fit: contain;
}

body .site-header__inner .site-nav {
  position: static !important;
  left: auto !important;
  transform: none !important;
  justify-self: center !important;
  width: auto !important;
  min-width: 0 !important;
}

body .site-header__inner .site-nav-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  width: auto !important;
  gap: clamp(0.85rem, 1.35vw, 1.35rem) !important;
}

body .site-header__inner .site-nav-list li {
  flex: 0 0 auto;
}

body .site-header .site-nav a {
  color: #edf2f6 !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body .site-header__inner .header-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-self: end !important;
  gap: 0.45rem !important;
  min-width: 0;
}

body .account-button,
body .cart-button {
  min-height: 2.4rem !important;
  padding: 0.5rem 0.8rem !important;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #edf2f6 !important;
  font-size: 0.82rem !important;
  box-shadow: none !important;
}

body .account-button__label,
body .cart-button {
  font-size: 0.82rem !important;
}

body .cart-count {
  min-width: 1.35rem;
  height: 1.35rem;
  font-size: 0.68rem;
}

body .nav-toggle {
  display: none !important;
}

body .site-cart-backdrop {
  z-index: 205 !important;
}

body .site-cart-panel {
  top: calc(var(--elevate-trust-height) + var(--elevate-header-height) + 0.65rem) !important;
  right: 1rem !important;
  bottom: 1rem !important;
  z-index: 215 !important;
  height: calc(100dvh - (var(--elevate-trust-height) + var(--elevate-header-height) + 1.65rem)) !important;
}

@media (max-width: 980px) {
  body .site-header__inner {
    grid-template-columns: minmax(9.5rem, 10.8rem) minmax(0, 1fr) auto !important;
    gap: 0.75rem !important;
    width: min(calc(100% - 1.2rem), 1280px) !important;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.25rem !important;
    max-width: 10.2rem !important;
  }

  body .site-header__inner .site-nav-list {
    gap: 0.8rem !important;
  }

  body .site-header .site-nav a {
    font-size: 0.78rem !important;
  }

  body .account-button,
  body .cart-button {
    min-height: 2.2rem !important;
    padding: 0.45rem 0.7rem !important;
  }
}

@media (max-width: 820px) {
  :root {
    --elevate-trust-height: 1.6rem;
    --elevate-header-height: 4.35rem;
  }

  body .admin-bar .site-trust-bar,
  body.admin-bar .site-trust-bar {
    top: 46px !important;
  }

  body .admin-bar .site-header,
  body.admin-bar .site-header {
    top: calc(46px + var(--elevate-trust-height)) !important;
  }

  body .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    min-height: auto !important;
    padding: 0.58rem 0 !important;
  }

  body .site-header__inner .site-nav {
    grid-column: 1 / -1;
    justify-self: start !important;
    width: 100% !important;
    overflow-x: auto;
    padding-bottom: 0.08rem;
    scrollbar-width: none;
  }

  body .site-header__inner .site-nav::-webkit-scrollbar {
    display: none;
  }

  body .site-header__inner .site-nav-list {
    justify-content: flex-start !important;
    width: max-content !important;
    gap: 0.95rem !important;
    padding-right: 0.3rem;
  }

  body .nav-toggle {
    display: inline-flex !important;
  }

  body .site-trust-bar__group {
    gap: 1.2rem;
    padding: 0.38rem 0.9rem;
  }

  body .site-trust-bar__group span,
  body .site-trust-bar__track span {
    font-size: 0.56rem !important;
    letter-spacing: 0.12em !important;
  }

  body .site-trust-bar__group span::after,
  body .site-trust-bar__track span::after {
    margin-left: 1.2rem;
  }

  body .site-cart-panel {
    top: calc(var(--elevate-trust-height) + var(--elevate-header-height) + 0.45rem) !important;
    right: 0.5rem !important;
    width: min(30rem, calc(100vw - 1rem)) !important;
    height: calc(100dvh - (var(--elevate-trust-height) + var(--elevate-header-height) + 1rem)) !important;
  }
}

/* Version 2.7.8: standard full-width header, no trust bars */
:root {
  --elevate-header-height: 4.7rem;
}

body .site-trust-bar,
body .site-announcement-bar {
  display: none !important;
}

body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  inset-inline: 0 !important;
  z-index: 180 !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 0 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(214, 220, 226, 0.1) !important;
  border-radius: 0 !important;
  background: rgba(8, 10, 14, 0.97) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px);
}

body .admin-bar .site-header,
body.admin-bar .site-header {
  top: 32px !important;
}

body .site-header__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 1rem !important;
  width: 100% !important;
  max-width: none !important;
  min-height: var(--elevate-header-height) !important;
  margin: 0 !important;
  padding: 0 1.5rem !important;
}

body .site-header__inner .site-branding {
  display: flex !important;
  align-items: center;
  justify-self: start !important;
  min-width: 0;
  max-width: 13rem !important;
}

body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  max-width: 100% !important;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  display: block;
  width: auto !important;
  height: 2.6rem !important;
  max-width: 12.4rem !important;
  margin: 0 !important;
  transform: none !important;
  object-fit: contain;
}

body .site-header__inner .site-nav {
  position: static !important;
  left: auto !important;
  transform: none !important;
  justify-self: center !important;
  width: auto !important;
  min-width: 0 !important;
}

body .site-header__inner .site-nav-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  width: auto !important;
  gap: clamp(0.9rem, 1.5vw, 1.5rem) !important;
}

body .site-header__inner .site-nav-list li {
  flex: 0 0 auto;
}

body .site-header .site-nav a {
  color: #edf2f6 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body .site-header__inner .header-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-self: end !important;
  gap: 0.5rem !important;
  min-width: 0;
}

body .account-button,
body .cart-button {
  min-height: 2.45rem !important;
  padding: 0.5rem 0.82rem !important;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #edf2f6 !important;
  font-size: 0.82rem !important;
  box-shadow: none !important;
}

body .account-button__label,
body .cart-button {
  font-size: 0.82rem !important;
}

body .cart-count {
  min-width: 1.35rem;
  height: 1.35rem;
  font-size: 0.68rem;
}

body .site-cart-backdrop {
  z-index: 205 !important;
}

body .site-cart-panel {
  top: calc(var(--elevate-header-height) + 0.65rem) !important;
  right: 1rem !important;
  bottom: 1rem !important;
  z-index: 215 !important;
  height: calc(100dvh - (var(--elevate-header-height) + 1.65rem)) !important;
}

@media (max-width: 980px) {
  body .site-header__inner {
    padding: 0 1rem !important;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.3rem !important;
    max-width: 10.75rem !important;
  }

  body .site-header__inner .site-nav-list {
    gap: 0.9rem !important;
  }

  body .site-header .site-nav a {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 820px) {
  :root {
    --elevate-header-height: 4.25rem;
  }

  body .admin-bar .site-header,
  body.admin-bar .site-header {
    top: 46px !important;
  }

  body .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    min-height: auto !important;
    gap: 0.7rem !important;
    padding: 0.58rem 0.9rem !important;
  }

  body .site-header__inner .site-nav {
    grid-column: 1 / -1;
    justify-self: start !important;
    width: 100% !important;
    overflow-x: auto;
    padding-bottom: 0.08rem;
    scrollbar-width: none;
  }

  body .site-header__inner .site-nav::-webkit-scrollbar {
    display: none;
  }

  body .site-header__inner .site-nav-list {
    justify-content: flex-start !important;
    width: max-content !important;
    gap: 0.95rem !important;
    padding-right: 0.3rem;
  }

  body .nav-toggle {
    display: inline-flex !important;
  }

  body .site-cart-panel {
    top: calc(var(--elevate-header-height) + 0.45rem) !important;
    right: 0.5rem !important;
    width: min(30rem, calc(100vw - 1rem)) !important;
    height: calc(100dvh - (var(--elevate-header-height) + 1rem)) !important;
  }
}

/* Version 2.7.9: stock header reset */
:root {
  --elevate-stock-header-top: 0.9rem;
  --elevate-stock-header-height: 5rem;
}

body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  position: sticky !important;
  top: var(--elevate-stock-header-top) !important;
  left: auto !important;
  right: auto !important;
  inset-inline: auto !important;
  z-index: 180 !important;
  display: block !important;
  width: min(calc(100% - 2rem), 1280px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  margin-top: var(--elevate-stock-header-top) !important;
  padding: 0 !important;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 1.2rem !important;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.98), rgba(7, 9, 12, 0.96)) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(18px);
  overflow: visible;
}

body .admin-bar .site-header,
body.admin-bar .site-header {
  top: calc(32px + var(--elevate-stock-header-top)) !important;
}

body .site-header__inner {
  display: grid !important;
  grid-template-columns: minmax(10.5rem, 13rem) minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 1.2rem !important;
  width: 100% !important;
  max-width: none !important;
  min-height: var(--elevate-stock-header-height) !important;
  margin: 0 !important;
  padding: 0.8rem 1.25rem !important;
}

body .site-header__inner .site-branding {
  display: flex !important;
  align-items: center;
  justify-self: start !important;
  min-width: 0;
  max-width: 13rem !important;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img {
  height: 2.65rem !important;
  max-width: 12rem !important;
}

body .site-header__inner .site-nav {
  position: static !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;
  width: 100% !important;
  min-width: 0 !important;
}

body .site-header__inner .site-nav-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  width: auto !important;
  gap: 1.2rem !important;
}

body .site-header__inner .site-nav-list li {
  flex: 0 0 auto;
}

body .site-header .site-nav a {
  color: #edf2f6 !important;
  font-size: 0.87rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body .site-header__inner .header-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-self: end !important;
  gap: 0.5rem !important;
  min-width: max-content;
}

body .account-button,
body .cart-button {
  min-height: 2.45rem !important;
  padding: 0.5rem 0.82rem !important;
  font-size: 0.82rem !important;
}

body .nav-toggle {
  display: none !important;
}

body .site-cart-panel {
  top: calc(var(--elevate-stock-header-top) + var(--elevate-stock-header-height) + 0.8rem) !important;
  height: calc(100dvh - (var(--elevate-stock-header-top) + var(--elevate-stock-header-height) + 1.8rem)) !important;
}

@media (max-width: 1100px) {
  body .site-header__inner {
    grid-template-columns: minmax(9.25rem, 10.8rem) minmax(0, 1fr) auto !important;
    gap: 0.9rem !important;
    padding-inline: 1rem !important;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img {
    height: 2.3rem !important;
    max-width: 10.4rem !important;
  }

  body .site-header__inner .site-nav-list {
    gap: 0.9rem !important;
  }

  body .site-header .site-nav a {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 700px) {
  :root {
    --elevate-stock-header-height: 4.3rem;
  }

  body .admin-bar .site-header,
  body.admin-bar .site-header {
    top: calc(46px + var(--elevate-stock-header-top)) !important;
  }

  body .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    min-height: auto !important;
    gap: 0.7rem !important;
    padding: 0.62rem 0.9rem !important;
  }

  body .site-header__inner .site-nav {
    grid-column: 1 / -1;
    justify-self: start !important;
    width: 100% !important;
    overflow-x: auto;
    padding-bottom: 0.08rem;
    scrollbar-width: none;
  }

  body .site-header__inner .site-nav::-webkit-scrollbar {
    display: none;
  }

  body .site-header__inner .site-nav-list {
    justify-content: flex-start !important;
    width: max-content !important;
    gap: 0.95rem !important;
  }

  body .nav-toggle {
    display: inline-flex !important;
  }

  body .site-cart-panel {
    top: calc(var(--elevate-stock-header-top) + var(--elevate-stock-header-height) + 0.45rem) !important;
    height: calc(100dvh - (var(--elevate-stock-header-top) + var(--elevate-stock-header-height) + 1rem)) !important;
  }
}


/* =========================================================
   Version 2.7.8: final header stabilization
   ========================================================= */
body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  top: 0 !important;
  margin: 0 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

body.admin-bar .site-header,
body .admin-bar .site-header {
  top: 32px !important;
}

body .site-header__inner,
body .site-header.is-scrolled .site-header__inner,
body.header-scrolled .site-header__inner {
  width: min(calc(100% - 2rem), 1280px) !important;
  min-height: 92px !important;
  margin: 0 auto !important;
  padding: 0.8rem 0 !important;
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 1rem !important;
  transform: none !important;
  transition: none !important;
}

body .site-header__inner .site-branding {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img,
body .site-branding img {
  width: auto !important;
  height: 72px !important;
  max-width: 220px !important;
  object-fit: contain !important;
  transform: none !important;
  transition: none !important;
}

body .site-header__inner .site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
}

body .site-header__inner .site-nav-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.35rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body .site-header .site-nav a {
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

body .site-header__inner .header-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-self: end !important;
  gap: 0.5rem !important;
}

body .account-button,
body .cart-button {
  min-height: 42px !important;
}

@media (max-width: 820px) {
  body.admin-bar .site-header,
  body .admin-bar .site-header {
    top: 46px !important;
  }

  body .site-header,
  body .site-header.is-scrolled,
  body.header-scrolled .site-header {
    top: 0 !important;
  }

  body .site-header__inner,
  body .site-header.is-scrolled .site-header__inner,
  body.header-scrolled .site-header__inner {
    width: calc(100% - 1rem) !important;
    min-height: auto !important;
    padding: 0.62rem 0 !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 0.7rem !important;
  }

  body .site-header__inner .site-branding {
    width: auto !important;
    min-width: 0 !important;
    max-width: 9.75rem !important;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img,
  body .site-branding img {
    height: 2.2rem !important;
    max-width: 9.75rem !important;
  }

  body .site-header__inner .site-nav {
    display: none !important;
    grid-column: 1 / -1 !important;
    order: 4 !important;
    width: 100% !important;
    margin-top: 0.15rem !important;
    padding: 0.55rem !important;
    border: 1px solid rgba(214, 220, 226, 0.08) !important;
    border-radius: 1.1rem !important;
    background: rgba(8, 10, 14, 0.98) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28) !important;
    overflow: visible !important;
  }

  body .site-header__inner .site-nav.is-open {
    display: block !important;
  }

  body .site-header__inner .site-nav .site-nav-list {
    display: grid !important;
    justify-content: stretch !important;
    gap: 0.45rem !important;
    width: 100% !important;
  }

  body .site-header__inner .site-nav .site-nav-list li {
    width: 100% !important;
  }

  body .site-header__inner .site-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0.82rem 0.95rem !important;
    border: 1px solid rgba(214, 220, 226, 0.08) !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.04) !important;
    white-space: normal !important;
  }

  body .site-header__inner .nav-toggle {
    display: inline-flex !important;
  }

  body .account-button,
  body .cart-button {
    min-height: 2.35rem !important;
    padding: 0.45rem 0.78rem !important;
  }
}


/* =========================================================
   Version 2.8.0: final forced header + real flagship carousel
   ========================================================= */
body .site-header,
body .site-header.is-scrolled,
body.header-scrolled .site-header {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  inset-inline: auto !important;
  z-index: 250 !important;
  display: block !important;
  width: min(calc(100% - 2rem), 1420px) !important;
  max-width: 1420px !important;
  margin: 0.9rem auto 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 1.25rem !important;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.98), rgba(8, 10, 14, 0.95)) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  overflow: visible !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

body.admin-bar .site-header,
body .admin-bar .site-header {
  top: 32px !important;
}

body .site-header__inner {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  gap: 1rem !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 5.25rem !important;
  margin: 0 !important;
  padding: 0.9rem 1.25rem !important;
}

body .site-header__inner > .site-branding {
  display: flex !important;
  align-items: center !important;
  justify-self: start !important;
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
}

body .site-branding .custom-logo-link,
body .site-branding .brand-logo-image,
body .site-branding a {
  display: inline-flex !important;
  align-items: center !important;
  max-width: 100% !important;
}

body .site-branding .custom-logo-link img,
body .site-branding .brand-logo-image img,
body .site-branding img {
  display: block !important;
  width: auto !important;
  height: 3rem !important;
  max-width: 12rem !important;
  margin: 0 !important;
  object-fit: contain !important;
  transform: none !important;
}

body .site-header__inner > .site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;
  width: 100% !important;
  min-width: 0 !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}

body .site-header__inner > .site-nav .site-nav-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  gap: 1.35rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body .site-header__inner > .site-nav .site-nav-list li {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

body .site-header .site-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 !important;
  color: #edf2f6 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  text-transform: none !important;
}

body .site-header__inner > .header-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-self: end !important;
  flex-wrap: nowrap !important;
  gap: 0.55rem !important;
  min-width: max-content !important;
}

body .account-button,
body .cart-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 2.55rem !important;
  padding: 0.55rem 0.9rem !important;
  border: 1px solid rgba(214, 220, 226, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #edf2f6 !important;
  font-size: 0.84rem !important;
  box-shadow: none !important;
}

body .cart-count {
  min-width: 1.35rem !important;
  height: 1.35rem !important;
  font-size: 0.68rem !important;
}

body .site-header__inner > .nav-toggle {
  display: none !important;
}

body .catalog-carousel-viewport {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
}

body .flagship-carousel-track {
  --carousel-gap: 24px;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: var(--carousel-gap) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
  transform: translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform;
  touch-action: pan-y;
}

body .flagship-carousel-track > li,
body .flagship-carousel-track > [data-carousel-item] {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3) !important;
  width: calc((100% - (var(--carousel-gap) * 2)) / 3) !important;
  min-width: calc((100% - (var(--carousel-gap) * 2)) / 3) !important;
  max-width: calc((100% - (var(--carousel-gap) * 2)) / 3) !important;
  margin: 0 !important;
}

body .flagship-carousel-track > li .product-card,
body .flagship-carousel-track > [data-carousel-item] .product-card,
body .flagship-carousel-track > li.aminogenix-loop-card,
body .flagship-carousel-track > li.product {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 1320px) {
  body .flagship-carousel-track > li,
  body .flagship-carousel-track > [data-carousel-item] {
    flex-basis: calc((100% - var(--carousel-gap)) / 2) !important;
    width: calc((100% - var(--carousel-gap)) / 2) !important;
    min-width: calc((100% - var(--carousel-gap)) / 2) !important;
    max-width: calc((100% - var(--carousel-gap)) / 2) !important;
  }
}

@media (max-width: 820px) {
  body.admin-bar .site-header,
  body .admin-bar .site-header {
    top: 46px !important;
  }

  body .site-header,
  body .site-header.is-scrolled,
  body.header-scrolled .site-header {
    width: calc(100% - 1rem) !important;
    margin-top: 0.5rem !important;
  }

  body .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    min-height: auto !important;
    gap: 0.65rem !important;
    padding: 0.62rem 0.85rem !important;
  }

  body .site-header__inner > .site-branding {
    width: auto !important;
    min-width: 0 !important;
    max-width: 9.75rem !important;
  }

  body .site-branding .custom-logo-link img,
  body .site-branding .brand-logo-image img,
  body .site-branding img {
    height: 2.2rem !important;
    max-width: 9.75rem !important;
  }

  body .site-header__inner > .site-nav {
    position: absolute !important;
    top: calc(100% + 0.55rem) !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.55rem !important;
    border: 1px solid rgba(214, 220, 226, 0.08) !important;
    border-radius: 1.1rem !important;
    background: rgba(8, 10, 14, 0.985) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28) !important;
    overflow: visible !important;
  }

  body .site-header__inner > .site-nav.is-open {
    display: block !important;
  }

  body .site-header__inner > .site-nav .site-nav-list {
    display: grid !important;
    justify-content: stretch !important;
    width: 100% !important;
    gap: 0.45rem !important;
  }

  body .site-header__inner > .site-nav .site-nav-list li {
    width: 100% !important;
  }

  body .site-header__inner > .site-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0.82rem 0.95rem !important;
    border: 1px solid rgba(214, 220, 226, 0.08) !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.04) !important;
    white-space: normal !important;
  }

  body .site-header__inner > .header-actions {
    gap: 0.45rem !important;
  }

  body .site-header__inner > .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body .account-button,
  body .cart-button {
    min-height: 2.35rem !important;
    padding: 0.45rem 0.78rem !important;
  }

  body .account-button__label {
    display: none !important;
  }

  body .flagship-carousel-track {
    --carousel-gap: 16px;
  }

  body .flagship-carousel-track > li,
  body .flagship-carousel-track > [data-carousel-item] {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}
