:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #68717b;
  --line: #d9e2e2;
  --surface: #f7faf9;
  --panel: #ffffff;
  --accent: #087f8c;
  --accent-dark: #055b63;
  --gold: #b8872d;
  --green: #597d45;
  --danger: #9a3a2e;
  --soft: #eef5f3;
  --warm: #f8f5ee;
  --shadow: 0 22px 70px rgba(24, 46, 54, 0.12);
  --shadow-soft: 0 10px 30px rgba(24, 46, 54, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main [id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7faf9 0, #ffffff 440px, #f7faf9 100%);
  letter-spacing: 0;
}

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

a:not(.brand):not(.btn):hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  font-weight: 800;
}

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

button,
input,
select,
textarea,
summary {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 3px;
}

summary:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 212px;
  min-width: 178px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav,
.site-footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  color: #33414b;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.cart-button,
.icon-button,
.btn {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  color: white;
  background: var(--ink);
}

.cart-button span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100svh - 68px));
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(52px, 7vw, 84px);
  background:
    linear-gradient(115deg, rgba(8, 127, 140, 0.08), rgba(184, 135, 45, 0.08)),
    radial-gradient(circle at 72% 28%, rgba(8, 127, 140, 0.08), transparent 34%),
    #f7faf9;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  text-wrap: balance;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 18px;
}

.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
}

.btn.primary {
  color: white;
  background: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover,
.btn.ghost:hover,
.icon-button:hover {
  border-color: rgba(8, 127, 140, 0.46);
  background: #e8f2f0;
}

.cart-button:hover {
  background: #2d3d49;
}

.btn:active,
.icon-button:active,
.cart-button:active {
  transform: translateY(1px);
}

.btn[disabled],
.icon-button[disabled],
.cart-button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.is-loading {
  gap: 8px;
}

.button-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-spin 700ms linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.danger,
.btn.ghost.danger {
  border-color: rgba(154, 58, 46, 0.32);
  color: var(--danger);
}

.btn.secondary,
.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
}

.btn.full {
  width: 100%;
}

.trust-row,
.promo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 30px;
}

.trust-row span,
.promo-strip span {
  border: 1px solid rgba(8, 127, 140, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: #27424a;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  align-self: center;
  justify-self: end;
  width: min(100%, 660px);
}

.lab-scene {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(8, 127, 140, 0.12);
  border-radius: 16px;
  background: #eef7f6;
  box-shadow: var(--shadow);
}

.lab-scene::before {
  content: none;
}

.hero-vials-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vial {
  position: absolute;
  bottom: 72px;
  left: 42%;
  width: 96px;
  height: 270px;
  border: 1px solid rgba(23, 32, 42, 0.18);
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(180deg, #e8f4f2 0 26%, white 26% 100%);
  box-shadow: 0 24px 40px rgba(23, 32, 42, 0.16);
}

.vial::before {
  position: absolute;
  top: -42px;
  left: 20px;
  width: 56px;
  height: 44px;
  border-radius: 8px 8px 3px 3px;
  background: #33414b;
  content: "";
}

.vial::after {
  position: absolute;
  right: 15px;
  bottom: 40px;
  left: 15px;
  height: 88px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), #d7eeee);
  content: "RUO";
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.vial.tall {
  left: 18%;
  height: 330px;
  transform: rotate(-3deg);
}

.vial.short {
  left: 67%;
  height: 230px;
  transform: rotate(4deg);
}

.promo-strip {
  justify-content: center;
  padding: 14px 16px;
  border-block: 1px solid rgba(23, 32, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.product-band,
.confidence-band,
.docs-band {
  background: white;
}

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

.confidence-grid article {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 12px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
  box-shadow: var(--shadow-soft);
}

.confidence-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.info-center {
  padding-block: clamp(42px, 6vw, 72px);
  background:
    linear-gradient(115deg, rgba(8, 127, 140, 0.08), rgba(184, 135, 45, 0.06)),
    white;
}

.info-center .section-heading {
  margin-inline: auto;
  text-align: center;
}

.info-cloud {
  position: relative;
  display: none;
  max-width: 860px;
  margin: 0 auto 22px;
  border: 1px solid rgba(8, 127, 140, 0.16);
  border-radius: 28px;
  padding: 28px clamp(20px, 4vw, 38px);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.96), transparent 32%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(24, 46, 54, 0.12);
}

.info-cloud.open {
  display: block;
}

.info-cloud::after {
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 26px;
  height: 26px;
  border-right: 1px solid rgba(8, 127, 140, 0.16);
  border-bottom: 1px solid rgba(8, 127, 140, 0.16);
  background: white;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.info-cloud h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-content {
  display: grid;
  gap: 16px;
  color: #3a4852;
  line-height: 1.62;
}

.policy-content > span {
  display: block;
  max-width: 780px;
  color: #52606b;
}

.policy-block {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 14px;
  padding: 16px;
  background: #f7faf9;
}

.policy-block h4 {
  margin: 0 0 8px;
  color: #073f43;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.policy-block li {
  color: #40505a;
  font-size: 14px;
}

.info-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.info-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.info-tab {
  min-height: 42px;
  border: 1px solid rgba(8, 127, 140, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: #27424a;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  cursor: pointer;
}

.info-tab:hover,
.info-tab.active {
  color: white;
  background: var(--accent);
}

.info-tab:active {
  background: var(--accent-dark);
}

.info-contact {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.product-card,
.doc-card,
.panel-form,
.order-review,
.filters,
.policy,
.faq-list details,
.order-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.product-card {
  display: grid;
  overflow: hidden;
  isolation: isolate;
  transition: transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(8, 127, 140, 0.26);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(24, 46, 54, 0.14);
}

.product-card:has(.btn:focus-visible) {
  border-color: rgba(8, 127, 140, 0.56);
  box-shadow: 0 0 0 4px rgba(8, 127, 140, 0.12), var(--shadow-soft);
}

.product-art {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent),
    #eef5f3;
}

.product-art::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 127, 140, 0.2), transparent);
  content: "";
}

.product-image,
.modal-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image {
  aspect-ratio: 1 / 1;
}

.packshot {
  position: relative;
  width: 88px;
  height: 150px;
  border: 1px solid rgba(23, 32, 42, 0.16);
  border-radius: 14px 14px 8px 8px;
  background: white;
  box-shadow: 0 18px 28px rgba(23, 32, 42, 0.18);
}

.packshot::before {
  position: absolute;
  top: -28px;
  left: 19px;
  width: 50px;
  height: 30px;
  border-radius: 7px 7px 2px 2px;
  background: var(--ink);
  content: "";
}

.packshot::after {
  position: absolute;
  right: 10px;
  bottom: 22px;
  left: 10px;
  height: 58px;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  content: attr(data-code);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 16px;
  padding: 20px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-meta,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.research-disclaimer {
  font-size: 13px;
}

.product-size-line {
  margin-bottom: 6px;
  color: #22323b;
  font-size: 13px;
  font-weight: 900;
}

.muted-pill {
  color: #536069;
  background: #f4f7f6;
}

.product-stock-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  min-height: 30px;
  box-shadow: 0 8px 18px rgba(24, 46, 54, 0.12);
}

.pill,
.stock {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: #ecf4f3;
  color: #25494f;
  font-size: 12px;
  font-weight: 800;
}

.stock.available,
.modal-stock-status.available {
  border-color: #cfe4c4;
  background: #e7f3df;
  color: #365727;
}

.stock.steady,
.modal-stock-status.steady {
  background: #ecf4f3;
  color: #25494f;
}

.stock.limited,
.modal-stock-status.limited {
  background: #f7efe2;
  color: #694713;
}

.stock.low,
.modal-stock-status.low {
  border-color: #eed0cb;
  background: #fff0ed;
  color: var(--danger);
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-size: 25px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price-row .btn {
  min-height: 42px;
  padding-inline: 16px;
  white-space: nowrap;
}

.shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
  background:
    linear-gradient(180deg, #f7faf9, #ffffff 34%, #f7faf9);
}

.shop-layout > * {
  min-width: 0;
}

.filters,
.panel-form,
.order-review,
.policy {
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: #32424a;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--ink);
  background: white;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: rgba(8, 127, 140, 0.56);
  box-shadow: 0 0 0 4px rgba(8, 127, 140, 0.1);
}

label:focus-within {
  color: var(--accent-dark);
}

.field-error {
  display: block;
  margin-top: 4px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

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

.filters {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
  border-color: rgba(8, 127, 140, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 249, 0.94));
}

.filters h2 {
  font-size: clamp(32px, 3.5vw, 46px);
}

.filter-note {
  margin: 0;
  font-size: 13px;
}

.shop-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shop-topline span {
  color: var(--muted);
  font-weight: 800;
}

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

.doc-card {
  padding: 22px;
}

.doc-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary:hover {
  color: var(--accent-dark);
}

.panel-form {
  display: grid;
  gap: 15px;
}

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

.account-dashboard {
  display: grid;
  gap: 20px;
}

.account-preview {
  display: grid;
  gap: 20px;
}

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

.account-stats article {
  border: 1px solid rgba(8, 127, 140, 0.14);
  border-radius: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 249, 0.96));
}

.account-stats strong,
.account-stats span {
  display: block;
}

.account-stats strong {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.account-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-page-shell {
  min-height: calc(100vh - 186px);
  background:
    radial-gradient(circle at 8% 8%, rgba(8, 127, 140, 0.08), transparent 34%),
    linear-gradient(180deg, #f7faf9 0%, #ffffff 42%, #eef5f3 100%);
}

.account-portal {
  display: grid;
  gap: 34px;
}

.account-copy {
  max-width: 760px;
}

.account-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  align-items: end;
}

.account-hero-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 18px;
  padding: 26px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 63, 67, 0.96), rgba(2, 29, 38, 0.96));
  box-shadow: var(--shadow);
}

.account-hero-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.account-hero-card strong {
  font-size: 28px;
  line-height: 1.05;
}

.account-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.account-panel {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 251, 0.98));
  box-shadow: var(--shadow-soft);
}

.account-panel h2 {
  margin: 0 0 8px;
}

.account-form {
  gap: 16px;
}

.account-form p {
  margin: 0;
}

.account-support-card {
  background:
    linear-gradient(135deg, rgba(8, 127, 140, 0.08), rgba(184, 135, 45, 0.08)),
    white;
}

.account-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-mini-links a {
  border: 1px solid rgba(8, 127, 140, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.account-overview {
  display: grid;
  gap: 18px;
}

.account-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 18px;
}

.account-profile-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.account-profile-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.account-profile-card dt {
  color: var(--muted);
  font-weight: 900;
}

.account-profile-card dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.account-loyalty-card p {
  margin-top: 0;
}

.account-preview-card {
  min-height: 220px;
}

.preview-stats strong {
  color: rgba(16, 24, 32, 0.36);
}

.preview-order-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.preview-order-lines span {
  display: block;
  height: 46px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(8, 127, 140, 0.08), rgba(184, 135, 45, 0.08)),
    #f7faf9;
}

.account-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eeee;
}

.account-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  transition: transform 180ms ease;
}

.account-orders-heading h2 {
  margin-top: 0;
}

.account-orders-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
}

.account-orders {
  display: grid;
  gap: 12px;
}

.account-orders article {
  display: grid;
  gap: 4px;
}

.account-order-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 14px;
  padding: 16px;
  background: #f7faf9;
}

.account-order-card > div:last-child {
  text-align: right;
}

.account-order-card strong,
.account-order-card small,
.account-order-card span {
  display: block;
  overflow-wrap: anywhere;
}

.order-status-chip {
  width: fit-content;
  border-radius: 999px;
  margin-bottom: 8px;
  padding: 6px 10px;
  color: var(--accent-dark);
  background: rgba(8, 127, 140, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.account-empty-order {
  border: 1px dashed rgba(8, 127, 140, 0.28);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.account-return {
  justify-self: end;
}

.notice {
  min-height: 24px;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(16px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #101820;
  color: white;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  color: white;
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(470px, 100vw);
  height: 100svh;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) 0;
  border-left: 1px solid rgba(23, 32, 42, 0.08);
  background:
    linear-gradient(180deg, #ffffff, #f7faf9);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
  overscroll-behavior: contain;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #eef3f2;
  font-weight: 900;
}

.cart-items {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 16px 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 12px;
  padding: 12px;
  background: white;
  box-shadow: 0 8px 20px rgba(24, 46, 54, 0.06);
  overflow-wrap: anywhere;
}

.cart-line-main > div,
.review-line > span,
.review-line > strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cart-line-main {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
}

.cart-line-thumb {
  width: 70px;
  height: 70px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  background: var(--soft);
}

.cart-line-thumb.packshot {
  min-height: 70px;
  transform: none;
}

.cart-line-thumb.packshot::before,
.cart-line-thumb.packshot::after {
  display: none;
}

.cart-line-total {
  padding-top: 3px;
  white-space: nowrap;
}

.qty-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.qty-row button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: white;
}

.free-shipping-note,
.shipping-threshold-note,
.processing-notice {
  margin: 0;
  border: 1px solid rgba(8, 127, 140, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--accent-dark);
  background: rgba(8, 127, 140, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.free-shipping-note.unlocked {
  border-color: rgba(184, 135, 45, 0.34);
  color: #6d4a12;
  background: #fff7e8;
}

.product-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding:
    max(18px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
  background: rgba(16, 24, 32, 0.66);
  backdrop-filter: blur(14px);
}

.product-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(330px, 1fr);
  gap: 30px;
  width: min(980px, 100%);
  max-height: min(720px, calc(100svh - 36px));
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 14px;
  padding: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.modal-product-art {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(8, 127, 140, 0.09), rgba(184, 135, 45, 0.1)),
    #eef5f3;
}

.modal-product-image {
  max-height: none;
  object-fit: cover;
}

.modal-product-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 12px 24px 12px 0;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.modal-specs span,
.variant-select-wrap,
.modal-note {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: #f7faf9;
  font-weight: 800;
}

.variant-select-wrap {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
}

.modal-note {
  color: #4c3b19;
  background: #fff7e8;
  font-size: 13px;
  line-height: 1.55;
}

.modal-note summary {
  cursor: pointer;
  color: var(--ink);
}

.modal-note p {
  margin: 12px 0 0;
  color: inherit;
  font-weight: 500;
}

.cart-summary > div,
.total-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.checkout {
  display: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 127, 140, 0.08), transparent 30%),
    linear-gradient(180deg, #f7faf9, #ffffff 44%, #f7faf9);
}

.checkout-route {
  background: #f7faf9;
}

.admin-panel {
  display: none;
  background: #eef5f3;
}

.checkout-route .site-header,
.checkout-route main,
.checkout-route .info-center,
.checkout-route .site-footer,
.admin-route .site-header,
.admin-route main > :not(#admin),
.admin-route .checkout,
.admin-route .info-center,
.admin-route .site-footer {
  display: none;
}

.checkout-route .checkout {
  display: block;
  min-height: 100svh;
  padding-top: 22px;
}

.admin-route {
  background:
    radial-gradient(circle at 10% 0%, rgba(8, 127, 140, 0.1), transparent 32%),
    linear-gradient(180deg, #eef5f3, #f7faf9 42%, #ffffff);
}

.admin-route main {
  display: block;
}

.admin-route .admin-panel {
  display: block;
  min-height: 100svh;
  padding-top: 24px;
}

.checkout-shell-header,
.admin-shell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 12px 0 20px;
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
}

.checkout-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.checkout-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.checkout-route .checkout-heading,
.checkout-route .checkout-grid,
.admin-route .section-heading,
.admin-route .orders-table,
.admin-route .admin-actions,
.admin-login,
.admin-summary,
.admin-hero,
.admin-status-bar,
.admin-quick-nav,
.admin-section-card,
.admin-dashboard-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 30px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-step {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 251, 0.96));
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px;
}

.checkout-step legend {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0 8px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.checkout-step legend span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--accent-dark);
  font-size: 12px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

.form-grid.three-col {
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
}

.radio-stack {
  display: grid;
  gap: 10px;
}

.option-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 12px;
  padding: 14px;
  background: white;
  font-weight: 700;
  transition: transform 160ms ease;
}

.option-row:has(input:checked) {
  border-color: rgba(8, 127, 140, 0.42);
  box-shadow: 0 10px 24px rgba(8, 127, 140, 0.1);
  transform: translateY(-1px);
}

.option-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.option-row strong {
  display: block;
  color: var(--ink);
}

.option-row em {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 900;
}

.microcopy {
  margin: 0;
  font-size: 13px;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
}

.check-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.attestation-row {
  border: 1px solid rgba(184, 135, 45, 0.3);
  border-radius: 12px;
  padding: 14px;
  background: #fffaf0;
}

.secure-payment-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--accent);
  border-radius: 3px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11, 107, 102, 0.1), transparent 34%),
    #ffffff;
}

.payment-card-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
}

.payment-card-heading h3,
.payment-card-heading p {
  margin: 0;
}

.payment-card-heading h3 {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.payment-card-heading p {
  max-width: 560px;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.5;
  text-wrap: pretty;
}

.payment-shield {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(11, 107, 102, 0.2);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
}

.payment-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: end;
  border: 1px solid rgba(69, 110, 79, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(69, 110, 79, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-status > span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 22px;
}

.payment-methods > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 6px 10px;
  color: #2f403c;
  background: #f8faf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.payment-assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  background: rgba(244, 246, 242, 0.66);
}

.payment-assurances > div {
  min-width: 0;
  padding: 15px 18px;
}

.payment-assurances > div + div {
  border-left: 1px solid var(--line);
}

.payment-assurances dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-assurances dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

#paymentAmount {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.payment-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(11, 107, 102, 0.18);
  border-radius: 3px;
  padding: 14px 16px;
  color: var(--accent-dark);
  background: rgba(223, 236, 234, 0.54);
}

.payment-note svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

.payment-note strong,
.payment-note span {
  display: block;
}

.payment-note strong {
  font-size: 12px;
}

.payment-note span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.processor-credit {
  width: fit-content;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.processor-credit:hover {
  color: var(--accent);
}

.processor-credit:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(11, 107, 102, 0.22);
  outline-offset: 3px;
}

.checkout-payment-button {
  min-height: 58px;
  font-size: 13px;
  letter-spacing: 0.035em;
}

.payment-handoff {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  overflow: auto;
  overscroll-behavior: contain;
  place-items: center;
  padding:
    max(20px, env(safe-area-inset-top))
    max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom))
    max(20px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 15%, rgba(169, 120, 32, 0.18), transparent 30%),
    rgba(3, 31, 33, 0.96);
  backdrop-filter: blur(14px);
}

.payment-handoff-card {
  display: grid;
  justify-items: center;
  width: min(560px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  padding: clamp(30px, 6vw, 56px);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: payment-handoff-enter 260ms var(--ease-out) both;
}

.handoff-brand-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.handoff-brand-mark img {
  width: 46px;
  height: 46px;
}

.payment-handoff-card h2 {
  max-width: 440px;
  margin: 8px 0 12px;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 0.96;
  text-wrap: balance;
}

.payment-handoff-card > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  text-wrap: pretty;
}

.handoff-progress {
  width: min(340px, 100%);
  height: 3px;
  margin: 28px 0 20px;
  overflow: hidden;
  background: var(--surface-deep);
}

.handoff-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  animation: payment-handoff-progress 1.4s var(--ease-out) forwards;
}

.handoff-route {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.handoff-route strong {
  color: var(--accent-dark);
}

.payment-handoff-card .btn {
  max-width: 360px;
}

.payment-handoff-card small {
  margin-top: 14px;
  color: var(--muted);
}

@keyframes payment-handoff-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes payment-handoff-progress {
  to {
    transform: scaleX(1);
  }
}

.review-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.total-line {
  margin-top: 16px;
  font-size: 20px;
}

.order-review {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 250, 0.98));
  box-shadow: var(--shadow);
}

.order-review h2 {
  margin-bottom: 4px;
}

#checkoutItems {
  display: grid;
  gap: 4px;
}

.review-line:first-child {
  border-top: 1px solid var(--line);
}

.total-line {
  border-top: 1px solid rgba(23, 32, 42, 0.12);
  padding-top: 18px;
}

.total-line strong {
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}

.checkout-review-note {
  margin: 0;
  border-radius: 12px;
  padding: 12px;
  color: #4c3b19;
  background: #fff7e8;
  font-size: 13px;
  font-weight: 800;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding:
    max(24px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
  background: rgba(16, 24, 32, 0.72);
  backdrop-filter: blur(12px);
}

.age-gate.hidden {
  display: none;
}

.age-panel {
  width: min(560px, 100%);
  border-radius: 8px;
  padding: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.age-panel h1 {
  font-size: clamp(32px, 6vw, 54px);
}

.orders-table {
  display: grid;
  gap: 12px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

.admin-hero p {
  max-width: 680px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.admin-status-bar {
  min-height: 44px;
  border: 1px solid rgba(8, 127, 140, 0.14);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 12px 16px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.72);
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.35fr);
  gap: 12px;
  min-width: min(520px, 100%);
}

.admin-login {
  margin-bottom: 28px;
}

.admin-login .btn {
  justify-self: start;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-summary article {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 251, 0.98));
  box-shadow: var(--shadow-soft);
}

.admin-summary strong {
  display: block;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.admin-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-quick-nav {
  position: sticky;
  z-index: 12;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.admin-quick-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 900;
}

.admin-quick-nav a:hover {
  color: white;
  background: var(--accent-dark);
}

.admin-section-card {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 18px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.admin-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.admin-section-heading h2 {
  margin: 0;
}

.admin-section-heading p {
  margin-bottom: 0;
}

.admin-subheading {
  margin-top: 44px;
}

.admin-catalog-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin-inline: auto;
}

.admin-product-form textarea {
  min-height: 96px;
}

.admin-image-preview {
  width: 100%;
  max-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #f7faf9;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(23, 32, 42, 0.05);
}

.order-row small {
  display: block;
  color: var(--muted);
}

.admin-order {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  background: white;
}

.admin-product-row {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: start;
  background: white;
}

.admin-product-main {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.admin-product-thumb {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #edf6f4;
}

.admin-product-thumb.packshot {
  min-height: 72px;
  transform: none;
}

.admin-product-controls,
.admin-inline-controls {
  display: grid;
  gap: 10px;
}

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

.admin-product-controls .btn {
  grid-column: 1 / -1;
}

.admin-variants-field {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.admin-variants-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.admin-variants-heading strong,
.admin-variants-heading small {
  display: block;
}

.admin-variant-empty {
  color: var(--muted);
}

.admin-variants-heading .btn {
  grid-column: auto;
  min-height: 36px;
  padding-inline: 12px;
}

.admin-variant-list {
  display: grid;
  gap: 8px;
}

.admin-variant-row {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) minmax(84px, 0.85fr) minmax(76px, 0.72fr) 40px;
  gap: 8px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #f7faf9;
}

.admin-variant-row label {
  font-size: 12px;
}

.admin-variant-row input {
  min-height: 40px;
}

.admin-variant-remove {
  min-height: 40px;
  border: 1px solid #edd0cc;
  border-radius: 8px;
  color: var(--danger);
  background: #fff5f3;
}

.admin-order-main {
  display: grid;
  gap: 6px;
}

.admin-order-main > strong {
  font-size: 20px;
}

.admin-order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-order-meta small {
  border-radius: 10px;
  padding: 8px 10px;
  background: #f7faf9;
}

.admin-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.admin-events {
  margin-top: 8px;
}

.admin-items span {
  border-radius: 999px;
  padding: 6px 10px;
  background: #ecf4f3;
  color: #25494f;
  font-size: 12px;
  font-weight: 800;
}

.admin-order-controls {
  display: grid;
  gap: 10px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.admin-ops-card {
  align-content: start;
}

.admin-search-label {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  color: #25494f;
  font-size: 12px;
  font-weight: 800;
}

.admin-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}

.admin-mini-stats article {
  border: 1px solid rgba(8, 127, 140, 0.14);
  border-radius: 10px;
  padding: 10px;
  background: #eef8f6;
}

.admin-mini-stats strong,
.admin-mini-stats span {
  display: block;
}

.admin-mini-stats strong {
  color: var(--ink);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.admin-mini-stats span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-coupon-card {
  grid-column: 1 / -1;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-list article {
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 12px;
  padding: 12px;
  background: #f7faf9;
  content-visibility: auto;
  contain-intrinsic-size: auto 130px;
  overflow-wrap: anywhere;
}

.admin-order-main,
.admin-product-main,
.admin-order-controls,
.admin-product-controls {
  min-width: 0;
  overflow-wrap: anywhere;
}

.compact-list strong,
.compact-list small {
  display: block;
}

.compact-list small {
  color: var(--muted);
}

.compact-list p {
  margin: 6px 0 0;
  font-size: 13px;
}

.list-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.admin-customer-card {
  display: grid;
  gap: 10px;
}

.admin-customer-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.customer-badge {
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-badge.registered {
  color: #075f59;
  background: #dff2ed;
}

.customer-badge.guest {
  color: #72521b;
  background: #fbefd2;
}

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

.customer-metrics span {
  border: 1px solid rgba(23, 32, 42, 0.07);
  border-radius: 10px;
  padding: 8px;
  background: white;
}

.customer-metrics strong,
.customer-metrics small {
  display: block;
}

.customer-metrics strong {
  font-variant-numeric: tabular-nums;
}

.customer-metrics small {
  color: var(--muted);
  font-size: 11px;
}

.customer-recent-orders {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(23, 32, 42, 0.08);
  padding-top: 8px;
}

.customer-recent-orders span {
  color: #40505a;
  font-size: 12px;
}

.stacked-mini-form {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr 0.8fr 0.8fr auto;
  gap: 10px;
}

.admin-inline-controls {
  margin-top: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-inline-controls .btn {
  min-height: 40px;
}

.compact-check {
  align-self: end;
  min-height: 40px;
  align-items: center;
}

.hidden {
  display: none !important;
}

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .shop-layout,
  .split,
  .account-hero,
  .account-layout,
  .account-content-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

  .order-review {
    position: static;
    order: -1;
  }

  .form-grid.two-col,
  .form-grid.three-col {
    grid-template-columns: 1fr;
  }

  .payment-card-heading,
  .payment-assurances {
    grid-template-columns: 1fr;
  }

  .payment-shield {
    margin-bottom: 2px;
  }

  .payment-status {
    justify-self: start;
  }

  .payment-assurances > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-media {
    justify-self: start;
    max-width: 680px;
  }

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

  .filters {
    position: static;
  }

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

  .checkout-shell-header {
    align-items: flex-start;
  }

  .checkout-heading {
    margin-bottom: 22px;
  }

  .admin-hero,
  .admin-section-heading,
  .admin-order {
    grid-template-columns: 1fr;
  }

  .admin-actions,
  .admin-section-heading .admin-filters {
    justify-content: stretch;
  }

  .admin-order-controls {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    padding-left: 0;
  }

  .admin-product-row,
  .admin-product-controls,
  .admin-variant-row,
  .admin-order-meta,
  .admin-inline-controls {
    grid-template-columns: 1fr;
  }

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

  .admin-summary,
  .admin-dashboard-grid,
  .admin-filters,
  .stacked-mini-form {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    width: 154px;
    min-width: 154px;
  }

  .checkout-shell-header,
  .admin-shell-header {
    display: grid;
  }

  .checkout-brand {
    width: 180px;
  }

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

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .section {
    padding: 48px 14px;
  }

  .hero {
    padding-top: 38px;
  }

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

  .product-grid,
  .doc-grid,
  .confidence-grid,
  .account-stats {
    grid-template-columns: 1fr;
  }

  .account-orders-heading,
  .account-order-card,
  .account-profile-card dl div {
    display: grid;
  }

  .account-order-card > div:last-child,
  .account-profile-card dd {
    text-align: left;
  }

  .hero-media {
    max-width: none;
  }

  .vial.tall {
    left: 8%;
  }

  .vial {
    left: 37%;
  }

  .vial.short {
    left: 64%;
  }

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

  .modal-product-art {
    min-height: 260px;
  }

  .modal-product-copy {
    padding-right: 0;
  }

  .modal-specs {
    grid-template-columns: 1fr;
  }
}

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

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

/* AXORA BIO editorial research system — 2026 redesign */
:root {
  --ink: #0b2423;
  --muted: #586661;
  --line: #d5ddd8;
  --line-strong: #b8c5bf;
  --surface: #f4f6f2;
  --surface-deep: #e9eeea;
  --panel: #ffffff;
  --accent: #0b6b66;
  --accent-dark: #063f43;
  --accent-soft: #dfecea;
  --gold: #a97820;
  --green: #456e4f;
  --danger: #973b32;
  --soft: #edf2ee;
  --warm: #f2eee4;
  --shadow: 0 24px 70px rgba(6, 42, 42, 0.14);
  --shadow-soft: 0 12px 34px rgba(6, 42, 42, 0.08);
  --font-display: "Newsreader", Iowan Old Style, Baskerville, "Times New Roman", serif;
  --font-body: "DM Sans", Avenir Next, Avenir, ui-sans-serif, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

html {
  background: var(--surface);
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.5;
}

main {
  overflow: clip;
}

::selection {
  color: #ffffff;
  background: var(--accent);
}

h1,
h2,
h3,
.form-title,
.price {
  font-family: var(--font-display);
  font-weight: 500;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 6.6vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.7rem, 4.7vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  line-height: 1.68;
  text-wrap: pretty;
}

.utility-bar {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.88);
  background: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.utility-bar > span:first-child {
  color: #f0d79b;
}

.site-header {
  min-height: 80px;
  grid-template-columns: minmax(170px, 220px) 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  padding: 12px clamp(18px, 4vw, 64px);
  border-color: rgba(11, 36, 35, 0.12);
  background: rgba(250, 251, 248, 0.94);
  backdrop-filter: blur(16px) saturate(130%);
}

.brand {
  width: 190px;
  min-width: 160px;
}

.main-nav {
  gap: clamp(20px, 2.8vw, 40px);
  justify-content: flex-start;
  color: #324541;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: 0;
}

.main-nav a::after {
  right: auto;
  bottom: 5px;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 160ms ease, transform 180ms var(--ease-out);
}

.header-actions,
.account-link {
  display: flex;
  align-items: center;
}

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

.account-link {
  min-height: 46px;
  gap: 8px;
  padding: 0 10px;
  color: #324541;
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease, transform 140ms var(--ease-out);
}

.mobile-nav-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.cart-button {
  min-height: 48px;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 8px 0 14px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}

.cart-button > span:last-child {
  min-width: 30px;
  height: 30px;
  border-radius: 2px;
  color: var(--ink);
  background: #f3e2b8;
  font-variant-numeric: tabular-nums;
}

.cart-button .cart-label {
  display: inline;
  min-width: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
}

.section {
  padding: clamp(72px, 9vw, 138px) max(20px, calc((100vw - 1440px) / 2));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(169, 120, 32, 0.12);
}

.hero {
  min-height: min(810px, calc(100svh - 112px));
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(44px, 7vw, 112px);
  padding-top: clamp(72px, 8vw, 128px);
  padding-bottom: clamp(72px, 8vw, 128px);
  background: var(--surface);
}

.hero-copy {
  max-width: 730px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.age-actions {
  gap: 10px;
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out), opacity 160ms ease;
}

.btn.primary {
  color: #ffffff;
  background: var(--accent);
}

.btn.secondary,
.btn.ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn:active,
.icon-button:active,
.cart-button:active,
.account-link:active,
.mobile-nav-button:active {
  transform: scale(0.97);
}

.btn[disabled],
.icon-button[disabled],
.cart-button[disabled] {
  cursor: wait;
  opacity: 0.46;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero-metrics div + div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.hero-metrics dt {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-media {
  width: min(100%, 760px);
}

.lab-scene {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--surface-deep);
  box-shadow: none;
}

.hero-vials-image {
  filter: saturate(0.9) contrast(1.02);
}

.hero-image-label {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  min-width: min(270px, calc(100% - 92px));
  border-left: 3px solid var(--gold);
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.hero-image-label span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-image-label strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.hero-image-index {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  background: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 max(20px, calc((100vw - 1440px) / 2));
  border-block: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: none;
}

.promo-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 22px clamp(18px, 3vw, 42px);
}

.promo-strip article + article {
  border-left: 1px solid var(--line);
}

.promo-strip article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

.promo-strip article div {
  display: grid;
  gap: 3px;
}

.promo-strip strong {
  font-size: 13px;
}

.promo-strip small {
  color: var(--muted);
  font-size: 11px;
}

.confidence-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
  color: #ffffff;
  background: var(--accent-dark);
}

.confidence-band .section-heading {
  max-width: 620px;
  margin: 0;
}

.confidence-band .eyebrow {
  color: #d7ba76;
}

.confidence-band h2 {
  color: #ffffff;
}

.confidence-band .section-heading p:last-child {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.66);
}

.confidence-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.confidence-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px 18px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 28px 0;
  background: transparent;
  box-shadow: none;
}

.confidence-index {
  grid-row: 1 / 3;
  color: #d7ba76;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.confidence-grid strong {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.confidence-grid p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading > p:last-child {
  max-width: 650px;
  font-size: 17px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading-row > div {
  max-width: 800px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}

.product-band {
  background: #ffffff;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
  transform: none;
  transition: border-color 180ms ease, box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.product-card:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.product-art {
  min-height: 290px;
  background: var(--soft);
}

.product-art::after {
  right: 22px;
  bottom: 0;
  left: 22px;
  background: var(--line);
}

.product-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 280ms var(--ease-out);
}

.product-body {
  align-content: space-between;
  gap: 22px;
  padding: 24px;
}

.product-body h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
}

.product-body > div:first-child > p:last-child {
  min-height: 3.3em;
  margin-bottom: 0;
  font-size: 14px;
}

.pill-row {
  gap: 6px;
}

.pill,
.stock {
  min-height: 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 8px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.muted-pill {
  border-color: var(--line);
  color: var(--muted);
  background: transparent;
}

.product-stock-badge {
  top: 14px;
  right: 14px;
  min-height: 28px;
  border-color: rgba(11, 36, 35, 0.08);
  box-shadow: none;
}

.product-size-line {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.price {
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.price-row .btn {
  min-height: 44px;
  gap: 7px;
  padding-inline: 15px;
}

.shop-layout {
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 4vw, 64px);
  background: var(--surface);
}

.filters,
.panel-form,
.order-review,
.policy,
.faq-list details,
.order-row,
.account-panel,
.checkout-step {
  border-color: var(--line);
  border-radius: 2px;
  box-shadow: none;
}

.filters {
  top: 104px;
  gap: 18px;
  border-top: 3px solid var(--accent);
  padding: 24px;
  background: #ffffff;
}

.filters h2 {
  font-size: 2.25rem;
}

label {
  color: #334642;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  min-height: 48px;
  border-color: var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  background-color: #ffffff;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 107, 102, 0.13);
}

.shop-topline {
  min-height: 86px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 20px;
}

.shop-topline h2 {
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}

.shop-topline > span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 128px);
  background: #ffffff;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}

#tracking {
  background: var(--surface-deep);
}

#tracking .panel-form {
  border-top: 3px solid var(--gold);
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

.info-center {
  background: var(--warm);
}

.info-tabs {
  gap: 6px;
}

.info-tab {
  min-height: 44px;
  border-radius: 3px;
}

.info-cloud {
  border-radius: 2px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transform-origin: bottom center;
}

.site-footer {
  min-height: 190px;
  padding: 48px max(20px, calc((100vw - 1440px) / 2));
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: #071f21;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
}

.cart-drawer {
  width: min(490px, 100vw);
  border-color: var(--line);
  background: #ffffff;
  box-shadow: -28px 0 80px rgba(4, 31, 32, 0.18);
  transition: transform 240ms var(--ease-drawer);
}

.drawer-header {
  min-height: 86px;
  padding: 22px 26px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 2.5rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}

.cart-line {
  border-radius: 2px;
  box-shadow: none;
}

.cart-line-thumb {
  border-radius: 2px;
}

.cart-summary {
  padding: 20px 26px max(26px, env(safe-area-inset-bottom));
}

.free-shipping-note,
.shipping-threshold-note,
.processing-notice {
  border-radius: 2px;
}

.product-modal {
  background: rgba(2, 26, 28, 0.72);
  backdrop-filter: blur(10px);
}

.product-modal-card {
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 66px);
  border-radius: 2px;
  padding: 22px;
  box-shadow: var(--shadow);
  opacity: 1;
  transform: scale(1);
  transition: opacity 220ms var(--ease-out), transform 240ms var(--ease-out);
}

@starting-style {
  .product-modal-card {
    opacity: 0;
    transform: scale(0.96);
  }
}

.modal-product-art {
  border-radius: 0;
  background: var(--soft);
}

.modal-product-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.modal-specs span,
.variant-select-wrap,
.modal-note {
  border-radius: 2px;
}

.checkout {
  background: var(--surface);
}

.checkout-step,
.order-review {
  background: #ffffff;
}

.checkout-step legend span {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.order-review {
  border-top: 3px solid var(--gold);
}

.age-gate {
  background: rgba(2, 26, 28, 0.84);
  backdrop-filter: blur(12px);
}

.age-panel {
  max-width: 650px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.age-panel h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.account-page,
.account-page-shell,
.account-portal {
  background: var(--surface);
}

.account-portal {
  padding-top: clamp(64px, 8vw, 112px);
}

.account-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: stretch;
  margin-bottom: clamp(44px, 6vw, 84px);
}

.account-copy {
  max-width: 760px;
  padding-block: 28px;
}

.account-copy h1 {
  font-size: clamp(3.5rem, 6.6vw, 6.6rem);
}

.account-copy > p:last-child {
  max-width: 610px;
  font-size: 18px;
}

.account-hero-card {
  min-height: 320px;
  align-content: end;
  border: 0;
  border-radius: 2px;
  padding: clamp(28px, 4vw, 48px);
  color: #ffffff;
  background: var(--accent-dark);
  box-shadow: none;
}

.account-hero-card::before {
  width: 56px;
  height: 56px;
  border-color: rgba(241, 215, 154, 0.68);
}

.account-hero-card span {
  color: #d7ba76;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.account-hero-card strong {
  max-width: 320px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
}

.account-hero-card p {
  color: rgba(255, 255, 255, 0.62);
}

.account-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 4vw, 54px);
}

.account-sidebar {
  top: 104px;
}

.account-panel {
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
}

.account-overview {
  border-top: 3px solid var(--accent);
}

.account-stats article {
  border-radius: 2px;
  background: var(--soft);
}

.account-stats strong {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 500;
}

.account-progress {
  border-radius: 2px;
}

.account-progress span {
  border-radius: 2px;
}

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

@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .account-link:hover,
  .text-link:hover {
    color: var(--accent);
    text-decoration: none;
  }

  .btn.primary:hover,
  .cart-button:hover {
    border-color: var(--accent-dark);
    color: #ffffff;
    background: var(--accent-dark);
  }

  .btn.secondary:hover,
  .btn.ghost:hover,
  .icon-button:hover,
  .mobile-nav-button:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-soft);
  }

  .product-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
  }

  .product-card:hover .product-image {
    transform: scale(1.025);
  }
}

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

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 48px;
  }

  .main-nav {
    gap: 20px;
  }

  .account-link span {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: 72px;
  }

  .brand {
    grid-column: 1;
    width: 170px;
  }

  .mobile-nav-button {
    display: grid;
    grid-column: 2;
    justify-self: end;
  }

  .header-actions {
    grid-column: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: clamp(14px, 4vw, 32px);
    left: clamp(14px, 4vw, 32px);
    display: grid;
    grid-column: auto;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    padding: 10px;
    color: var(--ink);
    background: rgba(250, 251, 248, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 200ms var(--ease-out), visibility 0ms linear 200ms;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 160ms ease, transform 200ms var(--ease-out), visibility 0ms linear 0ms;
  }

  .main-nav a {
    min-height: 50px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero,
  .confidence-band,
  .account-hero,
  .account-layout,
  .checkout-grid,
  .split,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 56px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
    max-width: 820px;
  }

  .confidence-band {
    gap: 60px;
  }

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

  .promo-strip article {
    min-height: 88px;
    padding-inline: 20px;
  }

  .promo-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .filters,
  .account-sidebar,
  .order-review {
    position: static;
  }

  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .filters > .eyebrow,
  .filters > h2,
  .filters > .filter-note {
    grid-column: 1 / -1;
  }

  .filters > .btn {
    min-height: 48px;
  }

  .account-hero-card {
    min-height: 280px;
  }

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

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

@media (max-width: 680px) {
  .utility-bar {
    padding-inline: 14px;
  }

  .utility-bar > span:last-child {
    display: none;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 144px;
    min-width: 138px;
  }

  .mobile-nav-button,
  .cart-button {
    min-width: 44px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .cart-button {
    position: relative;
  }

  .cart-button .cart-label {
    display: none;
  }

  .cart-button > svg {
    display: block;
  }

  .cart-button > span:last-child {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 23px;
    min-width: 23px;
    height: 23px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: var(--ink);
    background: #f3e2b8;
    font-size: 10px;
  }

  .account-page .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .account-page .mobile-nav-button {
    justify-self: end;
  }

  .account-return {
    min-height: 44px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .section {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.35rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero {
    gap: 44px;
    padding-top: 62px;
    padding-bottom: 68px;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-metrics div,
  .hero-metrics div + div {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero-image-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  .hero-image-index {
    top: 12px;
    right: 12px;
  }

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

  .text-link {
    justify-self: start;
  }

  .product-grid,
  .filters,
  .account-stats,
  .account-content-grid {
    grid-template-columns: 1fr;
  }

  .filters > * {
    grid-column: 1;
  }

  .product-art {
    min-height: 270px;
  }

  .product-body > div:first-child > p:last-child {
    min-height: auto;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .price-row .btn {
    width: 100%;
  }

  .shop-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .confidence-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .faq-list summary {
    min-height: 64px;
    font-size: 19px;
  }

  .product-modal {
    place-items: end center;
    padding: max(12px, env(safe-area-inset-top)) 0 0;
  }

  .product-modal-card {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-height: calc(100svh - max(12px, env(safe-area-inset-top)));
    padding: 16px 16px max(24px, env(safe-area-inset-bottom));
    transform-origin: bottom center;
  }

  .modal-product-art {
    min-height: 250px;
  }

  .modal-product-copy {
    padding: 4px 0 0;
  }

  .modal-product-copy h2 {
    font-size: 3.25rem;
  }

  .cart-items {
    padding-inline: 14px;
  }

  .cart-summary,
  .drawer-header {
    padding-inline: 18px;
  }

  .account-portal {
    padding-top: 56px;
  }

  .account-copy {
    padding-block: 0;
  }

  .account-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .account-hero-card {
    min-height: 250px;
  }

  .site-footer {
    padding: 42px 18px;
  }
}

@media (max-width: 400px) {
  .brand {
    width: 128px;
    min-width: 122px;
  }

  .site-header {
    gap: 7px;
  }

  .account-return {
    max-width: 92px;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
  }
}
