:root {
  --black: #030305;
  --black-card: rgba(14, 14, 22, 0.78);
  --black-light: #12121c;
  --red: #E30613;
  --red-bright: #FF2432;
  --red-hot: #FF4D00;
  --red-dark: #B8050F;
  --red-glow: rgba(255, 36, 50, 0.55);
  --cyan: #00F0FF;
  --cyan-glow: rgba(0, 240, 255, 0.35);
  --gold: #FFB800;
  --gold-glow: rgba(255, 184, 0, 0.25);
  --silver: #C4CAD4;
  --silver-bright: #FAFBFD;
  --text: #EEF1F6;
  --muted: #7A8494;
  --border: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(255, 36, 50, 0.35);
  --glass: rgba(10, 10, 16, 0.75);
  --glass-strong: rgba(8, 8, 14, 0.92);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Syne', 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 48px rgba(255, 36, 50, 0.18);
  --gradient-brand: linear-gradient(135deg, var(--red-bright) 0%, var(--red-hot) 100%);
  --gradient-shine: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
}

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

/* ── Global FX layers ── */
.fx-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.fx-bg__mesh {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(255, 36, 50, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 8%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 55% 95%, rgba(255, 77, 0, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 70%, rgba(255, 184, 0, 0.06) 0%, transparent 35%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}

.fx-bg__beam {
  position: absolute;
  width: 2px;
  height: 140%;
  top: -20%;
  background: linear-gradient(180deg, transparent, rgba(255, 36, 50, 0.35), transparent);
  filter: blur(1px);
  opacity: 0.5;
  animation: beamSweep 12s ease-in-out infinite;
}

.fx-bg__beam--1 { left: 18%; transform: rotate(12deg); }
.fx-bg__beam--2 {
  right: 22%;
  transform: rotate(-8deg);
  background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.25), transparent);
  animation-delay: -6s;
  animation-duration: 16s;
}

@keyframes beamSweep {
  0%, 100% { opacity: 0.2; transform: rotate(12deg) translateY(0); }
  50% { opacity: 0.65; transform: rotate(12deg) translateY(4%); }
}

.fx-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
}

.fx-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

@keyframes neonPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes scanMove {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes borderSpin {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(227, 6, 19, 0.4)) drop-shadow(0 0 60px rgba(227, 6, 19, 0.15)); }
  50% { filter: drop-shadow(0 0 32px rgba(227, 6, 19, 0.65)) drop-shadow(0 0 80px rgba(0, 229, 255, 0.12)); }
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0 0;
  background: transparent;
  pointer-events: none;
}

.header__wrap,
.header__shell,
.header__drawer { pointer-events: auto; }

.header__shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 14px 10px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(18, 18, 28, 0.88) 0%, rgba(8, 8, 14, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(255, 36, 50, 0.08);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.header__logo,
.logo__img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 36, 50, 0.35));
  transition: filter 0.3s, transform 0.3s;
}

.header__brand:hover .header__logo,
.logo:hover .logo__img {
  filter: drop-shadow(0 0 20px rgba(255, 36, 50, 0.55));
  transform: scale(1.02);
}

.header__tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.header__link {
  position: relative;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.header__link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.header__link:hover {
  color: var(--silver-bright);
  background: rgba(255, 255, 255, 0.04);
}

.header__link:hover::after { transform: scaleX(1); }

.header__link--accent {
  color: #ffb4b4;
}

.header__link--accent::after { transform: scaleX(1); opacity: 0.85; }

.header__cluster {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.header__icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--silver-bright);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

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

.header__icon-btn--cart:hover {
  background: rgba(255, 36, 50, 0.15);
  color: #ffb4b4;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 12px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255, 36, 50, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 36, 50, 0.45);
}

.header__cta-text { display: inline; }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--silver-bright);
  transition: transform 0.25s, opacity 0.25s;
}

.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(12, 12, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.header__drawer:not([hidden]) { display: flex; }

.header__drawer-link {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--silver);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.header__drawer-link:hover,
.header__drawer-link--accent {
  background: rgba(255, 36, 50, 0.12);
  color: #fff;
}

.nav { display: flex; gap: 28px; }

/* ── Tabs (nav, models, filters) ── */
.tabs {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tabs--nav {
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tabs--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 2px 12px;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  -webkit-overflow-scrolling: touch;
}

.tabs--scroll::-webkit-scrollbar { height: 4px; }
.tabs--scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
}

.tabs--filter {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
}

.tabs--nav .tab {
  padding: 9px 16px;
  font-size: 0.8125rem;
}

.tab:hover {
  color: var(--silver-bright);
  background: rgba(255, 255, 255, 0.06);
}

.tab.active {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 36, 50, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tabs--nav .tab.active {
  background: var(--gradient-brand);
  color: #fff;
}

.tab--model {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 14px 14px;
  min-width: 152px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tab--model.active {
  border-color: rgba(255, 36, 50, 0.5);
  background: linear-gradient(165deg, rgba(255, 36, 50, 0.18) 0%, rgba(255, 77, 0, 0.08) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 36, 50, 0.25), 0 8px 32px rgba(255, 36, 50, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tab--model:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.tab--model:hover .tab__car {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 0.5px #000)
    drop-shadow(0 0 1.2px #000)
    drop-shadow(0 0 2.5px rgba(0, 0, 0, 0.9))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.48));
}

.tab--model.active .tab__name { color: #fff; }
.tab--model.active .tab__meta { color: rgba(255, 255, 255, 0.65); }

.tab__photo {
  width: 100%;
  margin: 8px 0 6px;
  padding: 0;
  background: transparent;
  overflow: visible;
  position: relative;
}

.tab__car {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  transform: none;
  transition: transform 0.35s ease, filter 0.35s ease;
  pointer-events: none;
  filter:
    drop-shadow(0 0 0.6px #000)
    drop-shadow(0 0 1.4px #000)
    drop-shadow(0 0 2.8px rgba(0, 0, 0, 0.95))
    drop-shadow(0 5px 12px rgba(0, 0, 0, 0.42));
}

.tab--model.active .tab__car {
  filter:
    drop-shadow(0 0 0.6px #000)
    drop-shadow(0 0 1.4px #000)
    drop-shadow(0 0 2.8px rgba(0, 0, 0, 0.95))
    drop-shadow(0 6px 16px rgba(227, 6, 19, 0.28));
}

.tab__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--silver-bright);
  line-height: 1.25;
}

.tab__meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0;
}

.tab--filter {
  justify-content: flex-start;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  white-space: normal;
  text-align: left;
}

.tab--filter.active {
  background: rgba(227, 6, 19, 0.14);
  color: #fff;
  border-color: rgba(227, 6, 19, 0.45);
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, 0.2);
}

.tab__icon { font-size: 1rem; line-height: 1; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn__icon {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.btn:hover .btn__icon { transform: translateX(3px); }
.btn--primary:hover .btn__icon { transform: translateX(4px); }

.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  background-size: 200% auto;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(255, 36, 50, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.btn--primary:hover {
  background-position: right center;
  box-shadow: 0 8px 36px rgba(255, 36, 50, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--soft {
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver-bright);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn--soft:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  color: var(--silver-bright);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn--phone {
  background: rgba(227, 6, 19, 0.12);
  color: var(--red-bright);
  border-color: rgba(227, 6, 19, 0.25);
}

.btn--phone:hover {
  background: rgba(227, 6, 19, 0.2);
  border-color: rgba(227, 6, 19, 0.4);
}

.btn--whatsapp {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn--whatsapp:hover {
  background: #16a34a;
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.4);
  transform: translateY(-1px);
}

.btn--whatsapp .btn__icon { transform: none; }
.btn--whatsapp:hover .btn__icon { transform: none; }

.btn--sm { padding: 9px 16px; font-size: 0.8125rem; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver-bright);
  border-color: var(--border);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(255, 36, 50, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 184, 0, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #030305 0%, #0a0a12 45%, #06060c 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 15%;
  background: rgba(227, 6, 19, 0.25);
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  background: rgba(0, 229, 255, 0.12);
  animation-delay: -4s;
  animation-duration: 10s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(227, 6, 19, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 6, 19, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 65% 50%, black 0%, transparent 70%);
  transform: perspective(600px) rotateX(60deg) scale(2);
  transform-origin: center 80%;
  opacity: 0.5;
}

.hero__scanline {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.04;
}

.hero__scanline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: scanMove 6s linear infinite;
}

.hero__speedlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(227, 6, 19, 0.04) 40px,
    rgba(227, 6, 19, 0.04) 42px
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 72px 0 60px;
}

.hero__tag,
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-glow);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--silver-bright);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #FF2432 0%, #FF6B00 50%, #FFB800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(255, 36, 50, 0.45));
}

.hero__desc,
.hero__lead {
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0;
  border: none;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  min-width: 100px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.hero__stat:hover {
  border-color: rgba(255, 36, 50, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 36, 50, 0.08);
  transform: translateY(-2px);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

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

.hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__logo-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.3) 0%, transparent 65%);
  animation: neonPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__logo {
  position: relative;
  max-width: min(360px, 40vw);
  height: auto;
  animation: glowPulse 4s ease-in-out infinite;
}

/* ── Section headings ── */
.section-head {
  margin-bottom: 24px;
}

.section-head--compact { margin-bottom: 20px; }

.section-head--light .section-head__title { color: #fff; }

.section-head__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 6px;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--silver-bright);
  line-height: 1.15;
}

.section-title {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--silver-bright);
}

/* ── Models ── */
.models {
  padding: 56px 0 32px;
  position: relative;
}

.models::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 36, 50, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.section-head--models {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-head--models .section-head__copy {
  flex: 1 1 220px;
}

.models-view-toggle {
  flex-shrink: 0;
}

.models-grid[data-view="show"] {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 12px;
}

.models-grid[data-view="text"] {
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding-bottom: 4px;
}

.tab--model-text {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex: 0 1 auto;
}

.tab--model-text .tab__name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
}

.tab--model-text .tab__meta {
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0.65;
  line-height: 1.2;
}

.tab--model-text .tab__meta::before {
  content: '·';
  margin: 0 4px;
  opacity: 0.4;
}

.tab--model-text.active {
  padding: 5px 10px;
}

.tab--model-show {
  overflow: visible;
}

.models-grid--animating:not(.models-grid--revealed) {
  overflow: visible;
}

.models:has(.models-grid--animating:not(.models-grid--revealed)) {
  overflow-x: clip;
}

.models-grid--animating .tab--model-show {
  overflow: visible;
  position: relative;
  z-index: calc(40 - var(--train-i, 0));
  transform: translateX(calc(-1 * var(--enter-x, 0px) - 180px));
  opacity: 0;
  will-change: transform, opacity;
}

.models-grid--animating.models-grid--train-run .tab--model-show {
  animation: modelTrainIn 2s linear forwards;
  animation-delay: calc(var(--train-i, 0) * 0.34s);
}

.models-grid--animating .tab--model-show .tab__photo {
  overflow: visible;
}

.models-grid--animating .tab--model-show .tab__name,
.models-grid--animating .tab--model-show .tab__meta {
  opacity: 0;
}

.models-grid--animating.models-grid--revealed .tab--model-show .tab__name {
  animation: modelNameUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--train-i, 0) * 0.05s + 0.4s);
}

.models-grid--animating.models-grid--revealed .tab--model-show .tab__meta {
  animation: modelMetaDown 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--train-i, 0) * 0.05s + 0.4s);
}

@keyframes modelTrainIn {
  0% {
    transform: translateX(calc(-1 * var(--enter-x, 0px) - 180px));
    opacity: 0.2;
  }
  10% {
    opacity: 1;
    transform: translateX(calc(-1 * var(--enter-x, 0px) - 172px));
  }
  28% {
    transform: translateX(calc(-1 * var(--enter-x, 0px) - 135px));
  }
  48% {
    transform: translateX(calc(-1 * var(--enter-x, 0px) - 75px));
  }
  68% {
    transform: translateX(calc(-1 * var(--enter-x, 0px) - 28px));
  }
  86% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes modelMetaDown {
  from { transform: translateY(-12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .models-grid--animating .tab--model-show,
  .models-grid--animating.models-grid--revealed .tab--model-show .tab__name,
  .models-grid--animating.models-grid--revealed .tab--model-show .tab__meta {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .section-head--models {
    align-items: flex-start;
  }

  .tab--model-text {
    padding: 4px 8px;
  }

  .tab--model-text .tab__name {
    font-size: 0.75rem;
  }

  .tab--model-text .tab__meta {
    font-size: 0.625rem;
  }
}

/* ── Catalog ── */
.catalog { padding: 24px 0 64px; }

.catalog-top {
  position: sticky;
  top: 76px;
  z-index: 40;
  margin-bottom: 20px;
  padding: 18px;
  background: linear-gradient(165deg, rgba(14, 14, 22, 0.95) 0%, rgba(8, 8, 14, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Marketplace search bar */
.search-bar {
  display: flex;
  gap: 0;
  width: 100%;
}

.search-bar__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px 0 16px;
  background: #fff;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  border: 2px solid #fff;
  border-right: none;
  transition: box-shadow 0.2s;
}

.search-bar__field:focus-within {
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.25);
}

.search-bar__icon {
  flex-shrink: 0;
  color: #888;
}

.search-bar__input {
  flex: 1;
  min-width: 0;
  padding: 14px 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 1rem;
  color: #111;
}

.search-bar__input:focus { outline: none; }

.search-bar__input::placeholder { color: #999; }

.search-bar__input::-webkit-search-cancel-button { display: none; }

.search-bar__clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #eee;
  color: #555;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.search-bar__clear:hover { background: #ddd; }

.search-bar__btn {
  flex-shrink: 0;
  padding: 0 28px;
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.15s;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.search-bar__btn:hover {
  box-shadow: 0 4px 20px rgba(255, 36, 50, 0.45);
  transform: translateY(-1px);
}

.search-bar__btn:active { transform: scale(0.98); }

/* Horizontal filter chips */
.catalog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.catalog-filters__scroll {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.catalog-filters__scroll::-webkit-scrollbar { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-chip:hover {
  color: var(--silver-bright);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.filter-chip.active {
  color: #fff;
  border-color: var(--red-bright);
  background: rgba(227, 6, 19, 0.2);
}

.filter-chip__icon { font-size: 0.9375rem; line-height: 1; }

.catalog-filters__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.catalog-filters__stock[aria-pressed="true"] {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.12);
}

.catalog-filters__stock svg { opacity: 0.7; }

#resetFilters[hidden] { display: none !important; }

/* Active filter chips above products */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 12px;
  border: 1px solid rgba(227, 6, 19, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(227, 6, 19, 0.1);
  color: var(--silver-bright);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.active-filter:hover {
  background: rgba(227, 6, 19, 0.16);
  border-color: rgba(227, 6, 19, 0.5);
}

.active-filter svg { opacity: 0.7; flex-shrink: 0; }

.link-btn {
  border: none;
  background: none;
  padding: 0;
  color: var(--red-bright);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

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

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

/* View toggle */
.view-toggle {
  display: inline-flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.view-toggle__btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.view-toggle__btn:hover { color: var(--silver-bright); }

.view-toggle__btn.active {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(255, 36, 50, 0.35);
}

/* Chips & add button */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.chip--ok {
  background: rgba(74, 222, 128, 0.1);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.chip--wait {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 36, 50, 0.35);
}

.btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 36, 50, 0.5);
}

.btn-add:active { transform: scale(0.98); }

.btn-add svg { flex-shrink: 0; opacity: 0.95; }

.btn-add--lg {
  width: 100%;
  padding: 13px 20px;
  font-size: 0.9375rem;
}

.btn-add-qty {
  display: inline-flex;
  align-items: stretch;
  border-radius: var(--radius-pill);
  background: var(--red-bright);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.2);
}

.btn-add-qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 9px 10px;
  border: none;
  background: transparent;
  color: inherit;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-add-qty__btn:hover { background: rgba(0, 0, 0, 0.12); }

.btn-add-qty__count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 0 2px;
  font-size: 0.875rem;
  font-weight: 700;
}

.btn-add-qty--lg {
  width: 100%;
}

.btn-add-qty--lg .btn-add-qty__btn {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
}

.btn-add-qty--lg .btn-add-qty__count {
  flex: 0 0 40px;
  font-size: 1rem;
}

/* Product cards */
.products--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.products--list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 20, 30, 0.92) 0%, rgba(10, 10, 16, 0.88) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 36, 50, 0.12) 0%, transparent 55%);
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.product-card:hover::before { opacity: 1; }

.product-card:hover {
  border-color: rgba(255, 36, 50, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(255, 36, 50, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #f0f0f4 0%, #e4e4ea 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(8, 8, 12, 0.06));
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.35s ease;
}

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

.product-card__placeholder {
  font-size: 2.25rem;
  opacity: 0.18;
  filter: grayscale(1);
}

.product-card__content {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.product-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card__sku {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--silver-bright);
}

.product-card__sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  color: var(--silver-bright);
}

/* List view */
.products--list .product-card {
  flex-direction: row;
  align-items: stretch;
}

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

.products--list .product-card__media {
  width: 112px;
  min-width: 112px;
  aspect-ratio: auto;
  min-height: 112px;
  border-right: 1px solid var(--border);
}

.products--list .product-card__content {
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 16px;
  gap: 4px 16px;
}

.products--list .product-card__head {
  width: 100%;
  order: 1;
}

.products--list .product-card__title {
  flex: 1 1 200px;
  order: 2;
  margin: 0;
}

.products--list .product-card__sub {
  flex: 1 1 180px;
  order: 3;
  -webkit-line-clamp: 1;
  margin: 0;
}

.products--list .product-card__bar {
  order: 4;
  margin: 0;
  padding: 0;
  border: none;
  margin-left: auto;
  flex-shrink: 0;
}

.products--list .product-card__price {
  font-size: 1.0625rem;
}

.badge {
  padding: 5px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
}

.badge--stock {
  background: rgba(26, 127, 75, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.badge--order {
  background: rgba(227, 6, 19, 0.12);
  color: var(--red-bright);
  border: 1px solid rgba(227, 6, 19, 0.35);
}

.catalog__empty {
  text-align: center;
  padding: 48px;
  color: var(--muted);
}

.section-head--center {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 36px;
}

/* ── Features ── */
.features {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255, 36, 50, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 80%, rgba(0, 240, 255, 0.04) 0%, transparent 40%);
}

.features__layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 48px 64px;
  align-items: start;
}

.features__intro {
  position: sticky;
  top: 100px;
}

.features__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--silver-bright);
  margin: 8px 0 16px;
}

.features__lead {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.features__cta {
  display: inline-flex;
}

.features__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.features__steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--red-bright), rgba(0, 240, 255, 0.5), rgba(255, 255, 255, 0.08));
  border-radius: 2px;
}

.feature-step {
  display: grid;
  grid-template-columns: 56px 48px 1fr auto;
  gap: 16px 20px;
  align-items: center;
  padding: 24px 20px;
  border-radius: 16px;
  position: relative;
  transition: background 0.3s;
}

.feature-step:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-step:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-step__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--red-bright);
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-step__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver-bright);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feature-step:hover .feature-step__icon {
  border-color: rgba(255, 36, 50, 0.45);
  box-shadow: 0 0 24px rgba(255, 36, 50, 0.2);
  transform: scale(1.05);
}

.feature-step__content h3 {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--silver-bright);
  margin-bottom: 4px;
}

.feature-step__content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.feature-step__metric {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.feature-step__metric em {
  display: block;
  font-style: normal;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .features {
    padding: 48px 0;
  }

  .features__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features__intro {
    position: static;
  }

  .features__steps::before {
    left: 23px;
  }

  .feature-step {
    grid-template-columns: 48px 44px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 14px;
    padding: 20px 12px;
  }

  .feature-step__index {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 12px;
  }

  .feature-step__icon {
    width: 44px;
    height: 44px;
  }

  .feature-step__metric {
    grid-column: 3;
    grid-row: 2;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .feature-step__metric em {
    display: inline;
    font-size: 1.25rem;
  }
}

/* ── Contacts ── */
.contacts {
  padding: 64px 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255, 36, 50, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #030305, #140808 50%, #030305);
  border-top: 1px solid rgba(255, 36, 50, 0.25);
  position: relative;
  overflow: hidden;
}

.contacts::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-bright), var(--cyan), transparent);
  animation: neonPulse 3s ease-in-out infinite;
}

.contacts__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.contacts__brand {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
  margin: 8px 0;
}

.contacts__address,
.contacts__phone {
  color: var(--silver);
  font-size: 1rem;
  margin-top: 6px;
}

.contacts__phone { color: var(--silver-bright); font-weight: 700; }

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

/* ── Footer ── */
.footer {
  position: relative;
  margin-top: 32px;
  padding: 0 0 24px;
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 36, 50, 0.6), rgba(0, 240, 255, 0.4), transparent);
}

.footer__glow::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(255, 36, 50, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px 24px;
  padding: 48px 0 32px;
}

.footer__brand-col { min-width: 0; }

.footer__brand {
  display: inline-block;
  margin-bottom: 14px;
}

.footer__logo {
  height: 40px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(255, 36, 50, 0.25));
  transition: filter 0.3s;
}

.footer__brand:hover .footer__logo {
  filter: drop-shadow(0 0 20px rgba(255, 36, 50, 0.45));
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 14px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  width: fit-content;
}

.footer__link:hover {
  color: var(--silver-bright);
  transform: translateX(3px);
}

.footer__link--accent { color: #ffb4b4; font-weight: 600; }
.footer__link--accent:hover { color: var(--red-bright); }

.footer__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.footer__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--silver-bright);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__phone:hover { color: var(--red-bright); }

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #86efac;
  text-decoration: none;
}

.footer__wa:hover { color: #4ade80; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer__admin {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Modal ── */
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--black-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.2), 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 60px rgba(227, 6, 19, 0.1);
}

.modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--cyan), var(--red-bright));
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  color: var(--silver);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.modal__close:hover {
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(227, 6, 19, 0.3);
}

.modal__body { padding: 28px; }

.modal-product__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--black-light);
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.modal-product__img--empty {
  display: grid;
  place-items: center;
  font-size: 4rem;
  opacity: 0.15;
}

.modal-product__sku {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px var(--cyan-glow);
}

.modal-product__title {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
  margin: 8px 0 12px;
  line-height: 1.25;
}

.modal-product__price {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--red-bright);
  margin-bottom: 16px;
}

.modal-product__desc {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-product__tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--silver);
  border-radius: var(--radius-pill);
}

.modal-product__actions {
  display: grid;
  gap: 10px;
}

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

.track-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-bright);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.track-btn:hover {
  background: rgba(227, 6, 19, 0.12);
  border-color: rgba(227, 6, 19, 0.35);
  color: #fff;
}

.track-btn svg { flex-shrink: 0; }

@media (max-width: 600px) {
  .track-btn { padding: 0; width: 44px; }
  .track-btn__label { display: none; }
}

.cart-btn:not(.header__icon-btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-bright);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cart-btn:not(.header__icon-btn):hover {
  background: rgba(227, 6, 19, 0.12);
  border-color: rgba(227, 6, 19, 0.35);
}

.header__icon-btn.cart-btn {
  width: 40px;
  height: 40px;
}

.cart-btn__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--red-bright);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ── Cart sidebar ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100dvh;
  background: linear-gradient(180deg, rgba(10, 10, 16, 0.98) 0%, rgba(6, 6, 10, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  border-left: 1px solid rgba(255, 36, 50, 0.2);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active { transform: translateX(0); }

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-sidebar__header h2 {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 800;
}

.cart-sidebar__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--black-light);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }

.cart-item__info { flex: 1; min-width: 0; }

.cart-item__sku {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
}

.cart-item__name {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.3;
}

.cart-item__price {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 4px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: center;
}

.cart-item__qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
}

.cart-sidebar__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 14px;
}

/* ── Checkout modals ── */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.checkout-modal.active { opacity: 1; visibility: visible; }

.checkout-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(165deg, rgba(18, 18, 28, 0.98) 0%, rgba(10, 10, 16, 0.98) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 48px rgba(255, 36, 50, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.checkout-modal__dialog--success { text-align: center; }

.success-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.order-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 18, 0.96);
  border-top: 1px solid rgba(227, 6, 19, 0.35);
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.order-banner__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-banner__text {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.order-banner__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-banner__text strong {
  font-size: 0.9375rem;
  font-weight: 800;
}

.order-banner__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.order-banner__close:hover { color: var(--text); }

body.has-order-banner { padding-bottom: 76px; }

.checkout-modal__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-right: 36px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(227, 6, 19, 0.45);
}

.form-options {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.form-options legend {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0 6px;
}

.option-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  cursor: pointer;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.checkout-form__error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.35);
  color: #ffb4b4;
  font-size: 0.875rem;
  line-height: 1.45;
}

.form-group input.input--error,
.form-group textarea.input--error {
  border-color: rgba(227, 6, 19, 0.65);
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.15);
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-field__prefix {
  font-weight: 700;
  color: var(--muted);
}

.phone-field input { flex: 1; }

.checkout-summary {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
  padding: 6px 0;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(0, 240, 255, 0.1) 100%);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
  font-size: 1.875rem;
  display: grid;
  place-items: center;
}

.payment-details {
  text-align: left;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
}

.payment-details__title {
  font-weight: 700;
  margin-bottom: 12px;
}

.payment-details__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.payment-details__row:last-child { border-bottom: 0; }

.payment-details__row dt { color: var(--muted); }

.payment-details__copy {
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--red-bright);
  font-size: 0.75rem;
  cursor: pointer;
}

.bank-picker__search {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.bank-picker {
  display: grid;
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
}

.bank-picker__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.bank-picker__item:hover { border-color: rgba(227, 6, 19, 0.4); }

.bank-picker__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.bank-picker__empty {
  text-align: center;
  color: var(--muted);
  padding: 24px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .header__shell {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 8px 10px 8px 12px;
  }

  .header__nav { display: none; }

  .header__tagline { display: none; }

  .header__burger { display: flex; }

  .header__cta-text { display: none; }

  .header__cta {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__logo-wrap { order: -1; }
  .hero__logo { max-width: 280px; }
  .hero__stats { gap: 16px; }
  .hero__grid { opacity: 0.25; }

  /* Поиск/фильтры не sticky — не перекрывают товары */
  .catalog-top {
    position: static;
    top: auto;
    z-index: auto;
    margin-bottom: 16px;
    padding: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  }

  .search-bar__input { padding: 11px 0; font-size: 0.9375rem; }
  .search-bar__btn { padding: 0 18px; font-size: 0.8125rem; }

  .catalog-filters { margin-top: 10px; }
  .filter-chip { padding: 7px 12px; font-size: 0.75rem; }
  .catalog-filters__stock { padding: 7px 12px; font-size: 0.75rem; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-top: 40px;
  }

  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  /* Поиск в одну строку — компактнее */
  .search-bar { flex-direction: row; gap: 0; }
  .search-bar__field {
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    border: 2px solid #fff;
    border-right: none;
    padding: 0 10px 0 12px;
  }
  .search-bar__btn {
    width: auto;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    padding: 0 16px;
  }
  .catalog-filters { flex-wrap: nowrap; }
  .catalog-filters__stock { width: auto; flex-shrink: 0; }
  .hero__inner { padding: 40px 0 32px; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero__stat-value { font-size: 1.25rem; }

  .catalog__toolbar {
    flex-wrap: wrap;
    gap: 8px;
  }

  .catalog__toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  /* Grid on mobile — compact cards */
  .products--grid { grid-template-columns: 1fr; gap: 12px; }

  .products--grid .product-card__media {
    aspect-ratio: 16/10;
  }

  .products--grid .product-card__content {
    padding: 12px 14px 14px;
    gap: 4px;
  }

  .products--grid .product-card__sub {
    flex: 0;
    -webkit-line-clamp: 1;
  }

  .products--grid .product-card__bar {
    margin-top: 6px;
    padding-top: 10px;
  }

  .products--grid .product-card__price {
    font-size: 1.0625rem;
  }

  .products--grid .btn-add {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  /* List on mobile — compact horizontal rows */
  .products--list { gap: 8px; }

  .products--list .product-card {
    flex-direction: row;
    align-items: stretch;
  }

  .products--list .product-card__media {
    width: 80px;
    min-width: 80px;
    min-height: 80px;
    aspect-ratio: 1;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .products--list .product-card__media img {
    padding: 6px;
  }

  .products--list .product-card__content {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 12px;
    gap: 2px;
    min-width: 0;
  }

  .products--list .product-card__head {
    width: 100%;
    order: 0;
  }

  .products--list .product-card__title {
    order: 1;
    flex: none;
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .products--list .product-card__sub {
    order: 2;
    flex: none;
    font-size: 0.6875rem;
    -webkit-line-clamp: 1;
  }

  .products--list .product-card__bar {
    order: 3;
    margin: 6px 0 0;
    padding: 0;
    border: none;
    margin-left: 0;
  }

  .products--list .product-card__price {
    font-size: 1rem;
  }

  .products--list .btn-add {
    padding: 7px 10px;
    font-size: 0.6875rem;
  }

  .products--list .btn-add span { display: none; }

  .logo__img { height: 38px; }
  .hero__orb { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .contacts__actions { flex-direction: column; width: 100%; }
  .contacts__actions .btn { width: 100%; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── Order tracking page ── */
.track-page { min-height: 100vh; }

.track-main {
  padding: 32px 16px 64px;
  max-width: 560px;
}

.track-card {
  background: rgba(16, 16, 22, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(20px);
}

.track-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.track-card__sub {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.track-form--compact {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.track-result { display: grid; gap: 20px; }

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

.track-result__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.track-result__number {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 4px;
}

.track-result__date {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.track-status-banner {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
}

.track-status-banner--info {
  background: rgba(100, 130, 255, 0.12);
  border: 1px solid rgba(100, 130, 255, 0.3);
  color: #b8c8ff;
}

.track-status-banner--warn {
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.35);
  color: #ffd98a;
}

.track-status-banner--ok {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #8ee4b0;
}

.track-status-banner--cancel {
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.35);
  color: #ffb4b4;
}

.track-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.track-step__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.track-step__label {
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.3;
}

.track-step--done .track-step__dot {
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.5);
  color: #8ee4b0;
}

.track-step--done .track-step__label { color: var(--text); }

.track-step--active .track-step__dot {
  background: rgba(227, 6, 19, 0.2);
  border-color: var(--red-bright);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.15);
}

.track-step--active .track-step__label {
  color: var(--text);
  font-weight: 600;
}

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

.track-meta span {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.track-summary { margin-bottom: 0; }

@media (max-width: 480px) {
  .track-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .track-result__head { flex-direction: column; }
  .track-result__date { text-align: left; }
}
