:root {
  --ink: #17212b;
  --muted: #5d6973;
  --navy: #001b38;
  --blue: #1264ad;
  --teal: #00565a;
  --teal-dark: #003f43;
  --teal-soft: #e4f1f1;
  --line: #cfdadd;
  --paper: #ffffff;
  --soft: #f5f8f8;
  --amber: #b86a00;
  --shadow: 0 20px 60px rgba(17, 38, 45, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.is-cart-open,
body.is-age-gated {
  overflow: hidden;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.97;
}

h3 {
  margin-bottom: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 168px 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 12px clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(207, 218, 221, 0.72);
  backdrop-filter: blur(18px);
}

.research-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 18px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.research-notice button {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  background: transparent;
  color: white;
  font: 800 11px/1 "Inter", Arial, sans-serif;
  padding: 0 12px;
  cursor: pointer;
}

.research-notice span {
  line-height: 1.35;
  text-align: center;
}

.research-notice[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 27, 56, 0.72);
  backdrop-filter: blur(10px);
}

.age-gate-panel {
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid rgba(207, 218, 221, 0.9);
  border-radius: 8px;
  background: white;
  box-shadow: 0 28px 90px rgba(0, 27, 56, 0.28);
}

.age-gate-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 50px);
}

.age-gate-panel p {
  color: var(--muted);
}

.age-gate-panel > a {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.age-gate-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 20px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.age-gate-check input {
  width: 16px;
  min-height: 16px;
  margin: 3px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 48px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 36px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.header-phone,
.header-action,
.button,
.cart-button {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: var(--teal);
}

.main-nav a[aria-current="page"] {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.header-phone {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 5px;
  font: 800 14px/1 "Inter", Arial, sans-serif;
  cursor: pointer;
}

button.header-action {
  font-family: "Inter", Arial, sans-serif;
}

.header-action {
  justify-self: end;
  white-space: nowrap;
}

.header-action,
.button-primary,
.cart-button {
  background: var(--teal);
  color: white;
  border: 1px solid var(--teal);
  box-shadow: inset 0 -10px 20px rgba(0, 42, 44, 0.16);
}

.header-action:hover,
.button-primary:hover,
.cart-button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-dark);
  border: 1px solid var(--teal);
}

.button-secondary:hover {
  background: var(--teal-soft);
}

button:disabled,
.button:disabled,
.cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(480px, 0.88fr);
  align-items: center;
  min-height: 620px;
  padding: clamp(34px, 4vw, 58px) clamp(22px, 4vw, 52px) 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0) 64%),
    radial-gradient(circle at 74% 40%, rgba(18, 100, 173, 0.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7fbfb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(207, 218, 221, 0.55));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(42px, 4.4vw, 60px);
}

.availability,
.section-label,
.product-family,
.path-label {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.availability {
  margin-bottom: 16px;
  color: var(--blue);
}

.hero-copy > p:not(.availability) {
  max-width: 620px;
  margin-bottom: 24px;
  color: #2f3b46;
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip span {
  padding: 16px 10px 16px 0;
  color: var(--muted);
  font-size: 13px;
}

.metric-strip strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.trust-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 18px;
}

.trust-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(0, 86, 90, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 460px;
  align-self: stretch;
}

.hero-photo {
  position: absolute;
  right: clamp(24px, 6vw, 88px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(32vw, 308px);
  height: auto;
  filter: drop-shadow(0 24px 26px rgba(13, 35, 41, 0.22));
}

.trace {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 26px;
  z-index: 1;
  width: 230px;
  height: 130px;
  color: var(--teal);
}

.trace-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1;
}

.trace-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

section:not(.hero) {
  padding: 46px clamp(22px, 4vw, 52px);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-block: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfc;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-block: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-row article {
  min-height: 104px;
  padding: 22px clamp(14px, 2vw, 26px);
  border-right: 1px solid var(--line);
}

.trust-row article:last-child {
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--teal-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.95;
}

.trust-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.proof-band article {
  min-height: 150px;
  padding: 26px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band span,
.proof-band strong {
  display: block;
}

.proof-band span {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.proof-band strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.proof-band p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.comparison-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 86, 90, 0.08), transparent 55%),
    #fff;
}

.why-zemo {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.why-zemo p:not(.section-label) {
  max-width: 660px;
  color: var(--muted);
}

.why-list,
.inside-grid,
.category-support-grid,
.policy-grid {
  display: grid;
  gap: 14px;
}

.why-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-list article,
.inside-grid article,
.category-support-grid article,
.policy-grid article {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.why-list strong,
.why-list span,
.inside-grid strong,
.inside-grid p,
.inside-grid span,
.category-support-grid strong,
.category-support-grid span,
.policy-grid strong,
.policy-grid span {
  display: block;
}

.why-list strong,
.inside-grid strong,
.category-support-grid strong,
.policy-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.why-list span,
.inside-grid p,
.category-support-grid span,
.policy-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.inside-order,
.compound-snapshot,
.support-categories,
.policy-grid-section {
  border-top: 1px solid var(--line);
}

.inside-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.inside-grid span {
  width: max-content;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.compound-snapshot {
  background: white;
}

.snapshot-table {
  display: grid;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: white;
}

.snapshot-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(130px, 0.8fr) minmax(90px, 0.55fr) minmax(110px, 0.6fr);
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.snapshot-row:last-child {
  border-bottom: 0;
}

.snapshot-row:not(.snapshot-head):hover {
  background: var(--teal-soft);
}

.snapshot-head {
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.snapshot-row span:first-child {
  color: var(--teal-dark);
  font-weight: 900;
}

.comparison-preview p:not(.section-label) {
  max-width: 820px;
  color: var(--muted);
}

.page-top {
  border-top: 0;
  padding-top: clamp(42px, 7vw, 82px) !important;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.signals h2,
.returning h2,
.providers h2,
.contact h2,
.guide h2,
.paths h2,
.peptides h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-intro,
.signals > p,
.returning p,
.provider-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(160px, 220px));
  gap: 12px;
  max-width: 1120px;
  margin: 20px 0 0;
}

.catalog-search,
.catalog-sort {
  max-width: none;
}

.catalog-sort select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: 800 14px/1 "Inter", Arial, sans-serif;
  padding: 0 14px;
  cursor: pointer;
}

.catalog-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.catalog-status strong,
.catalog-status span[data-total-count],
.catalog-status span[data-active-label] {
  color: var(--teal-dark);
  font-weight: 900;
}

.catalog-status span[data-active-label] {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.catalog-pulse {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.catalog-pulse article {
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.catalog-pulse span,
.catalog-pulse strong {
  display: block;
}

.catalog-pulse span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.catalog-pulse strong {
  margin-top: 8px;
  color: var(--teal-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  line-height: 0.9;
}

.catalog-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.catalog-assurance article {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #f7fbfb);
}

.catalog-assurance strong,
.catalog-assurance span {
  display: block;
}

.catalog-assurance strong {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 13px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.catalog-assurance span {
  color: var(--muted);
  font-size: 13px;
}

.procurement-lane {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: white;
}

.procurement-lane summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  background: linear-gradient(90deg, #f7fbfb, #ffffff);
  cursor: pointer;
  list-style: none;
}

.procurement-lane summary::-webkit-details-marker {
  display: none;
}

.procurement-lane summary > span,
.procurement-lane summary > strong {
  margin: 0;
}

.procurement-lane summary button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--teal-dark);
  font: 800 12px/1 "Inter", Arial, sans-serif;
  padding: 0 10px;
  cursor: pointer;
}

.procurement-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.procurement-steps article {
  min-height: 150px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.procurement-steps article:last-child {
  border-right: 0;
}

.procurement-lane span,
.procurement-lane strong {
  display: block;
}

.procurement-lane span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.procurement-lane strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.procurement-lane p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.signals {
  border-top: 1px solid var(--line);
}

.signal-grid,
.category-grid,
.path-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.signal-grid article,
.category-grid button,
.path-grid article,
.product-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.signal-grid article {
  padding: 22px;
}

.signal-grid h3,
.category-grid h3 {
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.signal-grid p,
.category-grid p,
.path-grid p,
.faq-list p {
  margin-bottom: 0;
  color: #46545e;
  font-size: 14px;
}

.returning {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) 1fr;
  gap: 32px;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.returning ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.returning li,
.chips span,
.directory button,
.directory a {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.returning li {
  padding: 12px 14px;
}

.returning-tools {
  display: grid;
  gap: 18px;
}

.reference-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.reference-form .form-status {
  grid-column: 1 / -1;
}

.catalog-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter {
  min-width: 64px;
  min-height: 34px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font: 800 13px/1 "Inter", Arial, sans-serif;
  cursor: pointer;
}

.filter.is-active {
  background: var(--teal);
  color: white;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-grid button {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-grid button:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 26px rgba(17, 38, 45, 0.08);
  transform: translateY(-2px);
}

.category-grid > button > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid rgba(18, 100, 173, 0.18);
  border-radius: 999px;
  background: #f4f9fb;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
}

.product-card {
  --card-accent: var(--teal);
  --card-soft: var(--teal-soft);
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  min-height: 232px;
  padding: 18px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card[data-family="Foundational"] {
  --card-accent: #00565a;
  --card-soft: #e4f1f1;
}

.product-card[data-family="Metabolic"] {
  --card-accent: #1264ad;
  --card-soft: #e8f2fb;
}

.product-card[data-family="Hormone"] {
  --card-accent: #7a4a96;
  --card-soft: #f2ecf6;
}

.product-card[data-family="Research"] {
  --card-accent: #b86a00;
  --card-soft: #fff2dd;
}

.product-card[data-family="Ancillaries"] {
  --card-accent: #2c6c49;
  --card-soft: #e7f3ec;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), var(--blue));
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(17, 38, 45, 0.08);
}

.product-card.is-hidden {
  display: none;
}

.product-grid.is-table-view {
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-grid.is-table-view .product-card {
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: auto;
  align-items: center;
}

.product-grid.is-table-view .mini-vial {
  width: 42px;
  height: 82px;
  margin-top: 8px;
}

.product-grid.is-table-view .mini-vial::before {
  left: 6px;
  width: 30px;
  height: 14px;
}

.product-grid.is-table-view .mini-vial span {
  left: 7px;
  right: 7px;
  top: 38px;
  height: 14px;
}

.product-grid.is-table-view .product-info {
  display: grid;
  grid-template-columns: minmax(116px, 0.55fr) minmax(150px, 0.8fr) minmax(280px, 1.4fr) minmax(170px, 0.7fr);
  gap: 16px;
  align-items: center;
}

.product-grid.is-table-view .product-family,
.product-grid.is-table-view .product-info h3,
.product-grid.is-table-view dl,
.product-grid.is-table-view .product-actions {
  margin: 0;
}

.product-grid.is-table-view dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-grid.is-table-view dl div {
  display: grid;
  padding: 0;
  border-top: 0;
}

.product-grid.is-table-view .product-actions {
  grid-template-columns: 1fr 1fr;
}

.mini-vial {
  position: relative;
  width: 68px;
  height: 134px;
  margin: 14px auto 0;
  border: 1px solid rgba(96, 120, 130, 0.46);
  border-radius: 20px 20px 12px 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 17%, transparent 17%),
    radial-gradient(circle at 40% 18%, rgba(255, 255, 255, 0.92), rgba(219, 238, 242, 0.56) 46%, rgba(128, 153, 160, 0.25) 100%),
    linear-gradient(90deg, #ffffff 0%, #dfe8e9 38%, #ffffff 62%, #c6d5d8 100%);
  box-shadow:
    inset 9px 0 12px rgba(255, 255, 255, 0.68),
    inset -8px 0 12px rgba(80, 104, 112, 0.14),
    0 14px 18px rgba(17, 38, 45, 0.16);
}

.mini-vial::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 10px;
  width: 46px;
  height: 20px;
  border-radius: 6px 6px 4px 4px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 6px),
    linear-gradient(90deg, var(--navy), var(--blue), var(--navy));
  box-shadow: 0 3px 0 #dfe8eb, 0 4px 0 rgba(96, 120, 130, 0.36);
}

.mini-vial span {
  position: absolute;
  left: 9px;
  right: 9px;
  top: 48px;
  height: 54px;
  border: 1px solid rgba(207, 218, 221, 0.86);
  border-radius: 5px;
  background:
    linear-gradient(180deg, #ffffff 0 31%, var(--card-accent) 31% 66%, #ffffff 66% 100%);
  box-shadow: inset 0 0 10px rgba(17, 38, 45, 0.06);
}

.mini-vial::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 28px;
  border-radius: 0 0 10px 10px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.72), transparent 58%),
    linear-gradient(180deg, rgba(183, 220, 224, 0.42), rgba(234, 247, 248, 0.6));
  opacity: 0.72;
}

.mini-vial strong,
.mini-vial small {
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 1;
  display: block;
  overflow: hidden;
  color: white;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-vial strong {
  top: 56px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.35px;
}

.mini-vial small {
  top: 73px;
  font-size: 8px;
  font-weight: 800;
  opacity: 0.88;
}

.product-family {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--card-accent), white 70%);
  border-radius: 999px;
  background: var(--card-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.product-card:hover .product-price {
  border-color: var(--card-accent);
  background: white;
  box-shadow: 0 0 0 3px var(--card-soft);
}

.product-info h3 {
  display: -webkit-box;
  min-height: 58px;
  margin-bottom: 6px;
  overflow: hidden;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.05;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

dl {
  margin: 0 0 14px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.spec-docs dt::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  margin-right: 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
  vertical-align: -2px;
  opacity: 0.72;
}

dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.cart-button,
.detail-button {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 8px;
}

.detail-button {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--teal-dark);
  font-weight: 800;
  cursor: pointer;
}

.detail-button:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.fulfillment {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.fulfillment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.fulfillment-grid article {
  padding: 22px;
  border-left: 1px solid var(--line);
}

.fulfillment-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}

.fulfillment-grid h3 {
  color: var(--teal-dark);
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.fulfillment-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.operations {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 86, 90, 0.06), transparent 42%),
    white;
}

.operations > div > p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.operations-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
}

.operations-grid h3 {
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.operations-grid ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.docs-hub {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.docs-hub > div p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
}

.docs-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: 0 12px 30px rgba(17, 38, 45, 0.06);
}

.docs-checks,
.docs-form .button,
.docs-response-note,
.docs-form .form-status {
  grid-column: 1 / -1;
}

.docs-response-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.docs-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.docs-checks label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.docs-checks input {
  width: 16px;
  min-height: 16px;
}

.verification-guide,
.support-expectations {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.verification-grid,
.support-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

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

.verification-grid article,
.support-grid article {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  overflow: visible;
}

.verification-grid strong,
.verification-grid span,
.support-grid strong,
.support-grid span {
  display: block;
}

.verification-grid strong,
.support-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.verification-grid span,
.support-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.peptides {
  background: linear-gradient(180deg, #fff, var(--soft));
  border-top: 1px solid var(--line);
}

.directory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.directory button,
.directory a,
.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
}

.directory button,
.directory a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--teal-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.directory button:hover,
.directory a:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.catalog-empty {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
}

.matrix {
  border-top: 1px solid var(--line);
  background: white;
}

.matrix .section-heading {
  align-items: center;
}

.matrix-table {
  display: grid;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: white;
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(220px, 1.4fr) minmax(190px, 1fr) minmax(190px, 1fr);
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.matrix-row:last-child {
  border-bottom: 0;
}

button.matrix-row {
  cursor: pointer;
}

button.matrix-row:hover {
  background: var(--teal-soft);
}

.matrix-head {
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.matrix-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.matrix-row span:first-child {
  color: var(--teal-dark);
  font-weight: 900;
}

.paths {
  border-top: 1px solid var(--line);
}

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

.path-grid article {
  padding: 26px;
}

.path-grid h3 {
  max-width: 520px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.guide {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 24px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--teal-dark);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.providers {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.quality {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.quality h1 {
  max-width: 100%;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.98;
  overflow-wrap: normal;
}

.quality > div > p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quality-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.quality-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quality-grid h3 {
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.quality-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.provider-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: 0 12px 30px rgba(17, 38, 45, 0.06);
}

.provider-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 22px;
}

label {
  display: block;
  color: #2c3943;
  font-size: 13px;
  font-weight: 800;
}

label span {
  color: var(--amber);
}

input,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--ink);
  font: 500 14px/1.3 "Inter", Arial, sans-serif;
  padding: 10px 12px;
  outline: none;
}

label > input,
label > textarea {
  margin-top: 7px;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 86, 90, 0.12);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.message-field,
.form-status {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.compliance {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: white;
}

.compliance .section-label,
.compliance small {
  color: rgba(255, 255, 255, 0.82);
}

.compliance h2 {
  max-width: 680px;
}

.compliance p {
  margin-bottom: 8px;
  font-size: 20px;
}

.compliance small {
  display: block;
  max-width: 920px;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-block: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.support-strip article {
  padding: 24px clamp(22px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.support-strip article:last-child {
  border-right: 0;
}

.support-strip strong,
.support-strip span {
  display: block;
}

.support-strip strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.support-strip span {
  color: var(--muted);
  font-size: 14px;
}

.compare-hero {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.compare-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.compare-scoreboard article {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 38, 45, 0.05);
}

.compare-scoreboard span,
.compare-scoreboard strong,
.compare-scoreboard small {
  display: block;
}

.compare-scoreboard span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.compare-scoreboard strong {
  margin-top: 8px;
  color: var(--teal-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 40px;
  line-height: 0.92;
}

.compare-scoreboard small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.comparison-table-section {
  border-top: 1px solid var(--line);
}

.comparison-table {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: white;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(220px, 1fr) minmax(240px, 1.15fr);
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row span {
  padding: 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.comparison-row span:first-child {
  border-left: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.comparison-head {
  background: var(--navy);
}

.comparison-head span,
.comparison-head span:first-child {
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.buyer-checklist {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.market-standards {
  background: linear-gradient(180deg, #fff, var(--soft));
  border-top: 1px solid var(--line);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.standards-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 38, 45, 0.05);
}

.standards-grid span,
.standards-grid strong {
  display: block;
}

.standards-grid span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.standards-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 16px;
  letter-spacing: 0.2px;
}

.standards-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.checklist-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.checklist-grid strong,
.checklist-grid span {
  display: block;
}

.checklist-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.checklist-grid span {
  color: var(--muted);
  font-size: 14px;
}

.red-flags {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: white;
}

.red-flags .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.red-flags p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.red-flags ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.red-flags li {
  min-height: 64px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  color: white;
  font-size: 14px;
  font-weight: 850;
}

.shield {
  width: 44px;
  height: 44px;
  margin-top: 10px;
}

.shield svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: white;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) 1fr;
  gap: 40px;
  align-items: start;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.contact-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(22px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-logo {
  width: 104px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin: 0;
}

.site-footer p a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--teal-dark);
  font-weight: 800;
}

.product-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 50;
  transform: translate(-50%, -50%);
  width: min(620px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: white;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(17, 38, 45, 0.24);
}

.product-dialog::backdrop {
  background: rgba(0, 27, 56, 0.36);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(0, 27, 56, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.cart-drawer.is-open {
  background: rgba(0, 27, 56, 0.32);
  pointer-events: auto;
}

.cart-panel {
  width: min(460px, 100vw);
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  background: white;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px rgba(17, 38, 45, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  position: relative;
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  max-width: 320px;
  margin-bottom: 0;
  font-size: 38px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  color: var(--muted);
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row strong {
  color: var(--ink);
}

.cart-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cart-qty {
  display: grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  gap: 4px;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--teal-dark);
  font: 800 16px/1 "Inter", Arial, sans-serif;
  cursor: pointer;
}

.cart-qty span {
  color: var(--ink);
  text-align: center;
  font-size: 14px;
}

.cart-ack {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.cart-options {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.cart-options label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--ink);
  font-weight: 700;
}

.cart-options input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
}

.option-title {
  margin: 8px 0 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.option-title:first-child {
  margin-top: 0;
}

.cart-ack input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
}

.cart-form {
  display: grid;
  gap: 14px;
}

.clear-cart {
  width: 100%;
}

.product-dialog h2 {
  margin-bottom: 12px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--teal-dark);
  font: 800 12px/1 "Inter", Arial, sans-serif;
  padding: 0 10px;
  cursor: pointer;
}

.dialog-specs {
  margin: 20px 0;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-summary {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .product-grid,
  .category-grid,
  .fulfillment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .proof-band,
  .trust-row,
  .catalog-assurance,
  .procurement-steps,
  .compare-scoreboard,
  .standards-grid,
  .checklist-grid,
  .verification-grid,
  .support-grid,
  .inside-grid,
  .category-support-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-band article:nth-child(2) {
    border-right: 0;
  }

  .trust-row article:nth-child(3n) {
    border-right: 0;
  }

  .proof-band article {
    border-bottom: 1px solid var(--line);
  }

  .trust-row article {
    border-bottom: 1px solid var(--line);
  }

  .proof-band article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-row article:nth-child(n + 4) {
    border-bottom: 0;
  }

  .support-strip {
    grid-template-columns: 1fr;
  }

  .support-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-photo {
    right: auto;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: min(56vw, 300px);
  }

  .trace {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 220px;
  }

  .returning,
  .comparison-preview,
  .why-zemo,
  .red-flags,
  .operations,
  .docs-hub,
  .providers,
  .quality,
  .contact {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .category-grid,
  .catalog-tools,
  .catalog-pulse,
  .catalog-assurance,
  .operations-grid,
  .quality-grid,
  .fulfillment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid.is-table-view .product-info {
    grid-template-columns: minmax(120px, 0.8fr) minmax(180px, 1fr);
  }

  .product-grid.is-table-view dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .matrix-row {
    grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  }

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

  .comparison-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-row span:first-child {
    border-top: 0;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    width: 126px;
    height: 44px;
  }

  .header-action {
    min-width: 92px;
    padding: 0 14px;
  }

  .main-nav {
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    display: block;
    min-height: 760px;
    padding-bottom: 250px;
  }

  .hero-copy > p:not(.availability) {
    font-size: 16px;
  }

  .hero-visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 250px;
    min-height: 250px;
    overflow: hidden;
  }

  .hero-photo {
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
  }

  .trace {
    right: 10px;
    left: auto;
    transform: none;
    bottom: 8px;
    top: auto;
    width: 170px;
  }

  .metric-strip,
  .trust-row,
  .returning ul,
  .proof-band,
  .compare-scoreboard,
  .standards-grid,
  .checklist-grid,
  .procurement-steps,
  .verification-grid,
  .support-grid,
  .why-list,
  .inside-grid,
  .category-support-grid,
  .policy-grid,
  .product-grid,
  .catalog-tools,
  .catalog-pulse,
  .catalog-assurance,
  .category-grid,
  .signal-grid,
  .path-grid,
  .operations-grid,
  .quality-grid,
  .fulfillment-grid,
  .provider-form,
  .reference-form,
  .docs-form,
  .docs-checks,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .procurement-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .procurement-steps article:last-child {
    border-bottom: 0;
  }

  .red-flags ul {
    grid-template-columns: 1fr;
  }

  .proof-band article,
  .proof-band article:nth-child(2),
  .proof-band article:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band article:last-child {
    border-bottom: 0;
  }

  .trust-row article,
  .trust-row article:nth-child(3n),
  .trust-row article:nth-child(n + 4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row article:last-child {
    border-bottom: 0;
  }

  .snapshot-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .snapshot-head {
    display: none;
  }

  .research-notice {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .research-notice span {
    max-width: 100%;
  }

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

  .product-grid.is-table-view .product-info {
    grid-template-columns: 1fr;
  }

  .product-grid.is-table-view dl {
    grid-template-columns: 1fr;
  }

  .fulfillment-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-inline: 0;
  }

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

  .section-heading {
    display: grid;
    align-items: start;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .matrix-head {
    display: none;
  }

  .message-field,
  .docs-form label:first-child,
  .docs-checks,
  .docs-form .button,
  .form-status {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .trace-line {
    stroke-dasharray: 590;
    animation: draw-trace 2800ms ease both;
  }
}

@keyframes draw-trace {
  from { stroke-dashoffset: 590; }
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   VISUAL POLISH LAYER
   Additive refinements layered over the base system.
   ============================================================ */

/* Buttons: drop the muddy inset, add a crisp lift + shadow */
.header-action,
.button-primary,
.cart-button {
  box-shadow: 0 6px 16px rgba(0, 86, 90, 0.22);
}

.header-action:hover,
.button-primary:hover,
.cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 86, 90, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(17, 38, 45, 0.05);
}

.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17, 38, 45, 0.1);
}

button:disabled,
.button:disabled,
.cart-button:disabled {
  transform: none !important;
  box-shadow: none !important;
}

/* Hero trust chips: a touch more presence */
.trust-ribbon span {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 3px rgba(17, 38, 45, 0.06);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.trust-ribbon span:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Card depth: unify hover lift across content cards */
.signal-grid article,
.why-list article,
.inside-grid article,
.standards-grid article,
.checklist-grid article,
.verification-grid article,
.support-grid article,
.quality-grid article,
.operations-grid article,
.compare-scoreboard article,
.catalog-pulse article,
.fulfillment-grid article {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.signal-grid article:hover,
.why-list article:hover,
.inside-grid article:hover,
.standards-grid article:hover,
.checklist-grid article:hover,
.verification-grid article:hover,
.support-grid article:hover,
.quality-grid article:hover,
.operations-grid article:hover,
.catalog-pulse article:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--teal), white 55%);
  box-shadow: 0 14px 30px rgba(17, 38, 45, 0.09);
}

/* Section headings: subtle accent rule under the eyebrow label */
.section-label {
  position: relative;
}

/* Snapshot / data tables: smoother row affordance */
.snapshot-row:not(.snapshot-head),
.matrix-row {
  transition: background 160ms ease, transform 160ms ease;
}

/* Footer links: animated underline on hover */
.site-footer nav a {
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--teal), var(--teal));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 180ms ease, color 160ms ease;
}

.site-footer nav a:hover {
  color: var(--teal);
  background-size: 100% 1.5px;
}

/* ---- Inquiry totals ---- */
.cart-totals {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
}

.cart-totals[hidden] {
  display: none;
}

.cart-totals div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-totals dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-totals dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.cart-total-row {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cart-total-row dt {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.cart-total-row dd {
  color: var(--teal-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

/* ---- Affiliate / referral field ---- */
.referral-field em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.affiliate-status {
  min-height: 16px;
  margin: -6px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.affiliate-status.is-valid {
  color: var(--teal);
}

.affiliate-status.is-invalid {
  color: #c0392b;
}

[data-affiliate-input].is-valid {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 86, 90, 0.12);
}

[data-affiliate-input].is-invalid {
  border-color: #d1453b;
  box-shadow: 0 0 0 3px rgba(209, 69, 59, 0.12);
}

/* ---- Scroll reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
