/* ============================================================
   ROIL TACTICAL — Design System
   Premium Dry Fire Training Ammunition
   Dark tactical theme with brass/gold accents
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Backgrounds */
  --bg-deep: #060a08;
  --bg-primary: #0a0f0c;
  --bg-secondary: #0f1712;
  --bg-card: #131e18;
  --bg-card-hover: #182620;
  --bg-surface: #1c2e24;
  --bg-elevated: #213628;

  /* Accent Colors */
  --brass: #c4993c;
  --brass-light: #d4ad5a;
  --brass-dark: #a07a2e;
  --brass-glow: rgba(196, 153, 60, 0.3);
  --brass-subtle: rgba(196, 153, 60, 0.08);
  
  --tactical-red: #e84c3d;
  --tactical-red-glow: rgba(232, 76, 61, 0.25);
  
  --od-green: #3d7a52;
  --od-green-light: #4a9463;
  --od-green-dark: #2d5a3d;
  --od-green-glow: rgba(61, 122, 82, 0.25);

  /* Text */
  --text-primary: #e8ede5;
  --text-secondary: #8a9e90;
  --text-muted: #5a7266;
  --text-inverse: #0a0f0c;
  --text-brass: #d4ad5a;

  /* Borders */
  --border-subtle: rgba(196, 153, 60, 0.06);
  --border-default: rgba(196, 153, 60, 0.12);
  --border-hover: rgba(196, 153, 60, 0.25);
  --border-active: rgba(196, 153, 60, 0.4);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-brass: 0 0 20px rgba(196, 153, 60, 0.15);
  --shadow-brass-lg: 0 0 40px rgba(196, 153, 60, 0.2);
  --shadow-glow: 0 0 60px rgba(196, 153, 60, 0.1);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s var(--ease-in-out);
  --transition-base: 0.25s var(--ease-out);
  --transition-slow: 0.4s var(--ease-out);

  /* Layout */
  --max-width: 1320px;
  --header-height: 72px;
  --sidebar-width: 280px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  overflow-x: hidden;
}

a {
  color: var(--brass-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--brass); }

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--brass);
  color: var(--bg-deep);
}

/* === BACKGROUND TEXTURES === */
.bg-grid {
  background-image: 
    linear-gradient(rgba(196, 153, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 153, 60, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-noise {
  position: relative;
}
.bg-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

.text-brass { color: var(--brass-light); }
.text-gradient {
  background: linear-gradient(135deg, var(--brass-light), var(--brass), var(--brass-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-green {
  background: linear-gradient(135deg, var(--od-green-light), var(--od-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.label-brass {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm { max-width: 960px; }
.container-lg { max-width: 1440px; }

/* === HEADER / NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header.scrolled {
  background: rgba(6, 10, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  transform: rotate(-45deg);
  animation: logoScan 3s ease-in-out infinite;
}

.logo span {
  color: var(--brass-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--brass-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.cart-btn:hover {
  border-color: var(--border-hover);
  background: var(--brass-subtle);
}
.cart-count {
  background: var(--brass);
  color: var(--bg-deep);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  color: var(--bg-deep);
  box-shadow: var(--shadow-md), 0 0 20px var(--brass-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px var(--brass-glow);
  color: var(--bg-deep);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--brass-light);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: var(--brass-subtle);
  border-color: var(--brass);
  transform: translateY(-1px);
  color: var(--brass-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
}
.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.btn-danger {
  background: linear-gradient(135deg, var(--tactical-red), #c0392b);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-sm);
}

/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-brass);
}

.card-glass {
  background: rgba(19, 30, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.card-brass {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.card-brass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

/* === PRODUCT CARDS === */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-brass);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-brass {
  background: var(--brass);
  color: var(--bg-deep);
}
.badge-green {
  background: var(--od-green);
  color: #fff;
}
.badge-red {
  background: var(--tactical-red);
  color: #fff;
}
.badge-outline {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-caliber {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  margin-bottom: 6px;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.product-price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price-per {
  font-size: 11px;
  color: var(--text-muted);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(196, 153, 60, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(61, 122, 82, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(196, 153, 60, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(196, 153, 60, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 153, 60, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--brass-subtle);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-light);
  margin-bottom: var(--space-lg);
}

.hero-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brass-light), var(--brass));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 2px;
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 5;
}

.hero-product-float {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-product-float img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brass-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

/* === SECTIONS === */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .label-brass {
  margin-bottom: var(--space-md);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark {
  background: var(--bg-primary);
}

.section-darker {
  background: var(--bg-deep);
}

/* === GRID LAYOUTS === */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

/* === FEATURE CARDS === */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brass-subtle);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--brass);
  font-size: 20px;
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* === PRICING / DEALER TIERS === */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--brass);
  background: linear-gradient(180deg, rgba(196, 153, 60, 0.06), var(--bg-card));
  transform: scale(1.05);
  box-shadow: var(--shadow-brass-lg);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass-dark), var(--brass-light), var(--brass-dark));
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: var(--space-md);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.pricing-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--space-xl);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li .check {
  color: var(--od-green-light);
  font-weight: 700;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.testimonial-stars {
  color: var(--brass);
  margin-bottom: var(--space-md);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brass-subtle);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--brass);
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* === TRUST BAR === */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--brass);
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, rgba(196, 153, 60, 0.08), rgba(61, 122, 82, 0.06));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(196, 153, 60, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 153, 60, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer-col h6 {
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: var(--brass-subtle);
}

/* === FORMS === */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px var(--brass-subtle);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9e90' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* === QUANTITY SELECTOR === */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  transition: background var(--transition-fast);
  border: none;
  cursor: pointer;
}
.qty-btn:hover {
  background: var(--bg-surface);
}

.qty-value {
  width: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 0;
}

/* === CUSTOMER TYPE TOGGLE === */
.customer-toggle {
  display: inline-flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.customer-toggle-btn {
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  background: transparent;
}

.customer-toggle-btn.active {
  background: var(--brass);
  color: var(--bg-deep);
  box-shadow: var(--shadow-sm);
}

/* === CART DRAWER === */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-subtle);
  z-index: 2000;
  transition: right var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-header h3 {
  font-size: 1.1rem;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
}
.cart-close:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  overflow: hidden;
  flex-shrink: 0;
}

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

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item-caliber {
  font-size: 11px;
  color: var(--brass);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--text-primary);
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}
.cart-item-remove:hover {
  color: var(--tactical-red);
}

.cart-drawer-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.cart-total-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.cart-total-amount {
  font-size: 1.4rem;
  font-weight: 800;
}

/* === STOCK INDICATOR === */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.stock-in .stock-dot {
  background: var(--od-green-light);
  box-shadow: 0 0 8px rgba(74, 148, 99, 0.4);
}
.stock-in { color: var(--od-green-light); }

.stock-low .stock-dot {
  background: #f59e0b;
  animation: pulse 2s infinite;
}
.stock-low { color: #f59e0b; }

.stock-out .stock-dot {
  background: var(--tactical-red);
}
.stock-out { color: var(--tactical-red); }

/* === TABS === */
.tabs {
  display: flex;
  gap: 2px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 3px;
  border: 1px solid var(--border-subtle);
}

.tab {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
}

.tab.active {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.tab:hover:not(.active) {
  color: var(--text-primary);
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: var(--space-xl);
}

.modal-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
}

/* === TOAST NOTIFICATIONS === */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  min-width: 280px;
  animation: toastIn 0.4s var(--ease-out);
}

.toast-success { border-left: 3px solid var(--od-green-light); }
.toast-error { border-left: 3px solid var(--tactical-red); }
.toast-info { border-left: 3px solid var(--brass); }

/* === COMPLIANCE NOTICE === */
.compliance-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--text-secondary);
}

.compliance-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brass-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
}

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes logoScan {
  0% { transform: translateX(-200%) rotate(-45deg); }
  100% { transform: translateX(200%) rotate(-45deg); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes borderGlow {
  0%, 100% { border-color: var(--border-subtle); }
  50% { border-color: var(--border-hover); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* === UTILITY CLASSES === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
    --space-3xl: 48px;
    --header-height: 64px;
  }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-products { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  
  .hero-stats { flex-direction: column; gap: var(--space-lg); align-items: center; }
  
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  
  .trust-bar { flex-direction: column; gap: var(--space-lg); }
  
  .cart-drawer { width: 100%; right: -100%; }
  
  .cta-banner { padding: var(--space-2xl) var(--space-lg); }
}

@media (max-width: 480px) {
  :root {
    --space-4xl: 48px;
    --space-3xl: 36px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .btn-lg { padding: 14px 24px; font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* === MOBILE NAV === */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(6, 10, 8, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--brass-light);
  background: var(--brass-subtle);
}

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass-dark), var(--brass-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* === LOADING SKELETON === */
.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-card) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}


/* ============================================================
   ADVANCED ENHANCEMENTS — ROIL TACTICAL
   Appended polish layers
   ============================================================ */

/* === 1. PARTICLE / CROSSHAIR BACKGROUND PATTERN === */

.hero-crosshairs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-crosshairs::before,
.hero-crosshairs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 153, 60, 0.06);
  animation: crosshairDrift 20s linear infinite;
}

.hero-crosshairs::before {
  width: 300px;
  height: 300px;
  top: 15%;
  left: 10%;
  background:
    linear-gradient(rgba(196, 153, 60, 0.07) 1px, transparent 1px) center / 50% 100% no-repeat,
    linear-gradient(90deg, rgba(196, 153, 60, 0.07) 1px, transparent 1px) center / 100% 50% no-repeat;
  animation-duration: 25s;
}

.hero-crosshairs::after {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  background:
    linear-gradient(rgba(196, 153, 60, 0.05) 1px, transparent 1px) center / 50% 100% no-repeat,
    linear-gradient(90deg, rgba(196, 153, 60, 0.05) 1px, transparent 1px) center / 100% 50% no-repeat;
  animation-duration: 18s;
  animation-direction: reverse;
}

.crosshair-particle {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  animation: particleFloat 12s ease-in-out infinite;
}

.crosshair-particle::before,
.crosshair-particle::after {
  content: '';
  position: absolute;
  background: rgba(196, 153, 60, 0.12);
}

.crosshair-particle::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.crosshair-particle::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.crosshair-particle:nth-child(1) { top: 10%; left: 25%; animation-delay: 0s; }
.crosshair-particle:nth-child(2) { top: 60%; left: 70%; animation-delay: 3s; }
.crosshair-particle:nth-child(3) { top: 35%; left: 85%; animation-delay: 6s; }
.crosshair-particle:nth-child(4) { top: 75%; left: 15%; animation-delay: 9s; }
.crosshair-particle:nth-child(5) { top: 20%; left: 55%; animation-delay: 4s; }
.crosshair-particle:nth-child(6) { top: 85%; left: 45%; animation-delay: 7s; }

@keyframes crosshairDrift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
  25% { transform: translate(30px, -20px) rotate(90deg); opacity: 0.7; }
  50% { transform: translate(-10px, 30px) rotate(180deg); opacity: 0.4; }
  75% { transform: translate(-30px, -10px) rotate(270deg); opacity: 0.7; }
  100% { transform: translate(0, 0) rotate(360deg); opacity: 0.4; }
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-40px) scale(1.2); }
  90% { opacity: 0.6; }
}

/* === 2. GLASSMORPHISM ENHANCEMENTS === */

.card-glow {
  position: relative;
  transition: all var(--transition-base);
}

.card-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  background: linear-gradient(135deg, var(--brass-glow), transparent 40%, transparent 60%, var(--brass-glow)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.card-glow:hover::after {
  opacity: 1;
  animation: glowPulseCard 2s ease-in-out infinite;
}

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

.card-tactical {
  position: relative;
  overflow: hidden;
}

.card-tactical::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(196, 153, 60, 0.015) 10px,
      rgba(196, 153, 60, 0.015) 11px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(196, 153, 60, 0.015) 10px,
      rgba(196, 153, 60, 0.015) 11px
    );
  pointer-events: none;
  z-index: 0;
}

.card-tactical > * {
  position: relative;
  z-index: 1;
}

.card-glow:hover {
  box-shadow:
    var(--shadow-lg),
    0 0 20px rgba(196, 153, 60, 0.08),
    0 0 40px rgba(196, 153, 60, 0.04),
    inset 0 1px 0 rgba(196, 153, 60, 0.06);
}

/* === 3. BUTTON RIPPLE EFFECT === */

.btn-primary {
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: none;
  pointer-events: none;
}

.btn-primary:hover::after {
  animation: shineSweep 0.75s ease-out forwards;
}

@keyframes shineSweep {
  from { left: -100%; }
  to { left: 150%; }
}

/* === 4. PRODUCT CARD HOVER ENHANCEMENTS === */

.product-card-image::after {
  content: 'Quick View';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 10, 8, 0.7);
  backdrop-filter: blur(4px);
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 3;
}

.product-card:hover .product-card-image::after {
  opacity: 1;
}

.product-card:hover .product-price-current {
  animation: priceHighlight 0.4s var(--ease-out) forwards;
}

@keyframes priceHighlight {
  0% { color: var(--text-primary); }
  40% { color: var(--brass-light); transform: scale(1.05); }
  100% { color: var(--brass-light); transform: scale(1); }
}

.product-card:hover .badge {
  animation: badgePop 0.35s var(--ease-out);
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* === 5. SECTION DIVIDERS === */

.section-divider-brass {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 600px;
  margin: var(--space-3xl) auto;
  height: 1px;
  position: relative;
}

.section-divider-brass::before,
.section-divider-brass::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-dark));
}

.section-divider-brass::after {
  background: linear-gradient(90deg, var(--brass-dark), transparent);
}

.section-divider-brass span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
  background: var(--bg-deep);
  box-shadow: 0 0 12px var(--brass-glow);
}

.section-divider-tactical {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: var(--space-3xl) auto;
  gap: var(--space-md);
  position: relative;
  height: 20px;
}

.section-divider-tactical::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover));
}

.section-divider-tactical::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-hover), transparent);
}

.section-divider-tactical span {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.section-divider-tactical span::before,
.section-divider-tactical span::after {
  content: '';
  position: absolute;
  background: var(--brass-dark);
}

.section-divider-tactical span::before {
  width: 100%;
  height: 1px;
  top: 50%;
}

.section-divider-tactical span::after {
  width: 1px;
  height: 100%;
  left: 50%;
}

/* === 6. COUNTER ANIMATION === */

.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  animation: countReveal 0.8s var(--ease-out) forwards;
  opacity: 0;
}

.count-up.visible {
  opacity: 1;
}

@keyframes countReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* === 7. PARALLAX HELPERS === */

.parallax-slow {
  will-change: transform;
  transition: transform 0.1s linear;
}

.parallax-fast {
  will-change: transform;
  transition: transform 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-slow,
  .parallax-fast {
    transform: none !important;
    transition: none;
  }
}

/* === 8. ENHANCED SCROLLBAR === */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border-radius: 5px;
  border: 2px solid var(--bg-deep);
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brass-dark);
}

::-webkit-scrollbar-thumb:active {
  background: var(--brass);
}

::-webkit-scrollbar-corner {
  background: var(--bg-deep);
}

@supports (scrollbar-color: auto) {
  * {
    scrollbar-color: var(--bg-surface) var(--bg-deep);
    scrollbar-width: thin;
  }
}

/* === 9. ADVANCED TYPOGRAPHY === */

.text-glow {
  text-shadow:
    0 0 10px rgba(196, 153, 60, 0.3),
    0 0 30px rgba(196, 153, 60, 0.15),
    0 0 60px rgba(196, 153, 60, 0.05);
}

.text-tactical {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1px rgba(196, 153, 60, 0.3);
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.text-tactical::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--brass);
}

.display-xl {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: linear-gradient(
    180deg,
    var(--text-primary) 0%,
    var(--brass-light) 50%,
    var(--brass-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === 10. LOADING ANIMATION === */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-crosshair {
  width: 60px;
  height: 60px;
  position: relative;
  animation: loaderSpin 2s linear infinite;
}

.page-loader-crosshair::before,
.page-loader-crosshair::after {
  content: '';
  position: absolute;
  background: var(--brass);
}

.page-loader-crosshair::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.page-loader-crosshair::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.page-loader-ring {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid rgba(196, 153, 60, 0.15);
  border-top-color: var(--brass);
}

.page-loader-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass-dark);
  animation: loaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderTextPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* === 11. BREADCRUMB === */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: var(--space-md) 0;
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
}

.breadcrumb a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 2px 0;
}

.breadcrumb a:hover {
  color: var(--brass-light);
}

.breadcrumb .separator {
  color: var(--text-muted);
  opacity: 0.5;
  font-size: 11px;
  user-select: none;
  margin: 0 2px;
}

.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 600;
}

/* === 12. FAQ / ACCORDION === */

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item + .faq-item {
  margin-top: var(--space-sm);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.active {
  border-color: var(--border-active);
  box-shadow: 0 0 16px rgba(196, 153, 60, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  gap: var(--space-md);
  font-family: inherit;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--brass-light);
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--brass);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  transition: all var(--transition-base);
}

.faq-item.active .faq-question::after {
  content: '−';
  background: var(--brass-subtle);
  border-color: var(--brass);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* === 13. DATA TABLE === */

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
}

.data-table th {
  background: var(--bg-secondary);
  color: var(--brass-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-default);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

.data-table td {
  padding: 14px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast), color var(--transition-fast);
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(196, 153, 60, 0.03);
  color: var(--text-primary);
}

.data-table tr:hover td:first-child {
  box-shadow: inset 3px 0 0 var(--brass);
}

.data-table td.emphasis {
  color: var(--text-primary);
  font-weight: 700;
}

.data-table td.price {
  color: var(--brass-light);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* === 14. STEP INDICATOR === */

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  counter-reset: step;
  padding: var(--space-xl) 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 var(--space-md);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
  flex-shrink: 0;
  margin-bottom: var(--space-md);
}

.step.active .step-number {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  color: var(--bg-deep);
  border-color: var(--brass);
  box-shadow: 0 0 20px var(--brass-glow);
}

.step.completed .step-number {
  background: var(--od-green);
  border-color: var(--od-green-light);
  color: #fff;
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.step.active .step-label {
  color: var(--brass-light);
}

.step.completed .step-label {
  color: var(--text-secondary);
}

.step-line {
  position: absolute;
  top: 22px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--border-subtle);
  z-index: 1;
}

.step:last-child .step-line {
  display: none;
}

.step.completed .step-line {
  background: var(--od-green);
}

.step.active .step-line {
  background: linear-gradient(90deg, var(--brass), var(--border-subtle));
}

/* === 15. IMPROVED RESPONSIVE REFINEMENTS === */

@media (max-width: 1024px) {
  .steps {
    gap: 0;
    padding: var(--space-lg) 0;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .btn,
  .cart-btn,
  .qty-btn,
  .customer-toggle-btn,
  .faq-question {
    min-height: 48px;
  }

  .nav-links a,
  .mobile-nav-links a,
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .card,
  .feature-card,
  .product-card,
  .pricing-card,
  .testimonial-card {
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius-md);
  }

  .product-card:hover {
    transform: translateY(-2px);
  }

  .card:hover {
    transform: translateY(-2px);
  }

  .feature-card:hover {
    transform: translateY(-2px);
  }

  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .step {
    flex-direction: row;
    text-align: left;
    padding: var(--space-sm) 0;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: var(--space-md);
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .step-line {
    top: auto;
    left: 17px;
    right: auto;
    width: 2px;
    height: calc(100% + var(--space-sm));
    bottom: auto;
    top: 40px;
  }

  .display-xl {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .section-divider-brass,
  .section-divider-tactical {
    max-width: 90%;
  }

  .data-table th,
  .data-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .breadcrumb {
    font-size: 12px;
    gap: 2px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h3 { font-size: clamp(1.25rem, 5vw, 1.6rem); }
  h4 { font-size: clamp(1.05rem, 4vw, 1.3rem); }

  .btn {
    padding: 12px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  .btn-sm {
    width: auto;
    padding: 8px 16px;
  }

  .product-card-body {
    padding: var(--space-md);
  }

  .product-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .pricing-card {
    padding: var(--space-xl);
  }

  .faq-question {
    padding: var(--space-md);
    font-size: 14px;
  }

  .faq-answer {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
  }

  .cta-banner {
    border-radius: var(--radius-md);
  }

  .display-xl {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (hover: none) and (pointer: coarse) {
  .product-card-image::after {
    display: none;
  }

  .btn-primary:hover::after {
    animation: none;
  }

  .card-glow:hover::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-crosshairs::before,
  .hero-crosshairs::after,
  .crosshair-particle,
  .page-loader-crosshair,
  .count-up,
  .btn-ripple {
    animation: none !important;
  }

  .page-loader-crosshair .page-loader-ring {
    animation: none !important;
  }

  .btn-primary:hover::after {
    animation: none;
  }
}

/* ============================================================
   PRODUCT IMAGE SVG ENHANCEMENTS
   Premium rendering, glow, animation, scene effects
   ============================================================ */

[data-product-svg] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

[data-product-svg] svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  will-change: transform;
}

.product-card:hover [data-product-svg] svg {
  transform: scale(1.1) translateY(-6px);
  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 24px var(--brass-glow));
}

[data-product-svg]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 153, 60, 0.08), transparent 70%);
  z-index: 0;
  transition: all 0.5s var(--ease-out);
  pointer-events: none;
}

.product-card:hover [data-product-svg]::before {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(196, 153, 60, 0.14), transparent 70%);
}

[data-product-svg]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(6, 10, 8, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-product-float [data-product-svg] svg {
  filter:
    drop-shadow(0 10px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 50px rgba(196, 153, 60, 0.15));
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-14px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-0.5deg); }
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img-placeholder svg {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.product-card:hover .product-img-placeholder svg {
  transform: scale(1.1) translateY(-6px);
  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 24px var(--brass-glow));
}

/* Real product photo styles with cinematic color grading */
[data-product-svg] img,
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
  filter: brightness(0.95) contrast(1.08) saturate(1.15);
  transition: transform 0.7s var(--ease-out), filter 0.6s var(--ease-out);
}

.product-card:hover [data-product-svg] img,
.product-card:hover .product-img-placeholder img {
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.12) saturate(1.2);
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(6, 10, 8, 0.4) 70%,
    rgba(6, 10, 8, 0.85) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.product-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 153, 60, 0.06) 0%,
    transparent 50%
  );
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.hero-product-float img {
  animation: productFloat 6s ease-in-out infinite;
}

/* ============================================================
   LAYER 2: VISUAL POLISH ENHANCEMENTS
   ============================================================ */

/* Smoother page-level transitions */
body {
  opacity: 0;
  animation: pageLoad 0.6s ease forwards;
}
@keyframes pageLoad {
  to { opacity: 1; }
}

/* Enhanced button press feedback */
.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: var(--shadow-sm);
  transition-duration: 0.05s;
}

.btn-secondary:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.05s;
}

/* Product card lift enhancement */
.product-card {
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(196,153,60,0.08);
}

/* Feature card icon glow on hover */
.feature-card:hover .feature-icon {
  background: rgba(196, 153, 60, 0.15);
  border-color: var(--brass);
  color: var(--brass-light);
  box-shadow: 0 0 20px rgba(196, 153, 60, 0.15);
  transition: all 0.3s ease;
}

/* Trust bar subtle animation */
.trust-item {
  transition: color 0.3s ease;
}
.trust-item:hover {
  color: var(--text-primary);
}
.trust-item:hover svg {
  color: var(--brass-light);
}

/* Hero stat counter polish */
.hero-stat {
  transition: transform 0.3s ease;
}
.hero-stat:hover {
  transform: translateY(-2px);
}
.hero-stat:hover .hero-stat-value {
  text-shadow: 0 0 30px rgba(196, 153, 60, 0.3);
}

/* Testimonial card hover lift */
.testimonial-card {
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* CTA banner shimmer effect */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  background: 
    linear-gradient(rgba(196, 153, 60, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 153, 60, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: none;
}

/* Pricing card glow for featured tier */
.pricing-card.featured {
  box-shadow: 0 0 40px rgba(196, 153, 60, 0.12), var(--shadow-lg);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 60px rgba(196, 153, 60, 0.18), var(--shadow-xl);
}

/* Form input focus glow enhancement */
.form-input:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196, 153, 60, 0.1), 0 0 20px rgba(196, 153, 60, 0.05);
}

/* Cart drawer slide-in with backdrop blur */
.cart-drawer {
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

/* Toast enter enhancement */
.toast {
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Scroll progress glow */
.scroll-progress {
  box-shadow: 0 0 10px rgba(196, 153, 60, 0.4);
}

/* Section header underline accent */
.section-header h2 {
  position: relative;
  padding-bottom: 16px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  border-radius: 2px;
}

/* Logo hover effect */
.logo:hover .logo-icon {
  box-shadow: 0 0 20px rgba(196, 153, 60, 0.3);
  transition: box-shadow 0.3s ease;
}

/* Footer link underline animation */
.footer-links a {
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s var(--ease-out);
}
.footer-links a:hover::after {
  width: 100%;
}

/* Badge pulse animation for low stock */
.stock-low {
  animation: stockPulse 3s ease-in-out infinite;
}
@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Newsletter input focus state */
.form-input:focus + .btn {
  border-color: var(--brass);
}

/* Image gallery hover zoom polish */
.lifestyle-gallery-img {
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
}
.lifestyle-gallery-img:hover {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.1);
}

/* ============================================================
   ROOFINTEL-STYLE DESIGN SYSTEM PORT
   Cutting-edge patterns adapted for ROIL Tactical
   ============================================================ */

/* === SECTION TAGS (roofintel-style) === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brass-light);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
}

/* === SECTION TITLE (roofintel-style) === */
.section-title-ri {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  max-width: 700px;
}

.section-subtitle-ri {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.65;
}

/* === SECTION GRADIENT BACKGROUNDS === */
.section-gradient-ri {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 50%, var(--bg-deep) 100%);
}

/* === FEATURE CARDS (roofintel-style) === */
.feature-card-ri {
  padding: 0;
  border-radius: 16px;
  background: var(--bg-deep);
  border: 1px solid rgba(196, 153, 60, 0.08);
  transition: border-color 0.4s, transform 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card-ri::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card-ri:hover::before { opacity: 1; }
.feature-card-ri:hover {
  border-color: rgba(196, 153, 60, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 153, 60, 0.08);
}

.feature-card-ri-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-icon-box-ri {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(196, 153, 60, 0.1), rgba(61, 122, 82, 0.06));
}

.feature-card-ri h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.feature-card-ri-body {
  padding: 20px 24px;
}

.feature-card-ri p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* === SIGNAL DISPLAY (terminal-style panel) === */
.signal-display {
  max-width: 860px;
  margin: 28px auto 36px;
  background: var(--bg-deep);
  border: 1px solid rgba(196, 153, 60, 0.12);
  border-radius: 18px;
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(196, 153, 60, 0.04);
}
.signal-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--brass) 30%, var(--od-green) 70%, transparent 95%);
  z-index: 2;
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(6, 10, 8, 0.8);
}

.signal-dots {
  display: flex;
  gap: 6px;
  margin-right: 10px;
}
.signal-dot { width: 8px; height: 8px; border-radius: 50%; }
.signal-dot.r { background: var(--tactical-red); }
.signal-dot.y { background: #f59e0b; }
.signal-dot.g { background: var(--od-green-light); }

.signal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.signal-live {
  display: flex;
  align-items: center;
  gap: 8px;
}
.signal-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--od-green-light);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.signal-live-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--od-green-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.signal-body {
  padding: 16px 20px;
}

.signal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(6, 10, 8, 0.8);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

/* === PRICING CARDS (roofintel-style) === */
.pricing-card-ri {
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
.pricing-card-ri::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pricing-card-ri:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 153, 60, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(196, 153, 60, 0.06);
}
.pricing-card-ri:hover::before { opacity: 1; }

.pricing-card-ri.featured {
  border-color: var(--brass);
  box-shadow: 0 0 60px rgba(196, 153, 60, 0.12), 0 0 0 1px rgba(196, 153, 60, 0.2);
  background: linear-gradient(180deg, rgba(196, 153, 60, 0.08) 0%, var(--bg-card) 40%);
}
.pricing-card-ri.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent 10%, var(--brass-dark), var(--brass-light), var(--brass-dark), transparent 90%);
}
.pricing-card-ri.featured:hover {
  box-shadow: 0 0 80px rgba(196, 153, 60, 0.18), 0 0 0 1px rgba(196, 153, 60, 0.3), 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-badge-ri {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-deep);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(196, 153, 60, 0.3);
}

.pricing-price-ri {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 4px 0 2px;
  line-height: 1;
}
.pricing-card-ri.featured .pricing-price-ri {
  background: linear-gradient(135deg, #fff, var(--brass-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTON UPGRADES (roofintel glow) === */
.btn-primary-glow {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  color: var(--bg-deep);
  box-shadow: 0 4px 24px rgba(196, 153, 60, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(196, 153, 60, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline-ri {
  background: transparent;
  color: var(--brass-light);
  border: 1.5px solid rgba(196, 153, 60, 0.4);
}
.btn-outline-ri:hover {
  background: rgba(196, 153, 60, 0.08);
  border-color: var(--brass);
}

/* === CALIBER VECTOR TAGS (roofintel data-tag style) === */
.cal-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  display: inline-block;
}
.cal-tag.t-9mm { background: rgba(196, 153, 60, 0.15); color: var(--brass-light); }
.cal-tag.t-223 { background: rgba(61, 122, 82, 0.15); color: var(--od-green-light); }
.cal-tag.t-12ga { background: rgba(232, 76, 61, 0.15); color: var(--tactical-red); }
.cal-tag.t-45 { background: rgba(154, 148, 136, 0.15); color: #b0a898; }
.cal-tag.t-380 { background: rgba(184, 158, 80, 0.15); color: #c8b060; }
.cal-tag.t-40 { background: rgba(184, 150, 60, 0.15); color: #c4a44a; }

/* === LOGO ICON PULSE (roofintel-style) === */
.logo-icon-pulse {
  animation: logoIconPulseRoil 3s ease-in-out infinite;
}
@keyframes logoIconPulseRoil {
  0%, 100% {
    box-shadow: 0 0 20px rgba(196, 153, 60, 0.15), 0 0 40px rgba(196, 153, 60, 0.05), inset 0 0 16px rgba(196, 153, 60, 0.04);
    border-color: rgba(196, 153, 60, 0.25);
  }
  50% {
    box-shadow: 0 0 28px rgba(196, 153, 60, 0.25), 0 0 50px rgba(61, 122, 82, 0.06), inset 0 0 20px rgba(196, 153, 60, 0.06);
    border-color: rgba(196, 153, 60, 0.35);
  }
}

/* === RESULT GLOW ANIMATION === */
@keyframes resultGlowRoil {
  0%, 100% {
    box-shadow: 0 0 30px rgba(196, 153, 60, 0.08), 0 4px 24px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(196, 153, 60, 0.15), 0 4px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(196, 153, 60, 0.05);
  }
}

/* === FADE UP SCROLL ANIMATION (roofintel-style) === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SCAN LINE EFFECT === */
@keyframes scanlineRoil {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* === PRICING FEATURE LIST (roofintel checkmarks) === */
.pricing-features-ri {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}
.pricing-features-ri li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features-ri li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(74, 148, 99, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a9463' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   MOBILE OPTIMIZATION — Complete responsive overhaul
   Targets: 390px iPhone, 375px, 414px, 360px Android
   ============================================================ */

@media (max-width: 768px) {
  /* Hero section mobile */
  .hero {
    padding: 90px 16px 48px !important;
    min-height: auto !important;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    letter-spacing: -1.5px !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  /* Signal display mobile */
  #heroDisplay {
    max-width: 100% !important;
    margin: 0 auto 24px !important;
    border-radius: 12px !important;
  }
  
  /* Terminal header mobile */
  #heroDisplay > div:first-child {
    padding: 8px 14px !important;
    flex-wrap: wrap;
    gap: 4px;
  }
  
  /* Caliber tags row - horizontal scroll on mobile */
  #heroDisplay > div:nth-child(2) {
    padding: 6px 14px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
    gap: 4px !important;
  }
  #heroDisplay > div:nth-child(2)::-webkit-scrollbar { display: none; }
  
  /* Product rows mobile - simplified layout */
  #heroDisplay a[href="products.html"] {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  
  /* Product image smaller on mobile */
  #heroDisplay a[href="products.html"] > div:first-child {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px !important;
  }
  
  /* Product title smaller */
  #heroDisplay a[href="products.html"] span[style*="font-size:16px"] {
    font-size: 14px !important;
  }
  
  /* Product description hidden on mobile */
  #heroDisplay a[href="products.html"] div[style*="font-size:12px"][style*="color:var(--text-secondary)"] {
    display: none !important;
  }
  
  /* Price smaller */
  #heroDisplay a[href="products.html"] div[style*="font-size:22px"] {
    font-size: 18px !important;
  }
  
  /* Terminal footer - horizontal scroll */
  #heroDisplay > div:last-child {
    padding: 6px 14px !important;
    gap: 14px !important;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #heroDisplay > div:last-child::-webkit-scrollbar { display: none; }
  
  /* Hero CTAs stack on mobile */
  .hero [style*="display:flex"][style*="gap:16px"][style*="justify-content:center"] {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  .hero .btn-lg {
    width: 100% !important;
    text-align: center !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
  }
  
  /* Hero stats - 2x2 grid on mobile */
  .hero [style*="display:flex"][style*="gap:20px"][style*="margin-top:40px"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 28px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero [data-adaptive="hero-stat"] {
    padding: 14px 12px !important;
    min-width: 0 !important;
  }
  .hero .stat-value {
    font-size: 22px !important;
  }
  .hero .stat-label {
    font-size: 9px !important;
  }

  /* Header mobile cleanup */
  .header-inner {
    padding: 0 12px !important;
  }
  .logo {
    font-size: 1.1rem !important;
    gap: 8px !important;
  }
  .logo-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .nav-actions {
    gap: 8px !important;
  }
  .customer-toggle {
    display: none !important;
  }
  .cart-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  /* Product cards mobile */
  .grid-products {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .product-card-image {
    aspect-ratio: 16/10 !important;
  }
  .product-card-body {
    padding: 16px !important;
  }
  .product-card-footer {
    padding-top: 12px !important;
  }

  /* Feature cards mobile */
  .grid.grid-3 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Testimonials mobile */
  .testimonial-card {
    padding: 16px !important;
  }

  /* Lifestyle gallery 2-col on mobile */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] > div img,
  .lifestyle-gallery-img {
    height: 160px !important;
  }

  /* How it works steps stack */
  .grid.grid-3 .card-brass {
    padding: 16px !important;
  }

  /* CTA banner mobile */
  .cta-banner {
    padding: 32px 16px !important;
  }

  /* Newsletter form mobile */
  .newsletter-form {
    flex-direction: column !important;
    border-radius: var(--radius-lg) !important;
    padding: 4px !important;
  }
  .newsletter-form .form-input {
    min-width: 100% !important;
    text-align: center;
  }
  .newsletter-form .btn {
    width: 100% !important;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }
  .footer-social {
    justify-content: center !important;
  }

  /* Trust bar mobile */
  .trust-bar {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  /* Scroll indicator hide on mobile */
  .hero a[href="#products"][style*="position:absolute"][style*="bottom"] {
    display: none !important;
  }

  /* Section spacing mobile */
  .section {
    padding: 48px 0 !important;
  }
  .section-header {
    margin-bottom: 32px !important;
    padding: 0 8px;
  }

  /* Sticky add bar mobile */
  #stickyAddBar {
    padding: 10px 12px !important;
  }
  #stickyAddBar > div {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center;
  }

  /* Cart drawer full width on mobile */
  .cart-drawer {
    width: 100% !important;
    right: -100% !important;
  }
  .cart-drawer.open {
    right: 0 !important;
  }

  /* Pricing cards stack */
  .pricing-card.featured {
    transform: none !important;
  }

  /* Checkout mobile */
  [style*="grid-template-columns:1fr 400px"] {
    grid-template-columns: 1fr !important;
  }

  /* Auth forms mobile */
  [style*="max-width:480px"],
  [style*="max-width:560px"] {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Back to top button mobile position */
  .back-to-top,
  #backToTop {
    bottom: 16px !important;
    left: 16px !important;
    width: 40px !important;
    height: 40px !important;
  }

  /* Floating CTA mobile */
  .floating-cta,
  #floatingCta {
    bottom: 16px !important;
    right: 16px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero {
    padding: 80px 12px 40px !important;
  }
  .hero h1 {
    font-size: 1.8rem !important;
    letter-spacing: -1px !important;
  }
  
  /* Signal display tighter */
  #heroDisplay {
    border-radius: 10px !important;
  }
  #heroDisplay a[href="products.html"] > div:first-child {
    width: 44px !important;
    height: 44px !important;
  }
  #heroDisplay a[href="products.html"] div[style*="font-size:22px"],
  #heroDisplay a[href="products.html"] div[style*="font-size:18px"] {
    font-size: 16px !important;
  }
  
  /* Stats tighter */
  .hero .stat-value {
    font-size: 18px !important;
  }
  .hero .stat-label {
    font-size: 8px !important;
  }

  /* Container padding */
  .container {
    padding: 0 12px !important;
  }

  /* Section headings smaller */
  h2 {
    font-size: 1.4rem !important;
  }

  /* Product card padding */
  .product-card-body {
    padding: 12px !important;
  }
}

/* Touch device enhancements */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .btn {
    min-height: 48px;
  }
  .btn-sm {
    min-height: 44px;
    padding: 10px 18px;
  }
  .nav-links a {
    padding: 12px 8px;
  }
  .footer-links a {
    padding: 8px 0;
    display: block;
  }
  .qty-btn {
    width: 44px;
    height: 44px;
  }
  
  /* Disable hover effects that look weird on touch */
  .product-card:hover {
    transform: none;
  }
  .feature-card-ri:hover {
    transform: none;
  }
  .testimonial-card:hover {
    transform: none;
  }
  .pricing-card:hover {
    transform: none;
  }
  [data-product-svg] img:hover,
  .product-img-placeholder img:hover {
    transform: none;
  }
}

/* ============================================================
   MOBILE HERO INLINE-STYLE OVERRIDES
   These use attribute selectors to beat inline styles
   ============================================================ */
@media (max-width: 768px) {
  section.hero[style] {
    min-height: auto !important;
    padding: 84px 14px 40px !important;
  }
  section.hero[style] h1[style],
  section.hero[style] h1[data-adaptive] {
    font-size: 2rem !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
  }
  section.hero[style] p[data-adaptive],
  section.hero[style] p[style*="max-width"] {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }
  section.hero[style] div[data-adaptive="hero-badge"],
  section.hero[style] > div[style*="display:inline-flex"][style*="border-radius:100px"] {
    font-size: 11px !important;
    padding: 6px 14px !important;
    margin-bottom: 16px !important;
  }
  #heroDisplay[style] {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
  }
  #heroDisplay[style] > div:first-child {
    padding: 8px 12px !important;
  }
  #heroDisplay a[style*="display:flex"][style*="gap:16px"] {
    padding: 10px 12px !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  #heroDisplay a[style*="display:flex"] > div[style*="width:80px"] {
    width: 48px !important;
    height: 48px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }
  #heroDisplay a[style*="display:flex"] span[style*="font-size:16px"] {
    font-size: 13px !important;
  }
  #heroDisplay a[style*="display:flex"] div[style*="font-size:12px"][style*="color:var(--text-secondary)"] {
    display: none !important;
  }
  #heroDisplay a[style*="display:flex"] div[style*="font-size:22px"] {
    font-size: 17px !important;
  }
  #heroDisplay a[style*="display:flex"] > div[style*="flex-shrink:0"][style*="min-width:70px"] {
    min-width: auto !important;
    font-size: 9px !important;
  }
  #heroDisplay > div[style*="display:flex"][style*="gap:6px"][style*="padding:8px"] {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 12px !important;
  }
  #heroDisplay > div[style*="display:flex"][style*="gap:6px"][style*="padding:8px"]::-webkit-scrollbar {
    display: none;
  }
  #heroDisplay > div[style*="display:flex"][style*="gap:28px"] {
    gap: 12px !important;
    padding: 6px 12px !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #heroDisplay > div[style*="display:flex"][style*="gap:28px"]::-webkit-scrollbar {
    display: none;
  }
  section.hero[style] > div[style*="display:flex"][style*="gap:16px"][style*="justify-content:center"] {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }
  section.hero[style] > div[style*="display:flex"][style*="gap:16px"] > a[style] {
    width: 100% !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
    justify-content: center !important;
  }
  section.hero[style] > div[style*="display:flex"][style*="gap:20px"][style*="margin-top:40px"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 24px !important;
    width: 100% !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  section.hero[style] div[data-adaptive="hero-stat"][style] {
    padding: 12px 10px !important;
    min-width: 0 !important;
  }
  section.hero[style] div[data-adaptive="hero-stat"] .stat-value[style] {
    font-size: 20px !important;
  }
  section.hero[style] div[data-adaptive="hero-stat"] .stat-label[style] {
    font-size: 9px !important;
  }
  /* Hide header customer toggle on mobile */
  .nav-actions .customer-toggle,
  .header-inner .customer-toggle {
    display: none !important;
  }
  /* Hide Sign In link in header on mobile (it's in hamburger menu) */
  .nav-actions > a[href="signin.html"] {
    display: none !important;
  }
}

@media (max-width: 480px) {
  section.hero[style] {
    padding: 76px 10px 32px !important;
  }
  section.hero[style] h1[style],
  section.hero[style] h1[data-adaptive] {
    font-size: 1.7rem !important;
    letter-spacing: -1px !important;
  }
  #heroDisplay a[style*="display:flex"] > div[style*="width:80px"] {
    width: 40px !important;
    height: 40px !important;
  }
  #heroDisplay a[style*="display:flex"] div[style*="font-size:22px"] {
    font-size: 15px !important;
  }
  section.hero[style] div[data-adaptive="hero-stat"] .stat-value[style] {
    font-size: 17px !important;
  }
}
