/* ============================================================
   Design System — Global Arms Manufacturer
   Tokens: cyan primary (#00b9f1) · light canvas (#e7ecef)
   Typography: Barlow Condensed (display + body) · DM Sans (spec data)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Quicksand:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ---- Tokens ---- */
:root {
  --bg: #e7ecef;
  --surface: #f9fbf2;
  --surface-raised: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --border: #d1d5db;
  --accent: #00b9f1;
  --accent-hover: #33c7f3;
  --accent-dim: rgba(0, 185, 241, 0.12);
  --accent-grid: rgba(0, 185, 241, 0.10);
  --secondary: #004b62;
  --signal: #e53d00;
  --signal-soft: rgba(229, 61, 0, 0.08);
  --surface-warm: #ffede1;

  --font-display: 'Barlow Condensed', 'Söhne Condensed', -apple-system, sans-serif;
  --font-body: 'Barlow Condensed', 'Söhne Condensed', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --container: 1280px;
  --container-wide: 1440px;
  --nav-height: 80px;
  --radius: 4px;
  --transition: 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--fg);
  font: 400 16px/1.6 var(--font-body);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ---- Typography ---- */
.heading-1 {
  font: 700 clamp(36px, 5vw, 72px)/0.95 var(--font-display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.heading-2 {
  font: 700 clamp(28px, 3.5vw, 48px)/1.05 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.heading-3 {
  font: 600 clamp(20px, 2.5vw, 32px)/1.1 var(--font-display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.heading-4 {
  font: 600 clamp(16px, 1.8vw, 22px)/1.2 var(--font-display);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.body-large {
  font: 400 clamp(18px, 1.6vw, 22px)/1.6 var(--font-body);
}
.body {
  font: 400 16px/1.7 var(--font-body);
}
.body-small {
  font: 400 14px/1.6 var(--font-body);
  color: var(--muted);
}
.mono {
  font: 400 14px/1.5 var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.mono-sm {
  font: 400 12px/1.4 var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.kicker {
  font: 500 12px/1.2 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow {
  font: 600 11px/1.1 var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Container ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 12px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 12px; }

/* ---- Grid ---- */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(8, 12, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 43px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font: 600 14px/1 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 56px;
  color: #fff;
  font: 600 12px/1 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  background: var(--accent);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  border-radius: var(--radius);
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover { color: var(--accent); }
.nav-hamburger { display: none; }

/* ---- Product breadcrumbs (desktop alignment with nav) ----
   .nav-inner carries inline 18px side padding on product pages; the
   breadcrumb bar must share the same edges at every desktop width so
   Home aligns with the logo and the right label with the Catalogue CTA. */
@media (min-width: 1025px) {
  .cr1-breadcrumbs-container {
    max-width: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font: 600 13px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 8px 16px;
}
.btn-ghost:hover { color: var(--fg); }
.btn-lg { padding: 18px 40px; font-size: 14px; }

/* ---- Section ---- */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-child { border-bottom: 0; }

.corporate-viewport {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
}
.section-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-header-centered { text-align: center; align-items: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--accent-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-grid) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-cta { margin-top: 16px; display: flex; gap: 16px; }

/* ---- Ticker ---- */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 13px/1 var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}
.ticker-item::before {
  content: '◆';
  color: var(--accent);
  font-size: 8px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Product Card ---- */
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 185, 241, 0.08);
}
.product-card-image {
  position: relative;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--bg);
  padding: 9px;
}
.product-card-image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  border-radius: 2px;
  background: transparent;
}
.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

/* Custom base scales for images that need non-default sizing.
   data-scale="110" = 1.1x, data-scale="095" = 0.95x, data-scale="090" = 0.90x.
   The hover value keeps the same relative increase as default (+0.04). */
.product-card-image img[data-scale="110"] { transform: scale(1.1); }
.product-card-image img[data-scale="095"] { transform: scale(0.95); }
.product-card-image img[data-scale="090"] { transform: scale(0.90); }
.product-card-image img[data-scale="085"] { transform: scale(0.85); }
.product-card:hover .product-card-image img[data-scale="110"] { transform: scale(1.14); }
.product-card:hover .product-card-image img[data-scale="095"] { transform: scale(1.0); }
.product-card:hover .product-card-image img[data-scale="090"] { transform: scale(0.94); }
.product-card:hover .product-card-image img[data-scale="085"] { transform: scale(0.89); }

.product-card-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background-image:
    linear-gradient(var(--accent-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-grid) 1px, transparent 1px);
  background-size: 40px 40px;
  transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover .product-card-grid {
  opacity: 1;
}
.product-card-brackets {
  position: absolute;
  inset: 12px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-brackets {
  opacity: 1;
}
.product-card-brackets::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.product-card-brackets::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 20px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
.product-card-body {
  padding: 23px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-card-body .model {
  font: 700 25px/1.1 var(--font-display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.product-card-body .desc {
  font: 400 16px/1.5 var(--font-body);
  color: var(--muted);
  flex: 1;
}
.product-card-body .spec {
  font: 400 14px/1.4 var(--font-mono);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.product-card-body .link {
  font: 600 13px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.product-card-body .link::after {
  content: '→';
  transition: transform var(--transition);
}
.product-card-body .link:hover::after {
  transform: translateX(4px);
}

/* ---- Spec Table ---- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table th {
  font: 600 11px/1 'DM Sans', -apple-system, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 12px 16px 8px;
  border-bottom: 1px solid var(--border);
}
.spec-table td {
  font: 500 14px/1.5 'DM Sans', -apple-system, sans-serif;
  font-variant-numeric: tabular-nums;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child {
  color: var(--muted);
  width: 180px;
}

/* ---- Feature Icons ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  align-items: center;
}
.feature-item .icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 18px/1 var(--font-mono);
  color: var(--accent);
}
.feature-item .label {
  font: 600 13px/1.2 var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature-item .sub {
  font: 400 12px/1.4 var(--font-body);
  color: var(--muted);
}

/* ---- Variant Selector ---- */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.variant-chip {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font: 500 13px/1 var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.variant-chip:hover { border-color: var(--accent); color: var(--accent); }
.variant-chip.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

/* ---- Comparison Table ---- */
.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font: 400 13px/1.4 var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 120px;
}
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  width: calc((100% - 120px) / 3);
}
.comparison-table th {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--surface);
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.comparison-table tr:hover td { background: var(--accent-dim); }
.comparison-table .highlight {
  color: var(--accent);
  font-weight: 600;
}

/* ---- QC Band ---- */
.qc-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qc-stat {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qc-stat .number {
  font: 700 clamp(36px, 5vw, 56px)/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--accent);
}
.qc-stat .label {
  font: 400 14px/1.4 var(--font-body);
  color: var(--muted);
}

/* ---- Category Nav (Shotguns) ---- */
.cat-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-nav-inner {
  display: flex;
  gap: 4px;
  padding: 8px 24px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.cat-nav-item {
  flex-shrink: 0;
  padding: 8px 16px;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.cat-nav-item:hover { color: var(--fg); border-color: var(--border); }
.cat-nav-item.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}
.cat-section { margin-bottom: 30px; }
.cat-section:last-child { margin-bottom: 0; }
.cat-section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0px;
  margin-top: 10px;
}
.cat-section-header .cat-head-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

/* ---- Category Sidebar Layout ---- */
.cat-layout {
  display: flex;
  gap: 48px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.cat-sidebar {
  flex-shrink: 0;
  width: 200px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 48px;
}
.cat-sidebar-item {
  display: block;
  padding: 10px 16px;
  font: 700 11px/1 'Barlow', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.cat-sidebar-item:hover {
  color: var(--fg);
  border-color: var(--border);
}
.cat-sidebar-item.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}
.cat-content {
  flex: 1;
  min-width: 0;
  padding-top: 48px;
}
.cat-content .body {
  max-width: 680px;
}

/* ---- Product Carousel ---- */
.cat-carousel {
  position: relative;
}
.cat-carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.cat-carousel-track::-webkit-scrollbar { display: none; }
.cat-carousel-track > .product-card {
  flex: 0 0 auto;
  width: 506px;
  scroll-snap-align: start;
}

.cat-content .body,
.cat-content .body-small {
  margin-bottom: 24px;
}
.cat-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--fg);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
}
.cat-carousel:hover .cat-carousel-btn {
  opacity: 1;
  pointer-events: auto;
}
.cat-carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cat-carousel-btn-prev { left: -20px; }
.cat-carousel-btn-next { right: -20px; }
.cat-carousel-btn svg { width: 20px; height: 20px; }
@media (max-width: 900px) {
  .cat-carousel-track > .product-card { width: 414px; }
  .cat-carousel-btn { display: none; }
}
@media (max-width: 600px) {
  .cat-carousel-track > .product-card { width: 345px; }
}

/* ---- Related Models Carousel (product pages) ---- */
.related-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.rc-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}
.rc-track::-webkit-scrollbar { display: none; }
.rc-track > .product-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
}
.rc-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--fg);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 20px;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
}
.rc-btn-prev { margin-right: -20px; }
.rc-btn-next { margin-left: -20px; }
.related-carousel:hover .rc-btn {
  opacity: 1;
  pointer-events: auto;
}
.rc-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
@media (max-width: 768px) {
  .rc-track > .product-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
  }
  .rc-track > .product-card .product-card-body .desc {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .rc-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
    display: grid !important;
  }
  .related-carousel:hover .rc-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ---- Form ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: 400 15px/1.5 var(--font-body);
  color: var(--fg);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 14px/1.5 var(--font-body);
  color: var(--muted);
}
.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
}

/* ---- Footer Marquee ---- */
.footer-marquee {
  background: #0c1322;
  padding: 14px 0;
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(0,185,241,0.08);
}
.footer-marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.footer-marquee-item {
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-marquee-item::before {
  content: "◆";
  color: var(--accent);
  margin-right: 48px;
  opacity: 0.5;
  font-size: 8px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-marquee-track { animation: none; }
}

/* ---- Footer ---- */
.footer {
  background: #080c17;
  color: #cbd5e1;
  padding: 48px 0 0;
}
.footer .container {
  max-width: none;
  padding: 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.5fr 1.6fr;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-nav-group {
  display: flex;
  gap: 24px;
  padding-left: 40px;
}
.footer-nav-group .footer-links-col {
  flex: 1;
}
.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 36px;
}
.footer-brand .kartvizit {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 16px 18px;
  position: relative;
}
.footer-brand .kartvizit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  opacity: 0.4;
}
.footer-brand .kartvizit .kv-firma {
  font: 600 11px/1.4 var(--font-body);
  color: #94a3b8;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.footer-brand .kartvizit .kv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-brand .kartvizit .kv-row:last-child { margin-bottom: 0; }
.footer-brand .kartvizit .kv-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.6;
}
.footer-brand .kartvizit .kv-label {
  font: 500 11px/1.4 var(--font-body);
  color: #475569;
  letter-spacing: 0.02em;
  min-width: 52px;
}
.footer-brand .kartvizit .kv-value {
  font: 500 12px/1.4 var(--font-body);
  color: #cbd5e1;
}
.footer-brand .kartvizit .kv-value a {
  color: var(--accent);
  text-decoration: none;
}
.footer-links-col h4 {
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 16px;
}
.footer-links-col a {
  display: block;
  font: 600 14px/1.5 var(--font-body);
  color: #94a3b8;
  padding: 4px 0;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links-col a:hover {
  color: var(--accent);
}
.footer-maps {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  min-height: 200px;
  background: rgba(255,255,255,0.02);
}
.footer-maps iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: block;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span {
  font: 600 12px/1 var(--font-body);
  color: #475569;
  letter-spacing: 0.02em;
}
.footer-bottom span a {
  color: var(--accent);
  text-decoration: none;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #64748b;
  transition: all var(--transition);
}
.footer-social a svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,185,241,0.06);
}
@media (max-width: 1024px) {
  .footer-social a { width: 44px; height: 44px; }
  .footer .container { padding: 0 20px; }
}

/* ---- Newsletter Inline ---- */
.newsletter-inline {
  display: flex;
  gap: 0;
  max-width: 400px;
}
.newsletter-inline input {
  flex: 1;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 12px 16px;
  font: 400 14px/1.5 var(--font-body);
  color: var(--fg);
  outline: none;
}
.newsletter-inline input:focus { border-color: var(--accent); }
.newsletter-inline input::placeholder { color: var(--muted); }
.newsletter-inline button {
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-inline button:hover { background: var(--accent-hover); }

/* ---- Video Wrapper ---- */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-wrapper video, .video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* ---- Manifesto Block ---- */
.manifesto {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font: 400 clamp(18px, 2.5vw, 28px)/1.5 var(--font-body);
  color: var(--fg);
  letter-spacing: 0.01em;
}
.manifesto-separator {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 24px auto;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 12px/1 var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--muted); }
.breadcrumb .sep { color: var(--border); font-size: 10px; }

/* ---- Product Gallery ---- */
.gallery-grid {
  width: 100%;
  margin-bottom: 12px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0px;
  display: block;
  transform: scale(1.15);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumb {
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: all var(--transition);
  opacity: 0.65;
}
.gallery-thumb:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}
/* ---- Vertical Gallery Thumbs (right column) ---- */
.gallery-thumbs-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gallery-thumbs-vertical .gallery-thumb {
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: all var(--transition);
  opacity: 0.65;
}
.gallery-thumbs-vertical .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}
.gallery-thumbs-vertical .gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}
.gallery-thumbs-vertical .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
  display: block;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
  display: block;
}

/* ---- Back to Top ---- */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all var(--transition);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Spec Detail Layout ---- */
.spec-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- Product Spec Hero ---- */
.spec-hero-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.spec-hero-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
}
.spec-hero-item .spec-label {
  font: 600 9px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-hero-item .spec-value {
  font: 500 16px/1.2 var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-sitemap { grid-template-columns: 1fr 1fr; gap: 32px; }
  .qc-band { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .spec-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-thumbs-vertical {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding: 4px 0 !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    grid-template-columns: none !important;
    grid-auto-flow: unset !important;
  }
  .gallery-thumbs-vertical .gallery-thumb {
    flex: 0 0 auto !important;
    width: 100px !important;
    aspect-ratio: 16/9 !important;
    scroll-snap-align: start !important;
    min-height: 0 !important;
  }
  .cr1-gallery-right {
    max-height: 140px !important;
    height: auto !important;
  }
  .cr1-gallery-right .gallery-thumbs-vertical > div:not(.gallery-thumb) {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .gallery-thumbs-vertical .gallery-thumb {
    width: 80px !important;
  }
  .cr1-gallery-right {
    max-height: 100px !important;
  }
}
@media (max-width: 1000px) {
  .hero-pills { display: none !important; }
}

/* ---- Mobile nav inner padding ----
   Product pages pin .nav-inner at 18px side padding inline for desktop
   breadcrumb alignment. On mobile/tablet (≤1024px) tighten it to 10px. */
@media (max-width: 1024px) {
  .nav-inner {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ---- Tablet (769–1024px) — mirrors mobile layout changes ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-logo-img { height: 33px; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
  .nav-mobile {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font: 600 14px/1 'Inter', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a:last-child { border-bottom: 0; }
  .hero-content { max-width: 100%; }
  .hero { min-height: 60vh; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { gap: 6px; }
  .section { padding: 56px 0; }
  .variant-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand .footer-logo { margin-inline: auto; }
  .footer-brand .kartvizit .kv-row { justify-content: flex-start; text-align: left; }
  .footer-brand .kartvizit .kv-label { width: 52px; min-width: 52px; flex-shrink: 0; text-align: left; }
  .footer-brand .kartvizit .kv-value { text-align: left; }
  .footer-nav-group { padding-left: 0; justify-content: center; }
  .footer-nav-group .footer-links-col { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .spec-hero-bar { gap: 16px; }
  .spec-hero-item { min-width: 80px; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}
  
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-logo-img { height: 33px; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
  .nav-mobile {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font: 600 14px/1 'Inter', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a:last-child { border-bottom: 0; }
  .hero-content { max-width: 100%; }
  .hero { min-height: 80vh; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-thumbs { gap: 6px; }
  .section { padding: 64px 0; }
  .variant-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand .footer-logo { margin-inline: auto; }
  .footer-brand .kartvizit .kv-row { justify-content: flex-start; text-align: left; }
  .footer-brand .kartvizit .kv-label { width: 52px; min-width: 52px; flex-shrink: 0; text-align: left; }
  .footer-brand .kartvizit .kv-value { text-align: left; }
  .footer-nav-group { padding-left: 0; justify-content: center; }
  .footer-nav-group .footer-links-col { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .spec-hero-bar { gap: 16px; }
  .spec-hero-item { min-width: 80px; }
  /* Product detail thumbnail galleries — mobile only centered */
  .cr1-gallery-right .gallery-thumbs-vertical {
    justify-content: center !important;
  }
}
@media (max-width: 1024px) {
  .cat-layout { flex-direction: column; gap: 0; }
  .cat-sidebar {
    position: static;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    overflow-x: auto;
  }
  .cat-content { padding-top: 24px; }
}
@media (max-width: 480px) {
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .gallery-thumb:last-child:nth-child(odd) { max-width: 100%; }
  .variant-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 70vh; }
  .hero-cta { flex-direction: column; }
  .container { padding: 0 16px; }
  .nav-cta { padding: 10px 16px; font-size: 11px; }
}

/* ---- Contact Viewport ---- */
.contact-viewport {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 32px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbf2 0%, #e7ecef 100%);
}
.contact-viewport-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.contact-hero .heading-1 {
  font-size: clamp(32px, 3.5vw, 52px);
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  flex: 1;
  align-items: start;
  padding-bottom: 32px;
}
.contact-form-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-item .cd-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: grid;
  place-items: center;
}
.contact-detail-item .cd-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}
.contact-detail-item .cd-label {
  display: block;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail-item a,
.contact-detail-item span:not(.cd-label) {
  display: block;
  font: 400 14px/1.5 var(--font-body);
  color: var(--fg);
}
.contact-detail-item a {
  color: var(--accent);
  text-decoration: none;
}
.contact-detail-item a:hover {
  text-decoration: underline;
}
.contact-social {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all var(--transition);
}
.contact-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.contact-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (max-width: 1024px) {
  .contact-viewport { min-height: auto; padding: 24px 0; }
  .contact-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-col { padding: 24px; }
}

/* ---- Pistol Select Hero ---- */
.pistol-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  min-height: 480px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.pistol-select-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
}
.pistol-select-card:first-child {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.pistol-select-card:last-child {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
.pistol-select-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.pistol-select-card:hover {
  border-color: transparent;
  background: rgba(255,255,255,0.02);
}
.pistol-select-card:hover::before {
  background: linear-gradient(135deg, rgba(0,185,241,0.25) 0%, rgba(0,185,241,0.05) 50%, transparent 70%);
}
.pistol-select-card[data-pistol="cp9"]:hover::before {
  background: linear-gradient(135deg, rgba(229,61,0,0.2) 0%, rgba(229,61,0,0.04) 50%, transparent 70%);
}
.pistol-select-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pistol-select-card:hover .pistol-select-img {
  opacity: 0.12;
  transform: scale(1.03);
}
.pistol-select-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 60px rgba(0,185,241,0.08));
}
.pistol-select-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
  pointer-events: none;
}
.pistol-select-card:first-child .pistol-select-glow {
  background: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(0,185,241,0.06) 0%, transparent 70%);
}
.pistol-select-card:last-child .pistol-select-glow {
  background: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(229,61,0,0.05) 0%, transparent 70%);
}
.pistol-select-card:hover .pistol-select-glow {
  opacity: 1;
}
.pistol-select-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 360px;
}
.pistol-select-badge {
  display: inline-flex;
  padding: 6px 16px;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--transition);
}
.pistol-select-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: 8px;
}
.pistol-select-card:first-child:hover .pistol-select-cta {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.pistol-select-card:last-child:hover .pistol-select-cta {
  border-color: var(--signal);
  background: var(--signal);
  color: #fff;
}
.pistol-select-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
.pistol-select-divider-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.15em;
}
@keyframes pistolEntrance {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.pistol-select-card {
  animation: pistolEntrance 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.pistol-select-card:first-child { animation-delay: 0.1s; }
.pistol-select-card:last-child { animation-delay: 0.3s; }
.pistol-select-divider {
  animation: pistolEntrance 0.4s ease both;
  animation-delay: 0.2s;
}
@media (max-width: 768px) {
  .pistol-select {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }
  .pistol-select-card {
    padding: 32px 24px;
    border-radius: 4px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .pistol-select-divider {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pistol-select {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }
  .pistol-select-card {
    padding: 32px 24px;
    border-radius: 4px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .pistol-select-divider {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}

/* ---- Animations ---- */
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(4px); }
}
@keyframes pillIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.75; transform: translateY(0); }
}

/* ---- Utility ---- */
.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;
}

/* ---- Mobile scrollbar hide (all pages) ---- */
@media (max-width: 768px) {
  html { scrollbar-width: none; -ms-overflow-style: none; }
  html::-webkit-scrollbar { display: none; }
  body { -ms-overflow-style: none; }
  body::-webkit-scrollbar { display: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  html { scrollbar-width: none; -ms-overflow-style: none; }
  html::-webkit-scrollbar { display: none; }
  body { -ms-overflow-style: none; }
  body::-webkit-scrollbar { display: none; }
}
