/* Active Targets Portal — Black tactical theme (matches brand logo) */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0e0e0e;
  --bg-card: #121212;
  --bg-card-hover: #171717;
  --border: #2a2a2a;
  --border-light: #222222;

  --red-primary: #FF5A00;
  --red-bright: #FF7A33;
  --red-dark: #CC4800;
  --red-glow: rgba(255, 90, 0, 0.28);
  --orange-soft: rgba(255, 90, 0, 0.12);

  --silver: #c8c8c8;
  --silver-light: #f2f2f2;
  --silver-dark: #8a8a8a;
  --metal-gradient: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 40%, #2e2e2e 70%, #1a1a1a 100%);

  --text-primary: #f2f2f2;
  --text-secondary: #b0b0b0;
  --text-muted: #7a7a7a;

  --font-display: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Sora', 'Segoe UI', system-ui, sans-serif;

  --header-height: 72px;
  --promo-height: 36px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(255, 90, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at -5% 30%, rgba(255, 90, 0, 0.06), transparent 50%),
    linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

main, .site-header, .site-footer, .promo-bar, .cart-drawer, .cart-overlay, .toast, .modal-overlay, .mobile-nav {
  position: relative;
  z-index: 1;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Promo Bar ── */
.promo-bar {
  background: linear-gradient(90deg, #CC4800, #FF5A00 40%, #FF7A33 70%, #FF5A00);
  background-size: 200% 100%;
  animation: promo-shift 8s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
.promo-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  animation: promo-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
.promo-bar strong { font-weight: 800; }
@keyframes promo-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes promo-shine {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-brand {
  height: 52px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: none;
}
.logo-brand-footer {
  height: 80px;
  max-width: 300px;
  margin-bottom: 0.75rem;
  padding: 0;
  border-radius: 0;
}
.logo-link-footer {
  flex-direction: column;
  align-items: flex-start;
}
.logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 90, 0, 0.1), transparent 55%),
    #000000;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
}
.about-logo-display {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: none;
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red-primary); background: var(--orange-soft); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.cart-btn:hover { background: var(--orange-soft); color: var(--red-primary); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-count.hidden { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 1px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--header-height) + var(--promo-height));
  background: rgba(0, 0, 0, 0.96);
  z-index: 999;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--red-primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #FF5A00 0%, #E65000 55%, #CC4800 100%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(255, 90, 0, 0.22);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FF7A33 0%, #FF5A00 60%, #E65000 100%);
  box-shadow: 0 10px 28px rgba(255, 90, 0, 0.32);
  transform: translateY(-2px);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: var(--orange-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 2px solid transparent;
  padding: 0.625rem 1rem;
}
.btn-ghost:hover { color: var(--red-primary); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 45%, rgba(255, 90, 0, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 8% 90%, rgba(20, 20, 20, 0.04) 0%, transparent 55%);
}
.hero-atmosphere::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  border: 1px solid rgba(255, 90, 0, 0.12);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite;
}
.hero-atmosphere::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: -4%;
  width: 180px;
  height: 180px;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 90, 0, 0.35) 49%, rgba(255, 90, 0, 0.35) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(20, 20, 20, 0.08) 49%, rgba(20, 20, 20, 0.08) 51%, transparent 52%);
  opacity: 0.55;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 58%, rgba(255, 90, 0, 0.04) 58.2%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid { z-index: 1; }
.hero-content.reveal,
.hero-visual.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.8s var(--transition) forwards;
}
.hero-visual.reveal { animation-delay: 0.15s; }
@keyframes rise-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 1.25rem;
}
.hero-badge::before,
.hero-badge::after { content: '—'; color: var(--red-primary); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero h1 .highlight { color: var(--red-primary); }
.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--red-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-promo {
  display: inline-block;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 90, 0, 0.35);
  color: var(--red-dark);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: min(340px, 80%);
  height: min(340px, 80%);
  background: radial-gradient(circle, rgba(255, 90, 0, 0.12) 0%, rgba(255, 90, 0, 0.04) 45%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-logo-large {
  position: relative;
  z-index: 2;
  width: min(480px, 96%);
  height: auto;
  max-height: 230px;
  aspect-ratio: 830 / 400;
  object-fit: contain;
  opacity: 1;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  filter: none;
}
.hero-crosshair {
  position: absolute;
  width: min(360px, 85%);
  height: min(360px, 85%);
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
  z-index: 1;
}
.hero-crosshair::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ── Trust Badges ── */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Section Headers ── */
.section { padding: 4rem 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 0.5rem;
}
.section-label::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at center, transparent 38%, var(--red-primary) 39%, var(--red-primary) 46%, transparent 47%),
    linear-gradient(var(--red-primary), var(--red-primary)) center / 2px 100% no-repeat,
    linear-gradient(90deg, var(--red-primary), var(--red-primary)) center / 100% 2px no-repeat;
  opacity: 0.9;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20, 20, 20, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-primary);
  box-shadow: 0 8px 32px rgba(255, 90, 0, 0.12);
}
.product-image {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a1a1a, #121212);
  display: block;
  position: relative;
  overflow: hidden;
}
.product-img,
.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #1a1a1a;
}
.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}
.product-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  z-index: 1;
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 75%, rgba(255,255,255,0.05));
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  z-index: 3;
}
.product-badge.best { background: var(--silver-dark); }
.product-badge.ready { background: #1a6b2e; color: #fff; }
.product-badge.new { background: var(--red-primary); color: #fff; }
.product-badge.soldout { background: #6b7280; color: #fff; }
.product-badge.limited { background: #b45309; color: #fff; }
.product-badge.customize { background: #1d4ed8; color: #fff; }
.add-to-cart-btn.is-disabled,
a.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.add-to-cart-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.product-ready-note {
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}

.product-detail-video {
  width: 100%;
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
}
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}
.product-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.375rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8125rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--red-primary);
}
.add-to-cart-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: #fff;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 90, 0, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.feature-card p { font-size: 0.875rem; color: var(--text-secondary); }

/* ── Custom Showcase ── */
.showcase {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.showcase-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a, #121212);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.showcase-visual::after {
  content: 'CUSTOM BUILD';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--red-primary);
  font-weight: 700;
}

/* ── Reviews ── */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-primary);
  line-height: 1;
}
.reviews-stars { color: var(--red-primary); font-size: 1.25rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.875rem; color: var(--text-secondary); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-stars { color: var(--red-primary); margin-bottom: 0.75rem; font-size: 0.875rem; }
.review-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.review-author { font-weight: 700; font-size: 0.875rem; }
.review-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Newsletter ── */
.newsletter {
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.16) 0%, #121212 55%);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 0;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.newsletter p { color: var(--text-secondary); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.newsletter-note { font-size: 0.75rem; color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.875rem; margin-top: 1rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.35);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.25rem;
}
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-image {
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--red-primary); font-weight: 700; font-size: 0.875rem; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.cart-qty span { font-size: 0.875rem; min-width: 1.5rem; text-align: center; }
.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  text-decoration: underline;
}
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.cart-subtotal-row.total {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.shipping-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--red-primary);
  color: var(--text-primary);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 3000;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Shop Page ── */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.page-hero p { color: var(--text-secondary); }
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
.shop-sidebar { position: sticky; top: calc(var(--header-height) + 1rem); align-self: start; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-bottom: 0.25rem;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange-soft);
  color: var(--red-primary);
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom:1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-count { font-size: 0.875rem; color: var(--text-muted); }
.sort-select {
  padding: 0.5rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  outline: none;
}

/* ── Product Detail ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: start;
}
.product-detail-image {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a1a1a, #121212);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  overflow: hidden;
}
.product-detail-image .product-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1a1a1a;
}
.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-primary);
  margin-bottom: 1rem;
}
.product-detail-desc { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }
.product-detail-long { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 2rem; line-height: 1.7; }
.qty-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.qty-selector label { font-size: 0.875rem; font-weight: 600; }
.qty-input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.qty-input-group button {
  width: 36px;
  height: 36px;
  color: var(--text-primary);
}
.qty-input-group input {
  width: 48px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  outline: none;
}
.product-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--red-primary); }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Honeypot — hidden from users, traps bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  background: var(--orange-soft);
  border: 1px solid rgba(255, 90, 0, 0.35);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--red-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.faq-answer p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.6; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-primary);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Checkout ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  padding: 2rem 0 4rem;
  align-items: start;
}
.checkout-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.checkout-form-section h2 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}
.order-summary h2 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}
.summary-line.discount { color: var(--red-primary); }
.summary-line.total {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
}
.coupon-row {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}
.coupon-row input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  outline: none;
}

/* ── Payment Methods ── */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.payment-option {
  position: relative;
}
.payment-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.payment-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem 0.75rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition);
}
.payment-option input:checked + label {
  border-color: var(--red-primary);
  background: var(--orange-soft);
  color: var(--red-primary);
}
.payment-option-icon { font-size: 1.5rem; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--red-primary);
  margin-bottom: 0.5rem;
}
.contact-info-card a {
  color: var(--text-primary);
  font-weight: 600;
}
.contact-info-card a:hover { color: var(--red-primary); }
.contact-info-card p { color: var(--text-secondary); font-size: 0.875rem; margin-top: 0.25rem; }

@media (max-width: 768px) {
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(20, 20, 20, 0.12);
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.modal-header h2 { font-family: var(--font-display); font-size: 1.125rem; }

/* ── Alert Banner ── */
.alert-banner {
  background: var(--orange-soft);
  border: 1px solid rgba(255, 90, 0, 0.28);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; min-height: 260px; }
  .hero-logo-large { width: min(300px, 86%); max-height: 145px; }
  .hero-crosshair { width: min(280px, 82%); height: min(280px, 82%); }
  .logo-brand { height: 42px; max-width: 160px; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .filter-group { margin-bottom: 0; }
  .filter-group h3 { display: none; }
  .filter-btn { width: auto; display: inline-block; border: 1px solid var(--border); padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
  .product-detail { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .product-image { font-size: 2.5rem; }
  .product-body { padding: 1rem; }
  .product-desc { display: none; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero { padding: 2.5rem 0 3rem; }
  .section { padding: 2.5rem 0; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { font-size: 0.75rem; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}

@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
}

/* ── Creative polish ── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar {
  position: relative;
  overflow: hidden;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--red-primary), transparent);
  opacity: 0.55;
}
.trust-bar::before { left: 0; }
.trust-bar::after { right: 0; }

.trust-icon {
  color: var(--red-primary);
  font-size: 0;
  background:
    radial-gradient(circle at center, transparent 36%, var(--red-primary) 37%, var(--red-primary) 48%, transparent 49%),
    linear-gradient(var(--red-primary), var(--red-primary)) center / 2px 70% no-repeat,
    linear-gradient(90deg, var(--red-primary), var(--red-primary)) center / 70% 2px no-repeat;
  border: 1px solid rgba(255, 90, 0, 0.2);
}

.feature-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 0, 0.35);
  box-shadow: 0 16px 40px rgba(255, 90, 0, 0.1);
}
.feature-card:hover::before { transform: scaleX(1); }

.product-card {
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 transparent;
  transition: box-shadow var(--transition);
}
.product-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(255, 90, 0, 0.25);
}

.showcase-visual {
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.1);
}
.showcase-visual img {
  transition: transform 0.8s var(--transition);
}
.showcase:hover .showcase-visual img {
  transform: scale(1.04);
}

.newsletter {
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 90, 0, 0.18);
  border-radius: 50%;
  top: -80px;
  right: -40px;
  pointer-events: none;
}
.newsletter::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(255, 90, 0, 0.25);
  border-radius: 50%;
  bottom: -50px;
  left: 8%;
  pointer-events: none;
  animation: pulse-ring 5s ease-in-out infinite;
}
.newsletter-inner { position: relative; z-index: 1; }

.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 90, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #121212 0%, var(--bg-secondary) 100%);
}

.add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 90, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .hero-content.reveal, .hero-visual.reveal {
    opacity: 1;
    transform: none;
  }
}
