:root {
  --bg: #0c1014;
  --surface: #151b22;
  --surface-2: #1d242c;
  --text: #f3f7fb;
  --muted: #97a5b7;
  --muted-2: #6a7787;
  --line: rgba(104, 130, 157, 0.18);
  --primary: #00d1ff;
  --tertiary: #8ea4ff;
  --success: #44d48c;
  --warning: #f7be5d;
  --danger: #ff6d6d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --container: 1240px;
  --product-stage: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(224, 233, 242, 0.96));
  --product-stage-line: rgba(112, 133, 156, 0.24);
  --product-stage-ink: #0a1420;
  --catalog-card-stage-height: clamp(196px, 18vw, 292px);
  --catalog-card-stage-padding: 0.78rem;
  --catalog-card-badges-height: 2.55rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 40%),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(12, 16, 20, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: max-content;
}

.brand-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  padding: 0.5rem 0.2rem;
  border-bottom: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--text);
  border-color: var(--primary);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  min-width: min(420px, 40vw);
  padding: 0.45rem 0.55rem 0.45rem 0.95rem;
}

.header-search input {
  background: transparent;
  border: 0;
  color: var(--text);
  width: 100%;
  outline: none;
}

.header-search input[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  margin: 0;
}

.header-search input[type="search"]::-webkit-search-decoration,
.header-search input[type="search"]::-webkit-search-results-decoration,
.header-search input[type="search"]::-webkit-search-results-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.header-search input[type="search"]::-webkit-search-cancel-button {
  cursor: pointer;
}

.header-search button,
.button {
  background: linear-gradient(135deg, var(--primary), #48e0ff);
  color: #00131d;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.button.small {
  padding: 0.75rem 0.9rem;
  font-size: 0.76rem;
}

.header-icons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.header-icon {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}

.page {
  padding: 2.5rem 0 4rem;
}

.page-flow {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
}

.page-flow > * {
  min-width: 0;
}

.page-flow > .breadcrumb,
.page-flow > .hero,
.page-flow > .metric-grid,
.page-flow > .page-stack--tight {
  position: relative;
  padding-top: 0;
}

.page-flow > .page-stack--tight {
  margin: 0;
}

.page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight) {
  position: relative;
  padding-top: 1.2rem;
}

.page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(104, 130, 157, 0.06) 8%,
    rgba(104, 130, 157, 0.3) 34%,
    rgba(0, 209, 255, 0.16) 50%,
    rgba(104, 130, 157, 0.22) 66%,
    rgba(104, 130, 157, 0.06) 92%,
    transparent 100%
  );
}

.page-flow > :where(.page-stack, .panel, .search-results-shell).page-section--browse-results:not(.page-stack--tight)::before {
  content: none;
}

.page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell).page-section--major:not(.page-stack--tight) {
  padding-top: 1.55rem;
}

.page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell).page-section--major:not(.page-stack--tight)::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(104, 130, 157, 0.08) 6%,
    rgba(104, 130, 157, 0.34) 28%,
    rgba(0, 209, 255, 0.22) 50%,
    rgba(104, 130, 157, 0.26) 72%,
    rgba(104, 130, 157, 0.08) 94%,
    transparent 100%
  );
}

.page-flow--home {
  gap: 1.3rem;
}

.page-flow--home > .home-hero {
  margin-bottom: 0.35rem;
}

.page-flow--home > .home-stats {
  margin-bottom: 0.15rem;
}

.page-flow--home > .home-section--shelf:not(.page-stack--tight) {
  padding-top: 1.05rem;
}

.page-flow--home > .home-section--major:not(.page-stack--tight) {
  padding-top: 1.4rem;
}

.page-flow--home .section-heading {
  margin-bottom: 0.94rem;
}

.page-flow--home .section-heading--compact {
  margin-bottom: 0.74rem;
}

.page-flow--home .hero-shortcuts {
  margin-top: 0.88rem;
}

.page-flow--home .home-stats .stat-card {
  padding: 0.82rem 0.92rem;
}

.page-flow--home .home-stats .kpi {
  margin-top: 0.34rem;
}

.page-flow--home .category-hero--homepage {
  padding: 1rem 1.05rem;
}

.page-flow--home .home-split-columns {
  gap: 1.05rem;
  align-items: start;
}

.page-flow--home .list {
  gap: 0.72rem;
}

.page-flow--home .home-stores-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-flow--home .home-story-panel {
  margin-top: 0.8rem;
  padding: 1.08rem 1.14rem;
}

.page-flow--home .home-story-panel .lede {
  margin-bottom: 0.88rem;
}

.hero {
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2.4rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
  position: relative;
}

.hero--browse {
  padding: 4.35rem 2.4rem 2.4rem;
}

.hero--browse > .eyebrow {
  margin-top: 1.1rem;
  margin-bottom: 0.42rem;
}

.hero--browse .category-hero__content > .eyebrow {
  margin-top: 1.1rem;
  margin-bottom: 0.42rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.hero--autocomplete-open {
  overflow: visible;
  z-index: 6;
}

.hero--storefront {
  padding: 1.7rem;
}

.hero-storefront {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  gap: 1.2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-storefront__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero .hero-storefront__content {
  padding-top: 0.9rem;
}

.hero-storefront--solo {
  display: block;
}

.hero-storefront--solo .hero-storefront__content {
  max-width: 1040px;
}

.hero-storefront__aside {
  display: flex;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.hero-kpi__value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-kpi__label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.title-xl,
.title-lg,
.title-md {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
  margin: 0;
}

.title-link {
  display: inline-block;
  color: inherit;
  line-height: inherit;
  transition: color 150ms ease;
}

.title-link:hover,
.title-link:focus-visible {
  color: var(--primary);
}

.title-xl {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.08em;
}

.title-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
}

.title-md {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.lede,
.section-copy,
.muted {
  color: var(--muted);
}

.lede {
  margin: 0.8rem 0 1.4rem;
  max-width: 54rem;
  line-height: 1.7;
}

.hero-form,
.toolbar,
.split-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-form {
  margin-top: 1.4rem;
  align-items: stretch;
}

.search-shell {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.search-shell input,
.search-shell select {
  background: var(--surface-2);
  border: 0;
  color: var(--text);
  padding: 0.95rem 1rem;
  min-width: 0;
}

.search-shell input {
  flex: 1 1 320px;
}

.search-shell select {
  min-width: 180px;
}

.merchant-workspace {
  overflow: hidden;
}

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

.merchant-workspace-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.merchant-workspace-card,
.merchant-snapshot-card,
.merchant-metric-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent), var(--surface-2);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.merchant-form-group {
  display: grid;
  gap: 0.9rem;
}

.merchant-form,
.merchant-form__grid {
  display: grid;
  gap: 0.9rem;
}

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

.merchant-field {
  display: grid;
  gap: 0.45rem;
}

.merchant-field--wide {
  grid-column: span 2;
}

.merchant-field--check {
  align-self: end;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.merchant-field span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merchant-field input,
.merchant-field select,
.merchant-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0.9rem 0.95rem;
}

.merchant-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.merchant-field--check input {
  width: auto;
  justify-self: start;
  margin: 0;
}

.merchant-form__actions {
  margin-top: 0.2rem;
}

.merchant-banner {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.merchant-banner p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.merchant-banner code {
  font-size: 0.92em;
}

.merchant-banner--primary {
  border-color: rgba(0, 209, 255, 0.22);
  background: rgba(0, 209, 255, 0.08);
}

.merchant-banner--success {
  border-color: rgba(72, 199, 116, 0.28);
  background: rgba(72, 199, 116, 0.1);
}

.merchant-banner--warning {
  border-color: rgba(255, 184, 77, 0.28);
  background: rgba(255, 184, 77, 0.1);
}

.merchant-banner--danger {
  border-color: rgba(255, 107, 107, 0.28);
  background: rgba(255, 107, 107, 0.1);
}

.merchant-metric-grid,
.merchant-snapshot-grid {
  display: grid;
  gap: 1rem;
}

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

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

.merchant-metric-card {
  display: grid;
  gap: 0.35rem;
}

.merchant-metric-card__label {
  color: var(--muted-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merchant-metric-card__value {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.merchant-metric-card__detail {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.merchant-detail-list {
  display: grid;
  gap: 0.65rem;
}

.merchant-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
}

.merchant-detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.merchant-detail-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.merchant-detail-row strong {
  text-align: right;
}

.merchant-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.merchant-list__item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.merchant-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.merchant-list__copy {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.merchant-list__copy strong {
  line-height: 1.35;
}

.merchant-list__copy .mini {
  margin: 0;
}

@media (max-width: 980px) {
  .merchant-workspace-grid,
  .merchant-snapshot-grid,
  .merchant-metric-grid,
  .merchant-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .merchant-workspace-grid,
  .merchant-snapshot-grid,
  .merchant-metric-grid,
  .merchant-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .merchant-field--wide {
    grid-column: auto;
  }

  .merchant-detail-row,
  .merchant-list__item {
    flex-direction: column;
    align-items: start;
  }

  .merchant-detail-row strong {
    text-align: left;
  }
}

.header-search.is-suggesting,
.search-shell.is-suggesting {
  z-index: 80;
}

.search-autocomplete {
  position: absolute;
  inset: calc(100% + 0.45rem) 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(15, 20, 26, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 90;
}

.search-autocomplete[hidden] {
  display: none !important;
}

.search-suggestion {
  width: 100%;
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: rgba(0, 209, 255, 0.09);
}

.search-suggestion__type {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.search-suggestion__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.search-suggestion__label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.search-suggestion__meta {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.chip-row,
.tag-row,
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip-row--dense {
  gap: 0.42rem;
}

.chip,
.tag,
.status,
.breadcrumb a {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.tag,
.status {
  color: var(--text);
}

.tag.primary,
.status.primary {
  color: var(--primary);
  background: rgba(0, 209, 255, 0.09);
}

.status.success {
  color: var(--success);
}

.status.warning {
  color: var(--warning);
}

.status.danger {
  color: var(--danger);
}

.metric-grid,
.category-grid,
.platform-grid,
.product-grid,
.store-grid,
.content-grid,
.detail-grid,
.split-columns,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.8rem;
}

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

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

.content-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.page-flow--categories .content-grid,
.page-flow--classes .content-grid,
.page-flow--platforms .content-grid {
  grid-template-columns: 1fr;
}

.page-flow--categories .rail,
.page-flow--classes .rail,
.page-flow--platforms .rail {
  display: none;
}

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

.panel,
.product-card,
.category-card,
.platform-card,
.store-card,
.stat-card,
.table-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent), var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1rem 1.1rem;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 0 0 1rem;
}

.section-heading--compact {
  margin-bottom: 0.8rem;
}

.section-heading > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.section-heading .meta {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.section-heading .title-lg,
.section-heading .title-md {
  white-space: nowrap;
  line-height: 1.06;
}

.section-heading .title-lg {
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
}

.section-heading .title-md {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.kpi {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06em;
  margin: 0.45rem 0 0;
}

.mini {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.stat-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.stat-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(120, 143, 166, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.stat-tooltip__bubble {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  z-index: 30;
  width: min(17rem, 72vw);
  padding: 0.7rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(120, 143, 166, 0.24);
  background: rgba(14, 18, 24, 0.97);
  color: #f3f7fb;
  box-shadow: 0 20px 48px rgba(2, 8, 15, 0.32);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.stat-tooltip:hover .stat-tooltip__bubble,
.stat-tooltip:focus-visible .stat-tooltip__bubble {
  opacity: 1;
  transform: translate(-50%, 0);
}

.category-card,
.platform-card,
.store-card,
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.category-card,
.platform-card,
.store-card,
.product-card {
  height: 100%;
}

.category-card__visual {
  display: block;
}

.category-card__visual.is-hidden,
.category-hero__visual.is-hidden,
.product-card__visual.is-hidden,
.shop-card__media.is-hidden,
.spotlight-card__media.is-hidden,
.list-item__media.is-hidden {
  display: none !important;
}

.category-card--no-visual,
.platform-card--no-visual {
  gap: 0.8rem;
  justify-content: flex-start;
}

.category-card--no-visual::after,
.platform-card--no-visual::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(0, 209, 255, 0.22));
  order: -1;
  opacity: 0.75;
}

.product-card--no-visual .product-card__visual,
.shop-card--no-visual .shop-card__media,
.spotlight-card--no-visual .spotlight-card__media,
.list-item--no-visual .list-item__media {
  display: none !important;
}

.product-card--no-visual,
.shop-card--no-visual,
.spotlight-card--no-visual,
.list-item--no-visual {
  gap: 0.8rem;
}

.shop-card--no-visual .shop-card__body {
  padding-top: 1rem;
}

.spotlight-card--no-visual {
  grid-template-columns: minmax(0, 1fr);
}

.spotlight-card--no-visual .spotlight-card__body {
  padding-top: 1rem;
}

.list-item--no-visual {
  gap: 0;
}

.category-media,
.category-hero__visual {
  display: flex;
}

.category-media {
  width: 100%;
  min-width: 0;
}

.category-media__stage {
  width: 100%;
  aspect-ratio: 1.24 / 0.88;
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid var(--product-stage-line);
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--product-stage);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-media__stage--hero {
  aspect-ratio: 1.08 / 0.9;
  min-height: 280px;
  padding: 1rem;
}

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.media-frame__fallback {
  display: none;
  width: 100%;
  height: 100%;
}

.media-frame.is-fallback > [data-media-image] {
  display: none !important;
}

.media-frame.is-fallback > .media-frame__fallback {
  display: block;
}

.category-media__image,
.category-media__fallback {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.category-media__image {
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 220ms ease;
}

.category-media__fallback {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--product-stage-ink);
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(225, 233, 241, 0.8));
}

.category-media__fallback-copy {
  width: min(100%, 14rem);
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}

.category-media__fallback-label {
  color: rgba(10, 20, 32, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.category-media__fallback-title {
  color: rgba(10, 20, 32, 0.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.category-media__fallback-meta {
  color: rgba(10, 20, 32, 0.66);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.category-card:hover .category-media__image,
.category-hero__visual:hover .category-media__image {
  transform: scale(1.03);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.category-hero--no-visual {
  grid-template-columns: minmax(0, 1fr);
}

.category-hero--no-visual .category-hero__content {
  max-width: 62rem;
}

.category-hero--homepage {
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-hero--homepage:hover,
.category-hero--homepage:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 209, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-hero--homepage .category-media__stage--hero {
  min-height: 220px;
}

.home-category-carousel {
  display: grid;
  gap: 0.18rem;
  overflow: hidden;
}

.home-category-carousel__frame {
  overflow: hidden;
  isolation: isolate;
}

.home-category-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.home-category-carousel__track {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.home-category-carousel__slide {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 30vw, 360px);
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.home-category-carousel__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.home-category-carousel__slide .category-hero__content {
  padding-inline: clamp(0.82rem, 2vw, 1.55rem) clamp(0.18rem, 0.85vw, 0.52rem);
}

.home-category-carousel__slide .title-lg {
  line-height: 0.99;
}

.home-category-carousel__slide .category-media__stage--hero {
  min-height: 220px;
  padding: 0.45rem;
}

.home-category-carousel__slide .category-media__image--hero {
  object-fit: contain;
  object-position: center center;
}

.home-category-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 0.9rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  overflow: visible;
}

.home-category-carousel__dot {
  appearance: none;
  -webkit-appearance: none;
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(132, 151, 171, 0.3);
  background: rgba(132, 151, 171, 0.26);
  cursor: pointer;
  opacity: 0.82;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.home-category-carousel__dot:hover,
.home-category-carousel__dot:focus-visible {
  border-color: rgba(0, 209, 255, 0.45);
  background: rgba(0, 209, 255, 0.28);
  opacity: 1;
  outline: none;
}

.home-category-carousel__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
  opacity: 1;
  transform: scale(1.14);
}

.category-hero__content {
  min-width: 0;
}

.category-hero__visual {
  min-width: 0;
  justify-content: flex-end;
}

.product-card__visual {
  display: block;
}

.product-card__stage,
.shop-card__stage,
.list-item__stage,
.detail-product-media__frame {
  width: 100%;
  background: var(--product-stage);
  border: 1px solid var(--product-stage-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__stage {
  height: var(--catalog-card-stage-height);
  min-height: var(--catalog-card-stage-height);
  padding: var(--catalog-card-stage-padding);
}

.product-card__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 220ms ease;
}

.product-card__store,
.shop-card__source,
.list-item__store,
.spotlight-card__store {
  display: flex;
  align-items: center;
}

.store-identity {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.store-identity__mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.2rem;
  background: linear-gradient(135deg, var(--store-accent), rgba(255, 255, 255, 0.96));
  color: #03131d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.store-identity__name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-identity--compact {
  gap: 0.5rem;
}

.store-identity--compact .store-identity__mark {
  width: 1.9rem;
  height: 1.9rem;
  flex-basis: 1.9rem;
  border-radius: 0.55rem;
  font-size: 0.74rem;
}

.store-identity--compact .store-identity__name {
  font-size: 0.8rem;
}

.search-results-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.results-toolbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.browse-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.05rem;
}

.browse-toolbar__meta {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.7rem;
}

.browse-toolbar__summary {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.browse-toolbar__controls {
  display: flex;
  flex: 1 1 44rem;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0.7rem;
}

.browse-pagination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.browse-pagination__summary {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.browse-pagination__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
}

.browse-pagination__link {
  min-width: 2.8rem;
}

.browse-pagination__link.is-current {
  cursor: default;
  pointer-events: none;
}

.browse-pagination__link.is-disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.browse-pagination__gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  color: var(--muted);
  font-weight: 700;
}

.ad-slot {
  --ad-slot-mobile-width: 300px;
  --ad-slot-mobile-min-height: 100px;
  --ad-slot-desktop-width: 300px;
  --ad-slot-desktop-min-height: 250px;
  --ad-slot-active-width: var(--ad-slot-mobile-width);
  --ad-slot-active-min-height: var(--ad-slot-mobile-min-height);
  position: relative;
  display: grid;
  justify-items: start;
  gap: 0.38rem;
  width: 100%;
  min-height: 0;
  padding: 0;
}

.ad-slot::before {
  content: none;
}

.ad-slot__frame {
  display: grid;
  gap: 0.38rem;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  padding: 0;
}

.ad-slot__intro {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0.1rem, -0.75rem);
  display: inline-flex;
  align-items: center;
  min-width: 0;
  z-index: 2;
}

.ad-slot__label-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0;
}

.ad-slot__caption {
  color: rgba(184, 198, 214, 0.9);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.ad-slot--third-placement .ad-slot__intro {
  display: none;
}

.ad-slot__body {
  display: flex;
  align-items: stretch;
  width: min(100%, var(--ad-slot-active-width));
  min-height: var(--ad-slot-active-min-height);
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.ad-slot__provider-content {
  display: block;
  width: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
}

.ad-slot__provider-content > * {
  max-width: 100%;
  border-radius: 0;
}

.ad-slot__provider-content img,
.ad-slot__provider-content video,
.ad-slot__provider-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border: 0;
}

.ad-slot__stack {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.ad-slot__unit,
.ad-slot__provider-content > * {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 0;
}

.ad-slot__unit--stacked {
  min-height: 250px;
}

.ad-slot__unit-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.ad-slot--empty .ad-slot__body {
  display: none;
}

.ad-slot--empty .ad-slot__intro {
  display: none;
}

.ad-slot--skipped .ad-slot__body {
  opacity: 1;
}

.ad-slot--rectangle {
  min-height: 0;
}

.ad-slot[data-ad-slot-variant="mobile"][data-ad-slot-mobile-variant="compact"] .ad-slot__creative--media {
  grid-template-columns: minmax(4.4rem, 5.4rem) minmax(0, 1fr);
}

.ad-slot[data-ad-slot-variant="mobile"] .ad-slot__caption {
  font-size: 0.68rem;
}

.ad-slot[data-ad-slot-variant="mobile"] .ad-slot__body {
  width: min(100%, var(--ad-slot-active-width));
}

.ad-slot--home-primary {
  justify-items: center;
}

.ad-slot--home-primary .ad-slot__frame {
  justify-items: center;
  gap: 0.5rem;
}

.ad-slot--home-primary .ad-slot__intro {
  justify-content: center;
}

.ad-slot--home-primary .ad-slot__label-row {
  justify-content: center;
}

.ad-slot--home-primary .ad-slot__body {
  margin-inline: auto;
}

.ad-slot--home-stack {
  margin: 0.35rem auto 0.55rem;
}

.ad-slot--browse-inline .ad-slot__frame {
  justify-items: start;
}

.ad-slot--browse-inline .ad-slot__intro {
  justify-content: flex-start;
}

.ad-slot--browse-top {
  margin-bottom: 0.85rem;
}

.ad-slot--home-primary {
  margin-top: 0.15rem;
  margin-bottom: 0.2rem;
}

.ad-slot[data-ad-slot-state="reserved"] .ad-slot__body,
.ad-slot[data-ad-slot-state="loading"] .ad-slot__body {
  position: relative;
  overflow: hidden;
  background: rgba(112, 133, 156, 0.05);
}

.ad-slot[data-ad-slot-state="reserved"] .ad-slot__body::after,
.ad-slot[data-ad-slot-state="loading"] .ad-slot__body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: ad-slot-shimmer 1.8s linear infinite;
  pointer-events: none;
}

@keyframes ad-slot-shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (min-width: 900px) {
  .ad-slot {
    --ad-slot-active-width: var(--ad-slot-desktop-width);
    --ad-slot-active-min-height: var(--ad-slot-desktop-min-height);
    gap: 0.44rem;
  }

  .ad-slot__body {
    width: var(--ad-slot-active-width);
  }
}

.page-flow--home .home-section--featured-products .results-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  justify-content: center;
}

@media (min-width: 1380px) {
  .page-flow--home .home-section--featured-products .results-grid {
    grid-template-columns: repeat(4, minmax(300px, 300px));
  }
}

.page-flow--home .home-section--featured-products .product-card,
.page-flow--home .home-section--featured-products .shop-card {
  width: 300px;
  min-height: 800px;
}

.page-flow--home .home-featured-products__ad-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 100%;
  min-height: 800px;
  gap: 0;
  padding: 0;
  overflow: hidden;
  justify-self: center;
  align-self: stretch;
}

.page-flow--home .home-featured-products__ad-card .shop-card__body {
  flex: 1 1 auto;
  gap: 0;
  justify-content: space-between;
  padding: 0;
  min-height: 100%;
}

.page-flow--home .home-featured-products__ad-stack {
  display: grid;
  grid-template-rows: repeat(3, calc(var(--ad-slot-desktop-min-height) + 0.95rem));
  width: 100%;
  flex: 1 1 auto;
  min-height: 100%;
  justify-items: center;
  align-content: space-evenly;
  gap: 0;
  padding: calc(0.95rem - 16px) 0 calc(0.95rem + 16px);
}

.page-flow--home .home-featured-products__ad-card .ad-slot,
.page-flow--home .home-featured-products__ad-card .ad-slot__frame,
.page-flow--home .home-featured-products__ad-card .ad-slot__body {
  width: var(--ad-slot-desktop-width);
  max-width: var(--ad-slot-desktop-width);
}

.page-flow--home .home-featured-products__ad-card .ad-slot {
  flex: 0 0 auto;
  align-self: center;
  height: var(--ad-slot-desktop-min-height);
  gap: 0;
  margin-top: 0.95rem;
  padding-top: 0;
}

.page-flow--home .home-featured-products__ad-card .ad-slot--third-placement {
  margin-top: 0.95rem;
  padding-top: 0;
}

.page-flow--home .home-featured-products__ad-card .ad-slot__frame {
  justify-items: center;
  position: relative;
}

.page-flow--home .home-featured-products__ad-card .ad-slot__intro {
  top: -0.86rem;
  right: 0.38rem;
  transform: none;
}

.page-flow--home .home-featured-products__ad-card .ad-slot__body {
  height: var(--ad-slot-desktop-min-height);
  min-height: 250px;
  border-radius: 0;
  border: 1px solid var(--product-stage-line);
  background: var(--product-stage);
  overflow: hidden;
}

.page-flow--home .home-featured-products__ad-card .ad-slot__provider-content,
.page-flow--home .home-featured-products__ad-card .ad-slot__unit,
.page-flow--home .home-featured-products__ad-card .ad-slot__unit-image {
  width: 100%;
  height: 100%;
}

.page-flow--home .home-section--featured-products .product-card__summary,
.page-flow--home .home-section--featured-products .shop-card__summary {
  min-height: calc(1.5em * 4);
}

.browse-featured-products__ad-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 100%;
  min-height: 800px;
  gap: 0;
  padding: 0;
  overflow: hidden;
  justify-self: center;
  align-self: stretch;
}

.browse-featured-products__ad-stack {
  display: grid;
  grid-template-rows: repeat(3, calc(var(--ad-slot-desktop-min-height) + 0.95rem));
  width: 100%;
  flex: 1 1 auto;
  min-height: 100%;
  justify-items: center;
  align-content: space-evenly;
  gap: 0;
  padding: 0.95rem 0;
}

.page-flow--home .browse-featured-products__ad-stack {
  transform: translateY(-20px);
}

.browse-featured-products__ad-card .ad-slot,
.browse-featured-products__ad-card .ad-slot__frame,
.browse-featured-products__ad-card .ad-slot__body {
  width: var(--ad-slot-desktop-width);
  max-width: var(--ad-slot-desktop-width);
}

.browse-featured-products__ad-card .ad-slot {
  align-self: center;
  height: var(--ad-slot-desktop-min-height);
  gap: 0;
  margin-top: 0.95rem;
  padding-top: 0;
}

.browse-featured-products__ad-card .ad-slot--third-placement {
  margin-top: 0.95rem;
  padding-top: 0;
}

.browse-featured-products__ad-card .ad-slot__frame {
  justify-items: center;
  position: relative;
}

.browse-featured-products__ad-card .ad-slot__intro {
  top: -0.86rem;
  right: 0.38rem;
  transform: none;
}

.browse-featured-products__ad-card .ad-slot__body {
  height: var(--ad-slot-desktop-min-height);
  min-height: 250px;
  border-radius: 0;
  border: 1px solid var(--product-stage-line);
  background: var(--product-stage);
  overflow: hidden;
}

.browse-featured-products__ad-card .ad-slot__provider-content,
.browse-featured-products__ad-card .ad-slot__unit,
.browse-featured-products__ad-card .ad-slot__unit-image {
  width: 100%;
  height: 100%;
}

@media (max-width: 760px) {
  .page-flow--home .home-section--featured-products .results-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-flow--home .home-spotlight-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-flow--home .home-spotlight__ad {
    width: 100%;
    justify-self: stretch;
  }

  .page-flow--home .home-section--featured-products .product-card,
  .page-flow--home .home-section--featured-products .shop-card {
    width: 100%;
    min-height: 0;
  }

  .page-flow--home .home-featured-products__ad-card,
  .page-flow--home .home-featured-products__ad-card .ad-slot,
  .page-flow--home .home-featured-products__ad-card .ad-slot__frame,
  .page-flow--home .home-featured-products__ad-card .ad-slot__body {
    width: 100%;
  }

  .page-flow--home .home-featured-products__ad-card {
    min-height: 0;
  }

  .browse-featured-products__ad-card {
    min-height: 0;
  }
}

.browse-select {
  position: relative;
  display: flex;
  min-width: 0;
}

.browse-search {
  display: flex;
  flex: 1 1 18rem;
  min-width: min(18rem, 100%);
  max-width: none;
}

.browse-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 18px;
  padding: 0.82rem 1rem;
  font-size: 0.94rem;
  font-weight: 500;
  box-shadow: none;
}

.browse-search input::placeholder {
  color: var(--muted);
  opacity: 1;
  font-size: 0.92rem;
}

.browse-select--count {
  flex: 0 0 104px;
  min-width: 104px;
}

.browse-select--facet {
  flex: 1.2 1 16rem;
  min-width: min(16rem, 100%);
}

.browse-select--sort {
  flex: 1 1 14rem;
  min-width: min(14rem, 100%);
}

.browse-select::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: 0.66;
}

.browse-select select {
  appearance: none;
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 18px;
  padding: 0.82rem 2.5rem 0.82rem 1rem;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: none;
}

.browse-select select,
.search-shell select {
  color-scheme: light;
}

.browse-select select option,
.browse-select select optgroup,
.search-shell select option,
.search-shell select optgroup {
  background: #ffffff;
  color: #16212c;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent), var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-card:hover,
.product-card--catalog:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 255, 0.32);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.shop-card__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.42rem;
  padding: 0.7rem;
  min-height: calc(var(--catalog-card-stage-height) + var(--catalog-card-badges-height) + 1.55rem);
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.shop-card__stage {
  flex: 0 0 var(--catalog-card-stage-height);
  min-height: var(--catalog-card-stage-height);
  height: var(--catalog-card-stage-height);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--catalog-card-stage-padding);
}

.shop-card__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 220ms ease;
}

.shop-card:hover .shop-card__image,
.product-card--catalog:hover .product-card__image,
.list-item:hover .list-item__image,
.detail-product-media__frame:hover .detail-product-media__image {
  transform: scale(1.03);
}

.shop-card__fallback,
.product-card__fallback,
.spotlight-card__fallback,
.list-item__fallback,
.detail-product-media__fallback {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--product-stage-ink);
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(225, 233, 241, 0.78));
}

.product-fallback__brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.product-fallback {
  width: min(100%, 19rem);
  display: grid;
  gap: 0.42rem;
  justify-items: center;
}

.product-fallback__title {
  max-width: 100%;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(10, 20, 32, 0.86);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-fallback__meta {
  margin-top: 0.45rem;
  color: rgba(10, 20, 32, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-card__badges {
  position: relative;
  inset: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  align-self: flex-start;
  gap: 0.32rem;
  padding: 0;
  min-height: var(--catalog-card-badges-height);
  min-width: 0;
  overflow: hidden;
  z-index: 1;
}

.shop-badge,
.shop-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--line);
  background: rgba(12, 16, 20, 0.76);
  color: var(--text);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-badge--primary {
  color: var(--primary);
  background: rgba(0, 209, 255, 0.14);
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem 0.95rem;
  flex: 1 1 auto;
  min-height: 0;
}

.shop-card__eyebrow {
  color: var(--muted-2);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  min-height: 1.28em;
  max-height: 1.28em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0.08em;
  transition: color 150ms ease;
}

.shop-card__subline {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  min-height: 2.7em;
  max-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
}

.shop-card__price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.shop-card__from {
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.shop-card__source {
  min-height: 2rem;
  display: flex;
  align-items: center;
}

.shop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.73rem;
  min-height: 1.2rem;
  align-items: center;
}

.shop-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 1.6rem;
  align-content: flex-start;
}

.product-card__compatibility {
  --single-line-chip-scale: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: calc(0.28rem * var(--single-line-chip-scale));
  min-width: 0;
  overflow: hidden;
  align-items: center;
}

.product-card__compatibility .product-card__compatibility-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  padding: calc(0.3rem * var(--single-line-chip-scale)) calc(0.42rem * var(--single-line-chip-scale));
  font-size: calc(0.62rem * var(--single-line-chip-scale));
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: visible;
  text-transform: none;
}

.category-card .chip-row,
.platform-card .chip-row,
.store-card .chip-row,
.category-hero .chip-row,
.product-buy-box .chip-row {
  --single-line-chip-scale: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: calc(0.28rem * var(--single-line-chip-scale));
  min-width: 0;
  overflow: hidden;
  align-items: center;
}

.category-card .chip-row .tag,
.platform-card .chip-row .tag,
.store-card .chip-row .tag,
.category-hero .chip-row .tag,
.product-buy-box .chip-row .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  padding: calc(0.3rem * var(--single-line-chip-scale)) calc(0.42rem * var(--single-line-chip-scale));
  font-size: calc(0.62rem * var(--single-line-chip-scale));
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: visible;
  text-transform: none;
}

.shop-card__chips--compatibility {
  --single-line-chip-scale: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: calc(0.26rem * var(--single-line-chip-scale));
  min-width: 0;
  overflow: hidden;
  align-items: center;
}

.shop-card__badges .shop-badge,
.shop-card__badges .shop-chip,
.shop-card__chips--compatibility .shop-chip {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-card__badges .shop-chip--compatibility,
.shop-card__chips--compatibility .shop-chip--compatibility {
  padding: calc(0.24rem * var(--single-line-chip-scale)) calc(0.38rem * var(--single-line-chip-scale));
  font-size: calc(0.6rem * var(--single-line-chip-scale));
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: none;
}

.shop-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.1rem;
  align-items: center;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent), var(--surface);
  border: 1px solid rgba(112, 133, 156, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    var(--shadow);
  overflow: hidden;
}

.spotlight-card::before {
  display: none;
}

.spotlight-card__media {
  display: flex;
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.spotlight-card__stage {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--product-stage);
  border: 1px solid rgba(112, 133, 156, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.spotlight-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.spotlight-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  flex: 1;
}

.spotlight-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0.08em;
}

.product-card .title-link,
.list-item .title-link {
  display: block;
  line-height: 1.12;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0.08em;
}

.product-card .mini {
  display: block;
  line-height: 1.34;
  white-space: normal;
  height: calc(1.34em * 2);
  min-height: calc(1.34em * 2);
  max-height: calc(1.34em * 2);
  overflow: hidden;
  text-overflow: clip;
}

.spotlight-card__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__summary {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-card__price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.spotlight-card__price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.spotlight-card__from {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.spotlight-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.spotlight-card--horizontal {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
}

.spotlight-card--horizontal .spotlight-card__media {
  padding: 1rem;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.spotlight-card--horizontal .spotlight-card__stage {
  height: 100%;
  min-height: 240px;
  aspect-ratio: auto;
}

.spotlight-card--horizontal .spotlight-card__body {
  padding: 1.1rem 1.25rem;
  gap: 0.72rem;
}

.spotlight-card--horizontal .spotlight-card__summary {
  max-width: 58ch;
}

.spotlight-card--horizontal .spotlight-card__actions {
  margin-top: 0.25rem;
}

.spotlight-card--horizontal {
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
}

.spotlight-card--horizontal .spotlight-card__media {
  padding: 0.7rem;
}

.spotlight-card--horizontal .spotlight-card__stage {
  min-height: 150px;
  padding: 0.7rem;
}

.spotlight-card--horizontal .spotlight-card__body {
  padding: 0.75rem 0.95rem;
  gap: 0.4rem;
}

.spotlight-card--horizontal .shop-card__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.spotlight-card--horizontal .spotlight-card__title {
  font-size: 1.08rem;
  line-height: 1.1;
}

.spotlight-card--horizontal .spotlight-card__summary {
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.28;
}

.spotlight-card--horizontal .spotlight-card__price-row {
  gap: 0.55rem;
}

.spotlight-card--horizontal .spotlight-card__price {
  font-size: 1.1rem;
}

.spotlight-card--horizontal .spotlight-card__from {
  font-size: 0.68rem;
}

.spotlight-card--horizontal .spotlight-card__store .store-identity {
  gap: 0.5rem;
}

.spotlight-card--horizontal .spotlight-card__store .store-identity__mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.48rem;
}

.spotlight-card--horizontal .spotlight-card__store .store-identity__name {
  font-size: 0.82rem;
}

.spotlight-card--horizontal .shop-chip {
  padding: 0.36rem 0.72rem;
  font-size: 0.72rem;
}

.spotlight-card--horizontal .button.small {
  padding: 0.5rem 0.82rem;
  font-size: 0.66rem;
}

.home-spotlight-rotator {
  position: relative;
}

.home-spotlight-rotator__stage {
  display: grid;
}

.home-spotlight-rotator__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.3rem);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 0s linear 320ms;
}

.home-spotlight-rotator__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.home-spotlight-rotator__slide > .spotlight-card {
  min-height: 100%;
}

.media-tile {
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.16), rgba(142, 164, 255, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--surface-2);
  border: 1px solid var(--line);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-tile.large {
  min-height: 380px;
}

.media-overline {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.media-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.offer-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.list-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.9rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.list-item:hover {
  border-color: rgba(0, 209, 255, 0.28);
  transform: translateY(-2px);
}

.list-item__media {
  width: 112px;
  flex: 0 0 112px;
}

.list-item__stage {
  aspect-ratio: 1 / 1;
  padding: 0.6rem;
}

.list-item__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 220ms ease;
}

.list-item__fallback {
  min-height: 100%;
}

.list-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}

.list-item__eyebrow {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-item .card-actions {
  margin-left: auto;
  align-self: flex-start;
  padding-top: 0.15rem;
}

.list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.list-meta > span:first-child {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.list-meta__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0.2rem 0.44rem;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.rail {
  position: sticky;
  top: 6.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-block h4,
.table-card h4 {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.filter-list a,
.store-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
}

.shop-card__actions,
.spotlight-card__actions,
.product-actions,
.card-actions,
.cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  justify-self: end;
  align-self: flex-end;
}

.category-card .card-actions,
.platform-card .card-actions,
.store-card .card-actions {
  margin-top: auto;
  padding-top: 0.2rem;
}

.product-card .product-actions {
  margin-top: auto;
  padding-top: 0.2rem;
  align-items: center;
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
}

.offer-table th,
.offer-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.offer-table th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.offer-table tr:last-child td {
  border-bottom: 0;
}

.detail-product-media {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex: 1 1 auto;
  min-height: 100%;
}

.detail-product-media--single {
  gap: 0.95rem;
}

.product-detail-media-panel {
  display: flex;
  align-self: stretch;
}

.detail-product-media__frame {
  min-height: 420px;
  padding: 1.5rem;
}

.detail-product-media--single .detail-product-media__frame {
  min-height: 360px;
}

.detail-product-media__image {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  display: block;
  transition: transform 220ms ease;
}

.detail-product-media--single .detail-product-media__image {
  max-height: 330px;
}

.detail-product-media__fallback {
  min-height: 360px;
}

.detail-product-media__gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-product-media__dock {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.detail-product-media__gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.2rem;
  border-top: 1px solid var(--panel-ghost);
}

.detail-product-media__gallery-count {
  color: var(--panel-muted);
  font-size: 0.74rem;
}

.detail-product-media__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 0.72rem;
}

.detail-product-media--single .detail-product-media__thumbs {
  grid-template-columns: minmax(92px, 120px);
  justify-content: start;
}

.detail-product-media__thumb {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.42rem;
  border-radius: 18px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.detail-product-media__thumb--static {
  cursor: default;
}

.detail-product-media__thumb:hover,
.detail-product-media__thumb:focus-visible,
.detail-product-media__thumb.is-active {
  border-color: rgba(0, 209, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 28px rgba(5, 10, 15, 0.16);
}

.detail-product-media__thumb-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0.35rem;
  border-radius: 14px;
  background: var(--product-stage);
  border: 1px solid var(--product-stage-line);
  overflow: hidden;
}

.detail-product-media__thumb-image {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
  display: block;
}

.detail-product-media__thumb-label {
  color: var(--panel-muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.detail-product-media__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-detail__source {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.page-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-stack--tight {
  margin: 0 0 1.15rem;
}

.hero-shortcuts {
  margin-top: 1rem;
}

.story-panel {
  margin-top: 1rem;
}

.chip-row--top-gap,
.list-meta--top-gap {
  margin-top: 1rem;
}

.info-list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

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

.about-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.about-step__index {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #48e0ff);
  color: #00131d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item__question {
  margin: 0;
}

.faq-item__answer {
  margin: 0;
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}

.footer-tools {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.1rem;
}

.footer-back-to-top {
  min-width: 0;
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
  padding: 2rem 0 2.4rem;
}

.footer h4 {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}

.footer a,
.footer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

@media (max-width: 1120px) {
  .page-flow {
    gap: 1.25rem;
  }

  .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight) {
    padding-top: 1.05rem;
  }

  .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell).page-section--major:not(.page-stack--tight) {
    padding-top: 1.28rem;
  }

  .header-inner {
    flex-wrap: wrap;
  }

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

  .header-search {
    min-width: 100%;
    order: 3;
  }

  .metric-grid,
  .category-grid,
  .platform-grid,
  .product-grid,
  .results-grid,
  .store-grid,
  .split-columns,
  .detail-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rail {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-flow {
    gap: 1rem;
  }

  .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight) {
    padding-top: 0.9rem;
  }

  .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell).page-section--major:not(.page-stack--tight) {
    padding-top: 1.08rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .metric-grid,
  .category-grid,
  .platform-grid,
  .product-grid,
  .results-grid,
  .store-grid,
  .split-columns,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .results-toolbar,
  .shop-card__price-row,
  .spotlight-card__price-row {
    flex-direction: column;
    align-items: start;
  }

  .browse-toolbar {
    align-items: stretch;
  }

  .browse-toolbar__controls {
    width: 100%;
  }

  .browse-pagination {
    align-items: center;
  }

  .browse-pagination__links {
    justify-content: center;
  }

  .browse-select,
  .browse-select--count,
  .browse-select--facet,
  .browse-select--sort {
    min-width: 100%;
  }

  .shop-card__from,
  .spotlight-card__from {
    text-align: left;
  }

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

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

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

  .header-icons {
    display: none;
  }

  .hero,
  .panel,
  .product-card,
  .category-card,
  .platform-card,
  .store-card,
  .table-card,
  .stat-card {
    padding: 1rem;
  }

  .list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .list-item__media {
    width: 100%;
    flex-basis: auto;
  }

  .list-item .card-actions {
    margin-left: 0;
    align-self: stretch;
    padding-top: 0;
  }

  .detail-product-media__frame {
    min-height: 320px;
  }

  .detail-product-media--single .detail-product-media__frame {
    min-height: 300px;
  }
}

/* Lighter storefront pass */
:root {
  --bg: #f6f1e9;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-2: #f8f3ec;
  --text: #18212b;
  --muted: #66727f;
  --muted-2: #8a95a1;
  --line: rgba(24, 33, 43, 0.08);
  --primary: #183347;
  --tertiary: #b48258;
  --success: #2e8d67;
  --warning: #b67a33;
  --danger: #c9635b;
  --shadow: 0 18px 48px rgba(24, 33, 43, 0.08);
  --product-stage: linear-gradient(180deg, #fffdf9, #f4eee5);
  --product-stage-line: rgba(24, 33, 43, 0.08);
  --product-stage-ink: #1d2732;
}

body {
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(180, 130, 88, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(24, 51, 71, 0.08), transparent 24%),
    linear-gradient(180deg, #fcf8f3 0%, #f6f1e9 44%, #f0ebe2 100%);
}

body::before {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  background-size: cover;
  opacity: 0.82;
  mask-image: none;
}

.site-header {
  background: rgba(252, 248, 243, 0.82);
  border-bottom-color: rgba(24, 33, 43, 0.06);
  box-shadow: 0 10px 28px rgba(24, 33, 43, 0.04);
}

.header-inner,
.footer-inner {
  gap: 1.6rem;
  padding: 1.05rem 0;
}

.brand-mark {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.brand-sub {
  color: var(--muted-2);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.nav-links {
  gap: 1.3rem;
}

.nav-link {
  color: var(--muted);
  padding: 0.45rem 0.1rem;
  border-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(24, 51, 71, 0.18);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--primary);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-item--has-menu {
  padding-bottom: 0.7rem;
  margin-bottom: -0.7rem;
}

.nav-item--has-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: max(100%, 16rem);
  height: 0.85rem;
  transform: translateX(-50%);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link__caret {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-0.05rem);
  opacity: 0.7;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.18rem);
  left: 50%;
  z-index: 30;
  width: max-content;
  min-width: 27rem;
  max-width: min(40rem, calc(100vw - 2rem));
  padding: 0.55rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(12, 18, 24, 0.98);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.2rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu__grid {
  display: grid;
  gap: 0.2rem;
}

.nav-menu__item,
.nav-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-radius: 0.72rem;
}

.nav-menu__item {
  padding: 0.56rem 0.66rem;
  white-space: nowrap;
}

.nav-menu__item:hover,
.nav-menu__item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.nav-menu__label {
  color: var(--text);
  flex: 1 1 auto;
  min-width: max-content;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu__meta {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
}

.nav-menu__footer {
  margin-top: 0.3rem;
  padding: 0.5rem 0.66rem 0.04rem;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 600;
  justify-content: flex-start;
  white-space: nowrap;
}

.nav-item--has-menu:hover .nav-menu,
.nav-item--has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item--has-menu:hover .nav-link__caret,
.nav-item--has-menu:focus-within .nav-link__caret {
  opacity: 1;
  transform: rotate(225deg) translate(-0.02rem, 0.05rem);
}

.header-search,
.search-shell {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(24, 33, 43, 0.08);
  box-shadow: 0 10px 30px rgba(24, 33, 43, 0.06);
}

.header-search {
  min-width: min(460px, 43vw);
  padding: 0.38rem 0.42rem 0.38rem 0.9rem;
  border-radius: 999px;
}

.header-search input,
.search-shell input,
.search-shell select {
  color: var(--text);
}

.search-shell {
  padding: 0.42rem;
  border-radius: 26px;
}

.search-shell input,
.search-shell select {
  background: transparent;
}

.search-autocomplete {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(24, 33, 43, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(24, 33, 43, 0.12);
}

.search-suggestion {
  color: var(--text);
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: rgba(24, 51, 71, 0.05);
}

.search-suggestion__type {
  color: var(--primary);
  font-weight: 700;
}

.search-suggestion__meta {
  color: var(--muted-2);
}

.header-search button,
.button {
  background: linear-gradient(180deg, #21384a, #183347);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(24, 51, 71, 0.16);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  border-color: rgba(24, 33, 43, 0.09);
  box-shadow: none;
}

.button.small {
  padding: 0.72rem 0.95rem;
  font-size: 0.78rem;
}

.page {
  padding: 2rem 0 4rem;
}

.hero,
.panel,
.product-card,
.category-card,
.platform-card,
.store-card,
.stat-card,
.table-card,
.shop-card,
.spotlight-card,
.list-item,
.media-tile {
  border-radius: 24px;
}

.hero,
.panel,
.product-card,
.category-card,
.platform-card,
.store-card,
.stat-card,
.table-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 243, 236, 0.76));
  border-color: rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.hero {
  padding: 2.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 241, 232, 0.92));
}

.hero--browse {
  padding: 4.1rem 2.2rem 2.2rem;
}

.hero::after {
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(180, 130, 88, 0.16), transparent 68%);
}

.hero--storefront {
  padding: 1.9rem;
}

.hero-storefront {
  grid-template-columns: minmax(0, 1.08fr) 390px;
  gap: 1.45rem;
}

.hero-kpi {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(24, 33, 43, 0.07);
  border-radius: 18px;
}

.eyebrow,
.section-heading .meta,
.shop-card__eyebrow,
.media-overline,
.footer h4 {
  color: var(--tertiary);
  letter-spacing: 0.16em;
}

.eyebrow {
  font-size: 0.73rem;
  margin-bottom: 0.9rem;
}

.title-xl,
.title-lg,
.title-md,
.kpi,
.hero-kpi__value,
.shop-card__price,
.spotlight-card__price,
.price {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.title-xl {
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.06em;
}

.title-lg {
  letter-spacing: -0.05em;
}

.title-md {
  font-size: 1.24rem;
}

.lede,
.section-copy,
.muted,
.mini,
.shop-card__subline,
.spotlight-card__summary,
.footer a,
.footer p {
  color: var(--muted);
}

.lede {
  line-height: 1.75;
}

.metric-grid {
  gap: 1.1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
}

.section-heading {
  margin: 0 0 1.25rem;
  align-items: center;
}

.section-heading--compact {
  margin-bottom: 0.92rem;
}

.kpi {
  font-size: 1.85rem;
}

.chip,
.tag,
.status,
.breadcrumb a,
.shop-badge,
.shop-chip {
  padding: 0.48rem 0.74rem;
  border-color: rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
}

.tag,
.status,
.breadcrumb a {
  color: var(--text);
}

.tag.primary,
.status.primary,
.shop-badge--primary {
  color: var(--primary);
  background: rgba(24, 51, 71, 0.08);
  border-color: rgba(24, 51, 71, 0.12);
}

.status.success {
  color: var(--success);
}

.status.warning {
  color: var(--warning);
}

.status.danger {
  color: var(--danger);
}

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

.product-grid,
.store-grid,
.content-grid,
.detail-grid,
.split-columns,
.footer-grid {
  gap: 1.2rem;
}

.shop-card,
.spotlight-card,
.product-card--catalog,
.list-item {
  background: rgba(255, 255, 255, 0.93);
  border-color: rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.shop-card:hover,
.product-card--catalog:hover,
.list-item:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 51, 71, 0.14);
  box-shadow: 0 18px 40px rgba(24, 33, 43, 0.12);
}

.shop-card__media,
.spotlight-card__media {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 230, 0.88));
  border-bottom-color: rgba(24, 33, 43, 0.06);
}

.shop-card__stage,
.product-card__stage,
.list-item__stage,
.detail-product-media__frame,
.spotlight-card__stage {
  border-radius: 18px;
}

.shop-card__body,
.spotlight-card__body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.shop-card__title {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.38;
  min-height: 0;
}

.shop-card__title:hover,
.shop-card__title:focus-visible,
.spotlight-card__title:hover,
.spotlight-card__title:focus-visible {
  color: var(--primary);
}

.spotlight-card__title {
  font-family: "Fraunces", serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.shop-card__price-row,
.spotlight-card__price-row {
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.48rem;
}

.shop-card__from,
.spotlight-card__from,
.shop-card__meta {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.shop-card__actions,
.spotlight-card__actions {
  gap: 0.6rem;
}

.store-identity {
  gap: 0.68rem;
}

.store-identity__mark {
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 2.45rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f6f1e9);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: 0 8px 18px rgba(24, 33, 43, 0.06);
  color: var(--primary);
  font-size: 0.75rem;
  overflow: hidden;
}

.store-identity__mark--logo {
  background: #fff;
  padding: 0.34rem;
}

.media-frame--logo {
  border-radius: inherit;
}

.media-frame__fallback--logo {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  border-radius: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.media-frame.is-fallback > .media-frame__fallback--logo {
  display: grid;
}

.store-identity__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.store-identity__name {
  font-size: 0.84rem;
  font-weight: 600;
}

.store-identity--compact .store-identity__mark {
  width: 2.05rem;
  height: 2.05rem;
  flex-basis: 2.05rem;
  border-radius: 14px;
}

.store-identity--compact .store-identity__mark--logo {
  padding: 0.28rem;
}

.store-card__identity {
  margin-bottom: 0.15rem;
}

.store-card__identity-link {
  display: inline-flex;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.store-card__summary {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.store-card__stats,
.store-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.store-card__stat,
.store-profile-panel__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-card__stat {
  padding: 0.82rem 0.9rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.store-card__stat span,
.store-card__section-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-card .chip-row--dense .tag {
  padding: 0.5rem 0.72rem;
  font-size: 0.8rem;
}

.store-card .chip-row--dense {
  flex-wrap: wrap;
  overflow: visible;
  row-gap: 0.5rem;
  align-content: flex-start;
  min-height: calc((2.2rem * 3) + (0.5rem * 2));
}

.store-card__stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text);
}

.store-card__section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-profile-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.media-tile {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 231, 0.86));
  border-color: rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.media-mark {
  color: var(--text);
}

.list-item {
  padding: 1rem;
}

.offer-table {
  border-color: rgba(24, 33, 43, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.offer-table th,
.offer-table td {
  border-bottom-color: rgba(24, 33, 43, 0.08);
}

.offer-table th {
  background: rgba(245, 239, 231, 0.88);
  color: var(--muted-2);
}

.offer-table td {
  background: rgba(255, 255, 255, 0.74);
}

.empty-state {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  border-color: rgba(24, 33, 43, 0.12);
}

.footer {
  border-top-color: rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.34);
  margin-top: 3.6rem;
}

.footer-tools {
  padding-top: 1.2rem;
}

.footer-grid {
  grid-template-columns: 1.35fr repeat(3, 1fr);
  padding: 2.3rem 0 2.7rem;
}

.footer h4 {
  color: var(--muted-2);
}

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

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

@media (max-width: 960px) {
  .hero-storefront {
    grid-template-columns: 1fr;
  }

  .spotlight-card--horizontal {
    grid-template-columns: 1fr;
  }

  .spotlight-card--horizontal .spotlight-card__media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .header-search {
    min-width: 100%;
  }

  .store-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .results-grid,
  .product-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .panel,
  .product-card,
  .category-card,
  .platform-card,
  .store-card,
  .stat-card,
  .table-card,
  .shop-card,
  .spotlight-card,
  .list-item,
  .media-tile {
    border-radius: 20px;
  }

  .store-card__stats {
    grid-template-columns: 1fr;
  }

  .spotlight-card--horizontal .spotlight-card__stage {
    min-height: 200px;
  }

  .title-xl {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

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

  .footer-tools {
    justify-content: stretch;
  }

  .footer-back-to-top {
    width: 100%;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.58rem 0.78rem 0.58rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(24, 33, 43, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 51, 71, 0.18);
  box-shadow: 0 16px 30px rgba(24, 33, 43, 0.12);
}

.theme-toggle__orb {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 1.4rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff7d6, #f1cc6e 62%, #d89c36 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 6px 14px rgba(216, 156, 54, 0.26);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.theme-toggle__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.theme-toggle[data-theme-current="dark"] .theme-toggle__orb {
  transform: translateX(0.04rem);
  background:
    radial-gradient(circle at 35% 35%, #d8e7ff, #8ea6c4 58%, #3c4f68 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 6px 14px rgba(60, 79, 104, 0.3);
}

.shop-card__offers {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.product-grid--with-ad .shop-card__offers,
.results-grid--with-ad .shop-card__offers {
  border-top: 0;
}

body[data-page]:not([data-page="home"]):not([data-page="product"]) .shop-card__offers {
  border-top: 0;
}

.shop-card__offers-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted-2);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seller-preview {
  --seller-preview-gap: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: var(--seller-preview-gap);
}

.seller-preview--detailed {
  --seller-pill-min-height: 3.3rem;
  min-height: calc(var(--seller-pill-min-height) * 3 + var(--seller-preview-gap) * 2);
}

.seller-preview--detailed .seller-pill {
  min-height: var(--seller-pill-min-height);
}

.seller-preview--compact {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.seller-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  min-width: min(100%, 14.5rem);
  padding: 0.56rem 0.68rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 33, 43, 0.09);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(24, 33, 43, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.seller-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 51, 71, 0.16);
  box-shadow: 0 14px 26px rgba(24, 33, 43, 0.1);
}

.seller-pill__identity {
  min-width: 0;
}

.seller-pill__stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seller-pill__identity .store-identity {
  gap: 0.46rem;
  min-width: 0;
  max-width: 100%;
}

.seller-pill__identity .store-identity__mark {
  width: 1.9rem;
  height: 1.9rem;
  flex-basis: 1.9rem;
  border-radius: 13px;
}

.seller-pill__identity .store-identity__mark--logo {
  padding: 0.24rem;
}

.seller-pill__identity .store-identity__name {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.76rem;
}

.seller-pill__price {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.seller-pill--detailed {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.65rem;
}

.seller-pill--detailed > * {
  min-width: 0;
}

.seller-pill--more {
  justify-content: center;
  min-width: auto;
  color: var(--primary);
  font-weight: 700;
}

.seller-preview--compact .seller-pill {
  min-width: auto;
  padding: 0.48rem 0.58rem;
}

.seller-preview--compact .seller-pill__identity .store-identity__name {
  max-width: 6.2rem;
}

:root[data-theme="dark"] {
  --bg: #0c1014;
  --surface: #151b22;
  --surface-2: #1d242c;
  --text: #f3f7fb;
  --muted: #97a5b7;
  --muted-2: #6a7787;
  --line: rgba(104, 130, 157, 0.18);
  --primary: #00d1ff;
  --tertiary: #8ea4ff;
  --success: #44d48c;
  --warning: #f7be5d;
  --danger: #ff6d6d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --product-stage: linear-gradient(180deg, rgba(23, 32, 41, 0.96), rgba(14, 20, 27, 0.98));
  --product-stage-line: rgba(148, 169, 191, 0.14);
  --product-stage-ink: #e6edf5;
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at top right, rgba(142, 189, 245, 0.12), transparent 30%),
    radial-gradient(circle at top left, rgba(59, 84, 115, 0.22), transparent 28%),
    linear-gradient(180deg, #0b1116, #0f151c 52%, #111920 100%);
  color: var(--text);
}

:root[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
}

:root[data-theme="dark"] body[data-page="category"]::before,
:root[data-theme="dark"] body[data-page="class"]::before,
:root[data-theme="dark"] body[data-page="platform"]::before,
:root[data-theme="dark"] body[data-page="store"]::before,
:root[data-theme="dark"] body[data-page="latest"]::before,
:root[data-theme="dark"] body[data-page="search"]::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

:root[data-theme="dark"] .site-header {
  background: rgba(11, 17, 22, 0.82);
  border-bottom-color: rgba(132, 151, 171, 0.14);
}

:root[data-theme="dark"] .brand-mark {
  color: var(--primary);
}

:root[data-theme="dark"] .brand-sub {
  color: rgba(73, 215, 255, 0.72);
}

:root[data-theme="dark"] .eyebrow,
:root[data-theme="dark"] .section-heading .meta,
:root[data-theme="dark"] .shop-card__eyebrow,
:root[data-theme="dark"] .media-overline {
  color: var(--primary);
}

:root[data-theme="dark"] .nav-link,
:root[data-theme="dark"] .nav-menu__meta,
:root[data-theme="dark"] .brand-sub,
:root[data-theme="dark"] .muted,
:root[data-theme="dark"] .mini,
:root[data-theme="dark"] .meta,
:root[data-theme="dark"] .shop-card__from,
:root[data-theme="dark"] .spotlight-card__from,
:root[data-theme="dark"] .shop-card__meta,
:root[data-theme="dark"] .shop-card__subline,
:root[data-theme="dark"] .search-suggestion__meta,
:root[data-theme="dark"] .offer-count,
:root[data-theme="dark"] .footer h4,
:root[data-theme="dark"] .footer p {
  color: var(--muted);
}

:root[data-theme="dark"] .hero,
:root[data-theme="dark"] .panel,
:root[data-theme="dark"] .rail,
:root[data-theme="dark"] .stat-card,
:root[data-theme="dark"] .category-card,
:root[data-theme="dark"] .platform-card,
:root[data-theme="dark"] .store-card,
:root[data-theme="dark"] .table-card,
:root[data-theme="dark"] .shop-card,
:root[data-theme="dark"] .spotlight-card,
:root[data-theme="dark"] .product-card--catalog,
:root[data-theme="dark"] .list-item,
:root[data-theme="dark"] .media-tile,
:root[data-theme="dark"] .empty-state {
  background: rgba(18, 25, 33, 0.9);
  border-color: rgba(132, 151, 171, 0.12);
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .hero-kpi {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(104, 130, 157, 0.18);
  box-shadow: none;
}

:root[data-theme="dark"] .hero-kpi__value,
:root[data-theme="dark"] .kpi {
  color: var(--text);
}

:root[data-theme="dark"] .stat-tooltip {
  border-color: rgba(117, 155, 192, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

:root[data-theme="dark"] .stat-tooltip__bubble {
  border-color: rgba(117, 155, 192, 0.2);
  background: rgba(10, 14, 20, 0.97);
  color: #f4f7fb;
}

:root[data-theme="dark"] .hero-kpi__label {
  color: var(--tertiary);
}

:root[data-theme="dark"] .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight)::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(104, 130, 157, 0.06) 8%,
    rgba(104, 130, 157, 0.28) 34%,
    rgba(0, 209, 255, 0.22) 50%,
    rgba(104, 130, 157, 0.18) 66%,
    rgba(104, 130, 157, 0.05) 92%,
    transparent 100%
  );
}

:root[data-theme="dark"] .page-flow > :where(.page-stack, .panel, .search-results-shell).page-section--browse-results:not(.page-stack--tight)::before {
  content: none;
}

:root[data-theme="dark"] .hero::after {
  background: radial-gradient(circle, rgba(0, 209, 255, 0.24), transparent 68%);
}

:root[data-theme="dark"] .header-search,
:root[data-theme="dark"] .search-shell,
:root[data-theme="dark"] .search-autocomplete {
  background: rgba(18, 25, 33, 0.94);
  border-color: rgba(132, 151, 171, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .header-search input,
:root[data-theme="dark"] .search-shell input,
:root[data-theme="dark"] .search-shell select,
:root[data-theme="dark"] .search-suggestion {
  color: var(--text);
}

:root[data-theme="dark"] .search-suggestion:hover,
:root[data-theme="dark"] .search-suggestion.is-active {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .nav-menu {
  background: rgba(11, 17, 22, 0.98);
  border-color: rgba(132, 151, 171, 0.14);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] .nav-menu__item:hover,
:root[data-theme="dark"] .nav-menu__item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .nav-menu__label,
:root[data-theme="dark"] .nav-menu__footer {
  color: var(--text);
}

:root[data-theme="dark"] .nav-menu__footer {
  color: var(--primary);
}

:root[data-theme="dark"] .header-search button,
:root[data-theme="dark"] .button {
  background: linear-gradient(135deg, var(--primary), #48e0ff);
  color: #00131d;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(132, 151, 171, 0.16);
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(132, 151, 171, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

:root[data-theme="dark"] .shop-card__media,
:root[data-theme="dark"] .spotlight-card__media {
  background: linear-gradient(180deg, rgba(18, 25, 33, 0.96), rgba(13, 19, 26, 0.98));
  border-bottom-color: rgba(132, 151, 171, 0.1);
}

:root[data-theme="dark"] .store-identity__mark,
:root[data-theme="dark"] .seller-pill,
:root[data-theme="dark"] .offer-table td,
:root[data-theme="dark"] .offer-table th {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(132, 151, 171, 0.12);
  box-shadow: none;
}

:root[data-theme="dark"] .store-identity__mark--logo {
  background: rgba(255, 255, 255, 0.92);
}

:root[data-theme="dark"] .tag,
:root[data-theme="dark"] .chip,
:root[data-theme="dark"] .shop-badge,
 :root[data-theme="dark"] .status,
:root[data-theme="dark"] .shop-chip,
:root[data-theme="dark"] .breadcrumb a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(104, 130, 157, 0.18);
  color: var(--text);
}

:root[data-theme="dark"] .tag.primary,
:root[data-theme="dark"] .chip.primary,
:root[data-theme="dark"] .status.primary,
:root[data-theme="dark"] .shop-badge--primary,
:root[data-theme="dark"] .seller-pill--more {
  background: rgba(0, 209, 255, 0.1);
  border-color: rgba(0, 209, 255, 0.22);
  color: var(--primary);
}

:root[data-theme="dark"] .shop-card__offers,
:root[data-theme="dark"] .offer-table th,
:root[data-theme="dark"] .footer {
  border-color: rgba(132, 151, 171, 0.12);
}

:root[data-theme="dark"] .footer {
  background: rgba(9, 14, 19, 0.62);
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu,
  .nav-link__caret {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .theme-toggle {
    justify-content: center;
  }

  .shop-card__offers-head {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .seller-pill {
    min-width: 100%;
  }

  .seller-pill--detailed {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

/* Anodized panel restoration */
:root {
  --panel-base: #1a1a1a;
  --panel-high: #20201f;
  --panel-top: #262626;
  --panel-page: #0e0e0e;
  --panel-text: #e5e2e1;
  --panel-muted: #97a5b7;
  --panel-ghost: rgba(72, 72, 71, 0.15);
  --panel-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

body {
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.09), transparent 28%),
    radial-gradient(circle at top left, rgba(137, 165, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #121315 0%, #0f1012 42%, var(--panel-page) 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.site-header {
  background: rgba(14, 14, 14, 0.88);
  border-bottom: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.brand-mark,
.nav-link {
  color: var(--panel-text);
}

.brand-sub {
  color: var(--panel-muted);
}

.nav-link::after {
  background: rgba(0, 209, 255, 0.26);
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--primary);
}

.header-search,
.search-shell,
.search-autocomplete,
.theme-toggle {
  background: rgba(32, 32, 31, 0.82);
  border-color: var(--panel-ghost);
  box-shadow: var(--panel-shadow);
}

.header-search input,
.search-shell input,
.search-shell select,
.search-suggestion,
.theme-toggle {
  color: var(--panel-text);
}

.search-suggestion__meta,
.theme-toggle__label {
  color: var(--panel-muted);
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: rgba(0, 209, 255, 0.08);
}

.hero,
.panel,
.product-card,
.category-card,
.platform-card,
.store-card,
.stat-card,
.table-card,
.shop-card,
.spotlight-card,
.list-item,
.media-tile,
.empty-state {
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.98), rgba(26, 26, 26, 0.96));
  border-color: transparent;
  box-shadow: var(--panel-shadow);
  color: var(--panel-text);
}

.hero::after {
  background: radial-gradient(circle, rgba(0, 209, 255, 0.18), transparent 68%);
}

.hero-kpi,
.seller-pill,
.store-identity__mark,
.offer-table td,
.offer-table th {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--panel-ghost);
  box-shadow: none;
}

.shop-card__media,
.spotlight-card__media {
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.98), rgba(32, 32, 31, 0.96));
  border-bottom-color: transparent;
}

.shop-card__stage,
.product-card__stage,
.list-item__stage,
.detail-product-media__frame,
.spotlight-card__stage {
  background: linear-gradient(180deg, rgba(10, 20, 32, 0.92), rgba(17, 24, 32, 0.86));
}

.shop-card__offers {
  gap: 0.55rem;
  padding-top: 0.65rem;
}

.shop-card__offers-head {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.seller-preview {
  --seller-preview-gap: 0.4rem;
  gap: var(--seller-preview-gap);
}

.seller-preview--detailed {
  --seller-pill-min-height: 2.8rem;
}

.seller-pill {
  padding: 0.42rem 0.54rem;
  min-width: min(100%, 12.8rem);
  border-radius: 14px;
}

.seller-pill__identity .store-identity__mark {
  width: 1.55rem;
  height: 1.55rem;
  flex-basis: 1.55rem;
}

.seller-pill__identity .store-identity__name {
  max-width: 7rem;
  font-size: 0.72rem;
}

.seller-pill__price {
  font-size: 0.72rem;
}

.seller-pill__stock .status {
  padding: 0.22rem 0.42rem;
  font-size: 0.61rem;
  letter-spacing: 0.04em;
}

.title-xl,
.title-lg,
.title-md,
.kpi,
.hero-kpi__value,
.price,
.shop-card__price,
.spotlight-card__price,
.media-mark {
  color: var(--panel-text);
}

.eyebrow,
.section-heading .meta,
.shop-card__eyebrow,
.media-overline,
.footer h4,
.search-suggestion__type {
  color: var(--primary);
}

.lede,
.section-copy,
.muted,
.mini,
.meta,
.shop-card__subline,
.spotlight-card__summary,
.shop-card__meta,
.shop-card__from,
.spotlight-card__from,
.offer-count,
.footer a,
.footer p,
.hero-kpi__label {
  color: var(--panel-muted);
}

.chip,
.tag,
.status,
.breadcrumb a,
.shop-badge,
.shop-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--panel-ghost);
  color: var(--panel-text);
}

.tag.primary,
.status.primary,
.shop-badge--primary,
.seller-pill--more {
  background: rgba(0, 209, 255, 0.1);
  border-color: rgba(0, 209, 255, 0.22);
  color: var(--primary);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--panel-text);
  border-color: var(--panel-ghost);
}

.shop-card__actions .button.small,
.product-actions .button.small,
.card-actions .button.small {
  padding: 0.54rem 0.78rem;
  font-size: 0.72rem;
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
}

.theme-toggle__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.theme-toggle__icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.theme-toggle[data-theme-current="dark"] .theme-toggle__icon {
  color: var(--warning);
}

.theme-toggle[data-theme-current="light"] .theme-toggle__icon {
  color: var(--primary);
}

.store-identity__mark--logo {
  background: rgba(255, 255, 255, 0.92);
}

.offer-table th {
  color: var(--panel-muted);
}

.offer-table td {
  color: var(--panel-text);
}

.footer {
  border-top: 0;
  background: rgba(14, 14, 14, 0.88);
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.1), transparent 28%),
    radial-gradient(circle at top left, rgba(137, 165, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #111418 0%, #0f1012 42%, #0c1014 100%);
}

:root[data-theme="light"] {
  --panel-page: #e9eef3;
  --panel-base: #f4f7fa;
  --panel-high: #ffffff;
  --panel-top: #ffffff;
  --panel-text: #16212c;
  --panel-muted: #617081;
  --panel-ghost: rgba(22, 33, 44, 0.08);
  --panel-shadow: 0 18px 40px rgba(18, 24, 32, 0.1);
  --primary: #00bce8;
  --tertiary: #5878dd;
  --warning: #d7952a;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at top right, rgba(0, 188, 232, 0.12), transparent 24%),
    radial-gradient(circle at top left, rgba(88, 120, 221, 0.08), transparent 20%),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f7 46%, #e7edf2 100%);
}

:root[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(17, 24, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 32, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 88%);
}

:root[data-theme="light"] body[data-page="category"]::before,
:root[data-theme="light"] body[data-page="class"]::before,
:root[data-theme="light"] body[data-page="platform"]::before,
:root[data-theme="light"] body[data-page="store"]::before,
:root[data-theme="light"] body[data-page="latest"]::before,
:root[data-theme="light"] body[data-page="search"]::before {
  background-image: linear-gradient(90deg, rgba(17, 24, 32, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

:root[data-theme="dark"] body[data-page]:not([data-page="home"]):not([data-page="product"])::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

:root[data-theme="dark"] body[data-page]:not([data-page="home"]):not([data-page="product"]) {
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(137, 165, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #111418 0%, #101318 26%, #0f1216 58%, #0c1014 100%);
}

:root[data-theme="light"] body[data-page]:not([data-page="home"]):not([data-page="product"])::before {
  background-image: linear-gradient(90deg, rgba(17, 24, 32, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

body[data-page]:not([data-page="home"]):not([data-page="product"])::before {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  -webkit-mask-image: none;
  mask-image: none;
}

:root[data-theme="light"] body[data-page]:not([data-page="home"]):not([data-page="product"]) {
  background:
    radial-gradient(circle at top right, rgba(0, 188, 232, 0.1), transparent 22%),
    radial-gradient(circle at top left, rgba(88, 120, 221, 0.07), transparent 18%),
    linear-gradient(180deg, #f8fbfd 0%, #f1f5f8 30%, #ebf0f4 62%, #e7edf2 100%);
}

:root[data-theme="light"] .site-header {
  background: rgba(248, 251, 253, 0.88);
  box-shadow: 0 14px 34px rgba(18, 24, 32, 0.06);
}

:root[data-theme="light"] .brand-mark,
:root[data-theme="light"] .nav-link,
:root[data-theme="light"] .nav-menu__label {
  color: var(--panel-text);
}

:root[data-theme="light"] .brand-sub {
  color: var(--panel-muted);
}

:root[data-theme="light"] .nav-link::after {
  background: rgba(0, 188, 232, 0.22);
}

:root[data-theme="light"] .nav-link.is-active,
:root[data-theme="light"] .nav-link:hover {
  color: #0d4157;
}

:root[data-theme="light"] .header-search,
:root[data-theme="light"] .search-shell,
:root[data-theme="light"] .search-autocomplete,
:root[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--panel-ghost);
  box-shadow: var(--panel-shadow);
}

:root[data-theme="light"] .header-search input,
:root[data-theme="light"] .search-shell input,
:root[data-theme="light"] .search-shell select,
:root[data-theme="light"] .search-suggestion,
:root[data-theme="light"] .theme-toggle {
  color: var(--panel-text);
}

:root[data-theme="light"] .search-suggestion__meta {
  color: var(--panel-muted);
}

:root[data-theme="light"] .search-suggestion:hover,
:root[data-theme="light"] .search-suggestion.is-active {
  background: rgba(0, 188, 232, 0.08);
}

:root[data-theme="light"] .header-search,
:root[data-theme="light"] .search-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.95));
  border-color: rgba(13, 93, 121, 0.16);
  box-shadow:
    0 18px 34px rgba(13, 93, 121, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .header-search input::placeholder,
:root[data-theme="light"] .search-shell input::placeholder {
  color: rgba(39, 78, 97, 0.54);
}

:root[data-theme="light"] .header-search:focus-within,
:root[data-theme="light"] .search-shell:focus-within {
  border-color: rgba(0, 188, 232, 0.28);
  box-shadow:
    0 22px 40px rgba(13, 93, 121, 0.1),
    0 0 0 1px rgba(0, 188, 232, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

:root[data-theme="light"] .nav-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--panel-ghost);
  box-shadow: var(--panel-shadow);
}

:root[data-theme="light"] .nav-menu__item:hover,
:root[data-theme="light"] .nav-menu__item:focus-visible {
  background: rgba(0, 188, 232, 0.08);
}

:root[data-theme="light"] .nav-menu__meta {
  color: var(--panel-muted);
}

:root[data-theme="light"] .nav-menu__footer {
  color: #0d5d79;
}

:root[data-theme="light"] .hero,
:root[data-theme="light"] .panel,
:root[data-theme="light"] .product-card,
:root[data-theme="light"] .category-card,
:root[data-theme="light"] .platform-card,
:root[data-theme="light"] .store-card,
:root[data-theme="light"] .stat-card,
:root[data-theme="light"] .table-card,
:root[data-theme="light"] .shop-card,
:root[data-theme="light"] .spotlight-card,
:root[data-theme="light"] .list-item,
:root[data-theme="light"] .media-tile,
:root[data-theme="light"] .empty-state {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.96));
  border-color: transparent;
  box-shadow: var(--panel-shadow);
  color: var(--panel-text);
}

:root[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(0, 188, 232, 0.14), transparent 68%);
}

:root[data-theme="light"] .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight)::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(13, 93, 121, 0.04) 8%,
    rgba(13, 93, 121, 0.14) 34%,
    rgba(0, 188, 232, 0.18) 50%,
    rgba(13, 93, 121, 0.1) 66%,
    rgba(13, 93, 121, 0.04) 92%,
    transparent 100%
  );
}

:root[data-theme="light"] .page-flow > :where(.page-stack, .panel, .search-results-shell).page-section--browse-results:not(.page-stack--tight)::before {
  content: none;
}

body[data-page]:not([data-page="home"]) .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight)::before {
  content: none;
}

:root[data-theme="light"] .hero-kpi,
:root[data-theme="light"] .seller-pill,
:root[data-theme="light"] .store-identity__mark,
:root[data-theme="light"] .offer-table td,
:root[data-theme="light"] .offer-table th {
  background: rgba(238, 244, 248, 0.98);
  border-color: var(--panel-ghost);
  box-shadow: none;
}

:root[data-theme="light"] .shop-card__media,
:root[data-theme="light"] .spotlight-card__media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 248, 0.96));
  border-bottom-color: transparent;
}

:root[data-theme="light"] .shop-card__stage,
:root[data-theme="light"] .product-card__stage,
:root[data-theme="light"] .list-item__stage,
:root[data-theme="light"] .detail-product-media__frame,
:root[data-theme="light"] .spotlight-card__stage {
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(240, 245, 249, 0.96));
}

:root[data-theme="light"] .title-xl,
:root[data-theme="light"] .title-lg,
:root[data-theme="light"] .title-md,
:root[data-theme="light"] .kpi,
:root[data-theme="light"] .hero-kpi__value,
:root[data-theme="light"] .price,
:root[data-theme="light"] .shop-card__price,
:root[data-theme="light"] .spotlight-card__price,
:root[data-theme="light"] .media-mark {
  color: var(--panel-text);
}

:root[data-theme="light"] .eyebrow,
:root[data-theme="light"] .section-heading .meta,
:root[data-theme="light"] .shop-card__eyebrow,
:root[data-theme="light"] .media-overline,
:root[data-theme="light"] .footer h4,
:root[data-theme="light"] .search-suggestion__type {
  color: #0d5d79;
}

:root[data-theme="light"] .lede,
:root[data-theme="light"] .section-copy,
:root[data-theme="light"] .muted,
:root[data-theme="light"] .mini,
:root[data-theme="light"] .meta,
:root[data-theme="light"] .shop-card__subline,
:root[data-theme="light"] .spotlight-card__summary,
:root[data-theme="light"] .shop-card__meta,
:root[data-theme="light"] .shop-card__from,
:root[data-theme="light"] .spotlight-card__from,
:root[data-theme="light"] .offer-count,
:root[data-theme="light"] .footer a,
:root[data-theme="light"] .footer p,
:root[data-theme="light"] .hero-kpi__label {
  color: var(--panel-muted);
}

:root[data-theme="light"] .stat-tooltip {
  border-color: rgba(13, 93, 121, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--panel-muted);
}

:root[data-theme="light"] .stat-tooltip__bubble {
  border-color: rgba(13, 93, 121, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: var(--panel-text);
  box-shadow: 0 18px 42px rgba(26, 46, 69, 0.14);
}

:root[data-theme="light"] .chip,
:root[data-theme="light"] .tag,
:root[data-theme="light"] .status,
:root[data-theme="light"] .breadcrumb a,
:root[data-theme="light"] .shop-badge,
:root[data-theme="light"] .shop-chip {
  background: rgba(235, 242, 247, 0.95);
  border-color: var(--panel-ghost);
  color: var(--panel-text);
}

:root[data-theme="light"] .tag.primary,
:root[data-theme="light"] .status.primary,
:root[data-theme="light"] .shop-badge--primary,
:root[data-theme="light"] .seller-pill--more {
  background: rgba(0, 188, 232, 0.1);
  border-color: rgba(0, 188, 232, 0.2);
  color: #0d5d79;
}

:root[data-theme="light"] .header-search button,
:root[data-theme="light"] .button {
  background: linear-gradient(135deg, #69daff, #00cffc);
  color: #07213a;
  box-shadow: 0 14px 28px rgba(0, 188, 232, 0.16);
}

:root[data-theme="light"] .button.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--panel-text);
  border-color: var(--panel-ghost);
  box-shadow: none;
}

:root[data-theme="light"] .theme-toggle__icon {
  color: #0d5d79;
}

:root[data-theme="light"] .theme-toggle[data-theme-current="dark"] .theme-toggle__icon {
  color: #d7952a;
}

:root[data-theme="light"] .theme-toggle[data-theme-current="light"] .theme-toggle__icon {
  color: #0d5d79;
}

:root[data-theme="light"] .store-identity__mark--logo {
  background: rgba(255, 255, 255, 0.98);
}

:root[data-theme="light"] .offer-table th {
  color: var(--panel-muted);
}

:root[data-theme="light"] .offer-table td {
  color: var(--panel-text);
}

:root[data-theme="light"] .footer {
  background: rgba(241, 246, 249, 0.92);
}

/* Product detail buy box polish */
.hero-storefront--solo .hero-storefront__content {
  max-width: 100%;
}

.hero-storefront__title {
  font-size: clamp(2.5rem, 4.8vw, 4.55rem);
  white-space: nowrap;
}

.product-buy-box {
  gap: 1rem;
}

.product-buy-box__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-buy-box__status-badge,
.product-buy-box__status-badge--fixed {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.product-buy-box__summary,
.product-buy-box__note {
  margin: 0;
}

.product-buy-box__price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.product-buy-box__price-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.28rem;
  color: var(--panel-muted);
  font-size: 0.82rem;
  text-align: right;
}

.product-buy-box__best-offer {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.product-buy-box__best-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-buy-box__best-offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--panel-muted);
  font-size: 0.8rem;
}

.buy-box-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.buy-box-fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.82rem 0.92rem;
  border-radius: 18px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
}

.buy-box-fact span {
  color: var(--panel-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buy-box-fact strong {
  color: var(--panel-text);
  font-size: 0.94rem;
  font-weight: 700;
}

.product-buy-box__note {
  color: var(--panel-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.compatibility-summary {
  margin: 0;
}

.compatibility-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.72rem;
  margin-top: 0.95rem;
}

.compatibility-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.82rem 0.92rem;
  border-radius: 18px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
}

.compatibility-stat span {
  color: var(--panel-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compatibility-stat strong {
  color: var(--panel-text);
  font-size: 1rem;
  font-weight: 700;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.72rem;
  margin-top: 0.95rem;
}

.compatibility-pill {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.compatibility-pill:hover,
.compatibility-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 209, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(0, 209, 255, 0.05);
}

.compatibility-pill strong {
  color: var(--panel-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.compatibility-pill span {
  color: var(--panel-muted);
  font-size: 0.78rem;
}

.product-detail-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.72rem;
  margin-top: 0.95rem;
}

.product-detail-snapshot-reserved-copy {
  min-height: calc(1.58em * 2);
  margin-top: 0.2rem;
}

.product-detail-snapshot-item {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  padding: 0.88rem 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
}

.product-detail-snapshot-item span {
  color: var(--panel-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-snapshot-item strong {
  color: var(--panel-text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

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

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

.compatibility-pill--static {
  cursor: default;
}

.compatibility-pill--static:hover,
.compatibility-pill--static:focus-visible {
  transform: none;
  border-color: var(--panel-ghost);
  box-shadow: none;
}

.compatibility-hints {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  margin-top: 0.95rem;
}

.product-detail-fitment-split > .panel {
  display: flex;
  flex-direction: column;
}

.product-detail-fitment-split .compatibility-summary {
  min-height: calc(1.58em * 2);
  margin-top: 0.2rem;
}

.product-detail-fitment-split .compatibility-hints,
.product-detail-fitment-split .product-detail-snapshot-tail {
  margin-top: auto;
}

.product-detail-fitment-split .compatibility-hints {
  padding-top: 0.95rem;
}

.product-detail-snapshot-tail {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.product-detail-snapshot-tail-reserved-label {
  min-height: calc((0.82rem * 1.5) + 0.48rem);
}

.product-detail-snapshot-grid--tail {
  margin-top: 0;
}

.compare-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
}

.offer-card--best {
  border-color: rgba(0, 209, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(0, 209, 255, 0.05);
}

.offer-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.offer-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.offer-card__price {
  color: var(--panel-text);
  font-family: "Fraunces", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  white-space: nowrap;
}

.offer-card__seller {
  min-height: 2.2rem;
}

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

.offer-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  padding: 0.78rem 0.85rem;
  border-radius: 16px;
  border: 1px solid var(--panel-ghost);
  background: rgba(255, 255, 255, 0.04);
}

.offer-card__meta-item span {
  color: var(--panel-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card__meta-item strong {
  color: var(--panel-text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.offer-card__meta-value--availability,
.offer-card__meta-value--updated,
.buy-box-fact__value--availability,
.buy-box-fact__value--updated,
.product-buy-box__best-offer-updated {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: auto;
}

:root[data-theme="light"] .product-buy-box__best-offer,
:root[data-theme="light"] .buy-box-fact,
:root[data-theme="light"] .offer-card,
:root[data-theme="light"] .offer-card__meta-item,
:root[data-theme="light"] .category-hero--homepage,
:root[data-theme="light"] .category-media__image {
  background: rgba(238, 244, 248, 0.92);
}

.hero-storefront__title,
.section-heading .title-lg,
.section-heading .title-md {
  white-space: nowrap !important;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  line-height: 1.06;
}

.section-heading .title-lg {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.section-heading .title-md {
  font-size: clamp(1rem, 1.55vw, 1.3rem);
}

@media (max-width: 900px) {
  .product-buy-box__header,
  .product-buy-box__price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-buy-box__price-meta {
    align-items: flex-start;
    text-align: left;
  }

  .buy-box-facts,
  .offer-card__meta-grid,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

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

  .category-hero__visual {
    justify-content: stretch;
  }

  .category-media__stage--hero {
    min-height: 240px;
  }
}

/* Search visibility polish */
:root[data-theme="dark"] .header-search,
:root[data-theme="dark"] .search-shell {
  background: linear-gradient(180deg, rgba(44, 44, 43, 0.98), rgba(31, 31, 30, 0.96));
  border-color: rgba(126, 171, 205, 0.22);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] .header-search input,
:root[data-theme="dark"] .search-shell input,
:root[data-theme="dark"] .search-shell select {
  color: rgba(243, 247, 251, 0.98);
}

:root[data-theme="dark"] .browse-select select,
:root[data-theme="dark"] .search-shell select {
  background: rgba(24, 31, 40, 0.96);
  border-color: rgba(243, 247, 251, 0.18);
  color: rgba(243, 247, 251, 0.98);
  color-scheme: dark;
}

:root[data-theme="dark"] .browse-select select option,
:root[data-theme="dark"] .browse-select select optgroup,
:root[data-theme="dark"] .search-shell select option,
:root[data-theme="dark"] .search-shell select optgroup {
  background: #182028;
  color: #f3f7fb;
}

:root[data-theme="dark"] .header-search input::placeholder,
:root[data-theme="dark"] .search-shell input::placeholder {
  color: rgba(210, 221, 232, 0.64);
}

:root[data-theme="dark"] .header-search:focus-within,
:root[data-theme="dark"] .search-shell:focus-within {
  border-color: rgba(71, 209, 255, 0.38);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(71, 209, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 1600px), (max-width: 1920px) and (max-height: 1280px) {
  :root {
    --container: 1160px;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    --catalog-card-stage-height: clamp(184px, 17vw, 268px);
    --catalog-card-badges-height: 2.4rem;
  }

  .page-flow {
    gap: 1.22rem;
  }

  .page-flow--home {
    gap: 1.02rem;
  }

  .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell):not(.page-stack--tight) {
    padding-top: 1rem;
  }

  .page-flow > :where(.page-stack, .content-grid, .detail-grid, .split-columns, .store-profile-grid, .panel, .category-grid, .platform-grid, .store-grid, .search-results-shell).page-section--major:not(.page-stack--tight) {
    padding-top: 1.24rem;
  }

  .page-flow--home > .home-hero {
    margin-bottom: 0.15rem;
  }

  .page-flow--home > .home-stats {
    margin-bottom: 0;
  }

  .page-flow--home > .home-section--shelf:not(.page-stack--tight) {
    padding-top: 0.82rem;
  }

  .page-flow--home > .home-section--major:not(.page-stack--tight) {
    padding-top: 1.08rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .header-inner,
  .footer-inner {
    gap: 0.9rem;
    padding: 0.78rem 0;
  }

  .brand-mark {
    font-size: 1.14rem;
  }

  .brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 0.42rem 0.12rem;
  }

  .header-search {
    min-width: min(360px, 34vw);
    padding: 0.34rem 0.4rem 0.34rem 0.78rem;
  }

  .header-icon,
  .theme-toggle {
    width: 2.18rem;
    height: 2.18rem;
  }

  .page {
    padding: 1.8rem 0 3rem;
  }

  .hero {
    padding: 1.65rem;
    margin-bottom: 1.2rem;
  }

  .hero--browse {
    padding: 3rem 1.65rem 1.65rem;
  }

  .hero--storefront {
    padding: 1.35rem;
  }

  .hero-storefront {
    gap: 1rem;
  }

  .home-hero .hero-storefront__content {
    padding-top: 0.72rem;
  }

  .page-flow--home .hero-shortcuts {
    margin-top: 0.68rem;
  }

  .hero-storefront__title {
    font-size: clamp(2.15rem, 4.15vw, 3.7rem);
  }

  .lede {
    margin: 0.65rem 0 1.05rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-form {
    margin-top: 1rem;
  }

  .search-shell {
    padding: 0.38rem;
    gap: 0.42rem;
    border-radius: 22px;
  }

  .search-shell input,
  .search-shell select {
    padding: 0.78rem 0.9rem;
  }

  .button {
    padding: 0.8rem 0.96rem;
    font-size: 0.74rem;
  }

  .button.small {
    padding: 0.62rem 0.8rem;
    font-size: 0.68rem;
  }

  .hero,
  .panel,
  .product-card,
  .category-card,
  .platform-card,
  .store-card,
  .stat-card,
  .table-card,
  .shop-card,
  .spotlight-card,
  .list-item,
  .media-tile {
    border-radius: 20px;
  }

  .panel,
  .product-card,
  .category-card,
  .platform-card,
  .store-card,
  .stat-card,
  .table-card {
    padding: 0.98rem;
  }

  .stat-card {
    padding: 0.88rem 0.96rem;
  }

  .metric-grid,
  .product-grid,
  .store-grid,
  .content-grid,
  .detail-grid,
  .split-columns,
  .footer-grid,
  .results-grid {
    gap: 0.92rem;
  }

  .section-heading {
    gap: 0.8rem;
    margin: 0 0 0.78rem;
  }

  .page-flow--home .section-heading {
    margin-bottom: 0.64rem;
  }

  .section-heading--compact {
    margin-bottom: 0.62rem;
  }

  .page-flow--home .section-heading--compact {
    margin-bottom: 0.52rem;
  }

  .section-heading .meta {
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }

  .section-heading .title-lg {
    font-size: clamp(1.22rem, 1.75vw, 1.62rem);
  }

  .section-heading .title-md {
    font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  }

  .kpi {
    font-size: 1.72rem;
  }

  .page-flow--home .home-stats .stat-card {
    padding: 0.76rem 0.86rem;
  }

  .page-flow--home .home-stats .kpi {
    font-size: 1.58rem;
    margin-top: 0.26rem;
  }

  .page-flow--home .home-stats .mini {
    font-size: 0.72rem;
  }

  .mini {
    font-size: 0.76rem;
  }

  .chip,
  .tag,
  .status,
  .breadcrumb a,
  .shop-badge,
  .shop-chip {
    padding: 0.36rem 0.56rem;
    font-size: 0.68rem;
  }

  .browse-toolbar {
    gap: 0.82rem;
    padding: 0.86rem 0.92rem;
  }

  .browse-toolbar__summary {
    font-size: 0.79rem;
  }

  .browse-toolbar__controls {
    gap: 0.58rem;
  }

  .browse-select select {
    border-radius: 16px;
    padding: 0.72rem 2.3rem 0.72rem 0.88rem;
    font-size: 0.86rem;
  }

  .shop-card__media,
  .spotlight-card__media {
    padding: 0.88rem;
  }

  .shop-card__stage,
  .product-card__stage,
  .list-item__stage,
  .detail-product-media__frame,
  .spotlight-card__stage {
    border-radius: 16px;
  }

  .shop-card__body,
  .spotlight-card__body {
    padding: 0.9rem 0.92rem 0.96rem;
  }

  .shop-card__title {
    font-size: 0.95rem;
  }

  .shop-card__subline,
  .shop-card__summary,
  .shop-card__meta,
  .shop-card__from,
  .offer-count {
    font-size: 0.72rem;
  }

  .shop-card__price {
    font-size: 1.08rem;
  }

  .store-identity {
    gap: 0.56rem;
  }

  .store-identity__mark {
    width: 2.1rem;
    height: 2.1rem;
    flex-basis: 2.1rem;
    border-radius: 13px;
  }

  .store-identity__mark--logo {
    padding: 0.28rem;
  }

  .store-identity__name {
    font-size: 0.84rem;
  }

  .spotlight-card--horizontal {
    grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  }

  .spotlight-card--horizontal .spotlight-card__media {
    padding: 0.68rem;
  }

  .spotlight-card--horizontal .spotlight-card__stage {
    min-height: 138px;
    padding: 0.6rem;
  }

  .detail-product-media__thumbs {
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    gap: 0.62rem;
  }

  .spotlight-card--horizontal .spotlight-card__body {
    padding: 0.74rem 0.9rem;
    gap: 0.42rem;
  }

  .page-flow--home .category-hero--homepage {
    padding: 0.9rem 0.96rem;
  }

  .page-flow--home .home-category-carousel__slide .category-hero__content {
    padding-inline: 0.82rem 0.12rem;
  }

  .page-flow--home .category-hero--homepage .category-media__stage--hero,
  .page-flow--home .home-category-carousel__slide .category-media__stage--hero {
    min-height: 188px;
  }

  .page-flow--home .home-split-columns,
  .page-flow--home .home-stores-story {
    gap: 0.88rem;
  }

  .page-flow--home .list {
    gap: 0.64rem;
  }

  .page-flow--home .home-story-panel {
    margin-top: 0.56rem;
    padding: 0.94rem 1rem;
  }

  .page-flow--home .home-story-panel .lede {
    margin-bottom: 0.72rem;
  }

  .spotlight-card--horizontal .spotlight-card__title {
    font-size: 1rem;
  }

  .spotlight-card--horizontal .spotlight-card__summary {
    font-size: 0.74rem;
    line-height: 1.24;
  }

  .spotlight-card--horizontal .spotlight-card__price {
    font-size: 1.02rem;
  }

  .spotlight-card--horizontal .spotlight-card__from {
    font-size: 0.66rem;
  }

  .product-buy-box {
    gap: 0.82rem;
  }

  .product-buy-box__header,
  .product-buy-box__price-row,
  .product-buy-box__best-offer-row,
  .product-buy-box__best-offer-meta,
  .compare-offers-grid {
    gap: 0.75rem;
  }

  .product-buy-box__price-meta,
  .product-buy-box__note,
  .buy-box-fact,
  .offer-card__meta-item strong {
    font-size: 0.78rem;
  }
}

/* Visual polish pass */
.hero,
.panel,
.product-card,
.category-card,
.platform-card,
.store-card,
.stat-card,
.table-card,
.shop-card,
.spotlight-card,
.list-item,
.empty-state,
.search-shell,
.header-search,
.browse-toolbar {
  border-radius: 24px;
}

.hero,
.panel,
.product-card,
.category-card,
.platform-card,
.store-card,
.stat-card,
.table-card,
.shop-card,
.spotlight-card,
.list-item,
.empty-state {
  position: relative;
  overflow: hidden;
}

.hero::before,
.panel::before,
.product-card::before,
.category-card::before,
.platform-card::before,
.store-card::before,
.stat-card::before,
.table-card::before,
.shop-card::before,
.spotlight-card::before,
.list-item::before,
.empty-state::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 18%,
    rgba(0, 209, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.1) 82%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.9;
}

body[data-page]:not([data-page="home"]):not([data-page="product"]) .page-section--browse-results.panel::before {
  content: none;
}

.product-card__stage,
.shop-card__stage,
.list-item__stage,
.detail-product-media__frame,
.spotlight-card__stage,
.category-media__stage {
  border-radius: 20px;
}

.page-flow--home {
  gap: 1.42rem;
}

.page-flow--home > .home-hero,
.page-flow--home > .home-stats,
.page-flow--home > .home-section {
  isolation: isolate;
  position: relative;
  z-index: 0;
}

.page-flow--home > .home-hero.hero--autocomplete-open {
  z-index: 40;
}

.page-flow--home > .home-hero.hero--autocomplete-open,
.page-flow--home > .home-hero.hero--autocomplete-open .hero-storefront,
.page-flow--home > .home-hero.hero--autocomplete-open .hero-storefront__content {
  overflow: visible;
}

.page-flow--home > .home-stats::after,
.page-flow--home > .home-section--spotlight::after,
.page-flow--home > .home-section--shelf::after,
.page-flow--home > .home-section--major::after {
  content: "";
  position: absolute;
  inset: -0.2rem 10% auto;
  height: 82px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(0, 209, 255, 0.14), transparent 72%);
  filter: blur(26px);
  opacity: 0.32;
  pointer-events: none;
  z-index: -1;
}

.page-flow--home > .home-section--major::after {
  inset: -0.16rem 8% auto;
  height: 104px;
  opacity: 0.4;
}

.page-flow--home > .home-section--category-spotlight::after,
.page-flow--home > .home-section--hero-spotlight::after {
  display: none;
}

.page-flow--home .home-spotlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1rem;
  align-items: end;
}

.page-flow--home .home-spotlight-band .home-spotlight-rotator {
  min-width: 0;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal {
  grid-template-columns: minmax(150px, 195px) minmax(0, 1fr);
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .spotlight-card__media {
  padding: 0.62rem;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .spotlight-card__stage {
  min-height: 128px;
  padding: 0.56rem;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .spotlight-card__body {
  padding: 0.7rem 0.88rem;
  gap: 0.38rem;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .spotlight-card__summary {
  font-size: 0.72rem;
  line-height: 1.2;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .spotlight-card__price {
  font-size: 0.98rem;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .spotlight-card__from {
  font-size: 0.64rem;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .shop-chip {
  padding: 0.34rem 0.66rem;
  font-size: 0.68rem;
}

.page-flow--home .home-spotlight-band .spotlight-card--horizontal .button.small {
  padding: 0.46rem 0.76rem;
  font-size: 0.64rem;
}

.page-flow--home .home-spotlight__ad {
  width: 300px;
  justify-self: end;
  align-self: end;
  overflow: visible;
}

.page-flow--home .home-spotlight__ad .ad-slot,
.page-flow--home .home-spotlight__ad .ad-slot__frame,
.page-flow--home .home-spotlight__ad .ad-slot__body {
  width: var(--ad-slot-desktop-width);
  max-width: var(--ad-slot-desktop-width);
}

.page-flow--home .home-spotlight__ad .ad-slot {
  height: var(--ad-slot-desktop-min-height);
  margin-top: 0.95rem;
  padding-top: 0;
}

.page-flow--home .home-spotlight__ad .ad-slot__frame {
  justify-items: center;
  position: relative;
}

.page-flow--home .home-spotlight__ad .ad-slot__intro {
  top: -0.86rem;
  right: 0.38rem;
  transform: none;
}

.page-flow--home .home-spotlight__ad .ad-slot__body {
  height: var(--ad-slot-desktop-min-height);
  min-height: 250px;
  border: 1px solid var(--product-stage-line);
  background: var(--product-stage);
  overflow: hidden;
}

@media (max-width: 760px) {
  .browse-featured-products__ad-card,
  .browse-featured-products__ad-card .ad-slot,
  .browse-featured-products__ad-card .ad-slot__frame,
  .browse-featured-products__ad-card .ad-slot__body,
  .page-flow--home .home-spotlight__ad .ad-slot,
  .page-flow--home .home-spotlight__ad .ad-slot__frame,
  .page-flow--home .home-spotlight__ad .ad-slot__body {
    width: 100%;
    max-width: 100%;
  }

  .browse-featured-products__ad-card .ad-slot__body,
  .page-flow--home .home-spotlight__ad .ad-slot__body {
    height: auto;
  }
}

.home-hero {
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(142, 164, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 68%),
    var(--surface);
}

.home-hero .hero-storefront__content {
  gap: 0.16rem;
  max-width: 1120px;
}

.home-hero .hero-storefront__title {
  font-size: clamp(1.95rem, 3.9vw, 3.85rem);
  white-space: normal !important;
  text-wrap: initial;
  max-width: none;
  line-height: 0.98;
}

.home-hero .hero-storefront__title-line {
  display: block;
}

.home-hero .lede {
  max-width: 50rem;
}

@media (min-width: 960px) {
  .home-hero .hero-storefront__title-line {
    white-space: nowrap;
  }
}

.page-flow--home .hero-shortcuts {
  gap: 0.56rem;
}

.page-flow--home .home-stats .stat-card {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.14rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 62%), var(--surface);
}

.page-flow--home .section-heading {
  align-items: center;
  gap: 0.9rem 1rem;
}

.page-flow--home .section-heading > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.page-flow--home .section-heading .meta {
  letter-spacing: 0.2em;
}

.page-flow--home .section-heading .button.secondary.small {
  min-height: 2.15rem;
  padding: 0.56rem 0.88rem;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(104, 130, 157, 0.2);
}

.page-flow--home .shop-card__actions,
.page-flow--home .spotlight-card__actions,
.page-flow--home .product-actions,
.page-flow--home .card-actions {
  justify-content: flex-end;
}

.page-flow--categories .shop-card__actions,
.page-flow--categories .spotlight-card__actions,
.page-flow--categories .product-actions,
.page-flow--categories .card-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.page-flow--categories > .categories-browse-toolbar {
  align-items: center;
}

.page-flow--categories > .categories-browse-toolbar .browse-toolbar__meta {
  align-items: center;
}

.page-flow--categories > .categories-browse-toolbar .browse-toolbar__controls {
  align-items: center;
}

.page-flow--categories > .categories-browse-toolbar .browse-search input,
.page-flow--categories > .categories-browse-toolbar .browse-select select {
  line-height: 1.2;
}

.page-flow--categories .product-card .mini {
  display: block;
  line-height: 1.34;
  white-space: normal;
  height: calc(1.34em * 2);
  min-height: calc(1.34em * 2);
  max-height: calc(1.34em * 2);
  overflow: hidden;
}

.page-flow--categories .product-card .title-link {
  display: block;
  line-height: 1.16;
  white-space: nowrap;
  min-height: calc(1.16em * 1);
  max-height: calc(1.16em * 1);
  text-overflow: ellipsis;
  overflow: hidden;
}

.page-flow--categories .browse-toolbar {
  flex-wrap: wrap;
  align-items: center;
}

.page-flow--categories .browse-toolbar__controls {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  min-width: 100%;
}

.page-flow--categories .browse-search {
  flex: 1 0 16rem;
  min-width: 16rem;
}

.page-flow--categories .browse-select--count {
  flex: 0 0 6.5rem;
  min-width: 6.5rem;
}

.page-flow--categories .browse-select--facet {
  flex: 0 0 18rem;
  min-width: 18rem;
}

.page-flow--categories .browse-select--sort {
  flex: 0 0 12.5rem;
  min-width: 12.5rem;
}

.page-flow--latest .browse-toolbar {
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

.page-flow--latest .browse-toolbar__controls {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  min-width: 100%;
}

.page-flow--latest .browse-search {
  flex: 1 0 16rem;
  min-width: 16rem;
}

.page-flow--latest .browse-select--count {
  flex: 0 0 6.5rem;
  min-width: 6.5rem;
}

.page-flow--latest .browse-select--facet {
  flex: 0 0 18rem;
  min-width: 18rem;
}

.page-flow--latest .browse-select--sort {
  flex: 0 0 12.5rem;
  min-width: 12.5rem;
}

.page-flow--latest .browse-select select {
  line-height: 1.2;
}

@media (min-width: 901px) {
  .page-flow--latest .list-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-rows: auto;
    column-gap: 0.82rem;
    row-gap: 0.42rem;
    align-items: start;
  }

  .page-flow--latest .list-item__media {
    width: 88px;
    flex-basis: 88px;
    grid-column: 1;
    grid-row: 1;
  }

  .page-flow--latest .list-item__stage {
    padding: 0.45rem;
  }

  .page-flow--latest .list-body {
    min-height: 100%;
    grid-column: 2;
    grid-row: 1;
  }

  .page-flow--latest .list-item .card-actions {
    grid-column: 3;
    grid-row: 1;
    border-top: 0;
    margin-top: 0;
    margin-left: auto;
    padding-top: 0;
    justify-content: flex-end;
    align-self: end;
  }

  .page-flow--latest .list-item--no-visual {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-flow--latest .list-item--no-visual .list-body,
  .page-flow--latest .list-item--no-visual .card-actions {
    grid-row: 1;
  }

  .page-flow--latest .list-item--no-visual .list-body {
    grid-column: 1;
  }

  .page-flow--latest .list-item--no-visual .card-actions {
    grid-column: 2;
  }
}

.page-flow--latest .browse-featured-products__ad-card .ad-slot__intro {
  top: -0.65rem;
  right: 1.13rem;
}

.page-flow--latest .browse-pagination {
  margin-top: 1rem;
}

.page-flow--store .browse-toolbar {
  flex-wrap: wrap;
  align-items: center;
}

.page-flow--store .browse-toolbar__controls {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  min-width: 100%;
}

.page-flow--store .browse-search {
  flex: 1 0 16rem;
  min-width: 16rem;
}

.page-flow--store .browse-select--count {
  flex: 0 0 6.5rem;
  min-width: 6.5rem;
}

.page-flow--store .browse-select--facet {
  flex: 0 0 18rem;
  min-width: 18rem;
}

.page-flow--store .browse-select--sort {
  flex: 0 0 12.5rem;
  min-width: 12.5rem;
}

.page-flow--classes .browse-toolbar {
  flex-wrap: wrap;
  align-items: center;
}

.page-flow--classes .browse-toolbar__controls {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  min-width: 100%;
}

.page-flow--classes .browse-search {
  flex: 1 0 16rem;
  min-width: 16rem;
}

.page-flow--classes .browse-select--count {
  flex: 0 0 6.5rem;
  min-width: 6.5rem;
}

.page-flow--classes .browse-select--facet {
  flex: 0 0 18rem;
  min-width: 18rem;
}

.page-flow--classes .browse-select--sort {
  flex: 0 0 12.5rem;
  min-width: 12.5rem;
}

.page-flow--platforms .product-card .title-link {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.16;
  white-space: normal;
  min-height: calc(1.16em * 2);
  max-height: calc(1.16em * 2);
  overflow: hidden;
  text-overflow: clip;
}

.page-flow--classes .shop-card__actions,
.page-flow--classes .spotlight-card__actions,
.page-flow--classes .product-actions,
.page-flow--classes .card-actions {
  justify-content: flex-end;
}

.page-flow--platforms .shop-card__actions,
.page-flow--platforms .spotlight-card__actions,
.page-flow--platforms .product-actions,
.page-flow--platforms .card-actions {
  justify-content: flex-end;
}

.page-flow--platforms .browse-toolbar {
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

.page-flow--platforms .browse-toolbar__controls {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  min-width: 100%;
}

.page-flow--platforms .browse-search {
  flex: 1 0 16rem;
  min-width: 16rem;
}

.page-flow--platforms .browse-select--count {
  flex: 0 0 6.5rem;
  min-width: 6.5rem;
}

.page-flow--platforms .browse-select--facet {
  flex: 0 0 18rem;
  min-width: 18rem;
}

.page-flow--platforms .browse-select--sort {
  flex: 0 0 12.5rem;
  min-width: 12.5rem;
}

.page-flow--platforms .browse-select select {
  line-height: 1.2;
}

.page-flow--platforms > .platforms-browse-toolbar {
  align-items: center;
}

.page-flow--platforms > .platforms-browse-toolbar .browse-toolbar__meta {
  align-items: center;
}

.page-flow--platforms > .platforms-browse-toolbar .browse-toolbar__controls {
  align-items: center;
}

.page-flow--platforms > .platforms-browse-toolbar .browse-search input,
.page-flow--platforms > .platforms-browse-toolbar .browse-select select {
  line-height: 1.2;
}

.page-flow--platforms > .platform-grid .platform-card .chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  align-items: stretch;
  align-content: flex-start;
  gap: 0.36rem;
}

.page-flow--platforms > .platform-grid .platform-card .chip-row .tag {
  display: grid;
  place-items: center;
  max-width: none;
  min-height: 2.32rem;
  padding: 0.38rem 0.58rem;
  font-size: 0.73rem;
  line-height: 1.16;
  white-space: normal;
  text-align: center;
}

.page-flow--platforms > .platform-grid .platform-card .title-link {
  color: var(--primary);
}

.page-flow--platforms > .platform-grid .platform-card .platform-card__chip-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.page-flow--search .browse-toolbar {
  flex-wrap: wrap;
  align-items: center;
}

.page-flow--search .browse-toolbar__meta {
  align-items: center;
}

.page-flow--search .browse-toolbar__controls {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  min-width: 100%;
}

.page-flow--search .browse-search {
  flex: 1 0 16rem;
  min-width: 16rem;
}

.page-flow--search .browse-select--count {
  flex: 0 0 6.5rem;
  min-width: 6.5rem;
}

.page-flow--search .browse-select--facet {
  flex: 0 0 18rem;
  min-width: 18rem;
}

.page-flow--search .browse-select--sort {
  flex: 0 0 12.5rem;
  min-width: 12.5rem;
}

@media (min-width: 1280px) {
  .page-flow--categories .product-grid--with-ad,
  .page-flow--classes .product-grid--with-ad,
  .page-flow--platforms .product-grid--with-ad,
  .page-flow--store .product-grid--with-ad,
  .page-flow--latest .product-grid--with-ad,
  .page-flow--search .results-grid--with-ad {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.page-flow--stores .shop-card__actions,
.page-flow--stores .spotlight-card__actions,
.page-flow--stores .product-actions,
.page-flow--stores .card-actions {
  justify-content: flex-end;
}

.page-flow--store .shop-card__actions,
.page-flow--store .spotlight-card__actions,
.page-flow--store .product-actions,
.page-flow--store .card-actions {
  justify-content: flex-end;
}

@media (min-width: 1280px) {
  .page-flow--store .results-grid--related {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.category-card__copy {
  display: grid;
  gap: 0.52rem;
  align-content: start;
}

.category-card__title {
  line-height: 1.12;
  min-height: calc(1.12em * 2);
}

.category-card__title .title-link {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card__summary {
  margin: 0;
  line-height: 1.34;
  min-height: calc(1.34em * 3);
  max-height: calc(1.34em * 3);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card__chips {
  min-height: 2.2rem;
}

.category-card__chips .tag {
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card__count {
  min-height: 2.5rem;
  display: flex;
  align-items: flex-start;
}

.shop-card__summary,
.product-card__summary {
  font-size: 0.78rem;
  line-height: 1.45;
  min-height: calc(1.45em * 3);
  max-height: calc(1.45em * 3);
}

.spotlight-card__summary {
  min-height: calc(1.65em * 3);
  max-height: calc(1.65em * 3);
}

.page-flow--home .home-section--featured-products .results-grid,
.page-flow--home .home-section--featured-categories .category-grid,
.page-flow--home .home-section--featured-classes .platform-grid,
.page-flow--home .home-section--stores-story .store-grid {
  gap: 1.06rem;
}

.page-flow--home .category-hero--homepage,
.page-flow--home .home-story-panel,
.page-flow--home .category-grid .category-card,
.page-flow--home .platform-grid .platform-card,
.page-flow--home .store-grid .store-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 46%), var(--surface);
  border-color: var(--panel-ghost, var(--line));
  box-shadow: var(--panel-shadow, var(--shadow));
}

.page-flow--home .category-hero--homepage,
.page-flow--home .home-story-panel {
  backdrop-filter: blur(12px);
}

.page-flow--home .home-category-carousel__frame.category-hero--homepage {
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-flow--home .home-category-carousel__frame.category-hero--homepage:hover,
.page-flow--home .home-category-carousel__frame.category-hero--homepage:focus-within {
  transform: none;
  box-shadow: none;
}

.page-flow--home .home-story-panel {
  margin-top: 0.72rem;
  border-top: 1px solid rgba(0, 209, 255, 0.18);
}

.page-flow--home .home-story-panel .chip-row {
  gap: 0.45rem;
}

.page-flow--home .category-grid .category-card,
.page-flow--home .platform-grid .platform-card,
.page-flow--home .store-grid .store-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-flow--home .category-grid .category-card:hover,
.page-flow--home .platform-grid .platform-card:hover,
.page-flow--home .store-grid .store-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 209, 255, 0.24);
}

.page-flow--home .home-section--platform-picks .list-item__eyebrow {
  font-size: 0.74rem;
}

.page-flow--home .home-section--platform-picks .list-meta > span:first-child {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.page-flow--home .home-section--platform-picks .list-meta {
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
}

.page-flow--home .home-section--platform-picks .list-meta > span {
  min-width: 0;
  white-space: nowrap;
}

.page-flow--home .home-section--platform-picks .list-meta > span:nth-last-child(2),
.page-flow--home .home-section--platform-picks .list-meta__compatibility {
  display: inline-block;
  min-width: 0;
  max-width: 11ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

@media (min-width: 901px) {
  .page-flow--home .home-section--platform-picks .list-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-rows: auto;
    column-gap: 0.82rem;
    row-gap: 0.42rem;
    align-items: start;
  }

  .page-flow--home .home-section--platform-picks .list-item__media {
    width: 88px;
    flex-basis: 88px;
    grid-column: 1;
    grid-row: 1;
  }

  .page-flow--home .home-section--platform-picks .list-item__stage {
    padding: 0.45rem;
  }

  .page-flow--home .home-section--platform-picks .list-body {
    min-height: 100%;
    grid-column: 2;
    grid-row: 1;
  }

  .page-flow--home .home-section--platform-picks .list-item .card-actions {
    grid-column: 3;
    grid-row: 1;
    border-top: 0;
    margin-top: 0;
    margin-left: auto;
    padding-top: 0;
    justify-content: flex-end;
    align-self: end;
  }

  .page-flow--home .home-section--platform-picks .list-item--no-visual {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-flow--home .home-section--platform-picks .list-item--no-visual .list-body,
  .page-flow--home .home-section--platform-picks .list-item--no-visual .card-actions {
    grid-row: 1;
  }

  .page-flow--home .home-section--platform-picks .list-item--no-visual .list-body {
    grid-column: 1;
  }

  .page-flow--home .home-section--platform-picks .list-item--no-visual .card-actions {
    grid-column: 2;
  }
}

.shop-card__media,
.spotlight-card__media {
  backdrop-filter: blur(8px);
}

.shop-card__body,
.spotlight-card__body {
  gap: 0.58rem;
}

.shop-card__price-row,
.spotlight-card__price-row {
  gap: 0.75rem;
}

.shop-card__actions,
.spotlight-card__actions,
.product-actions,
.card-actions {
  gap: 0.52rem;
}

.list-item {
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent), var(--surface);
}

.list-item__media {
  border-radius: 18px;
  overflow: hidden;
}

.shop-card__title,
.product-card .title-link,
.list-item .title-link,
.spotlight-card__title {
  line-height: 1.16;
  padding-top: 0.03em;
  padding-bottom: 0.12em;
}

.shop-card__price,
.spotlight-card__price,
.price {
  display: inline-block;
  line-height: 1.14;
  padding-top: 0.02em;
  padding-bottom: 0.08em;
}

.header-tools {
  gap: 0.42rem;
}

.theme-toggle {
  margin-left: -0.08rem;
}

/* Logo centering normalization */
.store-identity__mark {
  display: grid;
  place-items: center;
}

.store-identity__mark--logo {
  --identity-logo-inset: 0.18rem;
  padding: var(--identity-logo-inset);
  display: grid;
  place-items: center;
}

.media-frame--logo {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
}

.store-identity__logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.store-identity--compact .store-identity__mark--logo {
  --identity-logo-inset: 0.14rem;
}

.seller-pill__identity .store-identity__mark--logo {
  --identity-logo-inset: 0.12rem;
}

.store-identity--logo-wordmark .store-identity__mark {
  width: 2.95rem;
  height: 2.15rem;
  flex-basis: 2.95rem;
  border-radius: 14px;
}

.store-identity--logo-wordmark .store-identity__mark--logo {
  --identity-logo-inset: 0.1rem;
}

.store-identity--compact.store-identity--logo-wordmark .store-identity__mark {
  width: 2.4rem;
  height: 1.78rem;
  flex-basis: 2.4rem;
  border-radius: 12px;
}

.seller-pill__identity .store-identity--logo-wordmark .store-identity__mark {
  width: 2.18rem;
  height: 1.62rem;
  flex-basis: 2.18rem;
  border-radius: 11px;
}

.store-identity--slug-dlux-fab .store-identity__mark--logo,
.store-identity--slug-tower-hobbies .store-identity__mark--logo {
  --identity-logo-inset: 0.14rem;
}

.store-identity--slug-rock-pirates-rc .store-identity__mark--logo {
  background: linear-gradient(180deg, rgba(17, 25, 35, 0.98), rgba(10, 16, 24, 0.98));
  border-color: rgba(132, 151, 171, 0.16);
}

.store-identity--slug-hittman-fab .store-identity__mark--logo {
  --identity-logo-inset: 0.18rem;
  background: linear-gradient(180deg, rgba(17, 25, 35, 0.98), rgba(10, 16, 24, 0.98));
  border-color: rgba(132, 151, 171, 0.16);
}

:root[data-theme="dark"] .store-identity--slug-rock-pirates-rc .store-identity__mark--logo,
:root[data-theme="dark"] .store-identity--slug-hittman-fab .store-identity__mark--logo,
:root[data-theme="dark"] .store-identity--slug-castle-creations .store-identity__mark--logo,
:root[data-theme="light"] .store-identity--slug-rock-pirates-rc .store-identity__mark--logo,
:root[data-theme="light"] .store-identity--slug-hittman-fab .store-identity__mark--logo,
:root[data-theme="light"] .store-identity--slug-castle-creations .store-identity__mark--logo {
  background: linear-gradient(180deg, rgba(17, 25, 35, 0.98), rgba(10, 16, 24, 0.98));
  border-color: rgba(132, 151, 171, 0.16);
}

:root[data-theme="dark"] .store-identity--slug-castle-creations .store-identity__mark--logo,
:root[data-theme="light"] .store-identity--slug-castle-creations .store-identity__mark--logo {
  --identity-logo-inset: 0.16rem;
}

.store-hero__title {
  margin: 0 0 0.35rem;
}

.store-hero__identity-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.store-hero__title .store-identity {
  max-width: 100%;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.2rem);
}

.store-hero__title .store-identity__mark {
  width: clamp(4.9rem, 8vw, 6.35rem);
  height: clamp(4.9rem, 8vw, 6.35rem);
  flex-basis: clamp(4.9rem, 8vw, 6.35rem);
  border-radius: 28px;
}

.store-hero__title .store-identity.store-identity--logo-wordmark .store-identity__mark {
  width: clamp(6.4rem, 11vw, 8.8rem);
  height: clamp(4rem, 7vw, 5.5rem);
  flex-basis: clamp(6.4rem, 11vw, 8.8rem);
  border-radius: 22px;
}

.store-hero__title .store-identity__name {
  color: currentColor;
  font-family: "Fraunces", serif;
  font-size: clamp(3.05rem, 6vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.store-hero__identity-link:hover,
.store-hero__identity-link:focus-visible {
  color: var(--primary);
}

@media (max-width: 700px) {
  .store-hero__title .store-identity {
    align-items: flex-start;
  }

  .store-hero__title .store-identity__mark {
    width: 4.35rem;
    height: 4.35rem;
    flex-basis: 4.35rem;
    border-radius: 24px;
  }

  .store-hero__title .store-identity.store-identity--logo-wordmark .store-identity__mark {
    width: 5.55rem;
    height: 3.65rem;
    flex-basis: 5.55rem;
    border-radius: 20px;
  }
}

@media (max-width: 1440px) and (min-width: 901px) {
  .page-flow--home {
    gap: 1.22rem;
  }

  .page-flow--home > .home-section--shelf:not(.page-stack--tight) {
    padding-top: 0.88rem;
  }

  .page-flow--home > .home-section--major:not(.page-stack--tight) {
    padding-top: 1.14rem;
  }

  .page-flow--home .section-heading {
    margin-bottom: 0.78rem;
  }

  .page-flow--home .home-section--featured-products .results-grid,
  .page-flow--home .home-section--featured-categories .category-grid,
  .page-flow--home .home-section--featured-classes .platform-grid,
  .page-flow--home .home-section--stores-story .store-grid {
    gap: 0.92rem;
  }

  .page-flow--home .home-story-panel {
    margin-top: 0.5rem;
    padding: 0.98rem 1.02rem;
  }

  .page-flow--home .category-hero--homepage {
    padding: 0.94rem 0.98rem;
  }
}

@keyframes brand-loader-halo {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.95;
  }
}

@keyframes brand-loader-frame {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.16rem);
  }
}

@keyframes brand-loader-meter {
  0% {
    transform: translateX(-68%);
  }
  50% {
    transform: translateX(8%);
  }
  100% {
    transform: translateX(82%);
  }
}

.brand-loader-mark {
  --brand-loader-size: 4rem;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--brand-loader-size);
  height: var(--brand-loader-size);
  flex: 0 0 auto;
}

.brand-loader-mark__halo {
  position: absolute;
  inset: 0.18rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(0, 209, 255, 0.16), transparent 48%),
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(142, 164, 255, 0.08));
  filter: blur(0.35rem);
  animation: brand-loader-halo 1.5s ease-in-out infinite;
}

.brand-loader-mark__frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: calc(var(--brand-loader-size) - 0.8rem);
  height: calc(var(--brand-loader-size) - 0.8rem);
  border-radius: 1rem;
  background: rgba(12, 16, 20, 0.16);
  animation: brand-loader-frame 1.5s ease-in-out infinite;
}

.brand-loader-mark__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-loader-mark--compact {
  --brand-loader-size: 2.75rem;
}

.brand-loader-mark--compact .brand-loader-mark__frame {
  border-radius: 0.8rem;
}

.brand-loader-mark--hero {
  --brand-loader-size: clamp(4.25rem, 7vw, 5.4rem);
}

.boot-shell {
  position: relative;
  max-width: 34rem;
  margin: 0 auto;
  padding: clamp(2.4rem, 7vw, 4.8rem) 0.8rem clamp(1.4rem, 4vw, 2rem);
  background:
    radial-gradient(circle at top, rgba(0, 209, 255, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.boot-shell::before {
  content: none;
}

.boot-shell__frame {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.72rem;
  text-align: center;
}

.boot-shell__mark-wrap {
  margin-bottom: 0.2rem;
}

.boot-shell__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0;
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.boot-shell__headline {
  margin: 0;
  max-width: 13ch;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.boot-shell__detail {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.2vw, 1rem);
  line-height: 1.58;
}

.boot-shell__meter {
  position: relative;
  width: min(9rem, 100%);
  height: 0.22rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.boot-shell__meter-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.25), var(--primary), rgba(124, 234, 255, 0.45));
  animation: brand-loader-meter 1.6s ease-in-out infinite;
}

.boot-shell__brand {
  color: var(--muted-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

.catalog-loader-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding-block: 1.05rem;
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.006)),
    var(--surface);
}

.catalog-loader-panel::before {
  content: none;
}

.catalog-loader-panel__header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.8rem;
  width: 100%;
}

.catalog-loader-panel__mark {
  display: inline-grid;
  place-items: center;
}

.catalog-loader-panel__detail {
  position: relative;
  margin: 0;
  max-width: 36rem;
  font-size: 0.94rem;
}

.catalog-loader-panel__meter {
  position: relative;
  width: min(7.5rem, 100%);
  height: 0.22rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.catalog-loader-panel__meter-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.16), var(--primary), rgba(142, 164, 255, 0.28));
  animation: brand-loader-meter 1.6s ease-in-out infinite;
}

@media (max-width: 960px) {
  .catalog-loader-panel__header {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .boot-shell {
    padding: 1.9rem 0 1rem;
  }

  .boot-shell__headline {
    max-width: none;
  }

  .boot-shell__frame {
    justify-items: center;
    text-align: center;
  }

  .catalog-loader-panel__header {
    gap: 0.7rem;
  }
}
