﻿:root {
  color-scheme: light;
  --ink: #091315;
  --ink-soft: #526366;
  --muted: #eaf2f1;
  --surface: #ffffff;
  --surface-alt: #f3f7f6;
  --line: #d8e4e3;
  --primary: #009fac;
  --primary-strong: #062b31;
  --accent: #34d2dd;
  --accent-2: #b7d66a;
  --danger: #b42318;
  --warning: #9a5b00;
  --success: #147a4b;
  --focus: #ffc247;
  --shadow-sm: 0 2px 12px rgba(5, 22, 25, 0.08);
  --shadow-md: 0 16px 36px rgba(5, 22, 25, 0.14);
  --shadow-lg: 0 30px 80px rgba(5, 22, 25, 0.24);
  --radius: 8px;
  --radius-lg: 12px;
  font-family:
    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body:has(.scrim) {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
}

img,
svg {
  display: block;
}

.svg-icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: middle;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.125rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--ink-soft);
}

.container {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.section {
  padding-block: 80px;
}

.band {
  padding-block: 88px;
}

.surface-band {
  background: var(--surface-alt);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 90;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 8px 16px;
  background: var(--primary-strong);
  color: #fff;
  font-size: 0.92rem;
}

.announcement .market-switcher {
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.28);
}

.announcement .market-switcher button {
  min-height: 26px;
  padding: 4px 8px;
}

.announcement button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transform: translateZ(0);
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #071113;
  isolation: isolate;
}

.site-chrome .site-header {
  position: relative;
  top: auto;
  z-index: auto;
}

.site-chrome [data-announcement-slot]:empty {
  display: none;
}

.checkout-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.brand span:last-child {
  display: grid;
  line-height: 1.1;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--primary);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  inset-inline: 12px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.cart-button {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 180ms ease;
}

.icon-btn:hover,
.cart-button:hover {
  border-color: var(--primary);
  background: var(--muted);
}

.cart-button {
  grid-template-columns: auto auto;
  gap: 8px;
  padding-inline: 12px;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--success);
  font-weight: 800;
}

.trust-strip {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.trust-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-strip span,
.trust-pill-row span,
.trust-microcopy span,
.eyebrow,
.text-link,
.button-row,
.feature-icon,
.tool-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-only {
  display: none;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 122, 39, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fffd 0%, #eef7fa 52%, #fff7ef 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.hero-copy p {
  max-width: 680px;
  font-size: 1.12rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button-row {
  flex-wrap: wrap;
  margin-block: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: var(--primary-strong);
}

.btn.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--primary);
}

.btn.secondary:hover {
  border-color: var(--primary);
  background: var(--muted);
}

.btn.light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.btn.small {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.btn.full,
.btn.grow {
  width: 100%;
}

.btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.text-link {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link.danger {
  color: var(--danger);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 12px;
  max-width: 680px;
}

.stat-chip {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.stat-chip strong {
  display: block;
  color: var(--primary);
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat-chip span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: absolute;
  right: 16px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  width: min(260px, 68%);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.product-visual {
  --local-hue: var(--hue, 190);
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 30%, hsla(var(--local-hue), 65%, 60%, 0.34), transparent 32%),
    linear-gradient(145deg, hsl(var(--local-hue), 48%, 96%), #fff);
}

.product-visual.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vial {
  position: relative;
  width: 34%;
  max-width: 170px;
  min-width: 86px;
  height: 58%;
  border: 2px solid rgba(9, 52, 63, 0.22);
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22) 50%, rgba(9, 52, 63, 0.1)),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 36px rgba(12, 46, 56, 0.18);
}

.vial-cap {
  position: absolute;
  top: -34px;
  left: 18%;
  width: 64%;
  height: 42px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #dee8ea, #aebec2);
  border: 1px solid rgba(9, 52, 63, 0.16);
}

.vial-label {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 88px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, hsl(var(--local-hue), 68%, 37%), hsl(var(--local-hue), 58%, 27%));
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.vial-label span {
  overflow-wrap: anywhere;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.12;
}

.vial-label small {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
}

.vial-shadow {
  position: absolute;
  bottom: 15%;
  width: 44%;
  height: 6%;
  border-radius: 999px;
  background: rgba(12, 46, 56, 0.16);
  filter: blur(8px);
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading p {
  font-size: 1.04rem;
}

.ugc-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 230px);
  gap: 14px;
  overflow-x: auto;
  padding: 8px max(16px, calc((100vw - 1240px) / 2)) 18px;
  scroll-snap-type: x mandatory;
}

.ugc-tile {
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tool-card,
.feature,
.contact-card,
.form-panel,
.tracking-card,
.status-panel,
.account-panel,
.order-summary,
.checkout-form,
.review-card,
.article-card,
.coa-card,
.payment-methods article,
.process-grid .feature {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.tool-card {
  padding: 28px;
}

.tool-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--muted);
  color: var(--primary);
}

.carousel-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.carousel-row .product-card {
  scroll-snap-align: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 92, 111, 0.36);
  box-shadow: var(--shadow-md);
}

.product-card.disabled {
  opacity: 0.66;
}

.product-image-link {
  position: relative;
  display: block;
}

.floating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.category-label {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-card h3,
.article-card h2,
.coa-card h2 {
  margin-bottom: 0;
}

.product-card p,
.article-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.stock-badge.in-stock {
  background: #dff5e9;
  color: #075c37;
}

.stock-badge.low-stock {
  background: #fff1d6;
  color: #704100;
}

.stock-badge.out-of-stock {
  background: #ffe3df;
  color: #8f1f17;
}

.stock-badge.back-soon {
  background: #e7edff;
  color: #243f91;
}

.centered {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.feature-grid,
.process-grid,
.contact-grid,
.review-grid,
.coa-grid,
.article-grid,
.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.contact-card,
.review-card,
.payment-methods article {
  padding: 22px;
}

.affiliate-band,
.consultation,
.cta-band {
  border-radius: var(--radius-lg);
}

.affiliate-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: linear-gradient(135deg, var(--primary), #2b7e6e);
  color: #fff;
}

.affiliate-band p,
.affiliate-band .eyebrow,
.affiliate-band li {
  color: rgba(255, 255, 255, 0.86);
}

.check-list {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.consultation {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.advisor-portrait {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e7f5f1, #fff2e6);
  color: var(--primary);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.accordion-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-panel {
  padding: 0 16px 16px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  padding-block: 64px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.page-hero p {
  font-size: 1.08rem;
}

.trust-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-pill-row span {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--ink-soft);
  font-weight: 700;
}

.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.category-tabs button,
.step-tabs button,
.variant-buttons button,
.tier-grid button,
.quick-buttons button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.category-tabs button {
  padding: 10px 16px;
}

.category-tabs button.active,
.step-tabs button.active,
.variant-buttons button.active,
.tier-grid button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
}

.result-count {
  margin-bottom: 18px;
  font-weight: 700;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 44px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  text-align: center;
}

.empty-state.small {
  padding: 20px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--primary);
  font-weight: 800;
}

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 32px;
  align-items: start;
}

.gallery {
  position: sticky;
  top: 136px;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.thumbnail-row button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.thumbnail-row .product-visual {
  min-height: 0;
}

.buy-box {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.price-live {
  display: grid;
  gap: 2px;
}

.price-live strong {
  color: var(--primary);
  font-size: 1.75rem;
  line-height: 1;
}

.price-live span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.variant-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.variant-group legend {
  margin-bottom: 8px;
  font-weight: 900;
}

.variant-buttons,
.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-buttons button,
.quick-buttons button {
  padding-inline: 14px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tier-grid button {
  display: grid;
  gap: 3px;
  min-height: 72px;
  padding: 10px;
  border-radius: var(--radius);
}

.tier-grid span {
  font-size: 0.78rem;
}

.quantity-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: center;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-stepper button {
  border: 0;
  background: var(--muted);
  cursor: pointer;
}

.quantity-stepper input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 800;
}

.trust-microcopy {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.coa-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.coa-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-row {
  display: grid;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.coa-links a,
.dosage-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  font-weight: 800;
}

details {
  display: grid;
  gap: 8px;
}

summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 800;
}

details a {
  display: block;
  margin-top: 6px;
  color: var(--primary);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-icons span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.ruo-note {
  margin-bottom: 0;
  color: var(--danger);
  font-size: 0.86rem;
  font-weight: 800;
}

.field-error {
  color: var(--danger);
  font-weight: 800;
}

.pdp-content {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  margin-top: 54px;
}

.toc {
  position: sticky;
  top: 136px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.toc a {
  color: var(--primary);
  font-weight: 800;
}

.prose {
  max-width: 780px;
}

.prose section {
  padding-bottom: 34px;
}

.prose li {
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
}

caption {
  text-align: left;
  padding: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

th,
td {
  padding: 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 32%;
  color: var(--primary);
}

.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 28px rgba(12, 46, 56, 0.12);
}

.sticky-atc span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.coa-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coa-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.coa-card-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.coa-card .product-visual {
  min-height: 0;
}

.dosage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.calculator-card,
.results-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.results-card {
  position: sticky;
  top: 136px;
  background: linear-gradient(135deg, #f8fffd, #fff6ec);
}

.result-row,
.summary-row,
.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.result-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.result-row strong {
  color: var(--primary);
  font-size: 1.2rem;
}

.syringe-meter {
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.syringe-meter span {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 220ms ease;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(14, 92, 111, 0.82), rgba(61, 139, 103, 0.82)),
    var(--primary);
  color: #fff;
  text-align: center;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.82);
}

.play-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid.compact {
  grid-template-columns: 1fr;
}

.article-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.article-media,
.article-hero {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e4f6f2, #fff1df);
  color: var(--primary);
}

.article-page {
  max-width: 900px;
}

.article-page h1 {
  max-width: 820px;
}

.article-meta {
  color: var(--ink-soft);
  font-weight: 700;
}

.article-hero {
  min-height: 360px;
  margin-bottom: 32px;
}

.inline-cta {
  margin-top: 30px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.pagination [aria-current="page"] {
  background: var(--primary);
  color: #fff;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 32px;
}

.stack-form,
.checkout-form,
.tracking-card {
  display: grid;
  gap: 16px;
}

.form-panel,
.tracking-card,
.account-panel,
.status-panel {
  padding: 24px;
}

.form-success {
  color: var(--success);
  font-weight: 800;
}

.narrow-page {
  max-width: 820px;
}

.status-panel {
  display: grid;
  gap: 10px;
  place-items: start;
}

.status-panel.compact {
  padding: 16px;
}

.timeline {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.payment-methods,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-page .prose {
  max-width: 860px;
}

.cart-layout,
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 24px;
  align-items: start;
}

.cart-contents {
  display: grid;
  gap: 18px;
}

.cart-lines {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cart-line .product-visual {
  min-height: 0;
}

.cart-line .quantity-stepper {
  max-width: 150px;
}

.line-price {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.order-summary {
  position: sticky;
  top: 136px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--muted);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.promo-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.summary-row {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.summary-row.strong strong {
  color: var(--primary);
  font-size: 1.35rem;
}

.checkout-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tabs button {
  padding: 9px 14px;
  border-radius: var(--radius);
}

.step-tabs button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-block: 20px;
}

.account-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.newsletter {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.newsletter button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.site-footer {
  margin-top: 40px;
  background: #0c252c;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding-block: 56px;
}

.footer-grid p,
.footer-grid a,
.footer-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid h2 {
  font-size: 1rem;
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-row {
  display: flex;
  gap: 8px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.legal-bar {
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 21, 26, 0.54);
  backdrop-filter: blur(3px);
}

.mobile-drawer,
.mini-cart {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(100%, 390px);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-drawer {
  left: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px;
}

.mobile-drawer a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-cart {
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
}

.mini-cart .cart-line {
  grid-template-columns: 74px minmax(0, 1fr);
}

.mini-cart .line-price {
  grid-column: 2;
  justify-items: start;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.search-scrim {
  display: grid;
  place-items: start center;
  padding: 7vh 16px;
}

.search-panel {
  width: min(100%, 760px);
  max-height: 86vh;
  overflow-y: auto;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.search-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.search-head label {
  font-size: 1.2rem;
}

.search-results {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.search-result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.search-result .product-visual {
  min-height: 0;
}

.search-result small {
  display: block;
  color: var(--ink-soft);
}

.researcher-gate {
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  background:
    radial-gradient(circle at 50% 20%, rgba(52, 210, 221, 0.1), transparent 34%),
    rgba(3, 8, 9, 0.78);
  backdrop-filter: blur(16px) saturate(118%);
}

.researcher-card {
  width: min(100%, 640px);
  max-height: min(90dvh, 760px);
  overflow-y: auto;
  border: 1px solid rgba(236, 251, 250, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 29, 29, 0.98) 0%, rgba(8, 17, 18, 0.98) 100%);
  color: #f6fbfb;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(52, 210, 221, 0.06);
}

.researcher-card:focus {
  outline: none;
}

.researcher-card-brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 64px;
  padding: 17px clamp(20px, 4.8vw, 36px);
  border-bottom: 1px solid rgba(236, 251, 250, 0.1);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.researcher-card-brand span:nth-child(2) {
  margin-left: 0.14em;
  color: var(--accent);
}

.researcher-card-body {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4.8vw, 36px);
}

.researcher-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1.06;
}

.researcher-card p {
  margin: 0;
  color: rgba(246, 251, 251, 0.74);
  font-size: 0.98rem;
  line-height: 1.62;
}

.researcher-confirmations {
  display: grid;
  gap: 12px;
}

.researcher-confirm {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(236, 251, 250, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(246, 251, 251, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.48;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.researcher-confirm span {
  text-align: left;
}

.researcher-confirm:has(input:checked) {
  border-color: rgba(52, 210, 221, 0.32);
  background: rgba(52, 210, 221, 0.08);
}

.researcher-confirm input {
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  margin: 2px 0 0;
  border: 1.5px solid rgba(246, 251, 251, 0.26);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.researcher-confirm input:checked {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 210, 221, 0.12);
}

.researcher-confirm input:checked::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.researcher-enter {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-size: 1.02rem;
}

.researcher-enter:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  filter: saturate(0.55);
}

.researcher-disclaimer {
  font-size: 0.9rem !important;
  line-height: 1.65;
}

.researcher-exit {
  justify-self: center;
  color: rgba(246, 251, 251, 0.68);
  font-size: 0.96rem;
  font-weight: 800;
}

.researcher-exit:hover {
  color: #fff;
}

@media (max-width: 560px) {
  .researcher-gate {
    padding: 10px;
  }

  .researcher-card {
    max-height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .researcher-card-brand {
    min-height: 52px;
    padding: 14px 20px;
    font-size: 0.94rem;
  }

  .researcher-card-body {
    gap: 12px;
    padding: 18px;
  }

  .researcher-card h2 {
    font-size: 1.7rem;
  }

  .researcher-card p,
  .researcher-confirm {
    font-size: 0.84rem;
  }

  .researcher-confirm {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    line-height: 1.42;
  }

  .researcher-enter {
    min-height: 48px;
    font-size: 0.94rem;
  }

  .researcher-disclaimer {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }

  .researcher-exit {
    font-size: 0.86rem;
  }
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 13px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.toast button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .process-grid,
  .contact-grid,
  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .container {
    width: min(100% - 28px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: inline-grid;
  }

  .hero-grid,
  .pdp-grid,
  .calculator-layout,
  .cart-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .gallery,
  .toc,
  .results-card,
  .order-summary {
    position: static;
  }

  .pdp-content {
    grid-template-columns: 1fr;
  }

  .toc {
    display: flex;
    overflow-x: auto;
  }

  .coa-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 56px;
  }

  .band {
    padding-block: 58px;
  }

  .announcement {
    justify-content: space-between;
    gap: 8px;
    font-size: 0.82rem;
  }

  .announcement span:nth-child(2),
  .trust-strip-inner span:nth-child(n + 2) {
    display: none;
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .icon-btn,
  .cart-button {
    min-width: 42px;
    min-height: 42px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .stats-row,
  .tool-grid,
  .split-section,
  .consultation,
  .review-grid,
  .coa-grid,
  .article-grid,
  .footer-grid,
  .account-grid,
  .contact-grid,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card p {
    display: none;
  }

  .product-visual {
    min-height: 0;
  }

  .product-visual.large {
    min-height: 0;
  }

  .affiliate-band {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .consultation {
    padding: 22px;
  }

  .advisor-portrait {
    min-height: 220px;
  }

  .catalog-toolbar,
  .promo-form,
  .quantity-row {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    display: grid;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 74px 1fr;
  }

  .line-price {
    grid-column: 2;
    justify-items: start;
  }

  .drawer-actions {
    grid-template-columns: 1fr;
  }

  .sticky-atc {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 390px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: -40px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .search-result {
    grid-template-columns: 52px 1fr;
  }

  .search-result svg:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* MAXXFIT LABS client skin */
:root {
  color-scheme: light;
  --ink: #091315;
  --ink-soft: #526366;
  --muted: #eaf2f1;
  --surface: #ffffff;
  --surface-alt: #f3f7f6;
  --line: #d8e4e3;
  --primary: #009fac;
  --primary-strong: #062b31;
  --accent: #34d2dd;
  --accent-2: #b7d66a;
  --danger: #b42318;
  --warning: #9a5b00;
  --success: #147a4b;
  --focus: #b7d66a;
  --shadow-sm: 0 2px 12px rgba(5, 22, 25, 0.08);
  --shadow-md: 0 16px 36px rgba(5, 22, 25, 0.14);
  --shadow-lg: 0 30px 80px rgba(5, 22, 25, 0.24);
  --radius: 8px;
  --radius-lg: 8px;
}

body,
.App {
  background: #f6f8f7;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.brand strong,
.stat-chip strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.12rem;
}

.announcement {
  min-height: 42px;
  background: #071113;
  color: #eef9f8;
  border-bottom: 1px solid rgba(52, 210, 221, 0.18);
  font-weight: 700;
}

.announcement span:first-child {
  color: var(--accent);
}

.announcement span:first-child::after {
  content: "";
}

.site-header {
  color: #ecfbfa;
  background: rgba(7, 17, 19, 0.94);
  border-bottom: 1px solid rgba(52, 210, 221, 0.16);
  backdrop-filter: blur(14px);
}

.checkout-header {
  background: #071113;
}

.brand {
  color: #ecfbfa;
}

.brand-logo {
  width: 132px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 5px 8px;
}

.brand strong {
  color: #ecfbfa;
  font-size: 1.08rem;
  font-weight: 800;
}

.brand small {
  color: rgba(236, 251, 250, 0.68);
}

.desktop-nav a {
  color: rgba(236, 251, 250, 0.74);
  border-radius: 8px;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #071113;
  background: var(--accent);
}

.desktop-nav a.active::after {
  display: none;
}

.header-actions {
  gap: 10px;
}

.market-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(52, 210, 221, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.market-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  max-width: 60px;
  min-height: 34px;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(236, 251, 250, 0.74);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.market-switcher button.active,
.market-switcher button:hover {
  background: var(--accent);
  color: #071113;
}

.site-header .icon-btn,
.site-header .cart-button {
  border-color: rgba(52, 210, 221, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ecfbfa;
}

.site-header .icon-btn:hover,
.site-header .cart-button:hover {
  border-color: var(--accent);
  background: rgba(52, 210, 221, 0.12);
  color: var(--accent);
}

.cart-button span {
  background: var(--accent);
  color: #071113;
}

.secure-badge {
  border-color: rgba(52, 210, 221, 0.22);
  color: var(--accent);
}

.trust-strip {
  display: block;
  border-top: 1px solid rgba(52, 210, 221, 0.12);
  background: rgba(5, 14, 16, 0.8);
}

.trust-strip-inner {
  color: rgba(236, 251, 250, 0.78);
}

.hero {
  position: relative;
  min-height: 680px;
  padding-block: 84px 78px;
  color: #ecfbfa;
  background:
    linear-gradient(90deg, rgba(7, 17, 19, 0.97) 0%, rgba(7, 17, 19, 0.88) 46%, rgba(7, 17, 19, 0.54) 100%),
    url("../assets/maxxfit/campaign-board.png") center / cover no-repeat;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 48px;
}

.hero-copy {
  max-width: 760px;
}

.hero .eyebrow {
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(52, 210, 221, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  color: #ffffff;
  font-size: 4.25rem;
  line-height: 1.02;
  font-weight: 900;
}

.hero h1 span,
.section-heading h2 span {
  background: none;
  color: var(--primary);
}

.hero-copy p {
  max-width: 660px;
  color: rgba(236, 251, 250, 0.8);
  font-size: 1.08rem;
}

.btn {
  border-radius: 8px;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 159, 172, 0.25);
}

.btn.primary:hover {
  background: #007d88;
  box-shadow: 0 16px 34px rgba(0, 159, 172, 0.3);
}

.btn.secondary,
.btn-outline-dark {
  border-color: var(--line);
  background: #ffffff;
  color: var(--primary-strong);
}

.btn.secondary:hover,
.btn-outline-dark:hover {
  border-color: var(--primary);
  background: #ecfbfa;
}

.hero .btn.secondary,
.hero .btn.light {
  border-color: rgba(236, 251, 250, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.stats-row {
  border-top-color: rgba(236, 251, 250, 0.14);
}

.hero .stat-chip {
  border: 1px solid rgba(52, 210, 221, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.hero .stat-chip strong {
  color: #ffffff;
}

.hero .stat-chip span {
  color: rgba(236, 251, 250, 0.68);
}

.hero-visual {
  display: grid;
  min-height: 460px;
  place-items: center;
}

.brand-shot {
  width: min(100%, 480px);
  overflow: hidden;
  border: 1px solid rgba(52, 210, 221, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 19, 0.82);
  box-shadow: var(--shadow-lg);
}

.brand-shot .hero-logo {
  width: 62%;
  height: auto;
  margin: 18px auto 10px;
  border-radius: 6px;
  background: #fff;
  padding: 8px 12px;
}

.brand-shot > img:not(.hero-logo) {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.surface-band {
  background: #eaf2f1;
}

.section-heading {
  text-align: left;
}

.section-heading .eyebrow,
.category-label,
.eyebrow {
  color: var(--primary);
}

.section-heading h2 {
  color: var(--ink);
  font-size: 2.45rem;
}

.section-heading p {
  color: var(--ink-soft);
}

.market-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-panels article,
.tool-card,
.feature,
.contact-card,
.form-panel,
.tracking-card,
.status-panel,
.account-panel,
.order-summary,
.checkout-form,
.review-card,
.article-card,
.coa-card,
.payment-methods article,
.process-grid .feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.market-panels article {
  padding: 28px;
}

.tool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-card:hover,
.feature:hover,
.review-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tool-icon,
.feature-icon {
  border-radius: 8px;
  background: #dff7f7;
  color: var(--primary-strong);
}

.in-the-wild .section-heading {
  text-align: center;
}

.ugc-tile {
  width: 340px;
  height: 260px;
  border-radius: 8px;
  border: 1px solid rgba(52, 210, 221, 0.14);
  background: #071113;
}

.ugc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border-radius: 8px;
  border-color: var(--line);
}

.product-card .product-visual,
.product-visual {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background:
    linear-gradient(145deg, #071113 0%, #0d2b31 56%, #0f4c55 100%);
}

.product-visual.large {
  border-radius: 8px;
}

.vial {
  width: 40%;
  height: 58%;
  border-color: rgba(236, 251, 250, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.24) 55%, rgba(52, 210, 221, 0.13)),
    rgba(255, 255, 255, 0.56);
}

.vial-cap {
  background: linear-gradient(180deg, #5de6ee, #0b8794);
}

.vial-label {
  background: #ffffff;
  color: #071113;
}

.vial-label span {
  color: #071113;
  font-size: 0.58rem;
  font-weight: 900;
}

.vial-label strong {
  color: #071113;
  font-size: 1.28rem;
  line-height: 1;
}

.vial-label small {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--primary);
  color: #ffffff;
}

.floating-badge {
  border-radius: 6px;
  background: rgba(7, 17, 19, 0.78);
  color: var(--accent);
}

.card-meta strong,
.price-live strong {
  color: var(--primary-strong);
}

.stock-badge.in-stock {
  background: #dff5e9;
  color: #075c37;
}

.affiliate-band,
.cta-band {
  border-radius: 8px;
  background: linear-gradient(135deg, #071113 0%, #0c3940 100%);
}

.affiliate-band .btn.primary,
.cta-band .btn.primary {
  background: var(--accent);
  color: #071113;
  box-shadow: none;
}

.visual-panel {
  overflow: hidden;
  background: #071113;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-icons span,
.trust-pill-row span,
.coa-links a,
.dosage-row span {
  border-radius: 6px;
}

.checkout-market-note {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-alt);
}

.checkout-market-note .market-switcher {
  width: fit-content;
  background: #071113;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-table input {
  min-width: 120px;
}

.site-footer {
  background: #071113;
  color: #ecfbfa;
}

.site-footer p,
.site-footer a,
.legal-bar {
  color: rgba(236, 251, 250, 0.7);
}

.site-footer h2,
.site-footer .brand strong {
  color: #ffffff;
}

.social-row a {
  background: rgba(52, 210, 221, 0.12);
  color: var(--accent);
}

.mobile-drawer {
  background: #071113;
  color: #ecfbfa;
}

.mobile-drawer a {
  color: rgba(236, 251, 250, 0.86);
  border-color: rgba(52, 210, 221, 0.14);
}

.drawer-logo {
  width: 150px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: inline-grid;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-summary,
  .feature-grid,
  .process-grid,
  .contact-grid,
  .coa-grid,
  .article-grid,
  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  h1,
  .hero h1 {
    font-size: 3rem;
  }

  h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding-block: 58px;
  }

  .hero-grid,
  .market-panels,
  .tool-grid,
  .split-section,
  .consultation,
  .pdp-grid,
  .checkout-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand small,
  .trust-strip {
    display: none;
  }

  .header-inner {
    gap: 8px;
  }

  .brand-logo {
    width: 112px;
  }

  .market-switcher {
    min-height: 40px;
  }
}

@media (max-width: 560px) {
  h1,
  .hero h1 {
    font-size: 2.35rem;
  }

  h2,
  .section-heading h2 {
    font-size: 1.7rem;
  }

  .container {
    width: min(100% - 24px, 420px);
  }

  .announcement {
    padding-right: 44px;
    font-size: 0.78rem;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 120px;
  }

  .header-actions {
    gap: 4px;
  }

  .market-switcher button {
    min-width: 40px;
    max-width: 54px;
    padding-inline: 6px;
    font-size: 0.72rem;
  }

  .header-actions .market-switcher {
    display: none;
  }

  .hero-visual {
    min-height: 300px;
  }

  .product-grid,
  .admin-summary,
  .feature-grid,
  .process-grid,
  .contact-grid,
  .coa-grid,
  .article-grid,
  .payment-methods,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .product-visual.large {
    min-height: 0;
  }
}

/* ==========================================================================
   STOREFRONT POLISH LAYER
   Animations, marquee, reviews, refined hero, quality band, affiliate band.
   ========================================================================== */

/* -- Animation primitives ------------------------------------------------- */
@keyframes mxx-fade-up {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes mxx-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}

@keyframes mxx-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 210, 221, 0.55); }
  50%      { transform: scale(1.18); box-shadow: 0 0 0 8px rgba(52, 210, 221, 0); }
}

@keyframes mxx-hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -10px, 0) scale(1); }
}

@keyframes mxx-hero-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-10px, 8px, 0) scale(1.015); }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 720ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 820ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -- Announcement rotator ------------------------------------------------- */
.announcement {
  position: relative;
  padding: 8px 44px 8px 16px;
}

.announcement-track {
  position: relative;
  flex: 1;
  min-height: 22px;
  display: block;
  overflow: hidden;
  text-align: center;
}

.announcement-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 12px;
  color: rgba(236, 251, 250, 0.94);
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 480ms ease, transform 480ms ease;
  pointer-events: none;
}

.announcement-msg.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.announcement > .market-switcher {
  margin-left: auto;
}

/* -- Hero refinements ----------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(660px, 74vh, 780px);
  padding-block: clamp(66px, 7vw, 96px) clamp(96px, 9vw, 122px);
  color: #fff;
  background: #021115;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 22%, rgba(52, 210, 221, 0.22), transparent 30%),
    radial-gradient(circle at 94% 66%, rgba(0, 159, 172, 0.24), transparent 32%),
    linear-gradient(105deg, #021115 0%, #041316 42%, #0a2e35 74%, #0b5d67 100%);
}

.hero::after {
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(2, 17, 21, 0) 0%, rgba(2, 17, 21, 0.06) 48%, rgba(2, 17, 21, 0.28) 100%),
    radial-gradient(circle at 72% 50%, transparent 0%, rgba(2, 17, 21, 0.72) 86%);
}

.hero-particles,
.hero-atmosphere,
.hero-readability,
.hero-vignette,
.hero-bottom-fade {
  position: absolute;
  pointer-events: none;
}

.hero-particles {
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(86, 215, 236, 0.16) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-atmosphere {
  z-index: 1;
  border-radius: 999px;
}

.hero-atmosphere-right {
  top: -10%;
  right: -8%;
  width: 66%;
  height: 120%;
  background: rgba(22, 82, 94, 0.24);
  filter: blur(120px);
}

.hero-atmosphere-left {
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: rgba(19, 144, 163, 0.1);
  filter: blur(150px);
}

.hero-atmosphere-bottle {
  top: 15%;
  right: 3%;
  width: 50%;
  height: 70%;
  background: rgba(86, 215, 236, 0.17);
  filter: blur(108px);
}

.hero-readability {
  inset-block: 0;
  left: 0;
  z-index: 3;
  width: min(100%, 62%);
  background: linear-gradient(90deg, #021115 0%, rgba(2, 17, 21, 0.95) 52%, transparent 100%);
}

.hero-vignette {
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at 74% 48%, rgba(86, 215, 236, 0.12) 0%, transparent 36%),
    radial-gradient(circle at 70% 50%, transparent 0%, #021115 88%);
}

.hero-bottom-fade {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.hero-grid {
  position: relative;
  z-index: 6;
  min-height: clamp(460px, 55vh, 590px);
  grid-template-columns: minmax(0, clamp(500px, 42vw, 620px)) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 7;
  max-width: 620px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  margin-bottom: 22px;
  border: 1px solid rgba(52, 210, 221, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 251, 250, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  animation: mxx-pulse 2200ms ease-in-out infinite;
}

.text-accent,
.hero h1 .text-accent,
.section-heading h2 .text-accent,
.section-heading-narrow h2 .text-accent,
.affiliate-band h2 .text-accent,
.cta-band h2 .text-accent {
  color: var(--accent) !important;
  background: transparent !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  display: inline;
  padding: 0;
}

.hero h1 .text-accent {
  color: transparent !important;
  background: linear-gradient(90deg, #34d2dd 0%, #77f4ef 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero h1 {
  margin-top: 4px;
  margin-bottom: 20px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(3.1rem, 5.2vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(222, 227, 229, 0.82);
}

.hero .button-row {
  margin-top: 30px;
  gap: 12px;
}

.hero .btn {
  min-height: 54px;
  border-radius: 999px;
  padding-inline: 26px;
}

.hero .btn.primary {
  background: linear-gradient(135deg, #0db5c2 0%, #00d7df 100%);
  box-shadow: 0 18px 34px rgba(0, 159, 172, 0.34);
}

.hero .btn.primary:hover {
  background: linear-gradient(135deg, #00c4ce 0%, #52edf0 100%);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(236, 251, 250, 0.28);
  color: #ecfbfa;
}

.btn.ghost:hover {
  background: rgba(52, 210, 221, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.hero-product-wash {
  position: absolute;
  top: 50%;
  right: max(16px, calc((100vw - 1240px) / 2));
  z-index: 2;
  display: block;
  width: clamp(620px, 55vw, 1040px);
  height: clamp(390px, 52vh, 590px);
  min-height: 0;
  pointer-events: none;
  overflow: visible;
  transform: translate3d(0, -50%, 0);
}

.hero-product-wash.reveal {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  animation: none;
}

.hero-product-wash::before,
.hero-product-wash::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-product-wash::before {
  inset: -16% -8% -14% 8%;
  z-index: 1;
  background:
    linear-gradient(90deg, #021115 0%, rgba(2, 17, 21, 0.92) 23%, rgba(2, 17, 21, 0.36) 54%, rgba(2, 17, 21, 0) 100%),
    linear-gradient(180deg, rgba(2, 17, 21, 0.16) 0%, rgba(2, 17, 21, 0) 46%, rgba(2, 17, 21, 0.34) 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 35%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 35%, transparent 100%);
}

.hero-product-wash::after {
  inset: -8% -4% -8% 8%;
  z-index: 2;
  background:
    radial-gradient(circle at 68% 46%, rgba(86, 215, 236, 0.22), transparent 32%),
    radial-gradient(circle at 88% 58%, rgba(0, 159, 172, 0.2), transparent 42%);
  mix-blend-mode: screen;
}

.hero-art-bloom,
.hero-art-orb,
.hero-product-echo,
.hero-product-shelf,
.hero-product-wash .hero-showcase-image {
  position: absolute;
  pointer-events: none;
}

.hero-art-bloom {
  border-radius: 999px;
  mix-blend-mode: screen;
}

.hero-art-bloom-primary {
  right: 4%;
  top: 8%;
  z-index: 0;
  width: 68%;
  height: 82%;
  background: rgba(0, 195, 209, 0.2);
  filter: blur(78px);
}

.hero-art-bloom-secondary {
  right: 30%;
  bottom: -6%;
  z-index: 0;
  width: 44%;
  height: 44%;
  background: rgba(61, 239, 231, 0.14);
  filter: blur(64px);
}

.hero-art-orb {
  z-index: 3;
  border: 1px solid rgba(107, 245, 238, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 245, 238, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 32px rgba(52, 210, 221, 0.14);
}

.hero-art-orb-one {
  top: 10%;
  left: 28%;
  width: 42px;
  height: 42px;
}

.hero-art-orb-two {
  right: 6%;
  bottom: 18%;
  width: 58px;
  height: 58px;
}

.hero-product-echo {
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center end;
  overflow: visible;
}

.hero-product-echo img,
.hero-product-wash .hero-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  transform-origin: center right;
}

.hero-product-echo-back {
  right: -7%;
  transform: translate3d(8%, 0, 0) scale(1.1);
  opacity: 0.2;
  filter: blur(10px) saturate(1.18);
  mix-blend-mode: screen;
}

.hero-product-echo-mid {
  transform: translate3d(-10%, 5%, 0) scale(0.96);
  opacity: 0.24;
  filter: blur(2px) saturate(1.1);
  mix-blend-mode: luminosity;
  animation: mxx-hero-drift 9s ease-in-out infinite;
}

.hero-product-wash .hero-showcase-image {
  inset: 0;
  z-index: 4;
  opacity: 0.65;
  filter: drop-shadow(0 0 15px rgba(27, 178, 198, 0.25)) saturate(1.06) contrast(1.04);
  mix-blend-mode: luminosity;
  animation: mxx-hero-float 6s ease-in-out infinite;
}

.hero-product-shelf {
  right: 6%;
  bottom: 4%;
  z-index: 3;
  width: 72%;
  height: 22%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(75, 243, 237, 0.28) 0%, rgba(75, 243, 237, 0.12) 34%, transparent 70%);
  filter: blur(18px);
  opacity: 0.72;
  transform: perspective(620px) rotateX(58deg);
}

@media (max-width: 1023px) {
  .hero {
    min-height: 780px;
    padding-block: 70px 130px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-readability {
    width: 100%;
    background: linear-gradient(180deg, #021115 0%, rgba(2, 17, 21, 0.96) 42%, rgba(2, 17, 21, 0.58) 68%, rgba(2, 17, 21, 0.2) 100%);
  }

  .hero-vignette,
  .hero::after {
    background:
      radial-gradient(circle at 78% 72%, rgba(86, 215, 236, 0.12) 0%, transparent 40%),
      radial-gradient(circle at 78% 72%, transparent 0%, rgba(2, 17, 21, 0.24) 45%, #021115 96%);
  }

  .hero-product-wash {
    top: auto;
    right: -10%;
    bottom: -58px;
    z-index: 5;
    width: min(1120px, 122vw);
    height: clamp(250px, 42vw, 420px);
    margin: 0;
    transform: none;
  }

  .hero-product-wash.reveal {
    transform: none;
  }

  .hero-product-wash::before {
    background: linear-gradient(180deg, rgba(2, 17, 21, 0.36) 0%, rgba(2, 17, 21, 0.05) 42%, rgba(2, 17, 21, 0.58) 100%);
    -webkit-mask-image: none;
            mask-image: none;
  }

  .hero-product-wash .hero-showcase-image {
    object-fit: contain;
    object-position: center right;
    opacity: 0.38;
  }

  .hero-product-echo-back {
    opacity: 0.14;
  }

  .hero-product-echo-mid {
    opacity: 0.16;
    transform: translate3d(-8%, 4%, 0) scale(0.96);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 830px;
    padding-block: 48px 140px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero .btn {
    width: 100%;
  }

  .hero-product-wash {
    right: -22%;
    bottom: 46px;
    width: 138%;
    height: 250px;
  }

  .hero-product-wash .hero-showcase-image {
    opacity: 0.48;
  }

  .hero-art-orb,
  .hero-product-echo-mid {
    display: none;
  }

  .hero-product-echo-back {
    opacity: 0.18;
    transform: translate3d(6%, -2%, 0) scale(1.06);
  }

  .hero-product-shelf {
    right: 3%;
    bottom: 10%;
    width: 86%;
  }

  .hero-bottom-fade {
    height: 86px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 108px;
  }

  .site-header .icon-btn,
  .site-header .cart-button {
    min-width: 36px;
    min-height: 36px;
  }

  .site-header .cart-button {
    gap: 4px;
    padding-inline: 6px;
  }

  .cart-button span {
    min-width: 19px;
    min-height: 19px;
    font-size: 0.7rem;
  }

  .header-actions {
    gap: 2px;
  }

  .hero-product-wash {
    right: -8%;
    width: 116%;
    overflow: hidden;
  }

  .hero-product-echo-back {
    display: none;
  }

  .hero-atmosphere {
    max-width: 100vw;
  }
}

/* -- AGY copied hero ------------------------------------------------------ */
@keyframes agy-float {
  0%, 100% { transform: translate3d(5%, 0, 0) scale(1.05); }
  50% { transform: translate3d(5%, -10px, 0) scale(1.05); }
}

.agy-hero {
  position: relative;
  min-height: clamp(650px, 76vh, 750px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: 64px 96px;
  background: #021115;
  color: #fff;
}

.agy-particles,
.agy-glow,
.agy-readability,
.agy-vignette,
.agy-product-mural,
.agy-bottom-fade {
  position: absolute;
  pointer-events: none;
}

.agy-particles {
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(86, 215, 236, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.agy-glow {
  z-index: 0;
  border-radius: 999px;
}

.agy-glow-right {
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: rgba(22, 82, 94, 0.2);
  filter: blur(120px);
}

.agy-glow-left {
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: rgba(19, 144, 163, 0.1);
  filter: blur(150px);
}

.agy-glow-product {
  top: 20%;
  right: 5%;
  width: 40%;
  height: 60%;
  background: rgba(86, 215, 236, 0.15);
  filter: blur(100px);
}

.agy-readability {
  inset-block: 0;
  left: 0;
  z-index: 10;
  width: min(100%, 60%);
  background: linear-gradient(90deg, #021115 0%, rgba(2, 17, 21, 0.95) 62%, transparent 100%);
}

.agy-vignette {
  inset: 0;
  z-index: 10;
  background: radial-gradient(circle at 70% 50%, transparent 0%, #021115 85%);
}

.agy-hero-shell {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.agy-hero-copy {
  width: min(100%, 560px);
}

.agy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgba(86, 215, 236, 0.3);
  border-radius: 999px;
  background: rgba(86, 215, 236, 0.1);
  color: #56d7ec;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.agy-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.agy-hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #56d7ec, #6fd5e9, rgba(86, 215, 236, 0.8));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.agy-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(222, 247, 250, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.agy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.agy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.agy-btn:hover {
  transform: translateY(-1px);
}

.agy-btn-primary {
  border: 1px solid transparent;
  background: #1bb2c6;
  box-shadow: 0 18px 34px rgba(27, 178, 198, 0.3);
}

.agy-btn-primary:hover {
  background: #56d7ec;
}

.agy-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.agy-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.agy-hero-spacer {
  width: 50%;
  height: 1px;
}

.agy-product-mural {
  inset: 0 0 0 auto;
  z-index: 0;
  width: 60%;
  user-select: none;
}

.agy-product-mural img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.65;
  filter: drop-shadow(0 0 15px rgba(27, 178, 198, 0.25));
  mix-blend-mode: luminosity;
  animation: agy-float 6s ease-in-out infinite;
}

.agy-bottom-fade {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  height: 64px;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 900px) {
  .agy-hero {
    min-height: 760px;
    padding-block: 56px 92px;
  }

  .agy-readability {
    width: 100%;
    background: linear-gradient(180deg, #021115 0%, rgba(2, 17, 21, 0.96) 58%, rgba(2, 17, 21, 0.34) 100%);
  }

  .agy-hero-shell {
    align-items: flex-start;
  }

  .agy-hero-copy {
    width: 100%;
    max-width: 620px;
  }

  .agy-hero-spacer {
    display: none;
  }

  .agy-product-mural {
    width: 100%;
    opacity: 0.72;
  }
}

@media (max-width: 560px) {
  .agy-hero {
    min-height: 820px;
    padding-block: 52px 96px;
  }

  .agy-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .agy-actions,
  .agy-btn {
    width: 100%;
  }

  .agy-product-mural img {
    object-position: 72% bottom;
    opacity: 0.5;
  }
}

/* -- Section heading refinements ----------------------------------------- */
.section-heading {
  margin-bottom: 40px;
}

.section-heading-narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding-block: 20px 32px;
}

.section-heading h2,
.section-heading-narrow h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading .eyebrow,
.section-heading-narrow .eyebrow {
  color: var(--primary);
}

/* -- Marquee (auto-scrolling gallery) ------------------------------------ */
.in-the-wild-band {
  padding-block: 72px 88px;
  background: #ffffff;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: mxx-marquee 63s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #071113;
  box-shadow: 0 12px 32px rgba(5, 22, 25, 0.15);
  transition: transform 320ms ease;
}

.marquee-item:hover {
  transform: translateY(-3px) scale(1.02);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-item img[src$="campaign-spray-collection.webp"],
.marquee-item img[src$="campaign-bac-water.webp"] {
  object-fit: contain;
}

/* -- Tool CTA row (calculator + COA) ------------------------------------- */
.tool-cta-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-block: 20px 40px;
}

.tool-cta {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(5, 22, 25, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tool-cta:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 18px 42px rgba(5, 22, 25, 0.12);
}

.tool-cta-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 159, 172, 0.12), rgba(52, 210, 221, 0.18));
  color: var(--primary-strong);
}

.tool-cta div strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}

.tool-cta div span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.tool-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

/* -- Product cards polish ------------------------------------------------ */
.product-card {
  position: relative;
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 300ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 159, 172, 0.4);
  box-shadow: 0 24px 48px rgba(5, 22, 25, 0.16);
}

.product-card .product-image-link {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-card .product-visual {
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card:hover .product-visual {
  transform: scale(1.04);
}

.floating-badge {
  padding: 6px 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.66rem;
  box-shadow: 0 8px 22px rgba(5, 22, 25, 0.24);
}

.floating-badge.stock-low {
  background: #f5a623 !important;
  color: #071113 !important;
}

.floating-badge.stock-out {
  background: #a8b3b3 !important;
  color: #ffffff !important;
}

.floating-badge.stock-back {
  background: var(--primary) !important;
  color: #ffffff !important;
}

.product-card.is-oos .product-image-link .product-visual {
  filter: grayscale(0.4) opacity(0.7);
}

/* -- Quality band --------------------------------------------------------- */
.quality-band {
  background: linear-gradient(180deg, #f3f7f6 0%, #ffffff 100%);
}

.quality-band .feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.quality-feature {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(5, 22, 25, 0.05);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.quality-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 159, 172, 0.3);
  box-shadow: 0 18px 40px rgba(5, 22, 25, 0.1);
}

.quality-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 159, 172, 0.24);
}

.quality-feature h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.quality-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* -- Affiliate band ------------------------------------------------------- */
.affiliate-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: stretch;
  padding: 48px 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #071113 0%, #0c3940 100%);
  color: #ffffff;
  overflow: hidden;
}

.affiliate-band > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.affiliate-band .eyebrow.accent-light {
  color: var(--accent);
}

.affiliate-band h2 {
  color: #ffffff;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.affiliate-band p {
  color: rgba(236, 251, 250, 0.82);
  max-width: 520px;
  margin-bottom: 22px;
}

.affiliate-band .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.affiliate-band .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(236, 251, 250, 0.94);
  font-weight: 700;
}

.affiliate-band .check-list li svg {
  color: var(--accent);
}

.affiliate-band .btn.primary {
  background: var(--accent);
  color: #071113;
  box-shadow: 0 12px 28px rgba(52, 210, 221, 0.32);
}

.affiliate-band .btn.primary:hover {
  background: #6cebf0;
  box-shadow: 0 18px 36px rgba(52, 210, 221, 0.4);
  transform: translateY(-2px);
}

.affiliate-visual {
  position: relative;
  width: min(100%, 340px);
  min-height: 0;
  max-height: none;
  align-self: center;
  justify-self: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.affiliate-visual picture {
  display: block;
  width: 100%;
}

.affiliate-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* -- Reviews band -------------------------------------------------------- */
.reviews-band {
  background: #f7fbfa;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  display: grid;
  gap: 16px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(5, 22, 25, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(5, 22, 25, 0.1);
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--primary);
}

.review-body {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.review-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #ffffff;
  font-weight: 900;
}

.review-attribution strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.review-attribution small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

/* -- CTA band refinements ------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  border-radius: 0;
  background: linear-gradient(135deg, #071113 0%, #0c3940 100%);
}

.cta-band h2 {
  color: #ffffff;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.cta-band p {
  color: rgba(236, 251, 250, 0.82);
  font-size: 1.05rem;
}

.cta-band .btn.primary {
  background: var(--accent);
  color: #071113;
  box-shadow: 0 12px 28px rgba(52, 210, 221, 0.32);
}

.cta-band .btn.primary:hover {
  background: #6cebf0;
  transform: translateY(-2px);
}

/* -- Button polish ------------------------------------------------------- */
.btn {
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 220ms ease,
              background-color 220ms ease,
              border-color 220ms ease,
              color 220ms ease;
}

.btn.primary {
  box-shadow: 0 10px 26px rgba(0, 159, 172, 0.22);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 159, 172, 0.32);
}

.btn svg {
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* -- Category label pop --------------------------------------------------- */
.category-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* -- Responsive tweaks ---------------------------------------------------- */
@media (max-width: 1100px) {
  .reviews-grid,
  .quality-band .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-cta-band {
    grid-template-columns: 1fr;
  }

  .affiliate-band {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .affiliate-visual {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-block: 68px 76px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .section-heading-narrow h2,
  .affiliate-band h2,
  .cta-band h2 {
    font-size: 2rem;
  }

  .quality-band .feature-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .tool-cta {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .tool-cta-action {
    grid-column: 1 / -1;
    padding-top: 6px;
  }
}

@media (max-width: 560px) {
  .announcement {
    padding-right: 40px;
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .section-heading-narrow h2,
  .affiliate-band h2,
  .cta-band h2 {
    font-size: 1.75rem;
  }

  .hero-pill {
    font-size: 0.72rem;
    padding: 6px 10px 6px 8px;
  }

  .marquee-item {
    width: 200px;
  }
}

/* ==========================================================================
   SHOP PAGE - PREMIUM REDESIGN
   ========================================================================== */

.shop-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: 68px 56px;
  background:
    radial-gradient(1000px 500px at 85% 15%, rgba(52, 210, 221, 0.18), transparent 55%),
    radial-gradient(800px 480px at 8% 92%, rgba(0, 159, 172, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(7, 17, 19, 0.97) 0%, rgba(9, 43, 49, 0.94) 100%);
}

.shop-hero-glow {
  position: absolute;
  inset: -8% -12% auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(52, 210, 221, 0.24), transparent 62%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.breadcrumbs.light {
  color: rgba(236, 251, 250, 0.72);
  margin-bottom: 20px;
}

.breadcrumbs.light a {
  color: rgba(236, 251, 250, 0.72);
  text-decoration: none;
  font-weight: 700;
  transition: color 200ms ease;
}

.breadcrumbs.light a:hover {
  color: var(--accent);
}

.breadcrumbs.light span {
  color: rgba(236, 251, 250, 0.5);
}

.shop-hero-inner {
  max-width: 820px;
  color: #ffffff;
}

.shop-hero-inner h1 {
  margin: 6px 0 16px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.shop-hero-inner p {
  max-width: 640px;
  margin: 0;
  color: rgba(236, 251, 250, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
}

.shop-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.shop-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(52, 210, 221, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 251, 250, 0.94);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.shop-trust-pill svg {
  color: var(--accent);
}

.shop-trust-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 210, 221, 0.55);
  background: rgba(52, 210, 221, 0.1);
}

/* -- Shop body layout ---------------------------------------------------- */
.shop-body {
  padding-top: 40px;
  padding-bottom: 72px;
}

/* -- Category tabs (refined) --------------------------------------------- */
.shop-body .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-body .category-tabs::-webkit-scrollbar { display: none; }

.shop-body .category-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

.shop-body .category-tabs button em {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink-soft);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  transition: background 200ms ease, color 200ms ease;
}

.shop-body .category-tabs button:hover {
  border-color: rgba(0, 159, 172, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 22, 25, 0.06);
}

.shop-body .category-tabs button.active {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 159, 172, 0.24);
}

.shop-body .category-tabs button.active em {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

/* -- Toolbar (search / sort / stock) ------------------------------------- */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(5, 22, 25, 0.04);
  flex-wrap: wrap;
}

.shop-search {
  position: relative;
  flex: 1 1 320px;
  min-width: 240px;
}

.shop-search input {
  width: 100%;
  padding: 12px 46px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  font-size: 0.95rem;
  color: var(--ink);
  min-height: 46px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.shop-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 159, 172, 0.14);
}

.shop-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
  display: inline-flex;
}

.shop-search-clear {
  position: absolute;
  right: 9px;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(5, 22, 25, 0.08);
  color: var(--ink-soft);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease;
}

.shop-search-clear:hover,
.shop-search-clear:focus-visible {
  background: var(--primary);
  color: #ffffff;
  outline: none;
}

.shop-search-clear[hidden] {
  display: none;
}

.shop-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-stock-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color 200ms ease, background 200ms ease;
  min-height: 46px;
}

.shop-stock-toggle:hover {
  border-color: rgba(0, 159, 172, 0.4);
}

.shop-stock-toggle input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.shop-stock-toggle:has(input:checked) {
  border-color: var(--primary);
  background: rgba(0, 159, 172, 0.06);
}

.shop-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  transition: border-color 200ms ease;
  min-height: 46px;
}

.shop-sort:hover {
  border-color: rgba(0, 159, 172, 0.4);
}

.shop-sort > span {
  display: inline-flex;
  color: var(--ink-soft);
}

.shop-sort select {
  border: none;
  background: transparent;
  padding: 10px 8px;
  padding-right: 24px;
  min-height: 46px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23617070' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
}

.shop-sort select:focus {
  outline: none;
}

/* -- Results header ------------------------------------------------------ */
.shop-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 22px;
}

.shop-results-header .result-count {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.shop-results-header .result-count strong {
  color: var(--ink);
  font-weight: 900;
}

/* -- Product grid -------------------------------------------------------- */
.shop-body .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* -- Product card (redesigned) ------------------------------------------ */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(5, 22, 25, 0.04);
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 240ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 159, 172, 0.35);
  box-shadow: 0 22px 44px rgba(5, 22, 25, 0.14);
}

.product-card .product-image-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, #f6faf9 0%, #eaf5f4 100%);
  border-radius: 16px 16px 0 0;
}

.product-card .product-image-link .product-visual {
  min-height: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(52, 210, 221, 0.14), transparent 40%),
    linear-gradient(180deg, #f6faf9 0%, #eaf5f4 100%);
}

.product-card .product-image-link .vial {
  border-color: rgba(9, 52, 63, 0.14);
  background: linear-gradient(180deg, #ffffff, #f0f8f8);
  box-shadow: 0 10px 24px rgba(5, 22, 25, 0.08), inset 0 -8px 12px rgba(0, 0, 0, 0.04);
}

.product-card .product-image-link .vial-cap {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
}

.product-card .product-image-link .vial-label {
  color: var(--ink);
}

.product-card .product-image-link .vial-label span {
  color: var(--ink-soft);
}

.product-card .product-image-link .vial-label strong {
  color: var(--ink);
}

.product-card .product-image-link .vial-label small {
  background: var(--primary);
  color: #ffffff;
}

.product-card .product-image-link .vial-shadow {
  background: radial-gradient(ellipse at center, rgba(5, 22, 25, 0.14), transparent 65%);
}

.product-card .product-visual {
  width: 100%;
  height: 100%;
  min-height: 0;
  transition: transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card:hover .product-visual {
  transform: scale(1.06);
}

.product-card:hover .product-visual.has-image {
  transform: none;
}

.product-card .floating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(5, 22, 25, 0.24);
}

.floating-stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(5, 22, 25, 0.14);
}

.floating-stock-badge.low-stock {
  background: #f5a623;
  color: #071113;
}

.floating-stock-badge.out-of-stock {
  background: #f0f4f4;
  color: #617070;
}

.floating-stock-badge.back-soon {
  background: rgba(0, 159, 172, 0.15);
  color: var(--primary-strong);
}

.product-quick-view {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 14px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 10px 26px rgba(5, 22, 25, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 280ms ease;
  backdrop-filter: blur(4px);
}

.product-quick-view svg {
  width: 14px;
  height: 14px;
}

.product-card:hover .product-quick-view {
  transform: translate(-50%, 0);
  opacity: 1;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
}

.product-card-body .category-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.2;
}

.product-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.product-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.product-card-body h3 a:hover {
  color: var(--primary);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.product-price {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.product-price .price-sep {
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 2px;
}

.variant-count {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

.product-select-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.product-select-btn svg {
  transition: transform 300ms ease;
}

.product-select-btn:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 159, 172, 0.28);
}

.product-select-btn:hover svg {
  transform: translateX(4px);
}

/* -- Shop help band ------------------------------------------------------ */
.shop-help-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding: 32px 36px;
  border-radius: 20px;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(52, 210, 221, 0.18), transparent 60%),
    linear-gradient(135deg, #071113 0%, #0c3940 100%);
  color: #ffffff;
}

.shop-help-band .eyebrow {
  color: var(--accent);
}

.shop-help-band h3 {
  margin: 6px 0 8px;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.005em;
}

.shop-help-band p {
  margin: 0;
  color: rgba(236, 251, 250, 0.82);
  max-width: 480px;
}

.shop-help-band .btn.primary {
  background: var(--accent);
  color: #071113;
  box-shadow: 0 10px 24px rgba(52, 210, 221, 0.28);
}

.shop-help-band .btn.primary:hover {
  background: #6cebf0;
}

.shop-help-band .btn.secondary {
  background: transparent;
  border-color: rgba(236, 251, 250, 0.28);
  color: #ecfbfa;
}

.shop-help-band .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

/* -- Responsive ---------------------------------------------------------- */
@media (max-width: 1180px) {
  .shop-body .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .shop-hero {
    padding-block: 52px 44px;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .shop-search {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }

  .shop-toolbar-actions {
    justify-content: space-between;
  }

  .shop-body .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .shop-help-band {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: left;
  }

  .shop-help-band .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .shop-help-band .btn {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .shop-hero-inner h1 {
    font-size: 2rem;
  }

  .shop-trust-pill {
    font-size: 0.78rem;
    padding: 7px 11px;
  }

  .shop-body .category-tabs button {
    padding: 8px 14px;
    font-size: 0.86rem;
  }

  .shop-toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-stock-toggle,
  .shop-sort {
    width: 100%;
  }

  .product-card-body {
    padding: 14px 16px 16px;
  }

  .product-quick-view {
    display: none;
  }
}

/* Content-preserving production hardening
   Accessibility, containment, responsive commerce, and interaction stability. */

html {
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #071113;
}

.btn.small,
.icon-btn,
.cart-button,
.announcement button,
.announcement .market-switcher button,
.market-switcher button,
.social-row a,
.shop-search-clear,
summary {
  min-width: 44px;
  min-height: 44px;
}

.announcement {
  padding-inline: 16px;
}

.announcement-track,
.hero-grid,
.pdp-grid,
.calculator-layout,
.cart-layout,
.checkout-grid,
.pdp-content,
.gallery,
.buy-box,
.prose,
.table-wrap {
  min-width: 0;
}

.announcement-msg {
  padding-inline: 8px;
}

.announcement > button {
  flex: 0 0 44px;
}

.reveal {
  transition-duration: 360ms;
  will-change: auto;
}

.product-page {
  padding-top: 32px;
}

.product-page .breadcrumbs {
  margin-bottom: 14px;
}

.product-visual.large {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.thumbnail-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thumbnail-row button,
.thumbnail-row .product-visual {
  min-width: 0;
  min-height: 0;
}

.buy-box {
  gap: 11px;
  padding: 20px;
}

.buy-box h1,
.buy-box > p,
.buy-box .price-live {
  margin-bottom: 0;
}

.buy-box h1 {
  font-size: clamp(2.35rem, 3.4vw, 3.35rem);
}

.buy-box > p {
  font-size: 0.92rem;
  line-height: 1.52;
}

.tier-grid button {
  min-height: 60px;
}

.quantity-row .btn {
  min-height: 50px;
}

.pdp-content {
  grid-template-columns: 220px minmax(0, 1fr);
}

.toc,
.table-wrap {
  min-width: 0;
}

.table-wrap {
  max-width: 100%;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

button.text-link,
a.text-link {
  min-height: 44px;
  padding-block: 8px;
}

.product-price-row {
  flex-wrap: wrap;
}

.product-price {
  min-width: 0;
  overflow-wrap: anywhere;
}

.agy-product-mural picture {
  display: contents;
}

/* Preserve the live hero design while keeping its product imagery visible.
   This ports only the responsive image behavior from the GPT-5.6 variant. */
@media (max-width: 900px) {
  .agy-product-mural {
    inset: auto -14% 2% -6%;
    z-index: 11;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 118%;
    height: 48%;
  }

  .agy-product-mural img {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.5;
    filter:
      drop-shadow(0 22px 28px rgba(0, 0, 0, 0.26))
      drop-shadow(0 0 28px rgba(52, 210, 221, 0.2));
    mix-blend-mode: normal;
  }
}

@media (max-width: 560px) {
  .agy-product-mural {
    inset: auto -35% 0 -24%;
    width: 158%;
    height: 44%;
  }

  .agy-product-mural img {
    opacity: 0.48;
  }
}

@media (max-width: 1023px) {
  .hero-grid,
  .pdp-grid,
  .calculator-layout,
  .cart-layout,
  .checkout-grid,
  .pdp-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery,
  .toc,
  .results-card,
  .order-summary {
    position: static;
  }

  .toc {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .trust-strip {
    display: block;
  }

  .trust-strip-inner {
    min-height: 44px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .trust-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .trust-strip-inner span {
    display: inline-flex !important;
    flex: 0 0 auto;
    min-height: 44px;
    scroll-snap-align: start;
  }

  .sticky-atc {
    display: flex;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    transform: translateY(115%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .sticky-atc.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  .product-page {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .cart-line {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .cart-line .line-price {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .announcement {
    min-height: 52px;
    gap: 6px;
    padding: 4px 8px;
  }

  .announcement > .market-switcher {
    display: none;
  }

  .announcement-msg {
    display: flex !important;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .buy-box {
    padding: 18px;
  }

  .quantity-row {
    grid-template-columns: minmax(118px, 0.72fr) minmax(0, 1.28fr);
  }

  .product-card-body {
    min-width: 0;
  }

  .product-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-price {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .coa-card,
  .status-panel,
  .form-panel,
  .tracking-card,
  .account-panel {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .shop-body .product-grid,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-body .product-card .product-image-link {
    aspect-ratio: 4 / 3;
  }

  .quantity-row {
    grid-template-columns: 1fr;
  }

  .sticky-atc {
    gap: 8px;
    padding-inline: 10px;
  }

  .sticky-atc > strong {
    font-size: 0.9rem;
  }

  .sticky-atc .btn {
    width: auto;
    min-width: 104px;
  }
}

/* Compact Shop rhythm and an accessible, animated mobile navigation.
   Preserve the MAXXFIT visual system while maintaining product-first density. */
@keyframes mobile-nav-scrim-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mobile-nav-scrim-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes mobile-nav-panel-in {
  from { transform: translate3d(100%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes mobile-nav-panel-out {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(100%, 0, 0); }
}

.mobile-menu-toggle {
  position: relative;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(52, 210, 221, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ecfbfa;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active,
.mobile-menu-toggle.is-active {
  border-color: var(--accent);
  background: rgba(52, 210, 221, 0.14);
  color: var(--accent);
}

.mobile-menu-lines {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.mobile-menu-lines > span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 150ms ease;
}

.mobile-menu-lines > span:nth-child(1) { top: 1px; }
.mobile-menu-lines > span:nth-child(2) { top: 8px; }
.mobile-menu-lines > span:nth-child(3) { top: 15px; }

.mobile-menu-toggle.is-active .mobile-menu-lines > span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-active .mobile-menu-lines > span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.mobile-menu-toggle.is-active .mobile-menu-lines > span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.drawer-menu-toggle {
  display: inline-grid;
  flex: 0 0 44px;
}

.mobile-nav-scrim {
  animation: mobile-nav-scrim-in 220ms ease-out both;
}

.mobile-nav-scrim.is-closing {
  animation: mobile-nav-scrim-out 160ms ease-in both;
}

.mobile-nav-scrim .mobile-drawer {
  right: 0;
  left: auto;
  width: min(calc(100% - 24px), 380px);
  padding:
    max(18px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    18px;
  background:
    radial-gradient(circle at 100% 0, rgba(52, 210, 221, 0.12), transparent 32%),
    #071113;
  border-left: 1px solid rgba(52, 210, 221, 0.18);
  overscroll-behavior: contain;
  animation: mobile-nav-panel-in 240ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.mobile-nav-scrim.is-closing .mobile-drawer {
  animation: mobile-nav-panel-out 160ms ease-in both;
}

.mobile-drawer .drawer-head {
  min-height: 52px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(52, 210, 221, 0.14);
}

.mobile-drawer .drawer-logo {
  width: 142px;
}

.drawer-market {
  padding-block: 4px 10px;
}

.drawer-market .market-switcher {
  width: 100%;
}

.drawer-market .market-switcher button {
  flex: 1 1 0;
  max-width: none;
}

.mobile-drawer-nav,
.drawer-utilities {
  display: grid;
  gap: 6px;
}

.mobile-drawer-nav {
  padding-block: 4px 12px;
}

.mobile-drawer .mobile-drawer-nav a,
.mobile-drawer .drawer-utilities a {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(236, 251, 250, 0.84);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mobile-drawer .mobile-drawer-nav a:hover,
.mobile-drawer .mobile-drawer-nav a:active {
  border-color: rgba(52, 210, 221, 0.2);
  background: rgba(52, 210, 221, 0.08);
  color: #ffffff;
  transform: translateX(3px);
}

.mobile-drawer .mobile-drawer-nav a.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #071113;
}

.drawer-utilities {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 14px;
  border-top: 1px solid rgba(52, 210, 221, 0.14);
}

.mobile-drawer .drawer-utilities a {
  justify-content: center;
  min-width: 0;
  border-color: rgba(52, 210, 221, 0.18);
  text-align: center;
  font-size: 0.82rem;
}

.shop-hero {
  padding-block: 28px 24px;
}

.shop-hero-glow {
  width: 520px;
  height: 520px;
}

.shop-hero .breadcrumbs.light {
  margin-bottom: 10px;
}

.shop-hero .hero-pill {
  margin-bottom: 0;
}

.shop-hero-inner h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.25rem, 3.6vw, 3.05rem);
}

.shop-hero-inner p {
  font-size: 1rem;
  line-height: 1.52;
}

.shop-trust-row {
  margin-top: 20px;
}

.shop-body {
  padding-top: 28px;
}

.shop-body .category-tabs {
  margin-bottom: 16px;
}

.shop-body .category-tabs button {
  min-height: 44px;
}

.shop-toolbar {
  margin-bottom: 14px;
}

.shop-results-header {
  margin: 8px 0 16px;
}

.shop-body .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shop-body .product-card-body {
  flex: 1 1 auto;
}

.shop-body .product-select-btn {
  min-height: 44px;
  margin-top: auto;
}

@media (min-width: 901px) {
  .shop-hero > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    column-gap: 42px;
    row-gap: 10px;
    align-items: end;
  }

  .shop-hero .breadcrumbs.light {
    grid-column: 1 / -1;
  }

  .shop-trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: end;
    gap: 8px;
    margin-top: 0;
  }

  .shop-trust-pill {
    min-height: 44px;
    padding: 8px 12px;
  }
}

@media (max-width: 900px) {
  .shop-hero {
    padding-block: 24px 22px;
  }

  .shop-body {
    padding-top: 22px;
    padding-bottom: 56px;
  }

  .shop-body .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .shop-hero {
    padding-block: 20px 18px;
  }

  .shop-hero .breadcrumbs.light {
    margin-bottom: 8px;
  }

  .shop-hero-inner h1 {
    margin-block: 8px;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .shop-hero-inner p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .shop-trust-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 3px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .shop-trust-row::-webkit-scrollbar {
    display: none;
  }

  .shop-trust-pill {
    flex: 0 0 auto;
    min-height: 40px;
    scroll-snap-align: start;
  }

  .shop-body {
    padding-top: 18px;
  }

  .shop-body .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
    overflow: visible;
  }

  .shop-body .category-tabs button {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding: 8px 12px;
    border-radius: 10px;
    white-space: normal;
    text-align: left;
  }

  .shop-body .category-tabs button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .shop-toolbar {
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .shop-toolbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .shop-stock-toggle,
  .shop-sort {
    min-width: 0;
  }

  .shop-sort select {
    min-width: 0;
    width: 100%;
  }

  .shop-results-header {
    margin: 6px 0 12px;
  }

  .shop-body .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .shop-body .product-card {
    border-radius: 12px;
  }

  .shop-body .product-card .product-image-link {
    aspect-ratio: 4 / 3;
    border-radius: 12px 12px 0 0;
  }

  .shop-body .product-card-body {
    gap: 6px;
    padding: 12px;
  }

  .shop-body .product-card-body .category-label {
    min-height: 2.4em;
    font-size: 0.61rem;
    line-height: 1.2;
    letter-spacing: 0.035em;
  }

  .shop-body .product-card-body h3 {
    font-size: 0.92rem;
  }

  .shop-body .product-price-row {
    gap: 5px;
  }

  .shop-body .product-price {
    font-size: 0.9rem;
  }

  .shop-body .variant-count {
    font-size: 0.67rem;
  }

  .shop-body .product-select-btn {
    gap: 5px;
    padding: 9px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
  }

  .shop-body .product-select-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 96px;
  }

  .header-actions {
    gap: 2px;
  }

  .site-header .icon-btn,
  .site-header .cart-button,
  .site-header .mobile-menu-toggle {
    min-width: 42px;
    min-height: 42px;
  }
}

@media (max-width: 340px) {
  .shop-body .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (hover: none) {
  .shop-body .product-card:hover,
  .shop-body .product-card:hover .product-visual,
  .mobile-drawer .mobile-drawer-nav a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .mobile-nav-scrim,
  .mobile-nav-scrim.is-closing,
  .mobile-nav-scrim .mobile-drawer,
  .mobile-nav-scrim.is-closing .mobile-drawer,
  .mobile-menu-lines > span,
  .shop-body .product-card,
  .shop-body .product-card .product-visual,
  .shop-body .product-select-btn {
    animation: none !important;
    transition: none !important;
  }
}

/* -- WordPress-backed inventory surfaces ---------------------------------- */

.stock-notice {
  margin: 0 0 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stock-notice strong {
  font-weight: 700;
}

.stock-notice.stock-in {
  border-left-color: var(--success);
}

.stock-notice.stock-low {
  border-left-color: var(--warning);
}

.stock-notice.stock-back {
  border-left-color: var(--primary);
}

.stock-notice.stock-out {
  border-left-color: var(--danger);
  color: var(--danger);
}

.variant-buttons button.is-oos {
  opacity: 0.55;
  text-decoration: line-through;
}

.stock-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
  background: var(--muted);
  color: var(--ink-soft);
}

.stock-pill.stock-in-stock {
  background: rgba(20, 122, 75, 0.14);
  color: var(--success);
}

.stock-pill.stock-low-stock {
  background: rgba(154, 91, 0, 0.14);
  color: var(--warning);
}

.stock-pill.stock-back-soon {
  background: rgba(0, 159, 172, 0.14);
  color: var(--primary-strong);
}

.stock-pill.stock-out-of-stock {
  background: rgba(180, 35, 24, 0.12);
  color: var(--danger);
}

.status-panel.catalog-source {
  margin-bottom: 24px;
  align-items: flex-start;
}

.catalog-source-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 24px;
  margin: 12px 0 0;
}

.catalog-source-meta div {
  min-width: 0;
}

.catalog-source-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.catalog-source-meta dd {
  margin: 2px 0 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.catalog-source-error {
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 0.88rem;
}

@media (max-width: 700px) {
  .catalog-source-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}
