/* ps-store.by ? console storefront */

:root {
  --ink: #f2f6ff;
  --muted: #8b97ad;
  --accent: #0070D1;
  --accent-bright: #00B4FF;
  --accent-dark: #00439c;
  --soft: #0d1524;
  --price-bg: #102848;
  --paper: #03060f;
  --surface: #0a1220;
  --surface-2: #101a2c;
  --line: rgba(120, 170, 255, 0.12);
  --line-strong: rgba(120, 170, 255, 0.22);
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --radius-lg: 1.35rem;
  --max: 72rem;
  --page-x: max(1.25rem, env(safe-area-inset-left, 0px));
  --page-x-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 768px) {
  :root {
    --page-x: 1rem;
    --page-x-right: 1rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.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;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(1200px 480px at 12% -10%, rgba(0, 112, 209, 0.18), transparent 60%),
    radial-gradient(900px 420px at 90% 8%, rgba(0, 112, 209, 0.08), transparent 55%),
    var(--paper);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.font-display {
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  letter-spacing: -0.03em;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-x-right) 0 var(--page-x);
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.5);
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  padding: 0.8rem 1.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(94, 177, 255, 0.35), 0 10px 28px rgba(0, 112, 209, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: rgba(0, 112, 209, 0.12);
}

.btn-block {
  width: 100%;
}

.price-badge {
  display: inline-block;
  border-radius: var(--radius-sm);
  background: var(--price-bg);
  padding: 0.125rem 0.5rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.price-badge--preorder {
  background: #d4d4d4;
  color: #555;
}

.preorder-label {
  margin-left: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #777;
}

.price-badge.lg {
  padding: 0.25rem 0.625rem;
  font-size: 1.5rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rise {
  animation: rise 0.7s ease both;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 16, 0.88);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem var(--page-x-right) 0.75rem var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: block;
  text-align: left;
}

.logo-name {
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 11rem;
}

.logo .logo-img {
  height: 2.6rem;
  max-width: 14.3rem;
}

.hero-logo {
  display: block;
  height: clamp(2.4rem, 6vw, 3.8rem);
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45)) brightness(0) invert(1);
}

.logo-name span {
  color: var(--accent);
}

.logo-sub {
  display: none;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #0070D1;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0.55rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.nav-desktop a,
.nav-trigger {
  background: none;
  border: 0;
  padding: 0.45rem 0.15rem;
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
}

.nav-desktop a {
  color: var(--muted);
  font-weight: 400;
}

.nav-desktop a:hover,
.nav-trigger:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.socials a {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  transition: 0.2s;
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
}

.socials--header {
  display: none;
}

.socials--light a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.socials--light a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 2.75rem;
}

.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
  animation: phone-pulse 2.2s ease-in-out infinite;
}

.header-phone-icon svg {
  width: 1rem;
  height: 1rem;
}

@keyframes phone-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 112, 209, 0.45);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(0, 112, 209, 0);
  }
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

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

.cart-btn {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.cart-btn:hover {
  background: var(--accent);
  color: #fff;
}

.cart-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 22, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.mega-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--page-x-right) 2rem var(--page-x);
  display: grid;
  gap: 2rem;
}

.mega-label {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-bright);
}

.mega ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega li + li {
  margin-top: 0.28rem;
}

.mega a:hover {
  color: var(--accent);
}

.mega-promo {
  border-radius: var(--radius);
  background: var(--soft);
  padding: 1.25rem;
}

.mega-promo .font-display {
  margin: 0;
  font-size: 1.125rem;
}

.mega-promo p + p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.mega-promo a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.nav-mobile {
  border-top: 1px solid var(--line);
  background: #0a0e16;
}

.nav-mobile-inner {
  padding: 0.45rem var(--page-x-right) 0.65rem var(--page-x);
  display: grid;
  gap: 0.35rem;
}

.nav-mobile-inner strong,
.nav-mobile-inner strong a {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
  margin: 0.15rem 0 0;
  color: var(--accent-bright);
}

.nav-mobile ul {
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0 0 0 0.4rem;
  display: grid;
  gap: 0;
}

.nav-mobile li a {
  display: block;
  padding: 0.08rem 0;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--muted);
}

.nav-mobile-links {
  border-top: 1px solid var(--line);
  margin-top: 0.2rem;
  padding-top: 0.35rem;
  display: grid;
  gap: 0.1rem;
}

.nav-mobile-links a {
  padding: 0.12rem 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

/* Hero */
.hero {
  padding: 0.75rem 0 0.5rem;
}

.hero-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  max-width: 55%;
}

.hero-eyebrow {
  margin: 0;
  font-size: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero h1 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 0.95;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-lead--desktop {
  display: none;
}

.hero-cta {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-dots {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  height: 0.375rem;
  width: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}

.hero-dots button.is-active {
  width: 2rem;
  background: var(--accent);
}

/* Gender tiles */
.gender-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.gender-tile {
  position: relative;
  min-height: 141px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
}

.gender-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gender-tile:hover img {
  transform: scale(1.03);
}

.gender-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.gender-tile-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
}

.gender-tile-text p {
  margin: 0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.7);
}

.gender-tile-text h2 {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
}

.gender-tile-text span {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Sections / grids */
.section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section-tight {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-head h2,
.page-title {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 180, 255, 0.12), transparent 60%),
    #070d18;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
  transition: transform 0.7s;
}

.product-card:hover img {
  transform: scale(1.04);
}

.tone-bryuki { background: linear-gradient(135deg, #e2e8f0, #f1f5f9); }
.tone-tuniki { background: linear-gradient(135deg, #e0f2fe, #fff); }
.tone-palto { background: linear-gradient(135deg, #e7e5e4, #fff); }
.tone-bluzki { background: linear-gradient(135deg, #fff1f2, #fff); }
.tone-rubashki { background: linear-gradient(135deg, #eff6ff, #fff); }
.tone-polo { background: linear-gradient(135deg, #ecfdf5, #fff); }
.tone-tolstovki { background: linear-gradient(135deg, #e4e4e7, #fafafa); }
.tone-kurtki { background: linear-gradient(135deg, #e0e7ff, #f8fafc); }
.tone-obuv { background: linear-gradient(135deg, #e5e5e5, #fff); }

.product-brand-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(20, 20, 20, 0.2);
  text-align: center;
  padding: 1rem;
}

.product-card-placeholder.tall {
  min-height: 24rem;
  font-size: 2rem;
}

.product-card-body {
  margin-top: 0.75rem;
}

.product-card-body h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-color {
  margin: 0.35rem 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: capitalize;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.size-pills span {
  display: inline-flex;
  min-width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 0 0.375rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.size-pills span.is-off {
  opacity: 0.35;
  text-decoration: line-through;
  background: #eee;
}

.promo-dark {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a2332 0%, #243044 45%, #4a2a12 100%);
  color: #fff;
  padding: 2rem 1.5rem;
}

.promo-dark h2 {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
}

.promo-dark p {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.promo-dark a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-card {
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 2rem 0 0.5rem;
}

.seo-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: -0.03em;
}

.seo-card-body {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.seo-card-body h3 {
  margin: 1.15rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}

.seo-card-body h3:first-child {
  margin-top: 0;
}

.seo-band-body h3 {
  margin: 1.15rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}

.seo-band-body h3:first-child {
  margin-top: 0;
}

.seo-card-body p {
  margin: 0;
}

.seo-inline-link {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-color: rgba(94, 177, 255, 0.35);
  font-weight: 500;
}

.seo-inline-link:hover {
  color: #fff;
  text-decoration-color: rgba(94, 177, 255, 0.75);
}

/* Benefits */
.benefits {
  background: linear-gradient(180deg, #fbfcfd 0%, #f4f6f8 100%);
  padding: 2rem 0;
}

.benefits .section-head {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  gap: 0.75rem;
}

.benefit-card {
  position: relative;
  border-radius: var(--radius);
  border: 1.5px solid rgba(0, 112, 209, 0.55);
  background: #fff;
  padding: 1rem 1rem 1.05rem;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #fff5f6;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}

.benefit-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon {
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(0, 112, 209, 0.08);
  color: var(--accent);
  border: 1px solid rgba(0, 112, 209, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.benefit-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.benefit-card h3 {
  margin: 0;
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.benefit-card p {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5b6472;
}

/* Reviews slider */
.reviews-slider {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem 0;
  overflow-x: clip;
}

.reviews-stack {
  position: relative;
  overflow: hidden;
}

.reviews-slide {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.5s ease-out;
  position: absolute;
  left: 0;
  top: 0;
}

.reviews-slide > .review-slide + .review-slide {
  margin-top: 1.25rem;
}

.review-slide {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-left: 2px solid var(--accent);
  background: transparent;
  box-shadow: none;
  padding: 0.15rem 0 0.15rem 1.15rem;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.review-slide .q {
  display: block;
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 2px;
}

.review-slide .review-stars {
  margin: 0 0 0.4rem;
}

.review-slide p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

.review-slide footer {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-slide .name {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.reviews-nav {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.round-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.reviews-dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-dots button {
  height: 0.5rem;
  width: 0.625rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
}

.reviews-dots button.is-active {
  width: 2.25rem;
  background: var(--accent);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
  padding: 1.1rem 1.15rem;
}

.review-stars {
  display: inline-flex;
  gap: 0.08rem;
  margin: 0.35rem 0 0.55rem;
  line-height: 1;
  letter-spacing: 0;
}

.review-star {
  font-size: 0.95rem;
  color: #d6d6d6;
}

.review-star.is-on {
  color: #f5a524;
}

.review-card > p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-meta .name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.review-meta .muted {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--page-x-right) 1rem var(--page-x);
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-logo {
  margin: 0;
  font-size: 1.25rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  display: none;
  margin: 0.5rem 0 0;
  max-width: 28rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.footer-label {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-cols ul {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

.footer-cols li {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.375rem;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* Pages */
.page {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.page.narrow {
  max-width: 48rem;
}

.page.narrow.text-center {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.lead {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumbs .current {
  color: var(--ink);
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.cat-tiles {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.cat-tile {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.cat-tile:hover {
  border-color: rgba(0, 112, 209, 0.4);
}

.cat-tile .font-display {
  margin: 0;
  font-size: 1.25rem;
}

.cat-tile span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.seo-block {
  margin-top: 3rem;
  padding: 1.25rem 1.15rem;
  border-top: 0;
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
}

.seo-block h2 {
  margin: 0;
  font-size: 1.5rem;
  display: inline-block;
  max-width: 100%;
}

.seo-block h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 0.7rem;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.seo-block-body {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}

.seo-block-body h3 {
  margin: 1.15rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}

.seo-block-body h3:first-child {
  margin-top: 0;
}

.seo-block-body p {
  margin: 0;
}

.seo-block-body .seo-inline-link {
  color: #3d4654;
  text-decoration-color: rgba(61, 70, 84, 0.35);
}

.empty {
  padding: 4rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Product page */
.product-layout {
  overflow-x: clip;
}

.product-page {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
  max-width: 100%;
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.04), 0 8px 24px rgba(20, 20, 20, 0.05);
  box-sizing: border-box;
}

.product-page--discontinued .product-gallery,
.product-page--discontinued .product-info {
  filter: grayscale(1);
  opacity: 0.72;
}

.discontinued-banner {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 35, 24, 0.2);
  background: #fff5f5;
  color: #7a271a;
}

.discontinued-banner p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #9b3b30;
}

.series-suggestions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.series-suggestions-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.series-suggestions-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.product-card--discontinued .product-card-media img {
  filter: grayscale(1);
  opacity: 0.7;
}

.product-card--discontinued .product-card-body h3 a,
.product-card--discontinued .product-card-prices {
  opacity: 0.75;
}

.product-discontinued-badge {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.78);
  color: #fff;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
}

.product-gallery,
.product-info {
  min-width: 0;
  max-width: 100%;
}

.product-main-img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 180, 255, 0.14), transparent 58%),
    linear-gradient(180deg, #101a2c, #070d18);
  border: 1px solid rgba(0, 180, 255, 0.12);
  padding: 0;
  cursor: zoom-in;
  position: relative;
  box-sizing: border-box;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  box-sizing: border-box;
  pointer-events: none;
}

.product-zoom-hint {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.62);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.2;
  opacity: 0.92;
  pointer-events: none;
}

.product-thumbs {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 0.15rem;
}

.product-thumb {
  position: relative;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: #f3f4f6;
  cursor: pointer;
  box-sizing: border-box;
}

.product-thumb.is-active {
  border-color: var(--accent);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  padding: 0.25rem;
  box-sizing: border-box;
  pointer-events: none;
}

.product-info h1,
.product-info-title {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
}

.product-price-lg {
  margin: 0.75rem 0;
}

.product-desc {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}

.product-desc h3 {
  margin: 0.85rem 0 0.35rem;
  color: var(--ink, #1d1d1f);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-desc strong {
  color: var(--ink, #1d1d1f);
  font-weight: 700;
}

.product-desc p {
  margin: 0 0 0.35rem;
}

.product-desc p:last-child {
  margin-bottom: 0;
}

.size-picker {
  margin-top: 2rem;
}

.size-picker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.size-btn,
a.size-btn {
  min-width: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  -webkit-text-fill-color: var(--ink);
  text-decoration: none;
}

.size-btn:visited,
a.size-btn:visited,
.size-btn:link,
a.size-btn:link {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.size-btn.is-active,
a.size-btn.is-active,
.size-btn.is-active:link,
a.size-btn.is-active:link,
.size-btn.is-active:visited,
a.size-btn.is-active:visited,
.size-btn.is-active:hover,
a.size-btn.is-active:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.size-btn.is-off,
.size-btn:disabled {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
  background: #eee;
}

.features {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted);
}

.features li + li {
  margin-top: 0.5rem;
}

#add-to-cart {
  margin-top: 2rem;
}

/* Content / contacts / checkout */
.content-block {
  margin-top: 3rem;
}

.content-block h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

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

.contacts-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
}

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

.contact-lg {
  display: block;
  margin: 0.35rem 0 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: normal;
  white-space: normal;
  overflow-wrap: break-word;
}

.contact-list .eyebrow {
  display: block;
  margin-bottom: 0.15rem;
}

.page-hero {
  padding: 1rem var(--page-x) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero .container {
  padding-left: 0;
  padding-right: 0;
}

.page-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1a1a1a;
  /* height follows title text, not banner aspect ratio */
}

.page-hero-banner > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: right 28%;
  transform: none;
  display: block;
}

.page-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.1rem 1.25rem;
  color: #fff;
  text-shadow: none;
  min-height: 8.6rem;
}

.page-hero-eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-copy h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .page-hero-copy {
    padding: 2.5rem 1.75rem;
    min-height: 10.9rem;
  }
}

@media (max-width: 767px) {
  .page-hero-copy {
    padding: 1.75rem 1.15rem;
    min-height: 7.8rem;
  }

  .page-hero-copy h1 {
    font-size: 1.2rem;
  }
}

.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.contact-form h2 {
  margin: 0;
  color: var(--ink);
}

.field,
.field-dark {
  width: 100%;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
}

.field {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.85);
}

.field:focus {
  border-color: var(--accent);
}

.field-dark {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.field-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field-dark:focus {
  border-color: var(--accent);
}

.form-hint {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ink);
}

.contact-form .form-hint {
  color: var(--ink);
}

.map-block {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.map-head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.map-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.map-head p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
}

.map-block iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-foot {
  padding: 0.85rem 1.5rem 1.1rem;
  border-top: 1px solid var(--line);
}

.contacts-map {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contacts-map .map-head .eyebrow {
  margin: 0 0 0.35rem;
}

.contacts-map iframe {
  flex: 1 1 auto;
  min-height: 280px;
  height: 320px;
}

.checkout-summary {
  margin-top: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.checkout-line + .checkout-line {
  margin-top: 0.75rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.checkout-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.delivery-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.radio-card:has(:checked) {
  border-color: var(--accent);
}

.pickup-info,
.pickup-card {
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 112, 209, 0.18);
  background: #fff8f2;
}

.pickup-info-address,
.pickup-card .contact-lg {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--ink);
}

.pickup-info-hours {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.pickup-info-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.pickup-card {
  margin-top: 1.5rem;
}

/* Promo sale popup */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.promo-popup[hidden] {
  display: none !important;
}

.promo-popup-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 10, 10, 0.55);
  cursor: pointer;
}

.promo-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  padding: 1.6rem 1.4rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 112, 209, 0.22);
  background: linear-gradient(160deg, #f4f5f7 0%, #e8eaee 55%, #dde1e7 100%);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.18);
  text-align: center;
  animation: promo-pop 0.35s ease-out;
}

@keyframes promo-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-popup-x {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.promo-popup-x:hover {
  color: var(--accent);
}

.promo-popup-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.promo-popup-card h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 1;
  color: var(--ink);
}

.promo-popup-text {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--muted);
}

.promo-popup-code {
  margin: 1rem auto 0;
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 112, 209, 0.35);
  background: #fff;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promo-popup-copy {
  margin-top: 1rem;
  width: 100%;
  background: var(--accent);
  color: #fff;
}

.promo-popup-copy:hover {
  background: var(--accent-dark);
  color: #fff;
}

.promo-popup-hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

body.promo-popup-open {
  overflow: hidden;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-error {
  margin: 0;
  border-radius: var(--radius);
  background: #fef2f2;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #b91c1c;
}

.checkout-success {
  text-align: center;
  padding: 5rem 0;
}

.checkout-success h1 {
  margin: 0;
  font-size: 2.25rem;
}

.checkout-success p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
}

.mt {
  margin-top: 1.5rem;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.cart-panel {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  bottom: 0.65rem;
  display: flex;
  flex-direction: column;
  width: calc(100% - 1.3rem);
  max-width: 26rem;
  height: auto;
  max-height: calc(100% - 1.3rem);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.cart-panel-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cart-panel-head button,
.cart-clear {
  background: none;
  border: 0;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--muted);
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

.cart-item p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.cart-item .meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
}

.cart-item .remove {
  background: none;
  border: 0;
  color: var(--accent);
  font-size: 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

.cart-empty {
  font-size: 0.875rem;
  color: var(--muted);
}

.cart-panel-foot {
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.cart-clear {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
}

[hidden] {
  display: none !important;
}

/* Responsive */
@media (min-width: 640px) {
  .logo-sub {
    display: block;
  }

  .socials--header {
    display: flex;
  }

  .hero-content {
    padding: 1.25rem;
    max-width: 28rem;
  }

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

  .gender-tile {
    min-height: 179px;
    border-radius: var(--radius);
  }

  .gender-tile-text span {
    display: block;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-outline {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .benefit-card {
    border-radius: var(--radius);
    padding: 1.25rem 1.2rem 1.3rem 1.3rem;
  }

  .benefit-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: var(--radius);
  }

  .benefit-icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .benefit-card p {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .phone-text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .hero {
    padding: 1rem 0 0.75rem;
  }

  .hero-frame {
    aspect-ratio: 2474 / 878;
    border-radius: var(--radius);
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-content {
    padding: 2.5rem;
    max-width: 32rem;
  }

  .hero-eyebrow {
    font-size: 6px;
  }

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

  .hero-lead--mobile {
    display: none;
  }

  .hero-lead--desktop {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
  }

  .gender-tile {
    min-height: 380px;
    border-radius: var(--radius);
  }

  .gender-tile-text {
    padding: 1.75rem;
  }

  .gender-tile-text p {
    font-size: 11px;
  }

  .gender-tile-text h2 {
    font-size: 2.25rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-title,
  .section-head h2,
  .seo-card h2,
  .promo-dark h2 {
    font-size: 2.25rem;
  }

  .reviews-pair {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-slide {
    flex-direction: row;
    align-items: stretch;
  }

  .reviews-slide > .review-slide {
    flex: 1 1 0;
    min-width: 0;
  }

  .reviews-slide > .review-slide + .review-slide {
    margin-top: 0;
    margin-left: 1.25rem;
  }

  .review-slide {
    padding: 1.5rem 1.75rem;
  }

  .reviews-nav {
    margin-top: 0.85rem;
  }

  .reviews-teaser {
    padding: 1.5rem 0 0.25rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

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

  .product-info h1 {
    font-size: 2.25rem;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 2rem var(--page-x-right) 2rem var(--page-x);
  }

  .footer-brand {
    display: block;
  }

  .footer-tagline {
    display: block;
  }

  .footer-cols {
    display: contents;
  }

  .footer-logo {
    font-size: 1.875rem;
  }

  .footer-cols li {
    font-size: 0.875rem;
    margin-top: 0.35rem;
  }

  .footer-copy {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .site-footer {
    margin-top: 2.5rem;
  }

  .seo-block h2 {
    font-size: 1.875rem;
  }

  .seo-block-body {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none !important;
  }

  .mega-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mega-inner.mega-grid {
    grid-template-columns: 2fr 1fr;
  }

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

  .cat-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

/* Xbox Store extras */
.mega-inner.mega-grid {
  grid-template-columns: 1fr;
}

.mega-cols {
  columns: 2;
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .mega-cols {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .mega-cols {
    columns: 4;
  }
}

.mega-cols li {
  break-inside: avoid;
}

.product-card-prices {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.price-old {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-old.lg {
  margin-left: 0.5rem;
  font-size: 1rem;
}

.mt-sm {
  margin-top: 0.35rem;
}

/* ?? PS Store homepage ?? */
.hero--bleed {
  padding: 0;
  margin: 0;
}

.hero-stage {
  position: relative;
  min-height: min(78vh, 42rem);
  overflow: hidden;
  background: #05070f;
  isolation: isolate;
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
  transform: scale(1.02);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.2%, 0.6%, 0); }
}

.hero-stage-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 15, 0.92) 0%, rgba(5, 7, 15, 0.72) 34%, rgba(5, 7, 15, 0.18) 62%, rgba(5, 7, 15, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.2) 0%, transparent 28%, rgba(5, 7, 15, 0.55) 100%);
}

.hero-stage-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: clamp(3.5rem, 10vh, 6rem) var(--page-x-right) clamp(3rem, 8vh, 5rem) var(--page-x);
  color: #fff;
  text-align: left;
}

.hero-brand {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
  animation: rise 0.8s ease both;
}

.hero-brand-mark {
  width: clamp(2.4rem, 5vw, 3.2rem);
  height: clamp(2.4rem, 5vw, 3.2rem);
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 18px rgba(0, 112, 209, 0.45));
}

.hero-brand-text {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-brand-text span {
  display: inline-block;
  margin-left: 0.18em;
  color: var(--accent-bright);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-stage-copy .hero-lead {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: clamp(0.95rem, 2.1vw, 1.12rem);
  line-height: 1.5;
  color: rgba(238, 243, 238, 0.84);
  animation: rise 0.8s ease 0.12s both;
}

.hero-stage-copy .hero-cta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: rise 0.8s ease 0.22s both;
}

.series-rail {
  background: transparent;
  color: var(--ink);
  padding: 2.4rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.series-rail-inner {
  display: grid;
  gap: 1.35rem;
}

.series-rail-head .eyebrow {
  color: var(--accent-bright);
}

.series-rail-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  display: inline-block;
  max-width: 100%;
}

.series-rail-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.series-rail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.series-rail-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.75rem 1.15rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.series-rail-item:nth-child(odd) {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.series-rail-item:hover {
  color: #fff;
  background: rgba(0, 112, 209, 0.08);
  box-shadow: none;
}

.series-rail-item:hover .series-rail-name {
  color: var(--accent-bright);
}

.series-rail-item:hover .series-rail-arrow {
  color: var(--accent-bright);
  transform: translateX(3px);
}

.series-rail-index {
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.series-rail-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.series-rail-name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
}

.series-rail-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.series-rail-count {
  display: none;
}

.series-rail-arrow {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  display: flex;
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  transform: translateY(-50%);
  transition: color 0.15s, transform 0.15s;
}

.series-rail-arrow svg {
  width: 100%;
  height: 100%;
}

.promise-strip {
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 0.25rem 0 0;
}

.promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.promise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.promise-item:last-child {
  border-bottom: 0;
}

.promise-mark {
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  padding-top: 0.2rem;
}

.promise-item h3 {
  margin: 0;
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.promise-item p {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.catalog-home {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
  background: transparent;
}

.catalog-home-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.catalog-home-head .eyebrow {
  color: var(--accent-bright);
}

.catalog-home-head h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.catalog-home-note {
  margin: 0;
  max-width: 24rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.catalog-home-note::after {
  content: "";
  display: block;
  width: min(100%, 12rem);
  height: 2px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.product-grid--home {
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0.75rem;
}

.product-card--home {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card--home:hover {
  border-color: rgba(0, 112, 209, 0.45);
  transform: translateY(-2px);
}

.product-card--home .product-card-media {
  aspect-ratio: 1;
  border-radius: calc(var(--radius-sm) + 0.15rem);
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 180, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #101a2c, #070d18);
  border: 1px solid rgba(0, 180, 255, 0.12);
}

.product-card--home .product-card-media img {
  object-fit: contain;
  padding: 0.85rem;
  transform: scale(0.94);
  mix-blend-mode: normal;
  transition: transform 0.25s ease;
}

.product-card--home:hover .product-card-media img {
  transform: scale(1);
}

.product-card--home .product-card-body {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-card--home h3 {
  font-size: 0.84rem;
  -webkit-line-clamp: 2;
}

.product-card--home .btn-sm {
  border-radius: var(--radius-sm);
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  padding: 0.55rem 0.75rem;
}

.hero--static {
  padding: 0;
}

.brand-split {
  display: none;
}

.benefits--row {
  display: none;
}

.benefits-grid--4 {
  grid-template-columns: 1fr;
}

.product-card--home h3 a:hover {
  color: var(--accent-bright);
}

.product-card-blurb {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.color-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}

.color-dot {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
}

.color-dot::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 1.15rem;
  height: 1.15rem;
  margin: -0.575rem;
  border-radius: 999px;
  background: var(--swatch, #d1d5db);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.color-dot.is-active::before {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.color-dots--product {
  gap: 0.25rem;
  margin-top: 0.65rem;
}

.color-dots--product .color-dot {
  width: 2.75rem;
  height: 2.75rem;
}

.color-dots--product .color-dot::before {
  width: 1.85rem;
  height: 1.85rem;
  margin: -0.925rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease;
}

.color-dots--product .color-dot:hover:not(:disabled)::before {
  transform: scale(1.08);
}

.color-dots--product .color-dot.is-off,
.color-dots--product .color-dot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.color-dots--product .color-dot.is-off::before,
.color-dots--product .color-dot:disabled::before {
  transform: none;
}

.color-picker-label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--ink);
}

#color-picker .size-btn,
a#color-picker .size-btn {
  min-width: 3.35rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.05rem;
  font-size: 0.95rem;
}

.contacts-requisites {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.contacts-requisites img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin-top: 0.75rem;
  opacity: 0.85;
}

.contact-requisites-inline {
  margin: 0.15rem 0;
}

.contact-requisites-inline img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  opacity: 0.75;
}

.delivery-promo {
  margin: 0;
  padding: 0;
  max-width: none;
}

.promo-duo {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: stretch;
}

/* Mobile: compact horizontal gift strip + full-bleed delivery photo */
.promo-duo .gift-note--strip {
  margin: 0;
  width: 100%;
  justify-self: stretch;
}

.promo-duo .gift-note-strip-inner {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  aspect-ratio: auto;
  height: auto;
  box-sizing: border-box;
}

.promo-duo .gift-note--strip .gift-note-icon svg {
  width: 2.1rem;
  height: 2.1rem;
  stroke-width: 1.7;
}

.promo-duo .gift-note--strip .gift-note-title {
  font-size: 0.95rem;
  line-height: 1.25;
}

.promo-duo .gift-note--strip .gift-note-hint {
  font-size: 0.75rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.promo-duo .delivery-promo {
  min-width: 0;
}

.promo-duo .delivery-promo-inner {
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  gap: 0;
  grid-template-columns: 1fr;
}

.promo-duo .delivery-promo-photo {
  border-radius: 0;
  aspect-ratio: 16 / 10;
}

.promo-duo .delivery-promo-copy {
  padding: 0.95rem 1rem 1.05rem;
}

@media (min-width: 900px) {
  .promo-duo {
    grid-template-columns: 11.5rem minmax(0, 1fr);
    gap: 1.15rem;
    margin-top: 2.5rem;
    align-items: stretch;
  }

  .promo-duo .gift-note--strip {
    width: 11.5rem;
    height: auto;
    min-height: 100%;
    justify-self: stretch;
    display: flex;
  }

  .promo-duo .gift-note-strip-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    padding: 1rem 0.85rem;
    width: 100%;
    flex: 1 1 auto;
    height: auto;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .promo-duo .gift-note--strip .gift-note-icon svg {
    width: 3.4rem;
    height: 3.4rem;
    stroke-width: 1.6;
  }

  .promo-duo .gift-note--strip .gift-note-title {
    font-size: 0.95rem;
  }

  .promo-duo .gift-note--strip .gift-note-hint {
    font-size: 0.72rem;
    margin-top: 0.2rem;
  }

  .promo-duo .delivery-promo {
    display: flex;
    min-height: 100%;
  }

  .promo-duo .delivery-promo-inner {
    grid-template-columns: minmax(160px, 42%) 1fr;
    gap: 1rem;
    padding: 0.9rem 1rem;
    flex: 1 1 auto;
    width: 100%;
    align-self: stretch;
  }

  .promo-duo .delivery-promo-photo {
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
  }

  .promo-duo .delivery-promo-copy {
    padding: 0;
  }

  .promo-duo .delivery-promo-copy h2 {
    font-size: 1.2rem;
  }

  .promo-duo .delivery-promo-copy p {
    font-size: 0.875rem;
  }
}

.delivery-promo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
  overflow: hidden;
}

.delivery-promo-photo {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
  background: #0c1018;
}

.delivery-promo-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.delivery-promo-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-mark {
  display: grid;
  gap: 0.2rem;
}

.logo-mark .logo-name {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--ink);
}

.logo-mark .logo-name span {
  color: var(--accent);
}

.logo-mark .logo-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0070D1;
}

.logo-mark--promo .logo-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.delivery-promo-media img {
  display: none;
}

.brand-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.brand-category-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.82rem;
  color: var(--ink);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.brand-category-chip:hover {
  border-color: rgba(0, 112, 209, 0.35);
  color: var(--accent);
  background: #fff5f6;
}

.brand-category-chip.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  font-weight: 600;
}

.genre-filters {
  margin-top: 0.85rem;
}

.mega-label a {
  color: inherit;
  text-decoration: none;
}

.mega-label a:hover {
  color: var(--accent);
}

.nav-mobile-inner strong a {
  color: inherit;
  text-decoration: none;
}

.nav-mobile-inner strong a:hover {
  color: var(--accent);
}

.delivery-promo-copy h2 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
}

.delivery-promo-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.reviews-teaser {
  padding: 1.5rem 0 0.5rem;
  background: transparent;
}

.reviews-teaser-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews-teaser-head h2 {
  margin: 0.35rem 0 0;
  font-size: 1.6rem;
}

.reviews-teaser-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.reviews-slider--page {
  margin: 1.5rem 0 2rem;
}

.review-slide {
  position: relative;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.review-avatar--yandex {
  background: #fc3f1d;
  color: #fff;
}

.review-avatar--google {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: transparent;
  padding: 0;
}

.review-avatar--google svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.review-card {
  position: relative;
}

.review-form-card {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.review-form-head h2 {
  margin: 0;
  font-size: 1.6rem;
}

.review-form-head p {
  margin: 0.45rem 0 0;
}

.review-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.review-form-grid {
  display: grid;
  gap: 0.85rem;
}

.review-field {
  display: grid;
  gap: 0.4rem;
}

.review-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.review-field input,
.review-field textarea,
.review-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.review-field input:focus,
.review-field textarea:focus {
  outline: none;
  border-color: rgba(0, 112, 209, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 112, 209, 0.1);
}

.review-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.review-form-actions .btn-primary {
  min-width: 11rem;
  border-radius: 999px;
}

.model-picker {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .delivery-promo-inner {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 1.25rem;
    padding: 1rem 1.15rem;
  }

  .delivery-promo-photo img {
    min-height: 0;
    max-height: none;
    height: 100%;
  }

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

@media (max-width: 767px) {
  .product-page,
  .product-gallery,
  .product-info,
  .model-picker,
  .size-picker-list {
    max-width: 100%;
    min-width: 0;
  }

  .product-main-img {
    aspect-ratio: 1 / 1;
    max-height: 280px;
    width: 100%;
  }

  .product-main-img img {
    padding: 0.75rem;
    transform: none;
  }

  .product-zoom-hint {
    font-size: 0.65rem;
    left: 0.55rem;
    bottom: 0.55rem;
  }

  .product-desc,
  .features,
  .gift-note--product {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-stage {
    min-height: min(72vh, 34rem);
  }

  .hero-stage-media {
    object-position: 78% center;
    animation: none;
  }

  .hero-stage-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 15, 0.55) 0%, rgba(5, 7, 15, 0.35) 40%, rgba(5, 7, 15, 0.82) 100%),
      linear-gradient(90deg, rgba(5, 7, 15, 0.75) 0%, rgba(5, 7, 15, 0.2) 70%);
  }

  .hero-stage-copy {
    justify-content: flex-end;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero-brand-text {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .hero-stage-copy .hero-lead {
    font-size: 0.92rem;
    max-width: 20rem;
  }

  .hero-stage-copy .btn-primary,
  .hero-stage-copy .btn-ghost {
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
  }

  #color-picker .size-btn,
  #memory-picker .size-btn,
  #model-picker .size-btn,
  .size-picker-list .size-btn {
    min-width: 3.25rem;
    min-height: 2.65rem;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
  }

  #color-picker .size-btn.is-active,
  #memory-picker .size-btn.is-active,
  #model-picker .size-btn.is-active,
  .size-picker-list .size-btn.is-active,
  a.size-btn.is-active {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }

  .cart-panel {
    right: 0.4rem;
    left: 0.4rem;
    top: auto;
    bottom: 0.4rem;
    width: auto;
    max-width: none;
    max-height: 82vh;
    border-radius: var(--radius);
  }
}

.color-more {
  font-size: 0.65rem;
  color: var(--muted);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  width: 100%;
}

.page-modules {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem var(--page-x) 0.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-module {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.page-module:hover {
  border-color: rgba(0, 112, 209, 0.35);
  box-shadow: 0 8px 24px rgba(0, 112, 209, 0.06);
}

.page-module-eyebrow {
  margin: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}

.page-module h3 {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
}

.page-module p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.page-module-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.mega-brands {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.mega-brand-col ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.mega-brand-col a {
  font-size: 0.8125rem;
  line-height: 1.25;
}

.mega-brand-col a:hover {
  color: var(--accent);
}

@media (min-width: 640px) {
  .brand-split {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-split-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-split-name {
    font-size: 1.5rem;
  }

  .brand-split-count {
    font-size: 0.8rem;
  }

  .brand-split-item:first-child {
    padding-left: 0;
  }

  .brand-split-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .page-modules {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .hero-stage {
    min-height: min(78vh, 42rem);
  }

  .series-rail-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-left: 1px solid var(--line);
  }

  .series-rail-item {
    border-right: 1px solid var(--line);
    padding: 1.25rem 1.5rem 1.25rem 1rem;
  }

  .series-rail-item:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--line);
  }

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

  .promise-item {
    padding: 1.35rem 1rem 1.35rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .promise-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

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

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

  .mega-brands {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-home-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .product-grid--home {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stage-copy {
    padding-right: 42%;
  }

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

  .mega-inner.mega-brands {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gift note */
.gift-note {
  margin: 0;
}

.gift-note--strip {
  margin: 0;
}

.gift-note-strip-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: none;
}

.gift-note--product {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--ink);
}

.gift-note--checkout {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--accent);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
}

.gift-note--checkout strong {
  color: var(--accent);
}

.gift-note-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--accent);
  box-shadow: none;
}

.gift-note-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gift-note--strip .gift-note-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: #fff;
}

.gift-note--strip .gift-note-icon svg {
  width: 1.875rem;
  height: 1.875rem;
}

.gift-note-copy {
  min-width: 0;
}

.gift-note-title {
  margin: 0;
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.gift-note--strip .gift-note-title {
  color: #fff;
}

.gift-note-hint {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted);
}

.gift-note--strip .gift-note-hint {
  color: rgba(255, 255, 255, 0.9);
}

/* Short red divider with a cut end */
.section-rule {
  display: block;
  width: min(11.5rem, 48%);
  height: 3px;
  margin: 0.85rem 0 0;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

/* FAQ accordion */
.faq-section {
  margin: 1.75rem auto 0;
  padding-bottom: 0.25rem;
}

.faq-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(0, 112, 209, 0.18), transparent 55%),
    linear-gradient(180deg, #121820, #0d1218);
  padding: 1rem 0.95rem 0.85rem;
  box-shadow: none;
}

.faq-head {
  margin-bottom: 0.75rem;
  max-width: 36rem;
}

.faq-head .font-display {
  margin: 0.2rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.faq-lead {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.4rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(0, 112, 209, 0.45);
  box-shadow: 0 10px 24px rgba(0, 112, 209, 0.1);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 112, 209, 0.28);
  background: rgba(0, 112, 209, 0.08);
  position: relative;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.faq-chevron::before {
  transform: translate(-50%, -50%);
}

.faq-chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-chevron::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 0.85rem 0.7rem;
}

.faq-answer p {
  margin: 0;
  padding-top: 0.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.faq-answer-link {
  margin-top: 0.4rem !important;
  border-top: 0 !important;
  padding-top: 0 !important;
}

.faq-answer-link a {
  color: var(--accent);
  font-weight: 600;
}

.faq-answer-link a:hover {
  color: var(--accent-dark);
}

/* Image lightbox */
body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 10, 10, 0.78);
  cursor: pointer;
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  max-height: min(92vh, 56rem);
  display: grid;
  place-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.image-lightbox-panel img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(88vh, 52rem);
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.image-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-lightbox-close:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .faq-shell {
    padding: 1.15rem 1.35rem 1rem;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 0.75rem;
  }

  .warranty-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Warranty page */
.warranty-highlights {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.warranty-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(0, 112, 209, 0.08), transparent 55%),
    #fff;
}

.warranty-card .font-display {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.warranty-card p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.warranty-service-lead {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.warranty-map-link {
  margin: 1rem 0 0;
}

.warranty-alert {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 112, 209, 0.22);
  background: linear-gradient(180deg, #fff8ec, #fff);
}

.warranty-alert .font-display {
  margin-top: 0;
}

.warranty-thanks {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.warranty-cta-text {
  margin: 0 0 1rem;
  color: var(--muted);
}

.warranty-related {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.warranty-related a {
  color: var(--accent);
  font-weight: 600;
}

.home-memory-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.18rem;
  margin-top: 0.6rem;
  overflow: visible;
}

.home-memory-btn {
  flex: 0 0 auto;
  min-height: 1.35rem;
  padding: 0.14rem 0.24rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.home-memory-btn:hover,
.home-memory-btn.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.home-memory-btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

/* ?? Xbox dark polish overrides ?? */
.home-memory-btn {
  background: var(--surface-2);
  color: var(--ink);
  border-radius: var(--radius-sm);
}

.gift-note--product,
.gift-note--checkout,
.contact-form,
.contacts-requisites,
.review-card,
.cart-panel,
.promo-popup-card,
.size-btn,
.page-module,
.seo-section,
.warranty-highlights > *,
.product-page,
.product-info,
.checkout-card,
.order-form,
.model-picker,
.features,
.product-desc {
  background: var(--surface) !important;
  color: var(--ink);
  border-color: var(--line) !important;
  box-shadow: none !important;
}

.page-hero-banner,
.page-hero {
  border-radius: 0;
}

.page-hero-copy {
  color: #fff;
}

.page-module-eyebrow,
.eyebrow {
  letter-spacing: 0.22em;
}

.page-module-link,
.link-accent,
.faq-answer-link a {
  color: var(--accent-bright) !important;
}

.size-btn.is-active,
a.size-btn.is-active,
.home-memory-btn.is-active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

.faq-chevron::before,
.faq-chevron::after {
  background: var(--accent-bright);
}

.footer-tagline {
  display: block;
}

.site-footer {
  background: #05070f;
  border-top: 1px solid var(--line);
}

.footer-logo .logo-img {
  height: 1.85rem;
  filter: none;
}

.logo .logo-img {
  height: 2.15rem;
  max-width: 12.5rem;
}

.promo-popup-code {
  color: var(--accent-bright);
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage-media,
  .animate-rise,
  .hero-brand,
  .hero-stage-copy .hero-lead,
  .hero-stage-copy .hero-cta {
    animation: none !important;
  }
}

/* ?? Lower homepage: editorial trust + quotes ?? */
.seo-band {
  padding: 2.75rem 0 0.5rem;
  border-top: 1px solid var(--line);
}

.seo-band .eyebrow {
  color: var(--accent-bright);
  margin: 0;
}

.seo-band h2 {
  margin: 0.45rem 0 0;
  max-width: 22ch;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.seo-band-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.seo-band-body p {
  margin: 0;
}

.seo-band-body .seo-inline-link {
  color: var(--accent-bright);
}

.trust-band {
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 112, 209, 0.12), transparent 42%),
    transparent;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.trust-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.trust-title {
  margin: 0.45rem 0 0;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.trust-hint {
  margin: 0.55rem 0 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.trust-item--link {
  display: block;
  transition: background 0.2s ease;
}

.trust-item--link:hover {
  background: rgba(0, 112, 209, 0.08);
}

.trust-item--link:hover .trust-title {
  color: var(--accent-bright);
}

.trust-arrow {
  color: var(--accent-bright);
  font-weight: 600;
  white-space: nowrap;
}

.trust-item--link:hover .trust-arrow {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reviews-teaser--quotes {
  padding: 2.5rem 0 1rem;
}

.reviews-teaser--quotes .reviews-teaser-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.reviews-teaser--quotes .reviews-teaser-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.reviews-teaser--quotes .review-avatar {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.reviews-teaser--quotes .review-avatar--google {
  background: #fff;
}

.reviews-teaser--quotes .review-slide p {
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(238, 243, 238, 0.88);
}

.reviews-teaser--quotes .review-slide .q {
  font-size: 2.4rem;
  color: var(--accent-bright);
  margin: 0.15rem 0 0.35rem;
}

.reviews-teaser--quotes .review-slide footer {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .trust-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 1.85rem 1.5rem 1.85rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-right: 0;
    padding-right: 0;
    padding-left: 1.5rem;
  }

  .seo-band {
    display: grid;
    grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
    column-gap: 2.5rem;
    align-items: start;
  }

  .seo-band .eyebrow {
    grid-column: 1;
  }

  .seo-band h2 {
    grid-column: 1;
    margin-top: 0.35rem;
  }

  .seo-band-body {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }
}

/* Hide legacy seo-card wrapper if any leftover */
.seo-card {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}


/* —— PlayStation distinct theme overrides —— */
body {
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(0, 112, 209, 0.28), transparent 55%),
    radial-gradient(700px 380px at 100% 12%, rgba(0, 180, 255, 0.12), transparent 50%),
    var(--paper);
}

.site-header {
  background: rgba(3, 6, 15, 0.82);
  border-bottom: 1px solid rgba(0, 180, 255, 0.12);
  backdrop-filter: blur(16px);
}

.logo .logo-img {
  height: 2rem;
  max-width: 16rem;
}

.btn-primary {
  border-radius: 999px;
  background: linear-gradient(135deg, #00B4FF, #0070D1);
  color: #031018 !important;
  -webkit-text-fill-color: #031018 !important;
  box-shadow: 0 8px 28px rgba(0, 112, 209, 0.35);
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4fc9ff, #1a86e8);
  box-shadow: 0 10px 32px rgba(0, 180, 255, 0.35);
}

.btn-ghost {
  border-radius: 999px;
  border-color: rgba(0, 180, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(0, 180, 255, 0.12);
  border-color: #00B4FF;
}

.price-badge {
  background: transparent;
  color: var(--accent-bright);
  padding: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.product-card--home {
  background: linear-gradient(180deg, rgba(16, 26, 44, 0.95), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(0, 180, 255, 0.14);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.product-card--home:hover {
  border-color: rgba(0, 180, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 80, 160, 0.25);
}

.product-card--home .product-card-media img {
  padding: 1rem;
  transform: scale(0.92);
  mix-blend-mode: normal;
}

.product-card--home .btn-sm {
  border-radius: 999px;
  background: linear-gradient(135deg, #00B4FF, #0070D1);
  color: #031018 !important;
  -webkit-text-fill-color: #031018 !important;
}

.color-dot.is-active::before {
  outline-color: var(--accent-bright);
}

/* Hero banner12 */
.hero--banner12 .hero-stage {
  min-height: min(82vh, 44rem);
  background: #02060f;
}

.hero--banner12 .hero-stage-media {
  object-position: 72% center;
}

.hero--banner12 .hero-stage-shade {
  background:
    linear-gradient(100deg, rgba(2, 6, 15, 0.96) 0%, rgba(2, 6, 15, 0.82) 30%, rgba(2, 6, 15, 0.2) 58%, rgba(2, 6, 15, 0.35) 100%),
    linear-gradient(180deg, transparent 40%, rgba(2, 6, 15, 0.55) 100%);
}

.hero--banner12 .hero-stage-shade::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 18%;
  width: 0;
  height: 0;
  border-top: 4.5rem solid transparent;
  border-bottom: 4.5rem solid transparent;
  border-left: 3.2rem solid rgba(0, 180, 255, 0.55);
  filter: drop-shadow(0 0 18px rgba(0, 180, 255, 0.55));
  opacity: 0.85;
}

.hero-shapes {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  animation: rise 0.7s ease both;
}

.hero-shapes span:nth-child(1) { color: #7CFF6B; }
.hero-shapes span:nth-child(2) { color: #FF5C8A; }
.hero-shapes span:nth-child(3) { color: #9DB4FF; }
.hero-shapes span:nth-child(4) { color: #FFD36B; }

.hero-lockup {
  margin: 0;
  display: block;
  animation: rise 0.8s ease 0.05s both;
}

.hero-lockup-logo {
  display: block;
  width: min(100%, 28rem);
  height: auto;
  max-height: clamp(2.2rem, 6vw, 3.6rem);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 16px rgba(0, 180, 255, 0.4));
}

.hero-slogan {
  margin: 0.9rem 0 0;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(242, 246, 255, 0.88);
  animation: rise 0.8s ease 0.1s both;
}

.hero-pills {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  max-width: 28rem;
  animation: rise 0.8s ease 0.16s both;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(242, 246, 255, 0.92);
}

.hero-shape {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.hero-shape--tri { color: #7CFF6B; }
.hero-shape--cir { color: #FF5C8A; }
.hero-shape--crs { color: #9DB4FF; }
.hero-shape--sq { color: #FFD36B; }

.hero-stage-copy .hero-cta {
  margin-top: 1.5rem;
  animation: rise 0.8s ease 0.22s both;
}

/* Chip catalog — not Xbox series-rail cards */
.series-rail { display: none; }

.ps-chip-rail {
  padding: 1.25rem 0 0.35rem;
  border-bottom: 1px solid var(--line);
}

.ps-chip-rail-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.ps-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 180, 255, 0.22);
  background: rgba(10, 18, 32, 0.9);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.ps-chip:hover {
  border-color: rgba(0, 180, 255, 0.65);
  background: rgba(0, 112, 209, 0.18);
  transform: translateY(-1px);
}

.ps-chip-label {
  font-family: Outfit, "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.ps-chip-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.promise-item {
  border-radius: 0;
}

.promise-mark {
  color: var(--accent-bright);
}

.trust-band {
  background: linear-gradient(90deg, rgba(0, 112, 209, 0.16), transparent 50%);
  border-color: rgba(0, 180, 255, 0.14);
}

.trust-kicker,
.catalog-home-head .eyebrow,
.seo-band .eyebrow,
.reviews-teaser--quotes .eyebrow {
  color: var(--accent-bright);
}

.faq-shell {
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(0, 112, 209, 0.22), transparent 55%),
    linear-gradient(180deg, #0c1524, #080e18);
  border-radius: var(--radius);
}

.faq-item {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item[open] {
  border-color: rgba(0, 180, 255, 0.45);
}

.review-slide {
  border-left-color: var(--accent-bright);
}

.site-footer {
  background: #02050c;
  border-top: 1px solid rgba(0, 180, 255, 0.12);
}

@media (min-width: 768px) {
  .ps-chip-rail-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .hero--banner12 .hero-stage-copy {
    padding-right: 40%;
  }
}

@media (max-width: 767px) {
  /* Half height, fixed so content cannot stretch the stage */
  .hero--banner12 .hero-stage {
    min-height: 0;
    height: min(36vh, 17rem);
    max-height: min(36vh, 17rem);
  }

  .hero--banner12 .hero-stage-media {
    object-position: 78% 42%;
  }

  .hero--banner12 .hero-stage-shade {
    background:
      linear-gradient(100deg, rgba(2, 6, 15, 0.92) 0%, rgba(2, 6, 15, 0.55) 38%, rgba(2, 6, 15, 0.08) 68%, transparent 100%),
      linear-gradient(180deg, rgba(2, 6, 15, 0.35) 0%, transparent 45%, rgba(2, 6, 15, 0.55) 100%);
  }

  .hero--banner12 .hero-stage-shade::before {
    display: none;
  }

  .hero--banner12 .hero-stage-copy {
    min-height: 0;
    height: 100%;
    justify-content: flex-end;
    padding-top: 2.75rem;
    padding-bottom: 0.85rem;
    gap: 0;
  }

  .hero--banner12 .hero-shapes,
  .hero--banner12 .hero-pills {
    display: none !important;
  }

  .hero--banner12 .hero-slogan {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    max-width: 14rem;
  }

  .hero--banner12 .hero-stage-copy .hero-cta {
    margin-top: 0.65rem;
  }

  .hero--banner12 .hero-stage-copy .btn-primary,
  .hero--banner12 .hero-stage-copy .btn-ghost {
    padding: 0.55rem 0.85rem;
    font-size: 0.72rem;
  }

  .hero--banner12 .hero-lockup-logo {
    width: min(100%, 14rem);
    max-height: 1.85rem;
  }
}


/* Promise shapes + PS trust/gallery polish */
.promise-strip--ps .promise-list {
  gap: 1rem;
}

.promise-strip--ps .promise-item {
  border-left: 0;
  border-top: 2px solid transparent;
  padding-top: 1rem;
  background: linear-gradient(180deg, rgba(0, 112, 209, 0.08), transparent 70%);
  border-radius: var(--radius-sm);
  padding: 1rem 1rem 1.1rem;
}

.promise-strip--ps .promise-item:hover {
  border-top-color: var(--accent-bright);
}

.promise-mark--shape {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-bright);
}

.promise-strip--ps .promise-item:nth-child(1) .promise-mark--shape { color: #7CFF6B; }
.promise-strip--ps .promise-item:nth-child(2) .promise-mark--shape { color: #FF5C8A; }
.promise-strip--ps .promise-item:nth-child(3) .promise-mark--shape { color: #9DB4FF; }
.promise-strip--ps .promise-item:nth-child(4) .promise-mark--shape { color: #FFD36B; }

.trust-band--ps {
  background:
    linear-gradient(105deg, rgba(0, 112, 209, 0.22), transparent 42%),
    linear-gradient(180deg, #0a1220, #060b16);
  border-radius: var(--radius);
  margin: 1.5rem auto;
  max-width: var(--max);
  border: 1px solid rgba(0, 180, 255, 0.18);
}

.trust-band--ps .trust-item--link:hover {
  color: var(--accent-bright);
}

.product-thumbs button,
.product-thumb {
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 180, 255, 0.1), transparent 60%),
    #070d18 !important;
  border-color: rgba(0, 180, 255, 0.16) !important;
}

.product-card-media img,
.product-main-img img {
  filter: drop-shadow(0 12px 24px rgba(0, 40, 80, 0.35));
}

.reviews-teaser--quotes .review-slide {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(10, 18, 32, 0.85);
}

.catalog-home-head h2 {
  letter-spacing: -0.02em;
}

.seo-band {
  border-left: 3px solid var(--accent-bright);
  padding-left: 1.25rem;
  background: transparent;
}

.faq-head .page-module-eyebrow {
  color: var(--accent-bright);
}

/* Console catalog cards (PlayStation) */
.product-card--console.product-card--home {
  background: linear-gradient(180deg, #0c1524, #070d18);
  border: 1px solid rgba(0, 180, 255, 0.16);
  border-radius: 1rem;
  padding: 0.85rem;
}
.product-card--console {
  background: linear-gradient(180deg, #0c1524, #070d18);
  border: 1px solid rgba(0, 180, 255, 0.16);
  border-radius: 1rem;
  padding: 0.85rem;
}
.product-card--console .product-card-body {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card--console h3 a {
  color: #f2f6ff !important;
  -webkit-text-fill-color: #f2f6ff !important;
}
.product-card--console .price-badge,
.product-card--console .price-now,
.product-card--console .price-now .price-badge {
  background: transparent !important;
  color: #00B4FF !important;
  -webkit-text-fill-color: #00B4FF !important;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 0 !important;
}

.catalog-pagination {
  margin: 1.75rem 0 0.5rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}
.catalog-pagination-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.catalog-pagination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}
.catalog-pagination-btn {
  min-width: 2.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 180, 255, 0.28);
  color: #f2f6ff;
  text-decoration: none;
  font-size: 0.88rem;
  text-align: center;
}
a.catalog-pagination-btn:hover {
  border-color: #00B4FF;
  background: rgba(0, 180, 255, 0.12);
}
.catalog-pagination-btn.is-active {
  background: linear-gradient(135deg, #00B4FF, #0070D1);
  border-color: transparent;
  color: #031018;
  font-weight: 700;
}
.catalog-pagination-gap {
  color: var(--muted);
  padding: 0 0.15rem;
}
.product-card--console.product-card--home:hover {
  border-color: rgba(0, 180, 255, 0.5);
  transform: translateY(-3px);
}
.product-card--console .product-card-media {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 25%, rgba(0, 180, 255, 0.16), transparent 55%),
    #070d18;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 180, 255, 0.1);
}
.product-card--console .product-card-media img {
  padding: 1rem;
  transform: scale(0.9);
  filter: drop-shadow(0 12px 22px rgba(0, 40, 80, 0.35));
}
.product-card--console.product-card--home:hover .product-card-media img {
  transform: scale(0.96);
}
.product-card--console .product-card-body {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card--console h3 {
  font-size: 0.95rem;
  font-weight: 650;
  margin: 0;
}
.product-card--console h3 a {
  color: #f2f6ff !important;
  -webkit-text-fill-color: #f2f6ff !important;
}
.product-card-meta {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(242, 246, 255, 0.55);
}
.product-card--console .product-card-prices {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.15rem 0 0;
}
.product-card--console .price-badge,
.product-card--console .price-now,
.product-card--console .price-now .price-badge {
  background: transparent !important;
  color: #00B4FF !important;
  -webkit-text-fill-color: #00B4FF !important;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 0 !important;
}
.product-card--console .price-old {
  color: rgba(242,246,255,0.4);
  text-decoration: line-through;
  font-size: 0.85rem;
}
.product-card--console .color-dot.is-active::before {
  outline-color: #00B4FF;
}
.product-card--console .product-card-cta,
.product-card--console .btn-sm {
  margin-top: 0.55rem;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #00B4FF, #0070D1) !important;
  color: #031018 !important;
  -webkit-text-fill-color: #031018 !important;
  font-weight: 700;
}
@media (min-width: 900px) {
  .product-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* Product page: no white cards */
.product-page {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.product-info,
.model-picker,
.features,
.product-desc,
.gift-note--product {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}

.product-info {
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem 1.35rem;
}

.product-info-title,
.product-info h1,
.product-info h2 {
  color: #fff !important;
}

.product-info .eyebrow {
  color: var(--accent-bright) !important;
}

.model-picker {
  border-radius: var(--radius);
  padding: 0.85rem 1rem 1rem;
  margin-bottom: 1rem;
}

.size-btn {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.size-btn.is-active,
a.size-btn.is-active {
  background: rgba(0, 112, 209, 0.35) !important;
  border-color: var(--accent-bright) !important;
  color: #fff !important;
}

.product-thumbs button,
.product-thumb {
  background: #070d18 !important;
  border-color: rgba(0, 180, 255, 0.18) !important;
}

.features li,
.product-desc,
.product-desc p {
  color: var(--muted) !important;
}

.discontinued-banner {
  background: rgba(180, 35, 24, 0.12) !important;
  color: #ffb4a8 !important;
  border-color: rgba(180, 35, 24, 0.35) !important;
}

/* Kill leftover white surfaces */
.seo-block,
.benefit-card,
.reviews-slider,
.map-block,
.brand-category-chip,
.review-form-card,
.contact-form,
.contacts-requisites {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}

.seo-block {
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.seo-block a,
.seo-inline-link {
  color: var(--accent-bright) !important;
}

.review-field input,
.review-field textarea,
.review-field select,
.order-form input,
.order-form textarea,
.order-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.promo-popup-code {
  background: var(--surface-2) !important;
  color: var(--accent-bright) !important;
}

.page-module,
.seo-section,
.warranty-card,
.payment-card {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
}

.benefit-card:hover,
.review-card,
.reviews-slide,
.catalog-toolbar,
.filter-chip,
.promo-popup,
.promo-popup-inner,
.modal,
.modal-card,
.cart-drawer,
.empty-state,
.breadcrumbs,
.page-hero,
.trust-card,
.gift-note,
.delivery-promo,
.faq-item,
.accordion-item {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}

.benefit-card:hover {
  background: var(--surface-2) !important;
}

.benefit-card p,
.seo-block p,
.review-card p,
.warranty-card p,
.payment-card p {
  color: var(--muted) !important;
}

.product-gallery,
.product-main-img,
.product-thumbs button,
.product-thumb,
.color-swatch,
.qty-control,
.specs-table,
.specs-table th,
.specs-table td {
  background: var(--surface-2, #0a0c0a) !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
}
