:root {
  --black: #070b12;
  --ink: #f7fbff;
  --muted: #b4c3d4;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #07111c;
  --panel: #111c2a;
  --surface: #101a27;
  --surface-warm: #181423;
  --surface-blue: #0b2034;
  --white: #ffffff;
  --accent: #ff3b3b;
  --blue: #35a8ff;
  --red: #ff3b3b;
  --gold: #ffc233;
  --green: #20c997;
  --teal: #22d3ee;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 59, 59, 0.3), transparent 24%),
    radial-gradient(circle at 92% 4%, rgba(53, 168, 255, 0.26), transparent 28%),
    linear-gradient(118deg, rgba(255, 59, 59, 0.18) 0 18%, transparent 18% 54%, rgba(53, 168, 255, 0.16) 54% 76%, transparent 76%),
    linear-gradient(160deg, #03060c 0, #07111d 36%, #150914 68%, #04121a 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

main {
  position: relative;
  isolation: isolate;
  padding-bottom: 1px;
}

main::before {
  content: "";
  position: absolute;
  inset: -90px 0 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(255, 59, 59, 0.5) 0 9%, transparent 9% 90%, rgba(53, 168, 255, 0.42) 90%),
    linear-gradient(180deg, rgba(3, 7, 14, 0.78), rgba(3, 7, 14, 0.34));
  opacity: 0.86;
  pointer-events: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 430px;
  margin: 28px auto 0;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: #111820;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(0.96);
  opacity: 0.8;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(118deg, rgba(255, 59, 59, 0.42) 0 22%, rgba(8, 19, 32, 0.64) 45%, rgba(4, 13, 21, 0.82) 100%),
    linear-gradient(90deg, rgba(4, 7, 13, 0.9), rgba(6, 13, 22, 0.58) 48%, rgba(4, 10, 16, 0.52)),
    linear-gradient(0deg, rgba(4, 7, 13, 0.72), transparent 60%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(120deg, rgba(255, 59, 59, 0.16), rgba(53, 168, 255, 0.12)),
    rgba(4, 8, 14, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.brand__logo-frame {
  display: block;
  width: 116px;
  height: 30px;
  overflow: hidden;
  border-radius: 3px;
  background: transparent;
}

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

.topbar__collections {
  flex: 1;
  max-width: 560px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cart-button,
.primary-link,
.checkout-link,
.admin-link,
.footer-admin-link,
.details-link {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(4, 20, 38, 0.24);
}

.admin-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.cart-button__count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.82rem;
}

.hero__content {
  width: min(620px, calc(100% - 40px));
  margin: clamp(28px, 6vw, 62px);
  color: #fff;
  text-align: left;
  display: grid;
  justify-items: start;
  gap: 16px;
}

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

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

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.46);
}

.hero__copy {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e7f4ff;
  background: rgba(3, 8, 15, 0.52);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero__tagline {
  margin: -8px 0 8px;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 900;
}

.hero__headline {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  overflow: visible;
  padding: 8px 0 8px;
}

.hero__line {
  display: block;
  white-space: nowrap;
  animation: hero-slide-in 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__line--primary {
  color: #ffffff;
  font-size: 0.72em;
  font-weight: 800;
  text-transform: none;
}

.hero__line--accent {
  color: transparent;
  background: linear-gradient(92deg, #ff3b3b, #ffffff 44%, #35a8ff 82%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.08em;
  font-weight: 800;
  animation-delay: 130ms;
}

.hero__motion {
  position: relative;
  z-index: 0;
  width: min(760px, 84vw);
  height: 26px;
  overflow: hidden;
  margin: -4px 0 2px;
  transform: skewX(-16deg);
}

.hero__motion span {
  position: absolute;
  inset: auto auto 9px 0;
  width: 38%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 59, 0.96), #ffffff, rgba(53, 168, 255, 0.96), transparent);
  box-shadow: 0 0 22px rgba(53, 168, 255, 0.36);
  animation: race-streak 2.6s linear infinite;
}

.hero__motion span:nth-child(2) {
  bottom: 2px;
  width: 26%;
  animation-delay: 540ms;
  opacity: 0.72;
}

.hero__motion span:nth-child(3) {
  bottom: 17px;
  width: 18%;
  animation-delay: 1.18s;
  opacity: 0.62;
}

.primary-link,
.checkout-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: #ffffff !important;
  background: #ff3b3b;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 12px 26px rgba(255, 59, 59, 0.24);
  text-shadow: none;
}

.hero .primary-link {
  min-width: 172px;
  color: #ffffff !important;
  background: linear-gradient(180deg, #ff4b3f 0%, #e3292e 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 0 0 22px rgba(255, 59, 59, 0.2);
}

.showcase {
  width: min(1180px, calc(100% - 32px));
  margin: -64px auto 34px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.24), rgba(53, 168, 255, 0.18), rgba(5, 9, 16, 0.82));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.showcase__copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #0b3557);
}

.showcase__copy h2,
.showcase__copy p {
  margin: 0;
}

.showcase__copy h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.03;
}

.showcase__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.showcase img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.collections {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 59, 59, 0.16), rgba(53, 168, 255, 0.12)),
    rgba(16, 26, 39, 0.82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.collections__intro {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 6px 8px;
}

.collections h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.collections__intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

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

.collection-card {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 59, 59, 0.12), rgba(53, 168, 255, 0.1)),
    rgba(16, 26, 39, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: auto -24px -44px auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.collection-card:hover::after,
.collection-card.is-active::after {
  opacity: 1;
}

.collection-card__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
}

.collection-card strong {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  line-height: 1.08;
  text-align: center;
}

.collection-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar__collections .collection-card {
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: none;
}

.topbar__collections .collection-card::before {
  display: none;
}

.topbar__collections .collection-card strong {
  font-size: 0.88rem;
}

.collection-card--hotwheels {
  background:
    linear-gradient(135deg, rgba(255, 59, 59, 0.32), rgba(53, 168, 255, 0.1)),
    rgba(16, 26, 39, 0.94);
}

.collection-card--figurines {
  background:
    linear-gradient(135deg, rgba(255, 194, 51, 0.24), rgba(255, 59, 59, 0.08)),
    rgba(16, 26, 39, 0.94);
}

.collection-card--printed {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.26), rgba(53, 168, 255, 0.12)),
    rgba(16, 26, 39, 0.94);
}

.collection-card.is-active {
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 59, 59, 0.62), rgba(53, 168, 255, 0.46)),
    rgba(16, 26, 39, 0.96);
}

.collection-card.is-active span {
  color: rgba(255, 255, 255, 0.86);
}

.toolbar {
  width: 100%;
  margin: 18px 0 22px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px);
  gap: 10px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.search input,
.select-label select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(3, 8, 15, 0.72);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.search input {
  padding: 0 14px;
}

.select-label select {
  padding: 0 34px 0 12px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.chip.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.catalog {
  width: min(1240px, calc(100% - 32px));
  margin: 22px auto 64px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(53, 168, 255, 0.12), rgba(255, 59, 59, 0.09), rgba(7, 11, 18, 0.76)),
    rgba(5, 10, 17, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 10px 0 4px;
}

.catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.catalog-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
  max-width: 360px;
}

.catalog-stats span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dcefff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(9, 17, 28, 0.24);
}

.section-heading .eyebrow {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(9, 17, 28, 0.22);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 23, 36, 0.98), rgba(11, 14, 24, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 168, 255, 0.46);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.product-media {
  position: relative;
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 59, 59, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(53, 168, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(53, 168, 255, 0.08)),
    #07111d;
}

.product-link {
  color: inherit;
  text-decoration: none;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: auto 18px 26px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(7px);
}

.product-photo {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 214px;
  object-fit: contain;
}

.photo-fallback {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(16, 26, 39, 0.92);
  font-weight: 800;
}

.toy-car {
  position: relative;
  width: min(260px, 78%);
  aspect-ratio: 3.1 / 1;
  transform: rotate(-3deg);
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.24));
}

.toy-car::before,
.toy-car::after {
  content: "";
  position: absolute;
}

.toy-car__body {
  position: absolute;
  inset: 28% 4% 22%;
  border-radius: 28px 48px 20px 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.32), transparent 18% 70%, rgba(0,0,0,0.16)),
    var(--car);
}

.toy-car__roof {
  position: absolute;
  left: 30%;
  top: 4%;
  width: 35%;
  height: 38%;
  border-radius: 26px 28px 6px 6px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.12)),
    var(--glass);
}

.toy-car__stripe {
  position: absolute;
  left: 13%;
  right: 18%;
  top: 43%;
  height: 8%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.toy-car__wheel {
  position: absolute;
  bottom: 8%;
  width: 24%;
  aspect-ratio: 1;
  border: 8px solid #171717;
  border-radius: 50%;
  background: radial-gradient(circle, #d7d1c7 0 26%, #777 27% 35%, #262626 36%);
}

.toy-car__wheel:first-of-type {
  left: 15%;
}

.toy-car__wheel:last-of-type {
  right: 13%;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px 16px 17px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.product-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-title-link {
  color: var(--ink);
  text-decoration: none;
}

.product-title-link:hover h3,
.details-link:hover,
.footer-admin-link:hover {
  text-decoration: underline;
}

.product-card h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.2;
}

.price {
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
  font-size: 1.2rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.meta span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #dcefff;
  font-size: 0.78rem;
  font-weight: 700;
}

.notes {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.details-link {
  justify-self: start;
  color: #8fd0ff;
  font-size: 0.94rem;
}

.add-button {
  margin-top: auto;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #ff3b3b, #ff6a3d);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(229, 57, 53, 0.22);
}

.add-button:disabled {
  background: #8f8981;
  cursor: not-allowed;
}

.cart-panel {
  position: fixed;
  z-index: 30;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(180deg, #0a1422, #151020);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

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

.cart-panel__header,
.cart-summary {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-panel__header h2 {
  margin: 0;
  font-size: 1.3rem;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cart-items {
  overflow: auto;
  padding: 8px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item h3,
.cart-item p {
  margin: 0;
}

.cart-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.remove-button {
  border: 0;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(16, 26, 39, 0.96), rgba(24, 20, 35, 0.96));
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.1rem;
}

.cart-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-link {
  width: 100%;
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 59, 59, 0.28), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(53, 168, 255, 0.26), transparent 24%),
    linear-gradient(125deg, rgba(255, 59, 59, 0.24) 0 24%, transparent 24% 49%, rgba(53, 168, 255, 0.22) 49% 74%, transparent 74%),
    linear-gradient(155deg, #050910 0, #091522 38%, #140b17 68%, #061120 100%);
}

.product-page .checkout-shell {
  width: min(1180px, calc(100% - 32px));
}

.checkout-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.checkout-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.checkout-nav .brand {
  color: var(--ink);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.checkout-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 26, 39, 0.96), rgba(24, 20, 35, 0.96));
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.checkout-panel__body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.checkout-panel h1,
.checkout-panel h2 {
  margin: 0;
}

.checkout-panel h1 {
  font-size: 2.35rem;
  line-height: 1.08;
}

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

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.field--full {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #0d1827;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.search input:focus,
.select-label select:focus {
  outline: 2px solid rgba(8, 120, 201, 0.28);
  border-color: var(--blue);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.upi-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(53, 168, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(53, 168, 255, 0.12), rgba(255, 59, 59, 0.08), rgba(16, 26, 39, 0.9));
  color: var(--ink);
}

.upi-panel strong {
  font-size: 1.05rem;
}

.upi-panel p {
  margin: 0;
  color: var(--muted);
}

.upi-panel a {
  color: var(--white);
  font-weight: 900;
}

.upi-id {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d1827;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

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

.order-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.order-line h3,
.order-line p {
  margin: 0;
}

.order-line p {
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.15rem;
}

.place-order {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #22b8cf);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 143, 105, 0.2);
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.product-detail__media,
.product-detail__info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 26, 39, 0.96), rgba(24, 20, 35, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.product-detail__media {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.product-detail__media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-detail__info {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.product-detail__info h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.product-detail__price {
  font-size: 1.8rem;
}

.detail-block {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.detail-block h2,
.detail-block p {
  margin: 0;
}

.detail-block h2 {
  font-size: 1rem;
}

.detail-block p {
  color: var(--muted);
}

.product-detail__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-login {
  max-width: 560px;
  margin: 0 auto;
}

.admin-products {
  display: grid;
  gap: 12px;
}

.admin-product {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.admin-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface-blue);
}

.admin-product h3,
.admin-product p {
  margin: 0;
}

.admin-product p {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-logout {
  justify-self: start;
}

.scrim {
  position: fixed;
  z-index: 20;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.empty-state {
  padding: 28px;
  border: 1px dashed rgba(53, 168, 255, 0.42);
  border-radius: 8px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(16, 26, 39, 0.92), rgba(24, 20, 35, 0.92));
  text-align: center;
}

footer {
  padding: 28px 18px;
  border-top: 1px solid rgba(53, 168, 255, 0.18);
  color: #dbeafe;
  background: linear-gradient(135deg, #070b12, #0b2034);
  text-align: center;
}

footer p {
  margin: 0;
}

.footer-admin-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.82rem;
}

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

@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.96);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes race-streak {
  from {
    transform: translateX(-125%);
  }

  to {
    transform: translateX(330%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__line,
  .hero__motion span {
    animation: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
  }

  .topbar__collections {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }

  .showcase {
    grid-template-columns: 1fr;
    margin-top: -44px;
  }

  .showcase img {
    min-height: 240px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 390px;
  }

  .catalog-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-stats {
    justify-content: start;
    max-width: none;
  }

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

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

  .toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  }

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

  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .product-detail__media {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: min(100% - 24px, 1180px);
    gap: 10px;
    padding: 12px 0;
  }

  .brand__logo-frame {
    width: 108px;
    height: 34px;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    min-height: 430px;
    margin-top: 18px;
    border-radius: 12px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    width: calc(100% - 32px);
    margin: 28px 16px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .cart-button {
    min-height: 42px;
    padding: 9px 12px;
  }

  .admin-link {
    min-height: 42px;
    padding: 9px 10px;
  }

  .showcase {
    width: min(100% - 24px, 1180px);
    padding: 10px;
  }

  .showcase__copy {
    padding: 18px;
  }

  .showcase img {
    min-height: 210px;
  }

  .section-heading h2 {
    font-size: 1.65rem;
  }

  .collections,
  .catalog,
  .checkout-shell {
    width: min(100% - 24px, 1180px);
  }

  .toolbar {
    width: 100%;
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalog {
    padding: 16px;
  }

  .catalog-hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .catalog-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

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

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

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

  .collection-card {
    min-height: 48px;
    padding: 9px 8px;
  }

  .topbar__collections .collection-card {
    min-height: 36px;
    padding: 7px 6px;
  }

  .topbar__collections .collection-card strong {
    font-size: 0.78rem;
  }

  .chip {
    width: 100%;
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.92rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 14px;
  }

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

  .product-media {
    height: 220px;
  }

  .product-photo {
    height: 188px;
  }

  .product-info {
    padding: 14px;
  }

  .product-topline {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .price {
    font-size: 1rem;
  }

  .notes {
    font-size: 0.92rem;
  }

  .add-button {
    min-height: 48px;
  }

  .product-detail__media {
    min-height: 320px;
  }

  .product-detail__media img {
    max-height: 310px;
  }

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

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

  .checkout-shell {
    padding: 18px 0 36px;
  }

  .checkout-nav {
    margin-bottom: 18px;
  }

  .checkout-nav .primary-link {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .checkout-panel__body {
    padding: 14px;
  }

  .checkout-panel h1 {
    font-size: 1.85rem;
  }

  .order-line {
    grid-template-columns: 1fr;
  }

  .admin-product {
    grid-template-columns: 58px 1fr;
  }

  .admin-product .remove-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }

  .brand__logo-frame {
    width: 96px;
    height: 32px;
  }
}

/* Zenzo homepage refinement v23 */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 59, 59, 0.18), transparent 24%),
    radial-gradient(circle at 92% 2%, rgba(53, 168, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #050910 0, #07111d 44%, #060b13 100%);
}

main::before {
  opacity: 0.22;
  background:
    linear-gradient(180deg, rgba(53, 168, 255, 0.14), transparent 28%),
    linear-gradient(120deg, rgba(255, 59, 59, 0.12), transparent 38%);
}

.site-header {
  background:
    linear-gradient(120deg, rgba(255, 59, 59, 0.08), rgba(53, 168, 255, 0.07)),
    rgba(5, 9, 16, 0.82);
  box-shadow: none;
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  gap: 18px;
  padding: 10px 0;
}

.brand__logo-frame {
  width: 112px;
  height: 30px;
}

.topbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.topbar__nav a,
.nav-filter {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.topbar__nav a:hover,
.nav-filter:hover,
.nav-filter.is-active {
  color: #ffffff;
  border-color: rgba(53, 168, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.nav-filter.is-active {
  box-shadow: inset 0 -2px 0 rgba(255, 59, 59, 0.72);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-search input {
  width: min(190px, 22vw);
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(2, 7, 13, 0.58);
}

.cart-button {
  min-height: 38px;
  border-radius: 999px;
}

.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: 18px;
  min-height: 390px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 59, 59, 0.1), rgba(53, 168, 255, 0.08)),
    rgba(7, 13, 22, 0.8);
}

.hero__content {
  width: auto;
  margin: 0;
  padding: clamp(22px, 4vw, 48px);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(2.6rem, 5.2vw, 5.1rem);
}

.hero__copy {
  max-width: 560px;
}

.hero__visual {
  position: relative;
  min-height: 330px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #08111d;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.18), transparent 48%),
    linear-gradient(0deg, rgba(5, 9, 16, 0.32), transparent 58%);
  pointer-events: none;
}

.hero__visual .hero__image {
  position: relative;
  inset: auto;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(1.06) contrast(1.02);
}

.hero .primary-link {
  margin-top: 4px;
}

.trust-strip,
.collections,
.catalog,
.brand-section {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip div {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  background: rgba(7, 14, 24, 0.82);
}

.trust-strip strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.collections {
  display: block;
  margin-top: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.collections .collection-card {
  display: grid;
  min-height: 260px;
  align-content: end;
  justify-content: stretch;
  padding: 0;
  border-radius: 12px;
  text-align: left;
  background: rgba(8, 16, 28, 0.92);
}

.collections .collection-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 220ms ease, opacity 220ms ease;
}

.collections .collection-card::before {
  display: none;
}

.collections .collection-card::after {
  opacity: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(3, 8, 15, 0.88)),
    linear-gradient(135deg, rgba(255, 59, 59, 0.1), rgba(53, 168, 255, 0.08));
}

.collections .collection-card span,
.collections .collection-card strong {
  z-index: 2;
  padding: 0 18px;
  text-align: left;
}

.collections .collection-card span {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
}

.collections .collection-card strong {
  padding-bottom: 18px;
  color: #8fd0ff;
}

.collections .collection-card:hover img {
  transform: scale(1.045);
  opacity: 0.9;
}

.catalog {
  margin-top: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.toolbar {
  justify-content: end;
  grid-template-columns: minmax(160px, 240px);
  margin: -58px 0 20px auto;
  width: min(240px, 100%);
}

.product-grid {
  gap: 16px;
}

.product-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(9, 17, 29, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.product-card:hover {
  border-color: rgba(53, 168, 255, 0.38);
  transform: translateY(-2px);
}

.product-media {
  height: 292px;
  background: #08111d;
}

.product-photo {
  width: 90%;
  height: 250px;
  transition: transform 220ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.meta span {
  background: rgba(255, 255, 255, 0.055);
}

.details-link {
  display: none;
}

.add-button {
  min-height: 46px;
}

.brand-section {
  margin-top: 38px;
  margin-bottom: 54px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255, 59, 59, 0.14), rgba(53, 168, 255, 0.12)),
    rgba(8, 16, 28, 0.78);
}

.brand-section h2,
.brand-section p {
  max-width: 760px;
  margin: 0;
}

.brand-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.brand-section p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  text-align: left;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 22px;
}

.footer-logo {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 0.9rem;
}

.site-footer p,
.site-footer a,
.footer-cart-link {
  display: block;
  margin: 0 0 8px;
  color: #dbeafe;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:hover,
.footer-cart-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .topbar {
    flex-wrap: wrap;
  }

  .topbar__nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .hero__visual {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .trust-strip,
  .collections .collection-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    margin: 0 0 18px;
    width: 100%;
    grid-template-columns: 1fr;
  }

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

  .product-media {
    height: 230px;
  }

  .product-photo {
    height: 196px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: min(100% - 24px, 1180px);
  }

  .topbar__actions {
    margin-left: auto;
  }

  .nav-search input {
    width: 128px;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    min-height: 0;
    padding: 12px;
  }

  .hero__content {
    width: auto;
    padding: 18px 8px 8px;
    margin: 0;
  }

  .hero__visual {
    min-height: 220px;
  }

  .trust-strip,
  .collections,
  .catalog,
  .brand-section {
    width: min(100% - 24px, 1180px);
  }

  .collections .collection-card {
    min-height: 210px;
  }

  .product-grid {
    gap: 10px;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .product-info {
    padding: 12px;
  }

  .meta span {
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Reference-inspired polish v24 */
body {
  background:
    radial-gradient(circle at 8% -4%, rgba(255, 59, 59, 0.12), transparent 22%),
    radial-gradient(circle at 94% 0%, rgba(53, 168, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #03070d 0, #07111c 42%, #03070d 100%);
}

.site-header {
  border-bottom-color: rgba(255, 59, 59, 0.6);
  background: rgba(3, 7, 13, 0.92);
}

.topbar {
  width: min(1240px, calc(100% - 32px));
  min-height: 62px;
}

.brand__logo-frame {
  width: 128px;
  height: 36px;
}

.topbar__nav {
  gap: clamp(8px, 1.5vw, 22px);
}

.nav-filter {
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.nav-filter:hover,
.nav-filter.is-active {
  border-color: transparent;
  background: transparent;
  color: #ffffff;
}

.nav-filter.is-active {
  box-shadow: inset 0 -2px 0 var(--red);
}

.nav-search input {
  width: min(250px, 24vw);
  min-height: 42px;
  border-radius: 7px;
  background: rgba(7, 13, 22, 0.9);
}

.cart-button {
  min-height: 42px;
  border-radius: 7px;
  background: rgba(8, 16, 28, 0.92);
}

.hero {
  width: 100%;
  min-height: min(570px, calc(100vh - 80px));
  margin: 0;
  padding: 0;
  border-width: 0 0 1px;
  border-color: rgba(255, 59, 59, 0.66);
  border-radius: 0;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  box-shadow: none;
  background: #03070d;
}

.hero__content {
  align-self: center;
  width: min(560px, calc(100% - 72px));
  margin-left: max(36px, calc((100vw - 1240px) / 2));
  padding: clamp(38px, 7vw, 78px) 0;
}

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

.hero h1 {
  max-width: 560px;
  font-size: clamp(3.4rem, 6.6vw, 6.8rem);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero__copy {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.76);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: #ffffff;
  background: rgba(7, 13, 22, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.secondary-link:hover {
  border-color: rgba(53, 168, 255, 0.34);
}

.hero__visual {
  min-height: inherit;
  border-radius: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #03070d 0, rgba(3, 7, 13, 0.78) 13%, rgba(3, 7, 13, 0.08) 46%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.26), rgba(3, 7, 13, 0.34));
  pointer-events: none;
}

.hero__visual::after {
  z-index: 2;
  background: linear-gradient(160deg, rgba(255, 59, 59, 0.12), transparent 30%, rgba(53, 168, 255, 0.12));
}

.hero__visual .hero__image {
  min-height: inherit;
  object-position: center;
  opacity: 0.88;
}

.trust-strip {
  width: min(1240px, calc(100% - 32px));
  margin-top: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(3, 7, 13, 0.86);
}

.trust-strip div {
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 42px);
  background: rgba(3, 7, 13, 0.88);
}

.trust-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 59, 59, 0.48);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 900;
}

.trust-strip strong,
.trust-strip span:not(.trust-icon) {
  grid-column: 2;
}

.collections,
.catalog,
.brand-section,
.footer-grid {
  width: min(1240px, calc(100% - 32px));
}

.collections,
.catalog {
  margin-top: 40px;
}

.section-heading {
  align-items: center;
}

.collections .collection-card {
  min-height: 310px;
  border-color: rgba(255, 255, 255, 0.16);
}

.collections .collection-card--hotwheels {
  border-color: rgba(255, 59, 59, 0.36);
}

.collections .collection-card--figurines,
.collections .collection-card--printed {
  border-color: rgba(53, 168, 255, 0.28);
}

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

.product-card {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(11, 18, 28, 0.96), rgba(5, 10, 17, 0.96));
}

.product-media {
  height: 230px;
}

.product-photo {
  height: 198px;
}

.product-card h3 {
  font-size: 0.92rem;
}

.price {
  font-size: 1.08rem;
}

.add-button {
  color: var(--red);
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.56);
  box-shadow: none;
}

.add-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ff3b3b, #d72635);
}

.brand-section {
  display: grid;
  min-height: 210px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 59, 59, 0.2), rgba(7, 13, 22, 0.78) 42%, rgba(53, 168, 255, 0.18)),
    rgba(7, 13, 22, 0.9);
}

.brand-section h2 {
  max-width: 540px;
}

.site-footer {
  background: linear-gradient(180deg, rgba(4, 9, 16, 0.96), #03070d);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__content {
    width: min(720px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0 28px;
  }

  .hero__visual {
    min-height: 310px;
  }

  .hero__visual::before {
    background: linear-gradient(0deg, #03070d 0, rgba(3, 7, 13, 0.04) 46%);
  }
}

@media (max-width: 768px) {
  .trust-strip div {
    padding: 18px;
  }

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

@media (max-width: 640px) {
  .hero {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .secondary-link,
  .hero .primary-link {
    width: 100%;
  }

  .trust-strip {
    width: 100%;
  }

  .collections .collection-card {
    min-height: 240px;
  }
}

/* Closer reference pass v25 */
:root {
  --zenzo-bg: #03070d;
  --zenzo-panel: #07111c;
  --zenzo-panel-2: #0a1420;
  --zenzo-border: rgba(255, 255, 255, 0.14);
  --zenzo-red: #ff3b3b;
  --zenzo-blue: #35a8ff;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 59, 59, 0.1), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(53, 168, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #03070d 0, #07111c 48%, #03070d 100%) !important;
  color: #f8fbff;
}

main::before {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 59, 59, 0.72) !important;
  background: rgba(3, 7, 13, 0.96) !important;
  backdrop-filter: blur(18px);
}

.topbar {
  width: min(1360px, calc(100% - 48px)) !important;
  min-height: 84px !important;
  padding: 0 !important;
  gap: 22px !important;
}

.brand__logo-frame {
  width: 150px !important;
  height: 48px !important;
}

.topbar__nav {
  justify-content: center !important;
  gap: clamp(18px, 3vw, 48px) !important;
}

.nav-filter {
  min-height: auto !important;
  padding: 4px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  background: transparent !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
}

.nav-filter:hover,
.nav-filter.is-active {
  color: #ffffff !important;
  box-shadow: 0 2px 0 var(--zenzo-red) !important;
}

.topbar__actions {
  gap: 12px !important;
}

.nav-search input {
  width: min(270px, 22vw) !important;
  min-height: 48px !important;
  border-radius: 7px !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(9, 18, 31, 0.92) !important;
  color: #ffffff !important;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.cart-button {
  position: relative;
  min-height: 48px !important;
  padding: 0 16px !important;
  border-radius: 7px !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(9, 18, 31, 0.92) !important;
  box-shadow: none !important;
}

.cart-button__icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1;
}

.cart-button__count {
  min-width: 20px !important;
  height: 20px !important;
  margin-left: -6px;
  background: var(--zenzo-red) !important;
  font-size: 0.72rem !important;
}

.hero {
  position: relative !important;
  width: 100% !important;
  min-height: clamp(560px, 72vh, 780px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 59, 59, 0.64) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #03070d !important;
  box-shadow: none !important;
}

.hero__visual {
  position: absolute !important;
  inset: 0 0 0 36% !important;
  min-height: 100% !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #03070d !important;
}

.hero__visual .hero__image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center right !important;
  opacity: 0.92 !important;
  filter: saturate(1.14) contrast(1.06) brightness(0.92) !important;
}

.hero__visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, #03070d 0%, rgba(3, 7, 13, 0.96) 12%, rgba(3, 7, 13, 0.46) 34%, transparent 70%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.18), rgba(3, 7, 13, 0.42)) !important;
}

.hero__visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    linear-gradient(120deg, rgba(255, 59, 59, 0.13), transparent 38%),
    linear-gradient(250deg, rgba(53, 168, 255, 0.18), transparent 42%) !important;
}

.hero__content {
  position: relative !important;
  z-index: 3 !important;
  width: min(560px, calc(100% - 64px)) !important;
  margin-left: max(54px, calc((100vw - 1360px) / 2 + 24px)) !important;
  padding: clamp(72px, 10vh, 124px) 0 !important;
  gap: 20px !important;
}

.hero .eyebrow {
  margin-bottom: 2px !important;
  color: var(--zenzo-red) !important;
  font-size: 0.9rem !important;
}

.hero h1 {
  max-width: 560px !important;
  margin: 0 !important;
  font-size: clamp(4.1rem, 7.6vw, 8.4rem) !important;
  line-height: 0.96 !important;
  font-weight: 900 !important;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.68) !important;
}

.hero h1 span {
  display: block !important;
  color: var(--zenzo-red) !important;
}

.hero__copy {
  max-width: 520px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}

.hero__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

.hero .primary-link,
.secondary-link {
  min-height: 58px !important;
  padding: 0 28px !important;
  border-radius: 8px !important;
}

.hero .primary-link {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: linear-gradient(180deg, #ff4a45, #c91f2d) !important;
  box-shadow: 0 20px 34px rgba(255, 59, 59, 0.22) !important;
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(9, 18, 31, 0.72) !important;
}

.hero__rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 3px;
  background: linear-gradient(90deg, var(--zenzo-red), transparent 42%, var(--zenzo-blue));
}

.trust-strip {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  background: rgba(3, 7, 13, 0.96) !important;
}

.trust-strip div {
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 2px 18px !important;
  padding: 32px clamp(24px, 6vw, 76px) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent !important;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-icon {
  width: 56px !important;
  height: 56px !important;
  border-color: rgba(255, 59, 59, 0.54) !important;
  color: var(--zenzo-red) !important;
  font-size: 0.78rem !important;
}

.trust-strip strong {
  color: #ffffff !important;
  font-size: 1rem !important;
}

.trust-strip span:not(.trust-icon) {
  color: rgba(255, 255, 255, 0.68) !important;
}

.collections,
.catalog,
.brand-section,
.footer-grid {
  width: min(1360px, calc(100% - 64px)) !important;
}

.collections,
.catalog {
  margin-top: 48px !important;
}

.section-heading {
  margin-bottom: 20px !important;
}

.section-heading .eyebrow {
  display: none;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem) !important;
  font-weight: 800 !important;
}

.collections .collection-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.collections .collection-card {
  min-height: 360px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
}

.collections .collection-card--hotwheels {
  border-color: rgba(255, 59, 59, 0.46) !important;
}

.collections .collection-card img {
  opacity: 0.86 !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.82);
}

.collections .collection-card::after {
  background:
    linear-gradient(180deg, transparent 20%, rgba(3, 7, 13, 0.34) 54%, rgba(3, 7, 13, 0.94)),
    linear-gradient(135deg, rgba(255, 59, 59, 0.18), transparent 44%, rgba(53, 168, 255, 0.14)) !important;
}

.collections .collection-card span {
  padding: 0 28px !important;
  font-size: 1.75rem !important;
}

.collections .collection-card strong {
  padding: 4px 28px 28px !important;
  color: var(--zenzo-red) !important;
}

.toolbar {
  margin: -62px 0 22px auto !important;
}

.product-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.98), rgba(5, 9, 15, 0.98)) !important;
  box-shadow: none !important;
}

.product-card:hover {
  border-color: rgba(255, 59, 59, 0.44) !important;
  transform: translateY(-2px) !important;
}

.product-media {
  height: 250px !important;
  background:
    radial-gradient(circle at 50% 64%, rgba(255, 59, 59, 0.16), transparent 34%),
    linear-gradient(180deg, #10151d, #05090f) !important;
}

.product-photo {
  width: 88% !important;
  height: 218px !important;
}

.product-info {
  padding: 14px !important;
  gap: 10px !important;
}

.product-card h3 {
  min-height: 42px;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}

.price {
  color: #ffffff !important;
  font-size: 1.22rem !important;
}

.meta {
  min-height: 46px;
}

.meta span {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.72rem !important;
}

.details-link {
  display: none !important;
}

.add-button {
  min-height: 48px !important;
  border: 1px solid rgba(255, 59, 59, 0.62) !important;
  border-radius: 6px !important;
  color: var(--zenzo-red) !important;
  background: rgba(255, 59, 59, 0.09) !important;
  font-size: 0 !important;
  box-shadow: none !important;
}

.add-button::after {
  content: "Add to cart";
  font-size: 0.92rem;
}

.add-button:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #ff3b3b, #bd1e2b) !important;
}

.brand-section {
  position: relative;
  min-height: 230px !important;
  margin-top: 56px !important;
  margin-bottom: 56px !important;
  padding: 44px !important;
  border-radius: 12px !important;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 59, 59, 0.22), rgba(8, 17, 28, 0.94) 34%, rgba(53, 168, 255, 0.16)),
    #07111c !important;
}

.brand-section::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04));
}

.brand-section h2 {
  max-width: 560px !important;
  color: #ffffff !important;
}

.site-footer {
  padding: 44px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #03070d !important;
}

.footer-grid {
  grid-template-columns: 1.6fr repeat(3, 1fr) !important;
}

.footer-logo {
  font-size: 1.45rem !important;
}

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

@media (max-width: 900px) {
  .topbar {
    width: min(100% - 28px, 1360px) !important;
    min-height: 74px !important;
  }

  .topbar__nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start !important;
    overflow-x: auto;
  }

  .hero__visual {
    inset: 36% 0 0 0 !important;
  }

  .hero__visual::before {
    background:
      linear-gradient(180deg, #03070d 0%, rgba(3, 7, 13, 0.74) 20%, transparent 70%),
      linear-gradient(0deg, rgba(3, 7, 13, 0.36), transparent 58%) !important;
  }

  .hero__content {
    width: min(720px, calc(100% - 40px)) !important;
    margin: 0 auto !important;
    padding-top: 48px !important;
    padding-bottom: 360px !important;
  }

  .trust-strip {
    grid-template-columns: 1fr !important;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .collections .collection-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .topbar__actions {
    width: 100%;
  }

  .nav-search {
    flex: 1;
  }

  .nav-search input {
    width: 100% !important;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.2rem) !important;
  }

  .hero__content {
    padding-bottom: 300px !important;
  }

  .collections,
  .catalog,
  .brand-section,
  .footer-grid {
    width: min(100% - 28px, 1360px) !important;
  }

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

  .product-media {
    height: 198px !important;
  }

  .product-photo {
    height: 168px !important;
  }

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

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Hero proportion repair v26 */
.hero h1,
.hero h1 span {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

.hero {
  min-height: clamp(500px, 60vh, 660px) !important;
}

.hero__visual {
  inset: 0 0 0 40% !important;
}

.hero__visual::before {
  background:
    linear-gradient(90deg, #03070d 0%, rgba(3, 7, 13, 0.96) 18%, rgba(3, 7, 13, 0.58) 44%, transparent 82%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.1), rgba(3, 7, 13, 0.42)) !important;
}

.hero__content {
  width: min(500px, calc(100% - 72px)) !important;
  margin-left: max(48px, calc((100vw - 1360px) / 2 + 24px)) !important;
  padding: clamp(58px, 8vh, 88px) 0 !important;
  gap: 18px !important;
}

.hero h1 {
  max-width: 500px !important;
  font-size: clamp(3.25rem, 4.7vw, 5.6rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.hero h1 span {
  display: block !important;
}

.hero__copy {
  max-width: 480px !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.hero .primary-link,
.secondary-link {
  min-height: 50px !important;
  padding: 0 22px !important;
}

@media (max-width: 1180px) {
  .hero__visual {
    inset: 0 0 0 46% !important;
  }

  .hero__content {
    width: min(450px, calc(100% - 54px)) !important;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem) !important;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0 !important;
  }

  .hero__visual {
    position: relative !important;
    inset: auto !important;
    height: 320px !important;
    min-height: 0 !important;
  }

  .hero__visual::before {
    background:
      linear-gradient(180deg, rgba(3, 7, 13, 0.04), rgba(3, 7, 13, 0.55)),
      linear-gradient(90deg, #03070d 0%, rgba(3, 7, 13, 0.36) 42%, transparent 78%) !important;
  }

  .hero__content {
    width: min(720px, calc(100% - 40px)) !important;
    margin: 0 auto !important;
    padding: 40px 0 28px !important;
  }

  .hero h1 {
    max-width: 620px !important;
    font-size: clamp(3rem, 9vw, 5rem) !important;
  }
}

@media (max-width: 640px) {
  .hero__content {
    width: min(100% - 28px, 720px) !important;
    padding-top: 34px !important;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem) !important;
  }

  .hero__copy {
    font-size: 0.96rem !important;
  }

  .hero__actions {
    width: 100%;
  }

  .hero .primary-link,
  .secondary-link {
    width: 100% !important;
  }

  .hero__visual {
    height: 240px !important;
  }
}

/* Compact premium storefront pass v27 */
:root {
  --page-max-width: 1440px;
  --section-gap: 64px;
  --card-gap: 16px;
}

body {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 59, 59, 0.13), transparent 22%),
    radial-gradient(circle at 92% 4%, rgba(53, 168, 255, 0.14), transparent 27%),
    linear-gradient(180deg, #03070d 0, #07111c 48%, #03070d 100%) !important;
}

.site-header {
  min-height: 0 !important;
}

.topbar {
  width: min(var(--page-max-width), calc(100% - 56px)) !important;
  min-height: 70px !important;
  display: grid !important;
  grid-template-columns: 170px minmax(420px, 1fr) minmax(260px, auto) !important;
  align-items: center !important;
  gap: 18px !important;
}

.brand__logo-frame {
  width: 136px !important;
  height: 42px !important;
  border-radius: 7px !important;
}

.topbar__nav {
  order: initial !important;
  flex-basis: auto !important;
  display: flex !important;
  justify-content: center !important;
  gap: clamp(18px, 2.6vw, 40px) !important;
  overflow: visible !important;
  white-space: nowrap !important;
}

.topbar__nav a,
.nav-filter {
  font-size: 0.86rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.nav-filter--link {
  display: inline-flex;
  align-items: center;
}

.topbar__actions {
  width: auto !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}

.nav-search input {
  width: clamp(190px, 15vw, 240px) !important;
  min-height: 40px !important;
  border-radius: 7px !important;
  font-size: 0.83rem !important;
}

.cart-button {
  min-height: 40px !important;
  padding: 0 12px !important;
  border-radius: 7px !important;
  font-size: 0.84rem !important;
}

.cart-button__icon {
  width: 16px !important;
  height: 16px !important;
  font-size: 0.78rem !important;
}

.cart-button__count {
  min-width: 18px !important;
  height: 18px !important;
  font-size: 0.66rem !important;
}

.hero {
  min-height: clamp(520px, 56vh, 620px) !important;
  max-height: 620px !important;
}

.hero__visual {
  inset: 0 0 0 39% !important;
}

.hero__visual .hero__image {
  object-position: center right !important;
  opacity: 0.9 !important;
}

.hero__visual::before {
  background:
    linear-gradient(90deg, #03070d 0%, rgba(3, 7, 13, 0.98) 14%, rgba(3, 7, 13, 0.7) 38%, rgba(3, 7, 13, 0.1) 76%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.08), rgba(3, 7, 13, 0.44)) !important;
}

.hero__visual::after {
  background:
    linear-gradient(120deg, rgba(255, 59, 59, 0.09), transparent 35%),
    linear-gradient(250deg, rgba(53, 168, 255, 0.12), transparent 42%) !important;
}

.hero__content {
  width: min(480px, calc(100% - 72px)) !important;
  padding: clamp(54px, 7vh, 78px) 0 !important;
  gap: 16px !important;
}

.hero .eyebrow {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
}

.hero h1 {
  max-width: 470px !important;
  font-size: clamp(3.1rem, 4.2vw, 5.1rem) !important;
  line-height: 0.98 !important;
}

.hero__copy {
  max-width: 455px !important;
  font-size: 0.96rem !important;
  line-height: 1.58 !important;
}

.hero__actions {
  gap: 12px !important;
}

.hero .primary-link,
.secondary-link {
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
}

.trust-strip {
  min-height: 104px !important;
}

.trust-strip div {
  min-height: 104px !important;
  padding: 20px clamp(24px, 5vw, 64px) !important;
  gap: 2px 14px !important;
}

.trust-icon {
  width: 42px !important;
  height: 42px !important;
  font-size: 0.68rem !important;
}

.trust-strip strong {
  font-size: 0.9rem !important;
}

.trust-strip span:not(.trust-icon) {
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
}

.collections,
.catalog,
.brand-section,
.footer-grid {
  width: min(var(--page-max-width), calc(100% - 56px)) !important;
}

.collections,
.catalog {
  margin-top: var(--section-gap) !important;
}

.section-heading {
  margin-bottom: 16px !important;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.4rem) !important;
}

.collections .collection-list {
  gap: 18px !important;
}

.collections .collection-card {
  min-height: 0 !important;
  aspect-ratio: 1.45 / 1 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

.collections .collection-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.82 !important;
  transition: transform 220ms ease, opacity 220ms ease !important;
}

.collections .collection-card:hover img {
  transform: scale(1.04) !important;
}

.collections .collection-card span {
  padding: 0 22px !important;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem) !important;
  line-height: 1.08 !important;
}

.collections .collection-card strong {
  padding: 4px 22px 22px !important;
  font-size: 0.84rem !important;
}

.toolbar {
  margin: -50px 0 18px auto !important;
}

.select-label select {
  min-height: 40px !important;
  border-radius: 8px !important;
  font-size: 0.84rem !important;
}

.product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: var(--card-gap) !important;
}

.product-card {
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

.product-media {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 59, 59, 0.12), transparent 34%),
    linear-gradient(180deg, #121821, #070b12) !important;
}

.product-photo {
  width: 92% !important;
  height: 92% !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  transition: transform 220ms ease !important;
}

.product-card:hover .product-photo {
  transform: scale(1.035) !important;
}

.product-info {
  padding: 11px !important;
  gap: 7px !important;
}

.product-title-link {
  min-height: 42px !important;
}

.product-card h3 {
  min-height: 0 !important;
  display: -webkit-box !important;
  overflow: hidden !important;
  color: #ffffff !important;
  font-size: 0.86rem !important;
  line-height: 1.2 !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-actions-row {
  min-height: 0 !important;
}

.price {
  font-size: 1.05rem !important;
  line-height: 1.1 !important;
}

.meta {
  min-height: 32px !important;
  gap: 4px 7px !important;
  line-height: 1.22 !important;
}

.meta span {
  font-size: 0.66rem !important;
}

.add-button {
  min-height: 40px !important;
  height: 40px !important;
  border-radius: 7px !important;
}

.add-button::after {
  font-size: 0.82rem !important;
}

.brand-section {
  min-height: 190px !important;
  display: grid !important;
  align-items: center !important;
  margin-top: var(--section-gap) !important;
  margin-bottom: var(--section-gap) !important;
  padding: 32px 38px !important;
  border-radius: 14px !important;
}

.brand-section h2 {
  max-width: 520px !important;
  font-size: clamp(1.85rem, 3vw, 3rem) !important;
  line-height: 1.02 !important;
}

.brand-section p:not(.eyebrow) {
  max-width: 620px !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
}

.site-footer {
  padding: 30px 0 !important;
}

.footer-grid {
  grid-template-columns: 1.35fr repeat(3, minmax(140px, 1fr)) !important;
  gap: 28px !important;
}

.site-footer h2 {
  margin-bottom: 10px !important;
  font-size: 0.82rem !important;
}

.site-footer p,
.site-footer a,
.footer-cart-link {
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
}

.footer-logo {
  font-size: 1.25rem !important;
}

@media (max-width: 1280px) {
  .topbar {
    grid-template-columns: 150px minmax(360px, 1fr) minmax(240px, auto) !important;
    width: min(100% - 40px, var(--page-max-width)) !important;
  }

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

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 132px 1fr !important;
    min-height: 82px !important;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    order: 3 !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
  }

  .topbar__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero__visual {
    inset: 0 0 0 44% !important;
  }

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

@media (max-width: 900px) {
  .topbar {
    width: min(100% - 28px, var(--page-max-width)) !important;
  }

  .hero {
    max-height: none !important;
  }

  .hero__visual {
    height: 280px !important;
  }

  .trust-strip {
    min-height: 0 !important;
  }

  .trust-strip div {
    min-height: 82px !important;
    padding: 16px 24px !important;
  }

  .collections,
  .catalog,
  .brand-section,
  .footer-grid {
    width: min(100% - 32px, var(--page-max-width)) !important;
  }

  .collections .collection-list {
    grid-template-columns: 1fr !important;
  }

  .collections .collection-card {
    aspect-ratio: 1.9 / 1 !important;
  }

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

@media (max-width: 720px) {
  :root {
    --section-gap: 42px;
    --card-gap: 12px;
  }

  .topbar {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 12px 0 !important;
  }

  .topbar__actions,
  .topbar__nav {
    grid-column: auto;
    grid-row: auto;
    width: 100% !important;
  }

  .nav-search input {
    width: 100% !important;
  }

  .hero__content {
    padding-top: 30px !important;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem) !important;
  }

  .hero__visual {
    height: 230px !important;
  }

  .trust-strip {
    grid-template-columns: 1fr !important;
  }

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

  .brand-section {
    min-height: 0 !important;
    padding: 28px !important;
  }

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

@media (max-width: 440px) {
  .collections .collection-card {
    aspect-ratio: 1.35 / 1 !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
  }

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

/* Mobile navigation polish v37 */
@media (max-width: 1080px) {
  .topbar__nav {
    max-width: 100%;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .topbar__nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar {
    overflow: hidden;
  }

  .topbar__nav {
    gap: 22px !important;
    padding: 3px 2px 4px !important;
  }

  .topbar__nav a,
  .nav-filter {
    flex: 0 0 auto;
    min-height: 32px !important;
  }
}

/* Mockup-matched collection cards v28 */
.collections {
  margin-top: 54px !important;
}

.collections .section-heading {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

.section-action {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--zenzo-red);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.section-action:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.collections .collection-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.collections .collection-card {
  isolation: isolate;
  min-height: 0 !important;
  aspect-ratio: 1.58 / 1 !important;
  align-items: end !important;
  justify-content: start !important;
  padding: 0 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(145deg, rgba(255, 59, 59, 0.1), transparent 34%),
    linear-gradient(180deg, #0b121d, #05090f) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.collections .collection-card--hotwheels {
  border-color: rgba(255, 59, 59, 0.44) !important;
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 59, 59, 0.3), transparent 34%),
    linear-gradient(150deg, #17080d, #06101a 68%) !important;
}

.collections .collection-card--figurines {
  border-color: rgba(53, 168, 255, 0.38) !important;
  background:
    radial-gradient(circle at 38% 10%, rgba(53, 168, 255, 0.24), transparent 36%),
    linear-gradient(150deg, #071524, #060a12 68%) !important;
}

.collections .collection-card--printed {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background:
    radial-gradient(circle at 40% 5%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(150deg, #10151c, #05090f 68%) !important;
}

.collections .collection-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255, 59, 59, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(53, 168, 255, 0.16), transparent 38%) !important;
  opacity: 0.8 !important;
  pointer-events: none;
}

.collections .collection-card::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  z-index: 2 !important;
  height: 64% !important;
  background:
    linear-gradient(180deg, transparent, rgba(3, 7, 13, 0.5) 35%, rgba(3, 7, 13, 0.96)),
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.46) 58%, transparent) !important;
  opacity: 1 !important;
  pointer-events: none;
}

.collections .collection-card img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.84 !important;
  filter: saturate(1.12) contrast(1.08) brightness(0.82) !important;
}

.collections .collection-card--hotwheels img {
  object-position: center 46% !important;
}

.collections .collection-card--figurines img,
.collections .collection-card--printed img {
  object-position: center !important;
}

.collections .collection-card span,
.collections .collection-card strong {
  position: relative !important;
  z-index: 3 !important;
  align-self: stretch !important;
  width: 100% !important;
  text-align: left !important;
}

.collections .collection-card span {
  margin-top: auto !important;
  padding: 0 24px !important;
  color: #ffffff !important;
  font-size: clamp(1.32rem, 1.7vw, 1.8rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.72);
}

.collections .collection-card strong {
  padding: 7px 24px 24px !important;
  color: var(--zenzo-red) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.collections .collection-card--figurines strong,
.collections .collection-card--printed strong {
  color: #8fd0ff !important;
}

.collections .collection-card:hover,
.collections .collection-card.is-active {
  border-color: rgba(255, 59, 59, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.26) !important;
  transform: translateY(-3px) !important;
}

.collections .collection-card:hover img {
  opacity: 0.94 !important;
  transform: scale(1.045) !important;
}

@media (max-width: 900px) {
  .collections .section-heading {
    align-items: start !important;
  }

  .collections .collection-card {
    aspect-ratio: 1.75 / 1 !important;
  }
}

@media (max-width: 560px) {
  .collections .section-heading {
    display: block !important;
  }

  .section-action {
    margin-top: 6px;
  }

  .collections .collection-card {
    aspect-ratio: 1.28 / 1 !important;
  }
}

/* Collection gallery refinement v29 */
.collections {
  width: min(1180px, calc(100% - 48px)) !important;
  margin-top: 42px !important;
}

.collections .section-heading {
  margin-bottom: 14px !important;
}

.collections .section-heading h2 {
  font-size: 1.6rem !important;
  line-height: 1.15 !important;
}

.collections .section-action {
  min-height: 28px;
  font-size: 0.76rem;
}

.collections .collection-list {
  gap: 14px !important;
}

.collections .collection-card {
  aspect-ratio: 1.18 / 1 !important;
  border-radius: 8px !important;
}

.collections .collection-card::before {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.16), transparent 38%) !important;
  opacity: 0.72 !important;
}

.collections .collection-card--figurines::before,
.collections .collection-card--printed::before {
  background: linear-gradient(135deg, rgba(53, 168, 255, 0.16), transparent 42%) !important;
}

.collections .collection-card::after {
  height: 56% !important;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 13, 0.64) 58%, rgba(3, 7, 13, 0.94)) !important;
}

.collections .collection-card img {
  opacity: 1 !important;
  filter: saturate(1.04) contrast(1.04) brightness(0.9) !important;
}

.collections .collection-card--hotwheels img {
  object-position: 55% center !important;
}

.collections .collection-card--figurines img {
  object-position: 53% center !important;
}

.collections .collection-card--printed img {
  object-position: 58% center !important;
}

.collections .collection-card span {
  padding: 0 18px !important;
  font-size: 1.15rem !important;
  line-height: 1.1 !important;
}

.collections .collection-card strong {
  padding: 6px 18px 18px !important;
  font-size: 0.72rem !important;
}

@media (max-width: 900px) {
  .collections {
    width: min(100% - 32px, 1180px) !important;
  }

  .collections .collection-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .collections .collection-card {
    aspect-ratio: 1.05 / 1 !important;
  }
}

@media (max-width: 760px) {
  .collections .collection-list {
    grid-template-columns: 1fr !important;
  }

  .collections .collection-card {
    aspect-ratio: 1.65 / 1 !important;
  }

  .catalog .toolbar {
    width: 100% !important;
    margin: 12px 0 18px !important;
  }

  .catalog .select-label,
  .catalog .select-label select {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .collections .section-heading {
    display: flex !important;
    align-items: end !important;
  }

  .collections .section-action {
    margin-top: 0;
    font-size: 0.7rem;
  }

  .collections .collection-card {
    aspect-ratio: 1.35 / 1 !important;
  }
}

/* Product photography treatment v33 */
.product-media {
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 14%, rgba(53, 168, 255, 0.2), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(255, 59, 59, 0.18), transparent 38%),
    linear-gradient(145deg, #111a26 0%, #070c14 58%, #04070c 100%) !important;
}

.product-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 7%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 34%),
    rgba(4, 9, 16, 0.4);
  box-shadow:
    inset 0 0 32px rgba(0, 0, 0, 0.34),
    0 16px 34px rgba(0, 0, 0, 0.32);
  filter: none;
}

.product-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 59, 59, 0.06), transparent 30%, transparent 70%, rgba(53, 168, 255, 0.07)),
    radial-gradient(ellipse at center, transparent 46%, rgba(3, 7, 13, 0.3) 100%);
}

.product-photo {
  z-index: 1;
  width: 90% !important;
  height: 90% !important;
  max-width: 90% !important;
  max-height: 90% !important;
  border-radius: 6px;
  filter: brightness(0.82) contrast(1.08) saturate(0.9);
  opacity: 0.94;
  -webkit-mask-image: radial-gradient(ellipse 76% 76% at center, #000 0%, #000 58%, rgba(0, 0, 0, 0.84) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 76% at center, #000 0%, #000 58%, rgba(0, 0, 0, 0.84) 72%, transparent 100%);
}

.product-card:hover .product-photo {
  filter: brightness(0.9) contrast(1.08) saturate(0.96);
}

.product-detail__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(53, 168, 255, 0.16), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(255, 59, 59, 0.14), transparent 36%),
    linear-gradient(145deg, #111a26, #050a11) !important;
}

.product-detail__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 54%, rgba(3, 7, 13, 0.34) 100%);
}

.product-detail__media img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  filter: brightness(0.86) contrast(1.06) saturate(0.92);
  -webkit-mask-image: radial-gradient(ellipse 82% 82% at center, #000 0%, #000 64%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 82% at center, #000 0%, #000 64%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
}

/* Unboxed catalog showcase v34 */
.product-photo--showcase {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 0;
  object-fit: cover !important;
  opacity: 1;
  filter: contrast(1.02) saturate(1.04) brightness(0.98);
  -webkit-mask-image: none;
  mask-image: none;
}

.product-card:hover .product-photo--showcase {
  filter: contrast(1.03) saturate(1.08) brightness(1.04);
  transform: scale(1.025) !important;
}

/* Accessories collection and keychain gallery v38 */
.collections .collection-list {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.collections .collection-card--accessories {
  border-color: rgba(255, 59, 59, 0.34) !important;
  background:
    radial-gradient(circle at 72% 18%, rgba(53, 168, 255, 0.2), transparent 36%),
    radial-gradient(circle at 20% 84%, rgba(255, 59, 59, 0.22), transparent 40%),
    linear-gradient(150deg, #11090f, #050a12 68%) !important;
}

.collections .collection-card--accessories::before {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.15), transparent 40%, rgba(53, 168, 255, 0.12)) !important;
}

.collections .collection-card--accessories img {
  object-position: center 46% !important;
}

.collections .collection-card--accessories strong {
  color: #ff5c5c !important;
}

.subcategory-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -4px 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.subcategory-bar[hidden] {
  display: none;
}

.subcategory-filter {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 12, 20, 0.82);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.subcategory-filter.is-active {
  border-color: rgba(255, 59, 59, 0.72);
  background: rgba(255, 59, 59, 0.14);
  box-shadow: inset 0 0 0 1px rgba(53, 168, 255, 0.08);
}

.product-gallery {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-gallery__thumb {
  width: 64px;
  aspect-ratio: 1;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: #080b10;
  cursor: pointer;
}

.product-gallery__thumb.is-active {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 2px rgba(255, 59, 59, 0.2);
}

.product-gallery__thumb img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 3px;
  object-fit: cover;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 1050px) {
  .collections .collection-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .collections .collection-list {
    grid-template-columns: 1fr !important;
  }

  .subcategory-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .subcategory-filter {
    width: 100%;
  }

  .product-gallery__thumb {
    width: 54px;
  }
}
