:root {
  --bg: #07111d;
  --bg-soft: #0d1a2a;
  --bg-panel: rgba(14, 22, 36, 0.88);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --text-soft: #acbdd1;
  --text-faint: rgba(172, 189, 209, 0.7);
  --accent: #79d8ff;
  --accent-strong: #2f7cff;
  --accent-warm: #ffd48f;
  --danger: #f1a4a4;
  --success: #9be6be;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

body[data-theme="light"] {
  --bg: #f3efe8;
  --bg-soft: #fbf8f3;
  --bg-panel: rgba(255, 255, 255, 0.9);
  --surface: rgba(9, 18, 32, 0.05);
  --surface-strong: rgba(9, 18, 32, 0.08);
  --surface-border: rgba(9, 18, 32, 0.1);
  --text: #0d1826;
  --text-soft: #4d6075;
  --text-faint: rgba(77, 96, 117, 0.78);
  --accent: #1164ff;
  --accent-strong: #0a4bd0;
  --accent-warm: #a15a00;
  --danger: #a53f3f;
  --success: #15693d;
  --shadow: 0 28px 64px rgba(9, 18, 32, 0.12);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(47, 124, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 212, 143, 0.16), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #0a1320 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at top left, rgba(17, 100, 255, 0.12), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(161, 90, 0, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  background: #ffffff;
  color: #07111d;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
}

.site-shell,
.cart-drawer {
  position: relative;
  z-index: 1;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.88), rgba(6, 11, 19, 0.24));
}

body[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(251, 248, 243, 0.95), rgba(251, 248, 243, 0.56));
}

.site-header__brandline,
.brand,
.site-header__actions,
.site-nav {
  display: flex;
  align-items: center;
}

.site-header__brandline {
  gap: 0.8rem;
}

.brand {
  gap: 0.45rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon-toggle,
.header-cart,
.pill,
.filter-pill,
.tag {
  border-radius: 999px;
}

.brand__text {
  font-size: 1.05rem;
}

.site-nav {
  gap: 1.35rem;
}

.site-nav__link,
.link-subtle {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.link-subtle:hover {
  color: var(--text);
}

.site-header__actions {
  gap: 0.75rem;
}

.icon-toggle,
.header-cart {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  min-height: 2.7rem;
  padding: 0;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-toggle svg,
.header-cart svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  fill: none;
}

.header-cart__count {
  position: absolute;
  top: -0.18rem;
  right: -0.2rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #07111d;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
}

.icon-toggle--nav {
  flex: 0 0 auto;
}

main {
  display: grid;
  gap: 2rem;
}

.section,
.hero,
.section-grid {
  position: relative;
}

.hero {
  min-height: calc(100svh - 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: 2rem 0 1rem;
}

.hero__copy,
.page-head,
.section-head {
  max-width: 46rem;
}

.hero__copy {
  max-width: 38rem;
}

.eyebrow,
.stat-card__label,
.catalog-card__family,
.search-field__label,
.footer-title {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand__text {
  letter-spacing: -0.04em;
}

.hero h1,
.page-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.section-head h2,
.hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.lede,
.section-head p:last-child,
.stat-card p,
.catalog-card__meta,
.supplier-card__meta,
.supplier-card__stats,
.supplier-chip__meta,
.offer-card__supplier-meta,
.offer-card__price-note,
.review-card p,
.coa-row p,
.policy-card p,
.form-note,
.footer-note,
.checklist-item span,
.empty-state p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero__actions,
.detail-chips,
.tag-row,
.supplier-toolbar,
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.filter-pill:hover,
.icon-toggle:hover,
.header-cart:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #dff5ff);
  color: #07111d;
}

.button--ghost {
  border-color: var(--surface-border);
  background: var(--surface);
}

.button--compact {
  min-height: 2.8rem;
}

.hero__stats,
.hero__visual,
.detail-hero,
.detail-hero__visual,
.detail-hero__copy,
.section-grid,
.catalog-grid,
.supplier-highlight-grid,
.supplier-grid,
.offer-stack,
.offer-card__grid,
.checkout-grid,
.footer-grid {
  display: grid;
}

.hero__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero__stats div,
.hero-panel,
.stat-card,
.catalog-card,
.supplier-chip,
.supplier-card,
.offer-card,
.review-card,
.coa-row,
.accordion,
.policy-card,
.form-card,
.form-shell,
.checkout-card,
.checklist-box,
.verify-result {
  border: 1px solid var(--surface-border);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.hero__stats div,
.stat-card,
.supplier-chip,
.supplier-card,
.offer-card,
.review-card,
.coa-row,
.policy-card,
.checkout-card,
.checklist-box,
.verify-result {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.hero__stats strong {
  font-size: 2rem;
  display: block;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(121, 216, 255, 0.18);
  background: rgba(9, 18, 32, 0.46);
}

.hero__proof strong {
  color: var(--text);
  font-size: 0.95rem;
}

.hero__proof span {
  color: var(--text-soft);
  line-height: 1.6;
}

.hero__stats div {
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(12, 21, 35, 0.92), rgba(8, 15, 26, 0.76));
  box-shadow: none;
}

.hero__stats span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero__visual {
  min-height: 42rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at 82% 12%, rgba(121, 216, 255, 0.16), transparent 24%),
    radial-gradient(circle at 16% 88%, rgba(255, 212, 143, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(13, 26, 42, 0.92), rgba(8, 15, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  place-items: stretch;
  padding: 1rem;
}

.specimen__core,
.specimen__glow {
  clip-path: polygon(50% 0%, 85% 22%, 100% 60%, 70% 100%, 22% 92%, 0% 44%, 18% 10%);
}

.bullet-list,
.policy-stack,
.accordion-list,
.offer-stack,
.checkout-items {
  display: grid;
  gap: 1rem;
}

.section,
.section--tight {
  padding: 2rem 0;
}

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

.section-head {
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
}

.catalog-grid,
.supplier-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card__link,
.supplier-card__link {
  display: grid;
  gap: 0.7rem;
}

.specimen {
  position: relative;
  min-height: 11rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, color-mix(in srgb, var(--swatch-a), white 18%), color-mix(in srgb, var(--swatch-b), black 10%));
  overflow: hidden;
}

.specimen__core,
.specimen__glow {
  position: absolute;
  inset: auto;
}

.specimen__core {
  width: 52%;
  height: 72%;
  left: 24%;
  top: 14%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), color-mix(in srgb, var(--swatch-b), black 25%));
}

.specimen__glow {
  width: 76%;
  height: 76%;
  left: 12%;
  top: 12%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 70%);
}

.specimen--large {
  min-height: 22rem;
}

.hero-board,
.hero-spotlight,
.hero-spotlight__stats,
.hero-preview-grid {
  display: grid;
}

.hero-board {
  height: 100%;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.98), rgba(228, 234, 241, 0.94));
  color: #122032;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.hero-board .eyebrow,
.hero-spotlight__family {
  color: #5d748e;
}

.hero-board__header,
.hero-spotlight__row,
.hero-preview-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.hero-board__header .eyebrow {
  margin-bottom: 0.4rem;
}

.hero-board__header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-board__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: #122032;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-spotlight {
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 28px;
  border: 1px solid rgba(18, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease;
}

.hero-spotlight:hover,
.hero-preview-card:hover,
.hero-board__link:hover {
  transform: translateY(-2px);
}

.hero-spotlight__media {
  min-height: 20rem;
}

.hero-spotlight__body {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.hero-spotlight__family {
  margin: 0 0 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-spotlight__body h3,
.hero-preview-card h3 {
  color: #122032;
}

.hero-spotlight__price,
.hero-preview-card__price {
  color: #122032;
  font-size: 1.05rem;
  white-space: nowrap;
}

.hero-note,
.hero-preview-card__meta {
  color: #506377;
  line-height: 1.6;
}

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

.hero-spotlight__stats div {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(18, 32, 50, 0.05);
}

.hero-spotlight__stats span {
  display: block;
  margin-bottom: 0.35rem;
  color: #667d95;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-spotlight__stats strong {
  color: #122032;
  font-size: 1.05rem;
}

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

.hero-preview-card {
  display: grid;
  gap: 0.65rem;
  padding: 0.8rem;
  border-radius: 22px;
  border: 1px solid rgba(18, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 180ms ease;
}

.hero-preview-card__specimen {
  min-height: 7.8rem;
  border-radius: 18px;
}

.hero-preview-card .catalog-card__family {
  margin-bottom: 0.3rem;
  color: #5d748e;
}

body[data-theme="light"] .hero__proof {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 100, 255, 0.14);
}

body[data-theme="light"] .hero__stats div {
  background: rgba(255, 255, 255, 0.76);
}

body[data-page="home"] .site-shell {
  width: 100%;
}

body[data-page="home"] .site-shell {
  width: 100%;
  max-width: none;
}

body[data-page="home"] main {
  gap: 0;
}

body[data-page="home"] .site-shell {
  width: 100%;
  max-width: none;
}

.hero--home {
  min-height: 180svh;
  display: block;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 0;
  overflow: visible;
  isolation: isolate;
  background: #04080d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__backdrop {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100svh;
  overflow: hidden;
}

.hero__media,
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
}

.hero__poster,
.hero__video {
  width: 100%;
  height: 100%;
}

.hero__poster {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero__video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero__media.is-loaded .hero__video {
  opacity: 1;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 18%, rgba(121, 216, 255, 0.12), transparent 20%),
    radial-gradient(circle at 60% 30%, rgba(255, 165, 115, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(2, 5, 8, 0.16) 0%, rgba(2, 5, 8, 0.48) 50%, rgba(2, 5, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(3, 6, 10, 0.38) 0%, rgba(3, 6, 10, 0.08) 42%, rgba(3, 6, 10, 0.46) 100%);
  pointer-events: none;
}

.hero__veil {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  margin-top: -100svh;
  padding: 7.5rem 1rem 4.9rem;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.hero--home h1 {
  max-width: none;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.35rem, 8vw, 6.1rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.hero__headline-desktop,
.hero__headline-mobile {
  display: block;
}

.hero__headline-mobile {
  display: none;
}

.hero__headline-mobile span {
  display: block;
}

.hero__metric-row {
  width: min(100%, 520px);
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 1.6vw, 1.15rem);
}

.hero__metric {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.12rem;
}

.hero__metric strong {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 0.92;
}

.hero__metric span {
  max-width: 7.6rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.12;
}

.hero__metric small {
  display: none;
}

.hero__actions--center {
  justify-content: center;
  margin-top: 2.55rem;
}

.button--hero {
  min-height: 3.45rem;
  padding: 0 1.85rem;
  gap: 0.55rem;
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.96);
  color: #0f1724;
  font-weight: 400;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.button--hero:hover {
  background: #ffffff;
}

.button--hero .button__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0;
  line-height: 1;
}

.button--hero .button__arrow::before {
  content: "\2193";
  font-size: 1.2rem;
}

.hero__trust,
.hero__shipping-note {
  display: inline-flex;
  align-items: center;
}

.hero__trust {
  gap: 0.42rem;
  margin-top: 0.95rem;
  padding: 0;
}

.hero__avatars {
  display: flex;
  align-items: center;
  height: 2rem;
}

.hero__avatars span {
  width: 2rem;
  height: 2rem;
  margin-left: -0.92rem;
  border: 1px solid rgba(6, 11, 19, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe0d4, #9f6245 72%);
}

.hero__avatars span:first-child {
  margin-left: 0;
}

.hero__avatars span:nth-child(2) {
  background: radial-gradient(circle at 30% 30%, #f7d6bd, #7b503f 72%);
}

.hero__avatars span:nth-child(3) {
  background: radial-gradient(circle at 30% 30%, #f7e8d4, #8d6b50 72%);
}

.hero__trust-count {
  display: inline-flex;
  align-items: center;
  min-width: 3rem;
  height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1;
  justify-content: center;
  backdrop-filter: blur(14px);
}

.hero__trust-copy {
  color: #b1aeac;
  font-size: 0.78rem;
  font-weight: 400;
}

.hero__shipping-note {
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.79rem;
}

.hero__shipping-note::before {
  content: none;
}

.hero__shipping-note--home {
  position: absolute;
  left: 50%;
  bottom: 1.85rem;
  z-index: 2;
  transform: translateX(-50%);
}

.hero__shipping-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.82rem;
  height: 0.82rem;
}

.hero__shipping-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero__shipping-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-stack {
  width: min(calc(100% - 2rem), 980px);
  margin: 0 auto;
  padding-top: 1.95rem;
  display: grid;
  gap: 0;
}

body[data-page="home"] .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
}

body[data-page="suppliers"] {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --bg-panel: #ffffff;
  --surface: rgba(15, 23, 42, 0.04);
  --surface-strong: rgba(15, 23, 42, 0.08);
  --surface-border: rgba(148, 163, 184, 0.38);
  --text: #0f172a;
  --text-soft: #475569;
  --text-faint: #64748b;
  --accent: #0f172a;
  --accent-strong: #0f172a;
  --accent-warm: #334155;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  --max-width: 1430px;
  background: #ffffff;
  color: #0f172a;
}

body[data-page="suppliers"] .page-noise {
  display: none;
}

body[data-page="suppliers"] .site-shell {
  width: min(calc(100% - 1rem), var(--max-width));
  max-width: none;
  padding-bottom: 2rem;
}

body[data-page="suppliers"] main {
  gap: 0;
  padding-top: 5.15rem;
}

body[data-page="suppliers"] .site-footer {
  display: grid;
  gap: 1.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.32);
}

body[data-page="suppliers"] .footer-grid {
  gap: 2.5rem;
  text-align: right;
}

body[data-page="suppliers"] .site-footer div > a {
  display: block;
  margin-top: 0.55rem;
  color: #334155;
}

body[data-page="suppliers"] .site-footer div > a:hover,
body[data-page="suppliers"] .site-footer div > a:focus-visible {
  color: #0f172a;
}

body[data-page="suppliers"] .footer-title {
  margin-bottom: 0.7rem;
  color: #0f172a;
}

body[data-page="suppliers"] .footer-note {
  color: #64748b;
  text-align: right;
}

.suppliers-page {
  padding: 0 0 3.3rem;
}

.suppliers-page__inner {
  display: grid;
  gap: 1.75rem;
}

.suppliers-page__heading h1 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  color: #0f172a;
}

.suppliers-page__heading p {
  margin-top: 0.75rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

.suppliers-toolbar {
  display: flex;
  justify-content: flex-end;
}

.suppliers-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #334155;
  font-size: 1rem;
  font-weight: 500;
}

.suppliers-sort__button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 500;
}

.suppliers-sort__button:hover {
  transform: none;
}

.suppliers-sort__active {
  color: #0f172a;
  font-weight: 600;
}

.suppliers-sort__menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 13rem;
  padding: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 0.15rem;
  z-index: 5;
}

.suppliers-sort__option {
  min-height: auto;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #0f172a;
  text-align: left;
  font-size: 0.95rem;
}

.suppliers-sort__option:hover,
.suppliers-sort__option.is-active {
  transform: none;
  background: #f8fafc;
}

.suppliers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.supplier-tile {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.supplier-tile__link {
  display: block;
  height: 100%;
}

.supplier-tile__surface {
  min-height: 180px;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.supplier-tile__link:hover .supplier-tile__surface,
.supplier-tile__link:focus-visible .supplier-tile__surface {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.25);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.supplier-tile__flag-row {
  display: flex;
  align-items: center;
  min-height: 1.5rem;
}

.supplier-tile__flag {
  font-size: 1.25rem;
  line-height: 1;
}

.supplier-tile__body {
  min-height: calc(180px - 4.5rem);
  margin-top: 0.95rem;
  display: grid;
  align-content: end;
  gap: 0.45rem;
}

.supplier-tile__body h2 {
  color: #0f172a;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.supplier-tile__meta {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.45;
}

.supplier-tile__meta--strong {
  margin-top: auto;
  color: #0f172a;
  font-weight: 600;
}

body[data-page="home"] {
  --home-surface-background:
    radial-gradient(ellipse 170% 88% at 50% 100%, rgba(121, 74, 232, 0.32) 0%, rgba(121, 74, 232, 0.24) 18%, rgba(121, 74, 232, 0.14) 36%, rgba(121, 74, 232, 0.06) 54%, transparent 76%),
    radial-gradient(ellipse 72% 28% at 16% 92%, rgba(110, 68, 221, 0.13), transparent 72%),
    radial-gradient(ellipse 72% 28% at 84% 92%, rgba(150, 86, 239, 0.14), transparent 72%),
    linear-gradient(180deg, #050811 0%, #04080f 24%, #050812 56%, #070612 72%, #0c0617 88%, #0d0718 100%);
  background: var(--home-surface-background);
}

body[data-theme="light"][data-page="home"] {
  background: var(--home-surface-background);
}

body[data-page="home"] .home-stack {
  width: 100%;
  max-width: none;
  margin: -80svh 0 0;
  padding: 3.6rem 0 6rem;
  position: relative;
  z-index: 3;
  isolation: isolate;
  background: var(--home-surface-background);
  color: #f7fbff;
}

body[data-theme="light"][data-page="home"] .home-stack {
  background: var(--home-surface-background);
  color: #f7fbff;
}

body[data-page="home"] .home-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at top, black 34%, transparent 82%);
  opacity: 0.38;
  pointer-events: none;
}

body[data-page="home"] .home-stack::after {
  content: none;
}

.catalog-surface__head,
.catalog-surface__controls,
.catalog-card__body,
.home-section__head,
.top-seller-card__top,
.top-seller-card__stats,
.top-seller-card__dosages,
.home-faq__item summary {
  display: flex;
}

body[data-page="home"] .home-section {
  width: min(calc(100% - 2rem), 1024px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-section + .home-section {
  margin-top: 4rem;
}

.home-section__head {
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

body[data-page="home"] .home-section__head .eyebrow {
  margin-bottom: 0.28rem;
  color: rgba(179, 194, 214, 0.7);
}

.home-section__head h2 {
  color: #f8fbff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-section__note {
  max-width: 28rem;
  color: rgba(184, 198, 216, 0.72);
  line-height: 1.6;
  text-align: right;
}

.home-top-sellers {
  position: relative;
}

body[data-page="home"] .home-top-sellers::before,
body[data-page="home"] .catalog-surface::before,
body[data-page="home"] .home-faq::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  pointer-events: none;
}

.top-seller-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.top-seller-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--swatch-a), white 10%) 0%, transparent 28%),
    linear-gradient(155deg, color-mix(in srgb, var(--swatch-b), black 28%), color-mix(in srgb, var(--swatch-ink), black 8%));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.top-seller-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  pointer-events: none;
}

.top-seller-card__link {
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.1rem 1.05rem 1.12rem;
}

.top-seller-card__top {
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.top-seller-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.top-seller-card__price {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.3;
}

.top-seller-card h3 {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.38rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.top-seller-card__dosages {
  flex-wrap: wrap;
  gap: 0.45rem;
}

.top-seller-card__dosages span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  line-height: 1;
}

.top-seller-card__stats {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
}

.catalog-surface {
  padding: 0 0 0.6rem;
}

body[data-page="home"] .catalog-surface {
  position: relative;
}

body[data-page="home"] .catalog-surface::after {
  content: none;
}

.catalog-surface__head {
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

body[data-page="home"] .catalog-surface__head .eyebrow {
  margin-bottom: 0.2rem;
  color: rgba(179, 194, 214, 0.7);
}

.catalog-surface__head h2 {
  color: #f8fbff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.catalog-surface__controls {
  align-items: center;
  gap: 0.7rem;
}

.search-field--home {
  gap: 0.25rem;
}

body[data-page="home"] .search-field--home .search-field__label {
  margin-bottom: 0;
  color: rgba(179, 194, 214, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.search-field--home input {
  min-width: 13rem;
  min-height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(9, 17, 29, 0.74);
  color: #f8fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.search-field--home input::placeholder {
  color: rgba(184, 198, 216, 0.45);
}

body[data-page="home"] a.catalog-surface__button {
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fbff;
}

.catalog-grid--home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem 0.95rem;
}

body[data-page="home"] article.catalog-card--home {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-card__link--home {
  gap: 0.8rem;
}

.catalog-card__body {
  flex-direction: column;
  align-items: start;
  gap: 0.16rem;
}

body[data-page="home"] article.catalog-card--home h3 {
  color: #f8fbff;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body[data-page="home"] article.catalog-card--home .catalog-card__meta {
  color: rgba(184, 198, 216, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.catalog-specimen {
  position: relative;
  min-height: 10.9rem;
  border-radius: 18px;
  border: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.26), transparent 27%),
    linear-gradient(180deg, color-mix(in srgb, var(--swatch-a), white 5%), color-mix(in srgb, var(--swatch-b), black 4%));
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.catalog-specimen::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

body[data-page="home"] .catalog-card__link--home:hover .catalog-specimen,
body[data-page="home"] .catalog-card__link--home:focus-visible .catalog-specimen {
  transform: translateY(-2px);
}

body[data-page="home"] .catalog-specimen {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body[data-page="home"] .catalog-card__link--home:hover .catalog-specimen,
body[data-page="home"] .catalog-card__link--home:focus-visible .catalog-specimen {
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
}

.catalog-vial,
.catalog-vial__cap,
.catalog-vial__glass,
.catalog-vial__powder {
  position: absolute;
}

.catalog-vial {
  inset: 0;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.catalog-vial__cap {
  top: 1rem;
  left: 50%;
  width: 2.9rem;
  height: 1.15rem;
  border-radius: 999px 999px 0.55rem 0.55rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(142, 147, 151, 0.98), rgba(92, 99, 108, 0.95));
  box-shadow:
    inset 0 -0.15rem 0 rgba(53, 59, 65, 0.52),
    inset 0 0.08rem 0 rgba(255, 255, 255, 0.26);
}

.catalog-vial__glass {
  top: 1.95rem;
  left: 50%;
  width: 2.6rem;
  height: 6.1rem;
  border-radius: 0.82rem 0.82rem 1rem 1rem;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.92), rgba(210, 220, 232, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 -0.35rem 0 rgba(188, 197, 208, 0.4);
}

.catalog-vial__powder {
  top: 6.55rem;
  left: 50%;
  width: 1.86rem;
  height: 1.55rem;
  border-radius: 0.4rem 0.4rem 0.82rem 0.82rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 0.15rem, rgba(255, 255, 255, 0.9), rgba(238, 239, 232, 0.98) 56%, rgba(216, 219, 210, 0.98) 100%);
  box-shadow: 0 -0.08rem 0 rgba(255, 255, 255, 0.55);
}

.home-faq {
  position: relative;
  isolation: isolate;
  padding-top: 0.9rem;
  padding-bottom: 0.65rem;
}

body[data-page="home"] .home-faq::after {
  content: "";
  position: absolute;
  top: -1.4rem;
  bottom: -12rem;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 9, 17, 0) 0%,
      rgba(51, 30, 97, 0.04) 24%,
      rgba(71, 42, 133, 0.09) 46%,
      rgba(41, 24, 76, 0.12) 68%,
      rgba(15, 10, 30, 0.06) 84%,
      rgba(5, 8, 17, 0) 100%
    );
  pointer-events: none;
}

body[data-page="home"] .catalog-surface + .home-faq {
  margin-top: 5.75rem;
}

.home-section__head--faq {
  align-items: center;
}

body[data-page="home"] a.home-section__link {
  min-height: 2.75rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fbff;
}

.home-faq__list {
  gap: 0.85rem;
}

body[data-page="home"] details.home-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 16, 26, 0.76);
  backdrop-filter: blur(14px);
}

.home-faq__item summary {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::marker {
  content: "";
}

.home-faq__item summary span:first-child {
  color: #f8fbff;
  font-size: 1rem;
  line-height: 1.45;
}

.home-faq__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.home-faq__item[open] .home-faq__plus {
  transform: rotate(45deg);
}

.home-faq__item p {
  color: rgba(184, 198, 216, 0.72);
}

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

.supplier-chip,
.supplier-card__top,
.supplier-card__stats,
.offer-card__head,
.offer-card__footer,
.review-card__head,
.checkout-card__head,
.checkout-totals,
.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.supplier-chip__name,
.supplier-card h3,
.catalog-card h3,
.offer-card__supplier,
.policy-card h2,
.checkout-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.pill,
.filter-pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
}

.pill--muted {
  color: var(--text-soft);
}

.detail-hero,
.checkout-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
}

.detail-chips,
.dosage-filter,
.tab-switcher,
.split-links {
  margin-top: 1rem;
}

.filter-pill.is-active,
.tab-panel.is-active,
.site-nav__link.is-active {
  color: var(--text);
}

.filter-pill.is-active {
  border-color: rgba(121, 216, 255, 0.4);
  background: rgba(121, 216, 255, 0.14);
}

.offer-card__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0;
}

.offer-card__grid span,
.coa-row span,
.checkout-totals span,
.review-card__head span,
.offer-card__price-note,
.catalog-card__price,
.back-link,
.breadcrumb {
  color: var(--text-faint);
}

.offer-card__price {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.tab-panel {
  display: none;
  margin-top: 1rem;
}

.tab-panel.is-active {
  display: grid;
  gap: 1rem;
}

.accordion {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.accordion p {
  margin-top: 0.9rem;
}

.form-shell,
.form-card {
  border-radius: var(--radius-xl);
  padding: 1.4rem;
}

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

.form-shell label,
.search-field,
.select-field {
  display: grid;
  gap: 0.45rem;
}

.label--full,
.form-shell button,
.form-note,
.verify-result {
  grid-column: 1 / -1;
}

.form-shell input,
.form-shell textarea,
.form-shell select,
.search-field input,
.select-field select {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
}

.form-note {
  min-height: 1.5rem;
}

.section--narrow {
  width: min(100%, 48rem);
}

.policy-stack {
  margin-top: 1rem;
}

.policy-card,
.empty-state {
  display: grid;
  gap: 0.8rem;
}

.breadcrumb,
.back-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.page-head {
  display: grid;
  gap: 1rem;
}

.tag-row {
  margin: 1rem 0 0;
}

.coa-table,
.checkout-items {
  display: grid;
  gap: 0.8rem;
}

.coa-row a {
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 28rem);
  height: 100%;
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.cart-drawer__body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  overflow: auto;
}

.cart-line,
.checkout-line {
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.35rem;
}

.checkout-grid {
  align-items: start;
}

.checkout-card {
  display: grid;
  gap: 1rem;
}

.checklist-box {
  display: grid;
  gap: 0.8rem;
}

.contact-reveal {
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
}

.contact-reveal a {
  color: var(--accent);
}

.verify-result {
  display: grid;
  gap: 0.5rem;
}

.cta-band {
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .catalog-grid,
  .supplier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .site-header,
  .section-head,
  .hero,
  .detail-hero,
  .checkout-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header {
    justify-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .section-grid,
  .offer-card__grid,
  .footer-grid,
  .supplier-highlight-grid {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-surface__head {
    align-items: start;
    flex-direction: column;
  }

  .home-section__head {
    align-items: start;
    flex-direction: column;
  }

  .home-section__note {
    text-align: left;
  }

  .catalog-surface__controls {
    width: 100%;
  }

  .search-field--home {
    flex: 1 1 auto;
  }

  .search-field--home input {
    min-width: 0;
  }

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

  .hero__visual {
    min-height: auto;
  }

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

  .suppliers-page__inner {
    gap: 1.5rem;
  }

  .suppliers-page__heading h1 {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
  }

  .suppliers-toolbar {
    justify-content: flex-start;
  }

  .hero__content {
    padding-top: 7.2rem;
    padding-bottom: 5rem;
  }

  .hero__metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 500px);
    gap: 0.55rem;
  }

  .hero__metric strong {
    font-size: clamp(1.95rem, 6vw, 2.7rem);
  }

  .hero__metric span {
    font-size: 0.84rem;
  }

  .hero__proof,
  .hero-board__header,
  .hero-spotlight {
    border-radius: var(--radius-lg);
  }

  .hero-spotlight,
  .hero-preview-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  body[data-page="home"] .home-section {
    width: min(calc(100% - 1rem), 1024px);
  }

  .catalog-grid,
  .supplier-grid {
    grid-template-columns: 1fr;
  }

  .catalog-surface {
    padding-bottom: 1.1rem;
  }

  .catalog-surface__controls {
    flex-wrap: wrap;
  }

  .catalog-surface__button,
  .search-field--home {
    width: 100%;
  }

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

  .top-seller-grid {
    grid-template-columns: 1fr;
  }

  .top-seller-card__link {
    padding: 0.95rem;
  }

  .catalog-specimen {
    min-height: 8.85rem;
  }

  body[data-page="home"] article.catalog-card--home h3 {
    font-size: 0.96rem;
  }

  body[data-page="home"] article.catalog-card--home .catalog-card__meta {
    font-size: 0.83rem;
  }

  .home-section__link {
    width: 100%;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .suppliers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .supplier-tile__surface {
    min-height: 168px;
    padding: 1.25rem;
  }

  .supplier-tile__body {
    min-height: calc(168px - 4rem);
  }

  body[data-page="suppliers"] .footer-grid {
    text-align: left;
  }

  body[data-page="suppliers"] .footer-note {
    text-align: left;
  }

  .hero--home h1 {
    font-size: clamp(2.95rem, 14vw, 4.2rem);
  }

  .hero__headline-desktop {
    display: none;
  }

  .hero__headline-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
  }

  .hero__metric strong {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .hero__metric span {
    font-size: 0.76rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions--center {
    width: auto;
    margin-top: 1.15rem;
  }

  .button--hero {
    min-height: 3.45rem;
    width: auto;
    padding: 0 1.2rem;
  }

  .hero__trust {
    margin-top: 0.72rem;
    width: auto;
    justify-content: center;
  }

  .hero__avatars span {
    width: 1.6rem;
    height: 1.6rem;
    margin-left: -0.48rem;
  }

  .hero__trust-copy {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero__shipping-note {
    font-size: 0.74rem;
  }

  .hero__shipping-note--home {
    bottom: 1rem;
    width: auto;
    justify-content: center;
  }

  .hero__proof {
    border-radius: 20px;
  }

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

body[data-page="suppliers"] {
  background: #f3f7ff;
  color: #0b1324;
}

body[data-page="suppliers"][data-theme="dark"] {
  background: #02050b;
  color: #f8fbff;
}

body[data-page="suppliers"] .page-noise {
  opacity: 0;
}

body[data-page="suppliers"] .site-shell {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

body[data-page="suppliers"] main {
  gap: 0;
  padding-top: 50px;
}

.suppliers-page {
  min-height: calc(100svh - 50px);
  padding: 0 1rem;
}

.suppliers-page__inner {
  width: min(100%, 64rem);
  margin: 0 auto;
  padding: 2rem 0 0;
}

.suppliers-page__heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.suppliers-page__heading h1 {
  color: #0b1324;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.suppliers-page__heading p {
  color: #475569;
  line-height: 1.6;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-page__heading h1 {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-page__heading p {
  color: rgba(248, 251, 255, 0.62);
}

.suppliers-toolbar {
  position: relative;
  margin-bottom: 1.5rem;
}

.suppliers-sort {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-height: 1.75rem;
}

.suppliers-sort__button,
.suppliers-sort__option {
  border: 0;
  background: transparent;
}

.suppliers-sort__button {
  padding: 0;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.4;
}

.suppliers-sort__active {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 2rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0b1324;
  font-size: 0.875rem;
  line-height: 1.2;
}

.suppliers-sort__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 30;
  min-width: 13rem;
  padding: 0.4rem;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 0.85rem;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 0.15rem;
}

.suppliers-sort__menu[hidden] {
  display: none;
}

.suppliers-sort__option {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.6rem;
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.3;
  text-align: left;
}

.suppliers-sort__option:hover,
.suppliers-sort__option.is-active {
  background: rgba(15, 23, 42, 0.08);
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__button {
  color: rgba(248, 251, 255, 0.7);
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__active {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__menu {
  border-color: rgba(255, 255, 255, 0.16);
  background: #04080d;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option:hover,
body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option.is-active {
  background: rgba(255, 255, 255, 0.1);
}

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

.supplier-tile,
.supplier-tile__link,
.supplier-tile__surface {
  height: 100%;
}

.supplier-tile__link {
  display: block;
}

.supplier-tile__surface {
  height: 180px;
  padding: 1.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.supplier-tile__link:hover .supplier-tile__surface,
.supplier-tile__link:focus-visible .supplier-tile__surface {
  border-color: rgba(100, 116, 139, 0.56);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.supplier-tile__body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.supplier-tile__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 3rem;
  margin-bottom: 0.55rem;
}

.supplier-tile__flag {
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(0.03rem);
}

.supplier-tile__title-stack {
  flex: 1 1 auto;
}

.supplier-tile__title-stack h2 {
  min-height: 2.75rem;
  color: #0f172a;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.supplier-tile__stats {
  margin-top: auto;
  display: grid;
  gap: 0.55rem;
}

.supplier-tile__stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.35;
}

.supplier-tile__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.supplier-tile__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supplier-tile__icon--star {
  color: #facc15;
}

.supplier-tile__icon--trend {
  color: #4ade80;
}

.supplier-tile__icon--file {
  color: #60a5fa;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.34);
  background: #000000;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__link:hover .supplier-tile__surface,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__link:focus-visible .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.52);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__title-stack h2 {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__stat {
  color: rgba(248, 251, 255, 0.78);
}

body[data-page="suppliers"] .site-footer {
  margin-top: 3.5rem;
  padding: 3rem 1.5rem;
  background: #e8eef6;
  color: #0f172a;
}

body[data-page="suppliers"][data-theme="dark"] .site-footer {
  background: #02050b;
  color: #f8fbff;
}

body[data-page="suppliers"] .footer-grid,
body[data-page="suppliers"] .footer-note {
  width: min(100%, 64rem);
  margin-left: auto;
  margin-right: auto;
}

body[data-page="suppliers"] .footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  text-align: right;
}

body[data-page="suppliers"] .footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

body[data-page="suppliers"] .footer-grid a {
  color: inherit;
  transition: color 180ms ease;
}

body[data-page="suppliers"] .footer-grid a:hover,
body[data-page="suppliers"] .footer-grid a:focus-visible {
  color: rgba(15, 23, 42, 0.72);
}

body[data-page="suppliers"][data-theme="dark"] .footer-grid a:hover,
body[data-page="suppliers"][data-theme="dark"] .footer-grid a:focus-visible {
  color: rgba(248, 251, 255, 0.8);
}

body[data-page="suppliers"] .footer-title {
  margin-bottom: 0;
  color: rgba(15, 23, 42, 0.44);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
}

body[data-page="suppliers"][data-theme="dark"] .footer-title {
  color: rgba(248, 251, 255, 0.55);
}

body[data-page="suppliers"] .footer-note {
  margin-top: 2.5rem;
  text-align: right;
  color: rgba(15, 23, 42, 0.58);
}

body[data-page="suppliers"][data-theme="dark"] .footer-note {
  color: rgba(248, 251, 255, 0.55);
}

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

  body[data-page="suppliers"] .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .suppliers-page {
    padding: 0 0.75rem;
  }

  .suppliers-page__inner {
    padding-top: 1.6rem;
  }

  .suppliers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .supplier-tile__surface {
    padding: 1.25rem;
  }
}

body[data-page="suppliers"] {
  background: #f7f7f8;
  color: #0f172a;
}

body[data-page="suppliers"] .suppliers-page {
  padding: 0 1rem 4rem;
}

body[data-page="suppliers"] .suppliers-page__inner,
body[data-page="suppliers"] .footer-grid,
body[data-page="suppliers"] .footer-note {
  width: min(100%, 89.375rem);
}

body[data-page="suppliers"] .suppliers-page__inner {
  padding-top: 2.15rem;
}

body[data-page="suppliers"] .suppliers-page__heading {
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

body[data-page="suppliers"] .suppliers-page__heading h1 {
  color: #0f172a;
  font-size: clamp(2.15rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

body[data-page="suppliers"] .suppliers-page__heading p {
  color: #475569;
  max-width: 28rem;
}

body[data-page="suppliers"] .suppliers-toolbar {
  margin-bottom: 1.35rem;
}

body[data-page="suppliers"] .suppliers-sort {
  gap: 0.6rem;
}

body[data-page="suppliers"] .suppliers-sort__button {
  color: #475569;
}

body[data-page="suppliers"] .suppliers-sort__active {
  min-height: 2.1rem;
  padding: 0.45rem 0.9rem;
  border-color: rgba(148, 163, 184, 0.46);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

body[data-page="suppliers"] .suppliers-sort__menu {
  top: calc(100% + 0.6rem);
  min-width: 13.5rem;
  border-color: rgba(203, 213, 225, 0.9);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

body[data-page="suppliers"] .suppliers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

body[data-page="suppliers"] .supplier-tile__surface {
  min-height: 180px;
  padding: 1.5rem;
  border-color: #cbd5e1;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="suppliers"] .supplier-tile__link:hover .supplier-tile__surface,
body[data-page="suppliers"] .supplier-tile__link:focus-visible .supplier-tile__surface {
  transform: translateY(-2px);
  border-color: #94a3b8;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

body[data-page="suppliers"] .supplier-tile__title-row {
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 0;
  margin-bottom: 0;
}

body[data-page="suppliers"] .supplier-tile__flag {
  font-size: 1.35rem;
  transform: translateY(0.04rem);
}

body[data-page="suppliers"] .supplier-tile__title-stack {
  display: grid;
  gap: 0.35rem;
}

body[data-page="suppliers"] .supplier-tile__title-stack h2 {
  min-height: 0;
  color: #0f172a;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

body[data-page="suppliers"] .supplier-tile__review,
body[data-page="suppliers"] .supplier-tile__meta {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.35;
}

body[data-page="suppliers"] .supplier-tile__review {
  margin: 0;
}

body[data-page="suppliers"] .supplier-tile__meta {
  margin-top: auto;
  display: grid;
  gap: 0.2rem;
  padding-top: 0.8rem;
}

body[data-page="suppliers"] .supplier-tile__meta span:last-child {
  color: #0f172a;
}

body[data-page="suppliers"] .site-footer {
  margin-top: 3.5rem;
  padding: 3rem 1.5rem;
  background: #f7f7f8;
  color: #0f172a;
  border-top: 1px solid rgba(203, 213, 225, 0.7);
}

body[data-page="suppliers"] .footer-grid {
  gap: 2.5rem;
  text-align: right;
}

body[data-page="suppliers"] .footer-grid > div {
  gap: 0.7rem;
}

body[data-page="suppliers"] .footer-title {
  color: rgba(15, 23, 42, 0.46);
}

body[data-page="suppliers"] .footer-note {
  color: rgba(15, 23, 42, 0.58);
}

body[data-page="suppliers"][data-theme="dark"] {
  background: #03070b;
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-page__heading h1,
body[data-page="suppliers"][data-theme="dark"] .brand,
body[data-page="suppliers"][data-theme="dark"] .icon-toggle,
body[data-page="suppliers"][data-theme="dark"] .header-cart {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-page__heading p,
body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__button,
body[data-page="suppliers"][data-theme="dark"] .site-nav__link {
  color: rgba(248, 251, 255, 0.68);
}

body[data-page="suppliers"][data-theme="dark"] .site-nav__link:hover,
body[data-page="suppliers"][data-theme="dark"] .site-nav__link:focus-visible,
body[data-page="suppliers"][data-theme="dark"] .site-nav__link.is-active {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__active {
  border-color: rgba(148, 163, 184, 0.34);
  background: #090d12;
  color: #f8fbff;
  box-shadow: none;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__menu {
  border-color: rgba(148, 163, 184, 0.26);
  background: #000000;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option:hover,
body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option.is-active {
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.34);
  background: #000000;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__link:hover .supplier-tile__surface,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__link:focus-visible .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__title-stack h2,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__meta span:last-child {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__review,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__meta {
  color: rgba(248, 251, 255, 0.78);
}

body[data-page="suppliers"][data-theme="dark"] .site-footer {
  background: #03070b;
  color: #f8fbff;
  border-top-color: rgba(148, 163, 184, 0.2);
}

body[data-page="suppliers"][data-theme="dark"] .footer-title,
body[data-page="suppliers"][data-theme="dark"] .footer-note {
  color: rgba(248, 251, 255, 0.55);
}

@media (max-width: 1200px) {
  body[data-page="suppliers"] .suppliers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-page="suppliers"] .suppliers-page__inner,
  body[data-page="suppliers"] .footer-grid,
  body[data-page="suppliers"] .footer-note {
    width: min(100%, 64rem);
  }

  body[data-page="suppliers"] .footer-grid,
  body[data-page="suppliers"] .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body[data-page="suppliers"] .suppliers-page {
    padding: 0 0.75rem 3rem;
  }

  body[data-page="suppliers"] .suppliers-page__inner {
    padding-top: 1.65rem;
  }

  body[data-page="suppliers"] .suppliers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body[data-page="suppliers"] .supplier-tile__surface {
    padding: 1.25rem;
  }
}

/* Final suppliers-page overrides. */
body[data-page="suppliers"] {
  background: #f3f7ff;
  color: #0b1324;
}

body[data-page="suppliers"][data-theme="dark"] {
  background: #02050b;
  color: #f8fbff;
}

body[data-page="suppliers"] .page-noise {
  opacity: 0;
}

body[data-page="suppliers"] .site-shell {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

body[data-page="suppliers"] main {
  display: block;
  gap: 0;
  padding-top: 50px;
}

body[data-page="suppliers"] .suppliers-page {
  min-height: calc(100svh - 50px);
  padding: 0 16px 4rem;
}

body[data-page="suppliers"] .suppliers-page__inner,
body[data-page="suppliers"] .footer-grid,
body[data-page="suppliers"] .footer-note {
  width: min(100%, 1024px);
  margin-left: auto;
  margin-right: auto;
}

body[data-page="suppliers"] .suppliers-page__inner {
  padding-top: 32px;
}

body[data-page="suppliers"] .suppliers-page__heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

body[data-page="suppliers"] .suppliers-page__heading h1 {
  color: #0b1324;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

body[data-page="suppliers"] .suppliers-page__heading p {
  color: #475569;
  line-height: 1.6;
}

body[data-page="suppliers"] .suppliers-toolbar {
  margin-bottom: 24px;
}

body[data-page="suppliers"] .suppliers-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body[data-page="suppliers"] .suppliers-sort__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #475569;
  font-size: 14px;
  line-height: 20px;
}

body[data-page="suppliers"] .suppliers-sort__active {
  min-height: 32px;
  padding: 4px 12px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  box-shadow: none;
  color: #0f172a;
  font-size: 14px;
}

body[data-page="suppliers"] .suppliers-sort__menu[hidden] {
  display: none;
}

body[data-page="suppliers"] .suppliers-sort__menu {
  top: calc(100% + 12px);
  min-width: 13rem;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

body[data-page="suppliers"] .suppliers-sort__option {
  color: #0f172a;
}

body[data-page="suppliers"] .suppliers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body[data-page="suppliers"] .supplier-tile__surface {
  height: 180px;
  padding: 24px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
}

body[data-page="suppliers"] .supplier-tile__link:hover .supplier-tile__surface,
body[data-page="suppliers"] .supplier-tile__link:focus-visible .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.72);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
}

body[data-page="suppliers"] .supplier-tile__body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body[data-page="suppliers"] .supplier-tile__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 3rem;
  margin-bottom: 0.55rem;
}

body[data-page="suppliers"] .supplier-tile__title-stack h2 {
  min-height: 2.75rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

body[data-page="suppliers"] .supplier-tile__stats {
  margin-top: auto;
  display: grid;
  gap: 0.55rem;
}

body[data-page="suppliers"] .supplier-tile__stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.35;
}

body[data-page="suppliers"] .site-footer {
  margin-top: 0;
  padding: 48px 16px;
  background: #f1f5f9;
  color: #0f172a;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-page__heading h1,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__title-stack h2 {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-page__heading p,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__stat {
  color: rgba(248, 251, 255, 0.78);
}

body[data-page="suppliers"][data-theme="dark"] .brand,
body[data-page="suppliers"][data-theme="dark"] .icon-toggle,
body[data-page="suppliers"][data-theme="dark"] .header-cart {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .site-nav__link {
  color: rgba(248, 251, 255, 0.68);
}

body[data-page="suppliers"][data-theme="dark"] .site-nav__link:hover,
body[data-page="suppliers"][data-theme="dark"] .site-nav__link:focus-visible,
body[data-page="suppliers"][data-theme="dark"] .site-nav__link.is-active {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__button {
  color: rgba(248, 251, 255, 0.68);
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__active {
  border-color: rgba(148, 163, 184, 0.34);
  background: #090d12;
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__menu {
  border-color: rgba(148, 163, 184, 0.26);
  background: #000000;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

body[data-page="suppliers"][data-theme="dark"] .suppliers-sort__option {
  color: #f8fbff;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.34);
  background: #000000;
}

body[data-page="suppliers"][data-theme="dark"] .supplier-tile__link:hover .supplier-tile__surface,
body[data-page="suppliers"][data-theme="dark"] .supplier-tile__link:focus-visible .supplier-tile__surface {
  border-color: rgba(148, 163, 184, 0.52);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body[data-page="suppliers"][data-theme="dark"] .site-footer {
  background: #02050b;
  color: #f8fbff;
}

@media (min-width: 640px) {
  body[data-page="suppliers"] .suppliers-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  body[data-page="suppliers"] .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 900px) {
  body[data-page="suppliers"] .suppliers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page="suppliers"] .suppliers-page__inner {
    padding-top: 26px;
  }

  body[data-page="suppliers"] .suppliers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

}

/* Shared theme tokens and page-level surfaces. Canonical header styles live in src/header.css. */
:root {
  --bg: #050b15;
  --bg-soft: #050b15;
  --bg-panel: rgba(0, 0, 0, 0.32);
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-border: oklch(0.373 0.034 259.733);
  --text: #ffffff;
  --text-soft: oklch(0.872 0.01 258.338);
  --text-faint: rgba(217, 224, 232, 0.72);
  --accent: #ffffff;
  --accent-strong: #ffffff;
  --accent-warm: #ffffff;
  --shadow: none;
  --header-chrome-opacity: 1;
}

body[data-theme="light"] {
  --bg: #f3f7ff;
  --bg-soft: #f3f7ff;
  --bg-panel: rgba(255, 255, 255, 0.82);
  --surface: rgba(15, 23, 42, 0.04);
  --surface-strong: rgba(15, 23, 42, 0.08);
  --surface-border: oklch(0.869 0.022 252.894);
  --text: oklch(0.208 0.042 265.755);
  --text-soft: oklch(0.372 0.044 257.287);
  --text-faint: rgba(71, 85, 105, 0.72);
  --accent: oklch(0.208 0.042 265.755);
  --accent-strong: oklch(0.208 0.042 265.755);
  --accent-warm: oklch(0.208 0.042 265.755);
}

body,
body[data-page] {
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

body[data-theme="light"],
body[data-page][data-theme="light"] {
  background: var(--bg);
}

body[data-page][data-theme="dark"] {
  background: #050b15;
  color: #ffffff;
}

body[data-page][data-theme="light"] {
  background: #f3f7ff;
  color: oklch(0.208 0.042 265.755);
}

.page-noise {
  opacity: 0;
}

body[data-page] .site-shell {
  padding-bottom: 0;
}

body[data-page]:not([data-page="home"]) main {
  padding-top: 50px;
}

body[data-page="home"] main {
  padding-top: 0;
}

body[data-page] .hero__stats div,
body[data-page] .hero-panel,
body[data-page] .stat-card,
body[data-page] .catalog-card,
body[data-page] .supplier-chip,
body[data-page] .supplier-card,
body[data-page] .offer-card,
body[data-page] .review-card,
body[data-page] .coa-row,
body[data-page] .accordion,
body[data-page] .policy-card,
body[data-page] .form-card,
body[data-page] .form-shell,
body[data-page] .checkout-card,
body[data-page] .checklist-box,
body[data-page] .verify-result {
  border-color: var(--surface-border);
  background: var(--bg-panel);
  box-shadow: none;
}

body[data-page] .button {
  min-height: 52px;
  padding: 12px 32px;
  border-radius: 999px;
  box-shadow: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

body[data-page] .button:hover {
  transform: translateY(-1px);
}

body[data-page] .button--primary {
  background: #ffffff;
  color: #000000;
}

body[data-theme="light"] .button--primary {
  background: oklch(0.208 0.042 265.755);
  color: #ffffff;
}

body[data-page] .button--ghost {
  border-color: color-mix(in srgb, var(--text) 12%, transparent);
  background: transparent;
  color: var(--text);
}

body[data-page] .site-header {
  position: fixed;
  inset: 0 0 auto;
  left: 0;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  isolation: isolate;
  transform: none;
  color: var(--text);
}

body[data-page] .site-header__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--header-chrome-opacity, 1);
}

body[data-page] .site-header__overlay--blur {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

body[data-page][data-theme="light"] .site-header__overlay--blur {
  background: rgba(255, 255, 255, 0.78);
}

body[data-page] .site-header__overlay--shadow {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .site-header__overlay--shadow {
  box-shadow: none;
}

body[data-page][data-theme="light"] .site-header__overlay--shadow {
  box-shadow: none;
}

body[data-page] .site-header__bar {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body[data-page] .site-header__brandline,
body[data-page] .site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

body[data-page] .site-header__brandline {
  min-width: 0;
}

body[data-page] .brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page] .brand__text {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page] .site-nav--desktop,
body[data-page] .site-nav--mobile {
  color: var(--text);
}

body[data-page] .site-nav {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  overflow: visible;
  padding-bottom: 0;
  transform: none;
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}

body[data-page] .site-nav--desktop {
  display: none;
}

body[data-page] .site-nav__link,
body[data-page] .link-subtle {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
  transition:
    transform 200ms ease-out,
    opacity 200ms ease-out,
    color 200ms ease-out;
}

body[data-page][data-theme="light"] .site-nav__link,
body[data-page][data-theme="light"] .link-subtle {
  opacity: 0.6;
}

body[data-page] .site-nav__link:hover,
body[data-page] .site-nav__link:focus-visible,
body[data-page] .site-nav__link.is-active,
body[data-page] .link-subtle:hover {
  color: var(--text);
  opacity: 1;
  transform: scale(1.1);
}

body[data-page] .site-nav__link:active {
  transform: scale(0.98);
}

body[data-page] .icon-toggle,
body[data-page] .header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

body[data-page] .icon-toggle {
  width: 36px;
  height: 36px;
  min-height: 36px;
}

body[data-page] .header-cart {
  width: 48px;
  height: 48px;
  min-height: 48px;
}

body[data-page] .icon-toggle:hover,
body[data-page] .header-cart:hover {
  transform: none;
}

body[data-page] .icon-toggle svg,
body[data-page] .header-cart svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  fill: none;
}

body[data-page] .theme-toggle__glyphs {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

body[data-page] .theme-toggle__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease-out, opacity 300ms ease-out;
}

body[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.75);
}

body[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.75);
}

body[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body[data-page] .site-header__menu-toggle {
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 6px;
}

body[data-page] .header-cart__count {
  position: absolute;
  top: 8px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

body[data-page][data-theme="light"] .header-cart__count {
  background: oklch(0.208 0.042 265.755);
  color: #ffffff;
}

body[data-page] .site-header__mobile-panel {
  position: fixed !important;
  inset: 50px 0 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 40;
  pointer-events: none;
}

body[data-page] .site-header__mobile-panel[hidden] {
  display: none;
}

body[data-page] .site-header__mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(4px);
}

body[data-page][data-theme="light"] .site-header__mobile-panel::before {
  background: rgba(15, 23, 42, 0.08) !important;
}

body[data-page] .site-nav--mobile {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  overflow-y: auto;
  margin: 0;
  padding: 24px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  text-align: right;
}

body[data-page][data-theme="light"] .site-nav--mobile {
  border-left-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

body[data-page] .site-nav--mobile .site-nav__link {
  padding: 12px 0;
  font-size: 24px;
  line-height: 1.25;
  transform: none;
}

body[data-page] .site-footer {
  margin-top: 0;
  padding: 48px 16px;
  background: transparent;
  color: var(--text);
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

body[data-page] .footer-grid,
body[data-page] .footer-note {
  width: min(100%, 1024px);
  margin-inline: auto;
}

body[data-page] .footer-grid {
  gap: 40px;
  text-align: right;
}

body[data-page] .footer-grid > div {
  align-items: flex-end;
}

body[data-page] .footer-grid a,
body[data-page] .footer-title,
body[data-page] .footer-note {
  color: var(--text-soft);
}

@media (min-width: 826px) {
  body[data-page] .site-header {
    padding-inline: 50px;
  }

  body[data-page] .brand__text {
    font-size: 24px;
  }

  body[data-page] .site-nav--desktop {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 72px;
    transform: translateX(-50%);
  }

  body[data-page] .site-header__menu-toggle,
  body[data-page] .site-header__mobile-panel {
    display: none !important;
  }
}

@media (max-width: 825px) {
  body[data-page] .site-nav--desktop {
    display: none !important;
  }

  body[data-page] .footer-grid,
  body[data-page] .footer-note {
    text-align: left;
  }

  body[data-page] .footer-grid > div {
    align-items: flex-start;
  }
}

@media (min-width: 640px) {
  body[data-page] .site-footer {
    padding-inline: 32px;
  }
}

/* Final shared Peptaura-style system */

:root {
  --bg: #050b15;
  --bg-soft: #000000;
  --bg-panel: rgba(0, 0, 0, 0.7);
  --surface: #000000;
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.7);
  --text-faint: rgba(255, 255, 255, 0.55);
  --accent: #ffffff;
  --accent-strong: #ffffff;
  --accent-warm: #ffffff;
  --danger: #fca5a5;
  --success: #86efac;
  --shadow: none;
}

body[data-theme="light"] {
  --bg: #f3f7ff;
  --bg-soft: #f1f5f9;
  --bg-panel: rgba(255, 255, 255, 0.78);
  --surface: #ffffff;
  --surface-strong: rgba(15, 23, 42, 0.08);
  --surface-border: #cbd5e1;
  --text: #0b1324;
  --text-soft: #475569;
  --text-faint: rgba(71, 85, 105, 0.78);
  --accent: #0b1324;
  --accent-strong: #0b1324;
  --accent-warm: #0b1324;
  --danger: #b91c1c;
  --success: #166534;
  --shadow: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

body[data-theme="light"] {
  background: var(--bg);
}

.page-noise {
  opacity: 0;
  background: none;
}

body[data-page] .site-shell {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

body[data-page] main {
  display: block;
  padding-top: 50px;
}

body[data-page]:not([data-page="suppliers"]) main > .section,
body[data-page]:not([data-page="suppliers"]) main > .section--tight,
body[data-page]:not([data-page="suppliers"]) main > .hero:not(.hero--home) {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

body[data-page]:not([data-page="suppliers"]) .section--narrow {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

body[data-page] .page-title,
body[data-page] .section-head h2,
body[data-page] .hero-panel h2,
body[data-page] .supplier-chip__name,
body[data-page] .supplier-card h3,
body[data-page] .catalog-card h3,
body[data-page] .offer-card__supplier,
body[data-page] .policy-card h2,
body[data-page] .checkout-card h2 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body[data-page] .eyebrow,
body[data-page] .stat-card__label,
body[data-page] .catalog-card__family,
body[data-page] .search-field__label,
body[data-page] .footer-title {
  color: var(--text-soft);
}

body[data-page] .button--primary {
  background: #ffffff;
  color: #000000;
}

body[data-theme="light"] .button--primary {
  background: #000000;
  color: #ffffff;
}

body[data-page] .button--ghost,
body[data-page] .pill,
body[data-page] .filter-pill,
body[data-page] .tag {
  border-color: var(--surface-border);
  background: var(--surface-strong);
  color: var(--text);
}

body[data-page] .site-header {
  --header-chrome-opacity: 1;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  color: var(--text);
  isolation: isolate;
  transform: none;
}

body[data-page="home"] .site-header {
  --header-chrome-opacity: 0;
}

body[data-page] .site-header__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--header-chrome-opacity);
  transition: opacity 500ms ease;
}

body[data-page] .site-header__overlay--blur {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

body[data-theme="light"] .site-header__overlay--blur {
  background: rgba(255, 255, 255, 0.78);
}

body[data-page] .site-header__overlay--shadow {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body[data-page] .site-header__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

body[data-page] .site-header__brandline {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

body[data-page] .brand {
  gap: 0;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page] .brand__text {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

body[data-page] .site-nav--desktop {
  position: absolute;
  left: 50%;
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: 72px;
  transform: translateX(-50%);
}

body[data-page] .site-nav__link {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
  transition:
    color 200ms ease,
    opacity 200ms ease,
    transform 200ms ease;
}

body[data-page] .site-nav__link.is-active,
body[data-page] .site-nav__link:hover,
body[data-page] .site-nav__link:focus-visible {
  color: var(--text);
  opacity: 1;
  transform: scale(1.1);
}

body[data-page] .site-header__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

body[data-page] .icon-toggle,
body[data-page] .header-cart {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

body[data-page] .icon-toggle {
  width: 36px;
  height: 36px;
  min-height: 36px;
}

body[data-page] .header-cart {
  width: 48px;
  height: 48px;
  min-height: 48px;
}

body[data-page] .header-cart__count {
  display: none;
}

body[data-page] .theme-toggle__glyphs {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

body[data-page] .theme-toggle__icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

body[data-page] .theme-toggle__icon svg {
  width: 16px;
  height: 16px;
}

body[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.75);
}

body[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.75);
}

body[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body[data-page] .site-header__menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 6px;
}

body[data-page] .site-header__menu-toggle svg {
  width: 24px;
  height: 24px;
}

body[data-page] .site-header__mobile-panel {
  position: fixed;
  inset: 50px 0 0;
  z-index: 999;
  margin-top: 0;
  padding: 0;
}

body[data-page] .site-header__mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

body[data-theme="light"] .site-header__mobile-panel::before {
  border-left-color: #cbd5e1;
  background: rgba(255, 255, 255, 0.2);
}

body[data-page] .site-header__mobile-panel[hidden] {
  display: none;
}

body[data-page] .site-nav--mobile {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  overflow-y: auto;
  padding: 24px 16px;
  text-align: right;
}

body[data-page] .site-nav--mobile .site-nav__link {
  display: block;
  padding: 12px 0;
  font-size: 24px;
  line-height: 32px;
  opacity: 0.5;
  transform-origin: right center;
}

body.has-mobile-nav-open .site-header {
  --header-chrome-opacity: 1;
}

body.has-mobile-nav-open {
  overflow: hidden;
}

body[data-page] .site-footer {
  --footer-line-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 48px 16px;
  background: #000000;
  color: #ffffff;
  border-top: 0;
}

body[data-theme="light"] .site-footer {
  --footer-line-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(15, 23, 42, 0.14) 20%,
    rgba(15, 23, 42, 0.28) 50%,
    rgba(15, 23, 42, 0.14) 80%,
    transparent 100%
  );
  background: #f1f5f9;
  color: #0b1324;
}

body[data-page] .site-footer__line {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background-image: var(--footer-line-image);
  background-size: 240% 100%;
  background-position: 120% 0;
  opacity: 1;
  animation: footer-line-pan 9s linear infinite;
}

@keyframes footer-line-pan {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -120% 0;
  }
}

body[data-page] .footer-grid,
body[data-page] .footer-note {
  position: relative;
  z-index: 2;
  width: min(100%, 1024px);
  margin-inline: auto;
}

body[data-page] .footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  text-align: right;
}

body[data-page] .footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

body[data-page] .footer-grid a {
  color: inherit;
}

body[data-page] .footer-title {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

body[data-theme="light"] .footer-title {
  color: rgba(15, 23, 42, 0.46);
}

body[data-page] .footer-note {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

body[data-theme="light"] .footer-note {
  color: rgba(15, 23, 42, 0.58);
}

@media (min-width: 640px) {
  body[data-page]:not([data-page="suppliers"]) main > .section,
  body[data-page]:not([data-page="suppliers"]) main > .section--tight,
  body[data-page]:not([data-page="suppliers"]) main > .hero:not(.hero--home) {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  body[data-page]:not([data-page="suppliers"]) .section--narrow {
    width: min(calc(100% - 3rem), 48rem);
  }

  body[data-page] .site-footer {
    padding-inline: 32px;
  }
}

@media (min-width: 826px) {
  body[data-page] .site-header {
    padding-inline: 50px;
  }

  body[data-page] .site-nav--desktop {
    display: flex;
  }

  body[data-page] .site-header__menu-toggle,
  body[data-page] .site-header__mobile-panel {
    display: none !important;
  }
}

@media (max-width: 825px) {
  body[data-page] .site-header {
    padding-inline: 16px;
  }

  body[data-page] .site-header__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px 16px;
  }

  body[data-page] .brand__text {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  body[data-page] .footer-grid,
  body[data-page] .footer-note {
    text-align: left;
  }

  body[data-page] .footer-grid > div {
    align-items: flex-start;
  }
}

body[data-page="home"] main {
  padding-top: 0;
}

body[data-page="home"] .hero--home {
  margin-top: -50px;
  min-height: calc(180svh + 50px);
  border-top: 0;
}

body[data-page="home"] .hero--home .hero__content {
  min-height: calc(100svh + 50px);
  padding-top: calc(7.5rem + 50px);
}

body[data-page] .site-footer {
  width: 100%;
  max-width: none;
}

body[data-page="home"] .site-footer {
  position: relative;
  overflow: visible;
  background: transparent;
  color: #f7fbff;
}

body[data-theme="light"][data-page="home"] .site-footer {
  background: transparent;
  color: #f7fbff;
}

body[data-page="home"] .site-footer::before {
  content: none;
}

body[data-page="home"] .footer-grid,
body[data-page="home"] .footer-note {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .footer-grid a {
  color: rgba(235, 240, 255, 0.82);
}

body[data-page="home"] .footer-grid a:hover,
body[data-page="home"] .footer-grid a:focus-visible {
  color: #ffffff;
}

body[data-page="home"] .footer-title {
  color: rgba(196, 180, 255, 0.62);
}

body[data-page="home"] .footer-note {
  color: rgba(196, 205, 226, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page] .site-footer__line {
    animation: none;
    background-position: 50% 0;
  }
}

/* Final cart-size trim. Keep last so it wins. */
body[data-page] .header-cart {
  width: 48px;
  height: 48px;
  min-height: 48px;
}

body[data-page] .header-cart svg {
  width: 24px;
  height: 24px;
}

/* Peptaura dark-clone fidelity overrides. Keep last so generated pages match the
   archived dark marketplace without depending on the original app code. */
body[data-page] .brand__text,
body[data-page] .site-nav__link,
body[data-page] .footer-title,
body[data-page] .footer-note,
body[data-page] h1,
body[data-page] h2,
body[data-page] h3 {
  letter-spacing: 0;
}

body[data-page] .brand__text {
  text-transform: uppercase;
}

body[data-page="home"] .hero--home h1 {
  letter-spacing: 0;
}

body[data-page="home"] {
  --home-surface-background: linear-gradient(180deg, #050b15 0%, #050b15 78%, #000000 100%);
}

body[data-page="home"] .home-stack {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.35rem 0 6rem;
}

body[data-page="home"] .catalog-surface {
  width: min(calc(100% - 2rem), 940px);
  margin-inline: auto;
  padding-top: 0;
}

body[data-page="home"] .catalog-surface__head {
  align-items: center;
  margin-bottom: 1.8rem;
}

body[data-page="home"] .catalog-surface__head h2 {
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 800;
}

body[data-page="home"] .catalog-surface__head .eyebrow {
  display: none;
}

body[data-page="home"] .catalog-surface__controls {
  flex: 1;
  align-items: center;
}

body[data-page="home"] .search-field--home {
  flex: 1;
}

body[data-page="home"] .search-field--home .search-field__label {
  display: none;
}

body[data-page="home"] .search-field--home input {
  min-height: 2.75rem;
  border-radius: 8px;
  background: #000000;
}

body[data-page="home"] a.catalog-surface__button,
body[data-page="home"] button.catalog-surface__button {
  min-height: 2.75rem;
  border-radius: 8px;
  background: #050505;
}

body[data-page="home"] .catalog-grid--home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem 0.75rem;
}

body[data-page="home"] .catalog-card__link--home {
  gap: 0.55rem;
  overflow: hidden;
}

body[data-page="home"] .catalog-specimen {
  min-height: 0;
  aspect-ratio: 1 / 0.95;
  border-radius: 0;
  background: var(--swatch-b);
  box-shadow: none;
}

body[data-page="home"] .catalog-specimen::after {
  border: 0;
  border-radius: 0;
}

body[data-page="home"] .catalog-card--loaded-image .catalog-specimen {
  background: #000000;
}

body[data-page="home"] .catalog-specimen__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .catalog-card:not(.catalog-card--loaded-image) .catalog-vial {
  display: none;
}

body[data-page="home"] article.catalog-card--home h3 {
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  font-weight: 800;
  line-height: 1.02;
  text-overflow: clip;
  white-space: nowrap;
}

body[data-page="home"] article.catalog-card--home .catalog-card__meta {
  font-size: 0.9rem;
  font-weight: 700;
}

body[data-page="product"] .catalog-specimen--large {
  width: min(100%, 25rem);
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

body[data-page="product"] .breadcrumb,
body[data-page="product"] .back-link {
  display: block;
}

body[data-page="product"] .back-link {
  width: fit-content;
  margin-top: 0.6rem;
}

body[data-page="product"] .dosage-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

body[data-page="product"] .dosage-filter__label {
  flex-basis: 100%;
  color: var(--text-soft);
  font-weight: 700;
}

body[data-page="product"] .offer-card__grid > div {
  display: grid;
  gap: 0.25rem;
}

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