:root {
  --night: #070a0f;
  --night-2: #0d121a;
  --panel: #121a24;
  --panel-2: #172231;
  --surface: #f7fafc;
  --surface-2: #eaf0f6;
  --ink: #f8fbff;
  --copy: #d7e4ee;
  --muted: #91a6b8;
  --dark-copy: #17202a;
  --dark-muted: #5f6f7f;
  --line: rgba(169, 191, 214, 0.24);
  --line-strong: rgba(116, 232, 216, 0.42);
  --cyan: #29d8c7;
  --green: #8ce86f;
  --amber: #f3b548;
  --coral: #ff6f57;
  --blue: #55b7ff;
  --violet: #9a7cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --soft-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #070a0f 0%, #0b1017 42%, #0f151d 100%);
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(41, 216, 199, 0.035) 0 1px, transparent 1px 96px);
  background-size: 44px 44px, 44px 44px, auto;
  opacity: 0.7;
}

body:has(dialog[open]),
body.cart-drawer-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a,
input,
select {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(41, 216, 199, 0.72);
  outline-offset: 3px;
}

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

.icon-sprite {
  display: none;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  color: #071018;
  background: linear-gradient(90deg, var(--cyan), var(--green) 45%, var(--amber));
  font-size: 0.82rem;
  font-weight: 800;
}

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
}

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

.brand-logo {
  display: block;
  width: 258px;
  height: auto;
  max-width: 100%;
  border-radius: 6px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #071018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 0 0 4px rgba(41, 216, 199, 0.1);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 8px;
  color: #dbe8f2;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: #071018;
  background: var(--cyan);
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon-button:hover {
  color: var(--cyan);
  border-color: var(--line-strong);
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  color: #071018;
  background: var(--green);
  border: 2px solid #071018;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7, 10, 15, 0.7);
  border: 0;
  border-radius: 0;
}

.cart-drawer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(430px, calc(100vw - 20px));
  height: calc(100vh - 20px);
  margin: 10px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(23, 34, 49, 0.98), rgba(8, 12, 18, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(28px);
  transition: transform 220ms ease;
}

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

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin: 4px 0 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.cart-drawer-status {
  min-height: 42px;
  margin: 14px 18px 0;
  padding: 10px 12px;
  color: #061016;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.cart-drawer-status:empty {
  display: none;
}

.cart-drawer-items {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-drawer-item > div {
  min-width: 0;
}

.cart-drawer-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 5px;
  background: #f7fafc;
  border-radius: 8px;
}

.cart-drawer-item strong,
.cart-drawer-empty strong {
  display: block;
  line-height: 1.25;
}

.cart-drawer-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.cart-drawer-item em {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.cart-drawer-remove {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  margin-top: -2px;
  padding: 0 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 900;
}

.cart-drawer-remove svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.cart-drawer-remove:hover {
  color: #071018;
  background: var(--coral);
  border-color: transparent;
}

.cart-drawer-empty {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--copy);
  background: rgba(255, 255, 255, 0.055);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.cart-drawer-empty span {
  color: var(--muted);
  line-height: 1.45;
}

.cart-drawer-foot {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(7, 10, 15, 0.94);
  border-top: 1px solid var(--line);
}

.cart-drawer-total,
.cart-drawer-shipping div,
.cart-drawer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer-total span,
.cart-drawer-shipping span {
  color: var(--muted);
}

.cart-drawer-total strong {
  font-size: 1.25rem;
}

.cart-drawer-shipping {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-drawer-shipping strong {
  color: var(--green);
}

.cart-drawer-meter {
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(169, 191, 214, 0.22);
  border-radius: 999px;
}

.cart-drawer-meter em {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber));
  border-radius: inherit;
  transition: width 180ms ease;
}

.cart-drawer-actions .primary-button,
.cart-drawer-actions .secondary-button,
.cart-drawer-continue {
  flex: 1;
  min-height: 46px;
  justify-content: center;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.97) 0%, rgba(7, 10, 15, 0.9) 42%, rgba(7, 10, 15, 0.48) 74%, rgba(7, 10, 15, 0.22) 100%),
    linear-gradient(180deg, rgba(41, 216, 199, 0.16), rgba(255, 111, 87, 0.09)),
    url("assets/hero-store.png") center right / cover;
  border-bottom: 1px solid rgba(41, 216, 199, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, transparent 0%, rgba(7, 10, 15, 0.86) 100%);
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 84px 22px 82px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 6vw, 4.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 26px;
  color: rgba(248, 251, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}

.play-guarantee-strip {
  display: inline-grid;
  gap: 4px;
  width: min(100%, 660px);
  margin: 0 0 18px;
  padding: 14px 16px;
  color: #071018;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(41, 216, 199, 0.18);
}

.play-guarantee-strip strong {
  font-size: 1rem;
  font-weight: 950;
}

.play-guarantee-strip span {
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 660px);
  margin: 0 0 18px;
}

.hero-service-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  color: #e7f7ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-service-row svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 660px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-search svg {
  margin-left: 16px;
  color: #0f766e;
}

.hero-search input {
  min-width: 0;
  padding: 17px 12px;
  color: #17202a;
  background: transparent;
  border: 0;
  outline: 0;
}

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

.primary-link,
.primary-button,
.section-link,
.ghost-button,
.secondary-button,
.quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-link,
.primary-button {
  color: #061016;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(41, 216, 199, 0.2);
}

.primary-link:hover,
.primary-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--green), var(--amber));
}

.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.ghost-button:hover {
  color: #071018;
  background: #ffffff;
}

.section-link {
  min-width: 150px;
  color: #071018;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.section-link:hover {
  color: #061016;
  background: var(--amber);
}

.hero-metrics,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-metrics div {
  min-width: 145px;
  padding: 14px 16px;
  background: rgba(18, 26, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #ffffff;
  font-size: 1.45rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-proof span,
.catalog-assurance span,
.card-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  min-height: 34px;
  padding: 0 11px;
  color: #dffef8;
  background: rgba(41, 216, 199, 0.1);
  border: 1px solid rgba(41, 216, 199, 0.3);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-proof svg,
.catalog-assurance svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: -36px auto 24px;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

.confidence-strip div {
  min-height: 128px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(32, 47, 67, 0.94), rgba(12, 18, 26, 0.98)),
    linear-gradient(135deg, rgba(41, 216, 199, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.confidence-strip svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

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

.confidence-strip strong {
  margin-top: 12px;
}

.confidence-strip span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.marketplace-service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 22px 24px;
}

.marketplace-service-band div {
  min-height: 116px;
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(41, 216, 199, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.marketplace-service-band strong {
  font-size: 1rem;
}

.marketplace-service-band span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.aisle-section,
.platform-band,
.playstyle-section,
.catalog-section,
.trust-section,
.condition-section,
.process-section,
.reviews-section,
.trade-section,
.bundle-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 22px;
}

.aisle-section::after,
.platform-band::after,
.playstyle-section::after,
.trust-section::after,
.condition-section::after,
.process-section::after,
.reviews-section::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 216, 199, 0.24), transparent);
}

.section-heading,
.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading .eyebrow,
.catalog-head .eyebrow {
  margin-bottom: 8px;
}

.section-note {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.aisle-section {
  padding-top: 48px;
}

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

.tile-cyan {
  --tile-accent: var(--cyan);
}

.tile-green {
  --tile-accent: var(--green);
}

.tile-amber {
  --tile-accent: var(--amber);
}

.tile-coral {
  --tile-accent: var(--coral);
}

.tile-blue {
  --tile-accent: var(--blue);
}

.tile-violet {
  --tile-accent: var(--violet);
}

.aisle-tile {
  --tile-accent: var(--cyan);
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 158px;
  padding: 14px;
  text-align: left;
  color: #17202a;
  background:
    linear-gradient(180deg, #ffffff, #edf4f8);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aisle-tile:hover {
  transform: translateY(-2px);
  border-color: var(--tile-accent);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.aisle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 54px;
}

.aisle-icon svg,
.mascot-frame svg {
  width: 30px;
  height: 30px;
}

.aisle-icon svg {
  color: #071018;
  background: var(--tile-accent);
  border-radius: 8px;
  padding: 7px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tile-accent) 22%, transparent);
}

.aisle-icon em {
  display: inline-grid;
  min-height: 26px;
  place-items: center;
  padding: 0 7px;
  color: #071018;
  background: color-mix(in srgb, var(--tile-accent) 35%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--tile-accent) 56%, #ffffff);
  border-radius: 999px;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 950;
}

.aisle-tile strong,
.aisle-tile small {
  display: block;
}

.aisle-tile strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.aisle-tile small {
  color: #526273;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.playstyle-section {
  padding-top: 28px;
}

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

.playstyle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  min-height: 126px;
  padding: 16px;
  text-align: left;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.playstyle-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.mascot-frame {
  --tile-accent: var(--cyan);
  grid-row: span 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #071018;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--tile-accent) 84%, #ffffff), var(--tile-accent));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--tile-accent) 12%, transparent);
}

.playstyle-card strong,
.playstyle-card span:not(.mascot-frame) {
  display: block;
}

.playstyle-card strong {
  font-size: 1rem;
}

.playstyle-card span:not(.mascot-frame) {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

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

.platform-tile {
  min-height: 156px;
  padding: 17px;
  text-align: left;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(41, 216, 199, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-tile:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.platform-tile[aria-pressed="true"] {
  border-color: var(--cyan);
  background:
    linear-gradient(145deg, rgba(41, 216, 199, 0.17), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.platform-tile svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
}

.platform-tile strong,
.platform-tile span,
.platform-tile em {
  display: block;
}

.platform-tile strong {
  margin-top: 16px;
  font-size: 1.05rem;
}

.platform-tile span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

.platform-tile em {
  margin-top: 12px;
  color: var(--green);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.catalog-section {
  position: relative;
  padding-top: 64px;
}

.catalog-section::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 216, 199, 0.6), transparent);
  margin-bottom: 52px;
}

.cart-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  background: rgba(41, 216, 199, 0.1);
  border: 1px solid rgba(41, 216, 199, 0.3);
  border-radius: 8px;
}

.cart-summary span {
  color: var(--muted);
}

.cart-summary strong {
  color: var(--green);
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(140px, 0.7fr) minmax(220px, 1fr) minmax(160px, 0.8fr);
  gap: 12px;
  margin-bottom: 18px;
}

.search-box,
.tool-select,
.tool-range {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box svg,
.tool-select span,
.tool-range span {
  color: var(--muted);
}

.search-box input,
.tool-select select,
.tool-range input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.tool-select select option {
  color: #17202a;
  background: #ffffff;
}

.tool-select span,
.tool-range span {
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 800;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 16px;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--copy);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.tab-button[aria-selected="true"] {
  color: #061016;
  background: var(--cyan);
  border-color: var(--cyan);
}

.catalog-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.catalog-assurance span {
  min-height: 34px;
  padding: 0 11px;
  color: #dcecf5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

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

.load-more-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 8px 0 4px;
}

.load-more-button {
  min-width: min(280px, 100%);
  justify-content: center;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(85, 183, 255, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(23, 34, 49, 0.98), rgba(11, 16, 23, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 248, 0.96));
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.stock-badge,
.cert-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.stock-badge {
  top: 10px;
  right: 10px;
  color: #061016;
  background: var(--green);
}

.cert-badge {
  left: 10px;
  bottom: 10px;
  color: #ffffff;
  background: rgba(7, 10, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta,
.product-rating,
.detail-row,
.badge-row,
.card-actions,
.price-row,
.dialog-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.product-meta span,
.detail-row span,
.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  color: #dbe8f2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-title {
  min-height: 48px;
  font-size: 1.05rem;
}

.card-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: #071018;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.card-guarantee svg {
  width: 15px;
  height: 15px;
}

.fulfillment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #c7ddeb;
  font-size: 0.78rem;
  font-weight: 850;
}

.fulfillment-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: rgba(41, 216, 199, 0.08);
  border: 1px solid rgba(41, 216, 199, 0.18);
  border-radius: 999px;
}

.product-summary {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.product-rating {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-rating svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  fill: currentColor;
  stroke: currentColor;
}

.price-row {
  justify-content: space-between;
}

.price {
  color: #ffffff;
  font-size: 1.42rem;
  font-weight: 950;
}

.old-price {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: line-through;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: #061016;
  background: var(--amber);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.detail-row {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.card-proof {
  display: grid;
  gap: 6px;
  color: #bed1df;
  font-size: 0.84rem;
}

.card-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 999px;
}

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

.secondary-button {
  min-height: 44px;
  color: var(--cyan);
  background: rgba(41, 216, 199, 0.1);
  border: 1px solid rgba(41, 216, 199, 0.32);
}

.secondary-button:hover {
  color: #061016;
  background: var(--cyan);
}

.quick-add {
  min-width: 84px;
  min-height: 44px;
  color: #061016;
  background: var(--green);
  border: 1px solid var(--green);
}

.quick-add svg {
  width: 18px;
  height: 18px;
}

.quick-add:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.bundle-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 10px;
  background:
    linear-gradient(135deg, rgba(41, 216, 199, 0.14), rgba(154, 124, 255, 0.1)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.bundle-section p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust-grid,
.condition-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

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

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

.trust-item,
.condition-grid article,
.review-grid article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-item svg {
  width: 34px;
  height: 34px;
  color: var(--cyan);
}

.trust-item h3 {
  margin-top: 18px;
}

.trust-item p,
.process-copy p,
.trade-section p,
.condition-grid p,
.review-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.condition-grid article span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #061016;
  background: var(--cyan);
  border-radius: 8px;
  font-weight: 950;
}

.condition-grid article:nth-child(2) span {
  background: var(--amber);
}

.condition-grid article:nth-child(3) span {
  background: var(--green);
}

.condition-grid h3,
.review-grid strong {
  display: block;
  margin-top: 14px;
}

.review-stars {
  color: var(--amber);
  font-weight: 900;
}

.process-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list li > span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #061016;
  background: var(--green);
  border-radius: 8px;
  font-weight: 950;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trade-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.trade-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trade-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.trade-form input,
.trade-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trade-form select option {
  color: #17202a;
  background: #ffffff;
}

.product-dialog {
  width: min(1000px, calc(100vw - 28px));
  max-height: min(860px, calc(100dvh - 28px));
  padding: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--panel-2), var(--night-2));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

#dialogContent {
  padding: 22px;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.dialog-gallery {
  display: grid;
  gap: 12px;
  align-content: start;
}

.dialog-main-image,
.dialog-thumb {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 248, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dialog-main-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.dialog-main-image img,
.dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.dialog-main-image img {
  padding: 16px;
}

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

.dialog-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.dialog-thumb:hover,
.dialog-thumb.is-active {
  border-color: var(--amber);
  transform: translateY(-1px);
}

.dialog-thumb img {
  padding: 7px;
}

.dialog-info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.dialog-info h2 {
  padding-right: 42px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.dialog-info > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dialog-guarantee-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: #071018;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(41, 216, 199, 0.13);
}

.dialog-guarantee-panel div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dialog-guarantee-panel svg {
  width: 20px;
  height: 20px;
}

.dialog-guarantee-panel strong {
  font-size: 1rem;
  font-weight: 950;
}

.dialog-guarantee-panel p {
  margin: 0;
  color: #071018;
  line-height: 1.5;
  font-size: 0.92rem;
  font-weight: 800;
}

.dialog-price-row .price {
  font-size: 1.8rem;
}

.dialog-shipping-panel {
  display: grid;
  gap: 8px;
  padding: 13px;
  color: #d8e9f4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.dialog-shipping-panel span {
  line-height: 1.5;
}

.dialog-shipping-panel strong {
  color: #ffffff;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  color: var(--ink);
}

.dialog-trust-panel {
  padding: 15px;
  background: rgba(41, 216, 199, 0.09);
  border: 1px solid rgba(41, 216, 199, 0.28);
  border-radius: 8px;
}

.dialog-trust-panel p {
  margin: 9px 0 0;
  color: #c8ddeb;
  line-height: 1.6;
}

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

.condition-mini-grid span {
  display: grid;
  gap: 4px;
  min-height: 64px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.condition-mini-grid strong {
  color: var(--ink);
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 22px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span {
  margin-top: 6px;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.site-footer a {
  min-height: 32px;
  color: #dbe8f2;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1060px) {
  .marketplace-service-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-grid,
  .condition-grid,
  .review-grid,
  .playstyle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trade-section,
  .process-section {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  * {
    min-width: 0;
  }

  .utility-bar {
    display: grid;
    gap: 4px;
    text-align: center;
  }

  .main-nav {
    grid-template-columns: 1fr auto;
  }

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

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 54px 18px 62px;
  }

  .hero-inner > *,
  .hero-copy,
  .hero .eyebrow,
  .hero h1,
  .hero-search,
  .hero-service-row,
  .hero-actions,
  .hero-metrics,
  .hero-proof {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-copy,
  .hero .eyebrow,
  .utility-bar span,
  .nav-links a {
    white-space: normal;
    overflow-wrap: anywhere;
  }

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

  .hero-search .primary-link {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 0;
  }

  .confidence-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0 18px;
  }

  .marketplace-service-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 18px;
  }

  .marketplace-service-band div {
    min-height: auto;
  }

  .confidence-strip div {
    min-height: auto;
  }

  .aisle-section,
  .platform-band,
  .playstyle-section,
  .catalog-section,
  .trust-section,
  .condition-section,
  .process-section,
  .reviews-section,
  .trade-section,
  .bundle-section {
    padding: 44px 18px;
  }

  .section-heading,
  .catalog-head,
  .bundle-section,
  .site-footer {
    display: grid;
    align-items: start;
  }

  .section-heading > *,
  .catalog-head > *,
  .confidence-strip > *,
  .aisle-tile,
  .platform-tile,
  .playstyle-card,
  .trust-item,
  .condition-grid article,
  .review-grid article,
  .process-list li,
  .product-card {
    min-width: 0;
    max-width: 100%;
  }

  .section-heading h2,
  .catalog-head h2,
  .bundle-section h2,
  .trade-section h2 {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 1.65rem;
    line-height: 1.18;
  }

  .confidence-strip span,
  .aisle-tile small,
  .platform-tile span,
  .playstyle-card span:not(.mascot-frame),
  .trust-item p,
  .condition-grid p,
  .review-grid p,
  .process-list p,
  .trade-section p,
  .product-summary {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .catalog-tools,
  .platform-grid,
  .playstyle-grid,
  .trust-grid,
  .condition-grid,
  .review-grid,
  .trade-form,
  .dialog-layout,
  .dialog-actions,
  .condition-mini-grid {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    gap: 10px;
    margin-bottom: 12px;
  }

  .search-box,
  .tool-select,
  .tool-range {
    min-height: 48px;
    padding: 0 12px;
  }

  .platform-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    margin: 2px -18px 14px;
    padding: 0 18px 6px;
  }

  .platform-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-button {
    flex: 0 0 auto;
    min-height: 44px;
    scroll-snap-align: start;
  }

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

  .product-card {
    grid-template-columns: minmax(124px, 34vw) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 168px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-media {
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
  }

  .product-media img {
    padding: 10px;
  }

  .stock-badge,
  .cert-badge {
    min-height: 24px;
    padding: 0 7px;
    font-size: 0.68rem;
  }

  .stock-badge {
    top: 8px;
    right: 8px;
  }

  .cert-badge {
    left: 8px;
    bottom: 8px;
  }

  .product-body {
    gap: 8px;
    padding: 12px;
  }

  .product-meta {
    gap: 5px;
  }

  .product-meta span {
    min-height: 24px;
    padding: 0 7px;
    font-size: 0.7rem;
  }

  .product-meta span:nth-child(3),
  .product-summary,
  .detail-row,
  .card-proof {
    display: none;
  }

  .fulfillment-row span:nth-child(2) {
    display: none;
  }

  .product-title {
    min-height: 0;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .product-rating {
    font-size: 0.78rem;
  }

  .cart-drawer {
    justify-items: stretch;
  }

  .cart-drawer-panel {
    width: calc(100vw - 12px);
    height: calc(100dvh - 12px);
    margin: 6px;
    transform: translateY(18px);
  }

  .cart-drawer-head,
  .cart-drawer-foot {
    padding: 16px;
  }

  .cart-drawer-head h2 {
    font-size: 1.24rem;
  }

  .cart-drawer-status {
    margin: 12px 14px 0;
  }

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

  .cart-drawer-item {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .cart-drawer-item img {
    width: 66px;
    height: 66px;
  }

  .cart-drawer-remove {
    width: 32px;
    min-height: 32px;
    justify-content: center;
    padding: 0;
  }

  .cart-drawer-remove span {
    display: none;
  }

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

  .price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
  }

  .price {
    font-size: 1.18rem;
  }

  .save-badge {
    width: fit-content;
    min-height: 24px;
    font-size: 0.7rem;
  }

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

  .card-actions {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .quick-add {
    width: 48px;
    min-width: 48px;
    padding: 0;
    font-size: 0;
  }

  .quick-add svg {
    width: 20px;
    height: 20px;
  }

  .primary-link,
  .primary-button,
  .section-link,
  .ghost-button,
  .secondary-button,
  .quick-add {
    white-space: normal;
    text-align: center;
  }

  .section-link {
    width: 100%;
  }

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

  .aisle-tile {
    min-height: 146px;
    padding: 12px;
  }

  .aisle-icon {
    min-height: 48px;
  }

  .aisle-icon svg {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .hero-actions,
  .hero-proof,
  .catalog-assurance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span,
  .catalog-assurance span {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .spec-list li {
    grid-template-columns: 1fr;
  }

  .dialog-info h2 {
    padding-right: 0;
  }

  .dialog-main-image {
    max-height: min(78vw, 360px);
  }

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

  .dialog-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 430px) {
  .hero-inner > *,
  .hero-copy,
  .hero .eyebrow,
  .hero h1,
  .hero-search,
  .hero-actions,
  .hero-metrics,
  .hero-proof {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-copy,
  .hero .eyebrow,
  .utility-bar span,
  .nav-links a {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 176px;
  }

  .brand small {
    display: none;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button {
    width: 100%;
  }

  .primary-link,
  .primary-button,
  .section-link,
  .ghost-button,
  .secondary-button,
  .quick-add {
    white-space: normal;
    text-align: center;
  }

  .hero-actions,
  .hero-proof,
  .catalog-assurance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span,
  .catalog-assurance span {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .confidence-strip {
    margin-top: 0;
  }

  .confidence-strip div {
    min-height: auto;
  }

  .platform-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 154px;
  }

  .product-media {
    min-height: 154px;
  }

  .product-body {
    padding: 10px;
  }

  .product-title {
    font-size: 0.92rem;
  }

  .secondary-button {
    min-height: 42px;
    padding-inline: 10px;
  }

  .quick-add {
    width: 46px;
    min-width: 46px;
  }

  .aisle-tile strong {
    font-size: 0.92rem;
  }

  .aisle-tile small {
    font-size: 0.76rem;
  }
}
