:root {
    --bg0: #07070A;
    --bg1: #0E0E14;
    --bg2: #16161F;
    --bg3: #1E1E2B;
    --card: #1A1A25;
    --red: #C8213A;
    --red-b: #E8354D;
    --red-glow: rgba(200,33,58,0.25);
    --ash: #A2A2B8;
    --ash2: #5A5A72;
    --ash3: #2A2A3A;
    --white: #F4F4FA;
    --border: rgba(255,255,255,0.07);
    --border-r: rgba(200,33,58,0.35);
    --green: #1A6B3C;
    --green-b: #22A05A;
    --gold: #C8A020;
    --gold-b: #E8C040;
    --blue: #1A4A8A;
    --blue-b: #2A6ACF;
    --orange: #C86020;
    --orange-b: #E88030;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg0); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* ── NAV ── */
nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 60px; height:70px;
    background: rgba(7,7,10,0.85); backdrop-filter:blur(16px);
    border-bottom: 1px solid var(--border);
}
.logo { font-family:'Bebas Neue'; font-size:28px; letter-spacing:4px; color:var(--white); text-decoration:none; }
.logo span { color:var(--red); }
nav ul { display:flex; gap:36px; list-style:none; }
nav ul a { font-family:'Rajdhani'; font-weight:600; font-size:13px; letter-spacing:2px; text-transform:uppercase; color:var(--ash); text-decoration:none; transition:color .2s; }
nav ul a:hover { color:var(--white); }
.nav-cta { display:flex; gap:12px; align-items:center; }

/* Dropdown menu */
.nav-user { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    min-width: 160px;
    z-index: 50;
}
.nav-user:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--ash);
    font-family: 'Rajdhani';
    font-size: 13px;
    text-decoration: none;
}
.dropdown-menu a:hover {
    background: var(--bg3);
    color: var(--white);
}
.nav-tier {
    font-family:'Rajdhani'; font-size:9px; letter-spacing:2px;
    padding:2px 8px; background:rgba(34,160,90,0.12);
    border:1px solid rgba(34,160,90,0.25); color:var(--green-b);
    margin-right:8px;
}
.nav-tier.govt { background:rgba(34,160,90,0.12); border-color:rgba(34,160,90,0.25); color:var(--green-b); }
.nav-tier.dealer { background:rgba(200,160,32,0.1); border-color:rgba(200,160,32,0.25); color:var(--gold-b); }
.nav-tier.admin { background:rgba(200,33,58,0.1); border-color:var(--border-r); color:var(--red-b); }

/* ── BUTTONS (Consistent sizing & hover for primary actions) ── */
.btn-primary-lg,
.btn-outline-lg,
.btn-login,
.btn-checkout,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    min-width: 160px;
    height: 48px;
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid transparent;
    box-sizing: border-box;
    line-height: 1;
    white-space: nowrap;
}

/* Default button styles (used in nav and elsewhere) */
.btn-ghost,
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani';
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid transparent;
    box-sizing: border-box;
    line-height: 1;
    white-space: nowrap;
}

/* Nav-specific button sizes (smaller, original) */
nav .btn-ghost,
nav .btn-red {
    min-width: auto;
    height: auto;
    padding: 8px 22px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Ghost / Outline button */
.btn-ghost,
.btn-outline-lg {
    background: transparent;
    border-color: var(--ash3);
    color: var(--ash);
}
.btn-ghost:hover,
.btn-outline-lg:hover {
    border-color: var(--ash);
    color: var(--white);
    background: transparent;
}

/* Red background button (primary) */
.btn-red,
.btn-primary-lg,
.btn-login,
.btn-checkout,
.btn-submit {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(200,33,58,0.2);
}
.btn-red:hover,
.btn-primary-lg:hover,
.btn-login:hover,
.btn-checkout:hover,
.btn-submit:hover {
    background: transparent;
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 0 30px rgba(200,33,58,0.4);
}

/* Small buttons maintain proportions but keep consistency */
.btn-sm {
    padding: 7px 16px;
    min-width: auto;
    height: auto;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-width: 1px;
}
.prod-add {
    width: 36px;
    height: 36px;
    min-width: auto;
    padding: 0;
    font-size: 20px;
}

/* Cart drawer */
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:200;display:none;}
.cart-drawer{position:fixed;right:0;top:0;bottom:0;width:400px;background:var(--bg1);border-left:1px solid var(--border);z-index:201;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .3s ease;}
.cart-drawer.open{transform:translateX(0);}
.cart-overlay.open{display:block;}
.cart-header{padding:24px 28px;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;}
.cart-header-title{font-family:'Bebas Neue';font-size:24px;letter-spacing:2px;}
.cart-close{width:32px;height:32px;background:var(--bg2);border:1px solid var(--border);color:var(--ash2);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:18px;}
.cart-body{flex:1;overflow-y:auto;padding:20px 28px;}
.cart-item{display:flex;gap:16px;padding:16px 0;border-bottom:1px solid var(--border);}
.cart-item-img{width:64px;height:60px;background:var(--bg3);display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0;}
.cart-item-name{font-family:'Rajdhani';font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px;}
.cart-item-spec{font-size:11px;color:var(--ash2);}
.cart-item-price{font-family:'Bebas Neue';font-size:20px;color:var(--red);margin-top:6px;}
.cart-item-remove{margin-left:auto;color:var(--ash2);cursor:pointer;font-size:18px;align-self:flex-start;transition:color .2s;}
.cart-item-remove:hover{color:var(--red);}
.cart-footer{padding:20px 28px;border-top:1px solid var(--border);}
.cart-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;font-size:13px;color:var(--ash);}
.cart-row.total{font-family:'Rajdhani';font-size:16px;font-weight:700;color:var(--white);border-top:1px solid var(--border);padding-top:12px;margin-top:4px;}
.btn-checkout{width:100%; margin-top:16px;}

/* Quick login */
.quick-login{background:var(--bg1);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:48px 60px;margin:40px 0;}
.quick-login h3{font-family:'Bebas Neue';font-size:28px;margin-bottom:24px;}
.login-inline{display:flex;gap:20px;align-items:flex-end;flex-wrap:wrap;}
.login-field{flex:1;min-width:200px;}
.login-field label{display:block;font-family:'Rajdhani';font-size:11px;letter-spacing:2px;color:var(--ash2);margin-bottom:6px;}
.login-field input{width:100%;padding:12px;background:var(--bg2);border:1px solid var(--border);color:white;font-family:'DM Sans';}
.btn-login{padding:12px 32px;}

/* ── HERO ── */
.hero {
    position:relative; min-height:100vh;
    display:flex; align-items:center; justify-content:flex-start;
    padding: 0 60px; overflow:hidden;
}
.hero-bg {
    position:absolute; inset:0;
    background: linear-gradient(135deg, #07070A 0%, #0E0E14 40%, #16080C 100%);
}
.hero-grid {
    position:absolute; inset:0; opacity:.08;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-noise {
    position:absolute; inset:0; opacity:.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}
.hero-vignette {
    position:absolute; inset:0;
    background: radial-gradient(ellipse 70% 80% at 70% 50%, transparent 40%, rgba(7,7,10,0.9) 100%);
}
.hero-accent {
    position:absolute; right:0; top:50%; transform:translateY(-50%);
    width:55%; height:80%;
    background: linear-gradient(135deg, rgba(200,33,58,0.06) 0%, transparent 60%);
    border-left:1px solid var(--border-r);
}
.hero-line {
    position:absolute; left:0; right:0; top:50%;
    height:1px; background:linear-gradient(90deg, var(--red-glow) 0%, transparent 50%);
}
.hero-content { position:relative; z-index:2; max-width:680px; }
.hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    padding:5px 14px; border:1px solid var(--border-r);
    background:rgba(200,33,58,0.1); margin-bottom:28px;
    font-family:'Rajdhani'; font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--red-b);
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--red); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.5; transform:scale(1.3)} }
.hero h1 {
    font-family:'Bebas Neue'; font-size:clamp(64px,9vw,130px); line-height:.92;
    letter-spacing:2px; color:var(--white);
    text-shadow: 0 0 60px rgba(200,33,58,0.15);
}
.hero h1 .red { color:var(--red); display:block; }
.hero-sub {
    margin-top:24px; font-size:16px; line-height:1.7; color:var(--ash);
    max-width:480px; font-weight:300;
}
.hero-actions { display:flex; gap:16px; margin-top:40px; align-items:center; }
.hero-stats { display:flex; gap:48px; margin-top:64px; }
.stat { display:flex; flex-direction:column; gap:4px; }
.stat-num { font-family:'Bebas Neue'; font-size:36px; color:var(--white); letter-spacing:2px; }
.stat-num span { color:var(--red); }
.stat-label { font-family:'Rajdhani'; font-size:11px; letter-spacing:3px; color:var(--ash2); text-transform:uppercase; }

/* ── TICKER ── */
.ticker {
    background:var(--red); padding:10px 0; overflow:hidden;
    border-top:1px solid rgba(255,255,255,0.1); border-bottom:1px solid rgba(255,255,255,0.1);
}
.ticker-track {
    display:flex; gap:0; animation:tick 30s linear infinite; white-space:nowrap;
}
.ticker-item {
    font-family:'Rajdhani'; font-size:12px; letter-spacing:3px; text-transform:uppercase;
    color:rgba(255,255,255,0.9); padding:0 40px; flex-shrink:0;
}
.ticker-sep { color:rgba(255,255,255,0.4); }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION SHARED ── */
section { padding:100px 60px; }
.section-eyebrow {
    font-family:'Rajdhani'; font-size:11px; letter-spacing:4px; text-transform:uppercase;
    color:var(--red); margin-bottom:12px; display:flex; align-items:center; gap:12px;
}
.section-eyebrow::before { content:''; display:block; width:32px; height:1px; background:var(--red); }
.section-title { font-family:'Bebas Neue'; font-size:clamp(40px,5vw,68px); letter-spacing:2px; line-height:1; color:var(--white); }
.section-title span { color:var(--red); }
.section-sub { font-size:15px; color:var(--ash); line-height:1.7; max-width:480px; margin-top:12px; font-weight:300; }
.section-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; }
.view-all {
    font-family:'Rajdhani'; font-size:12px; letter-spacing:2px; text-transform:uppercase;
    color:var(--red); text-decoration:none; border-bottom:1px solid var(--border-r); padding-bottom:2px;
    transition:color .2s;
}
.view-all:hover { color:var(--red-b); }

/* ── CATEGORIES ── */
.cats-grid {
    display:grid; grid-template-columns:repeat(6,1fr); gap:16px;
}
.cat-card {
    background:var(--bg2); border:1px solid var(--border); padding:32px 20px 28px;
    display:flex; flex-direction:column; align-items:center; gap:14px;
    cursor:pointer; transition:all .25s; text-decoration:none; position:relative; overflow:hidden;
}
.cat-card::after {
    content:''; position:absolute; bottom:0; left:0; right:0;
    height:2px; background:var(--red); transform:scaleX(0); transition:transform .25s; transform-origin:left;
}
.cat-card:hover { border-color:var(--border-r); background:var(--bg3); transform:translateY(-4px); }
.cat-card:hover::after { transform:scaleX(1); }
.cat-icon { font-size:32px; }
.cat-name { font-family:'Rajdhani'; font-size:14px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--white); text-align:center; }
.cat-count { font-size:12px; color:var(--ash2); font-family:'Rajdhani'; letter-spacing:1px; }
.cat-badge {
    position:absolute; top:10px; right:10px;
    background:var(--red); color:white; font-family:'Rajdhani'; font-size:9px; letter-spacing:1px;
    padding:2px 7px; text-transform:uppercase;
}

/* ── FEATURED HANDGUNS ── */
.products-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.prod-card {
    background:var(--card); border:1px solid var(--border);
    overflow:hidden; transition:all .25s; cursor:pointer; text-decoration:none; display:block;
}
.prod-card:hover { border-color:var(--border-r); transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.4); }
.prod-img {
    width:100%; height:200px; background:var(--bg2);
    display:flex; align-items:center; justify-content:center;
    font-size:60px; position:relative; overflow:hidden;
}
.prod-img-bg { position:absolute; inset:0; background:linear-gradient(135deg, var(--bg1) 0%, var(--bg3) 100%); }
.prod-img-icon { position:relative; z-index:1; filter:drop-shadow(0 0 20px rgba(200,33,58,0.3)); }
.prod-info { padding:20px; }
.prod-tag { font-family:'Rajdhani'; font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--red); margin-bottom:6px; }
.prod-name { font-family:'Rajdhani'; font-size:16px; font-weight:700; color:var(--white); margin-bottom:4px; }
.prod-spec { font-size:12px; color:var(--ash2); margin-bottom:16px; }
.prod-bottom { display:flex; justify-content:space-between; align-items:center; }
.prod-price { font-family:'Bebas Neue'; font-size:24px; color:var(--white); letter-spacing:1px; }
.prod-price span { font-size:14px; color:var(--ash2); font-family:'DM Sans'; font-weight:300; }
.prod-add {
    width:36px; height:36px; background:var(--red); border:none; color:white;
    font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center;
    transition:background .2s;
}
.prod-add:hover { background:var(--red-b); }
.prod-restricted { background:rgba(200,33,58,0.08); border:1px dashed var(--border-r); }
.prod-restricted .prod-price { color:var(--ash2); font-size:16px; font-family:'Rajdhani'; letter-spacing:1px; }

/* ── REVOLVER SECTION ── */
.revolvers { background:var(--bg1); }
.rev-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.rev-feat {
    background:var(--bg2); border:1px solid var(--border); padding:0; overflow:hidden;
    display:flex; flex-direction:column; cursor:pointer; transition:all .25s;
}
.rev-feat:hover { border-color:var(--border-r); }
.rev-feat-img {
    height:280px; background:linear-gradient(135deg, var(--bg3) 0%, #160810 100%);
    display:flex; align-items:center; justify-content:center; font-size:80px;
    position:relative;
}
.rev-feat-overlay {
    position:absolute; bottom:0; left:0; right:0; padding:20px;
    background:linear-gradient(0deg, rgba(7,7,10,.9) 0%, transparent 100%);
}
.rev-feat-body { padding:24px; }
.rev-feat-title { font-family:'Rajdhani'; font-size:20px; font-weight:700; color:var(--white); margin-bottom:8px; }
.rev-feat-desc { font-size:13px; color:var(--ash); line-height:1.6; margin-bottom:16px; }
.rev-small-grid { display:flex; flex-direction:column; gap:16px; }
.rev-small {
    background:var(--bg2); border:1px solid var(--border); padding:20px;
    display:flex; gap:20px; align-items:center; cursor:pointer; transition:all .2s;
}
.rev-small:hover { border-color:var(--border-r); }
.rev-small-img { width:80px; height:70px; background:var(--bg3); display:flex; align-items:center; justify-content:center; font-size:32px; flex-shrink:0; }
.rev-small-name { font-family:'Rajdhani'; font-size:15px; font-weight:700; color:var(--white); }
.rev-small-spec { font-size:12px; color:var(--ash2); margin:2px 0; }
.rev-small-price { font-family:'Bebas Neue'; font-size:20px; color:var(--red); }

/* ── RIFLES ── */
.rifles-wrap { background:var(--bg0); }
.rifle-banner {
    background:var(--bg2); border:1px solid var(--border); padding:40px 48px;
    display:flex; justify-content:space-between; align-items:center; margin-bottom:32px;
    position:relative; overflow:hidden;
}
.rifle-banner::before {
    content:'RESTRICTED — VERIFIED ACCESS REQUIRED'; position:absolute;
    top:50%; left:50%; transform:translate(-50%,-50%) rotate(-8deg);
    font-family:'Bebas Neue'; font-size:80px; color:rgba(200,33,58,0.05);
    white-space:nowrap; pointer-events:none; letter-spacing:4px;
}
.rifle-banner-text { position:relative; z-index:1; }
.rifle-banner-title { font-family:'Bebas Neue'; font-size:36px; letter-spacing:2px; margin-bottom:8px; }
.rifle-banner-sub { font-size:14px; color:var(--ash); }
.restricted-notice {
    display:flex; align-items:center; gap:12px; padding:12px 20px;
    background:rgba(200,33,58,0.1); border:1px solid var(--border-r);
    font-family:'Rajdhani'; font-size:13px; letter-spacing:1px; color:var(--red-b);
}
.restricted-notice::before { content:'⚠'; font-size:16px; }
.rifles-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.rifle-card {
    background:var(--card); border:1px solid var(--border); overflow:hidden; opacity:.6; position:relative;
}
.rifle-lock {
    position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
    background:rgba(7,7,10,0.7); z-index:2; gap:10px;
}
.rifle-lock-icon { font-size:32px; }
.rifle-lock-text { font-family:'Rajdhani'; font-size:13px; letter-spacing:2px; text-transform:uppercase; color:var(--ash2); text-align:center; }
.rifle-img { height:160px; background:var(--bg2); display:flex; align-items:center; justify-content:center; font-size:50px; }
.rifle-info { padding:16px; }
.rifle-name { font-family:'Rajdhani'; font-size:15px; font-weight:700; color:var(--white); margin-bottom:4px; }
.rifle-spec { font-size:11px; color:var(--ash2); }

/* ── SNIPERS ── */
.snipers { background:var(--bg1); }
.sniper-showcase {
    display:grid; grid-template-columns:1.5fr 1fr; gap:24px; align-items:start;
}
.sniper-main {
    background:var(--bg2); border:1px solid var(--border); overflow:hidden;
    opacity:.55; position:relative; height: 440px;
}
.sniper-main-img { height:300px; background:linear-gradient(135deg, #0E0E14 0%, #16080C 100%); display:flex; align-items:center; justify-content:center; font-size:90px; }
.sniper-main-body { padding:28px; }
.sniper-main-tag { font-family:'Rajdhani'; font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--red); margin-bottom:8px; }
.sniper-main-title { font-family:'Bebas Neue'; font-size:28px; color:var(--white); }
.sniper-list { display:flex; flex-direction:column; gap:16px; }
.sniper-item {
    background:var(--bg2); border:1px solid var(--border); padding:18px;
    display:flex; gap:16px; align-items:center; opacity:.55; position:relative;
}
.sniper-item-img { width:70px; height:60px; background:var(--bg3); display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0; }
.sniper-item-name { font-family:'Rajdhani'; font-size:14px; font-weight:700; color:var(--white); }
.sniper-item-spec { font-size:11px; color:var(--ash2); margin-top:2px; }
.access-overlay {
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    background:rgba(7,7,10,0.65); gap:8px;
}
.access-tag {
    font-family:'Rajdhani'; font-size:11px; letter-spacing:2.5px; text-transform:uppercase;
    color:var(--red); border:1px solid var(--border-r); padding:5px 14px;
    background:rgba(200,33,58,0.1);
}

/* ── BRANDS ── */
.brands { background:var(--bg0); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:70px 60px; }
.brands-title { text-align:center; font-family:'Rajdhani'; font-size:11px; letter-spacing:4px; text-transform:uppercase; color:#FFF; margin-bottom:48px; }
.brands-row { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; }
.brand-logo {
    font-family:'Bebas Neue'; font-size:20px; letter-spacing:3px; color:var(--ash3);
    transition:color .2s; cursor:pointer; padding:10px 20px; border:1px solid #95000000;
    transition:all .25s;
    padding: 60px;
    margin: 30px;
    border: 1px solid #300707;
    border-radius: 15px;
    width: 255px;
    text-align: center;
    background-color: black;
}
.brand-logo:hover { color:var(--ash); border-color:var(--border); }

/* ── PROCESS ── */
.process { background:var(--bg1); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-steps::after {
    content:''; position:absolute; top:32px; left:calc(12.5% + -160px); right:calc(12.5% + 20px);
    height:1px; background:linear-gradient(90deg, var(--red) 0%, var(--ash3) 100%);
}
.step { padding:0 24px 0 0; text-align:left; }
.step-num {
    width:64px; height:64px; background:var(--bg2); border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    font-family:'Bebas Neue'; font-size:28px; color:var(--red); letter-spacing:1px;
    margin-bottom:24px; position:relative; z-index:1;
}
.step:first-child .step-num { background:var(--red); color:var(--white); border-color:var(--red); }
.step-title { font-family:'Rajdhani'; font-size:16px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--white); margin-bottom:8px; }
.step-desc { font-size:13px; color:var(--ash); line-height:1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background:var(--bg0); }
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.test-card {
    background:var(--bg2); border:1px solid var(--border); padding:32px 28px;
    position:relative; overflow:hidden;
}
.test-card::before {
    content:'"'; position:absolute; top:-10px; right:20px;
    font-family:'Bebas Neue'; font-size:100px; color:rgba(200,33,58,0.08); line-height:1;
}
.test-stars { display:flex; gap:4px; margin-bottom:16px; }
.star { color:var(--red); font-size:14px; }
.test-quote { font-size:14px; line-height:1.7; color:var(--ash); margin-bottom:24px; position:relative; z-index:1; }
.test-author { display:flex; align-items:center; gap:14px; }
.test-avatar {
    width:42px; height:42px; background:var(--bg3); border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center; font-size:18px; border-radius:50%;
}
.test-name { font-family:'Rajdhani'; font-size:14px; font-weight:700; color:var(--white); letter-spacing:1px; }
.test-role { font-size:11px; color:var(--ash2); letter-spacing:1.5px; text-transform:uppercase; }
.test-badge {
    font-family:'Rajdhani'; font-size:9px; letter-spacing:2px; text-transform:uppercase;
    color:var(--red); border:1px solid var(--border-r); padding:2px 8px; background:rgba(200,33,58,0.1);
    margin-left:auto; align-self:flex-start;
}

/* ── CTA ── */
.cta-section {
    background:var(--bg1); position:relative; overflow:hidden;
    display:flex; align-items:center; justify-content:center; text-align:center;
    padding:120px 60px;
}
.cta-bg {
    position:absolute; inset:0;
    background:radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,33,58,0.12) 0%, transparent 70%);
}
.cta-content { position:relative; z-index:1; max-width:600px;     margin: 0 auto; }
.cta-title { font-family:'Bebas Neue'; font-size:clamp(48px,6vw,80px); line-height:.95; color:var(--white); margin-bottom:16px; letter-spacing:2px; }
.cta-title span { color:var(--red); }
.cta-sub { font-size:15px; color:var(--ash); margin-bottom:40px; line-height:1.7; }
.cta-actions { display:flex; gap:16px; justify-content:center; }

/* ── FOOTER ── */
footer { background:var(--bg0); border-top:1px solid var(--border); padding:70px 60px 40px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-brand .logo { font-size:24px; display:block; margin-bottom:16px; }
.footer-desc { font-size:13px; color:var(--ash2); line-height:1.7; max-width:260px; }
.footer-col h4 { font-family:'Rajdhani'; font-size:12px; letter-spacing:3px; text-transform:uppercase; color:var(--white); margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:13px; color:var(--ash2); text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:var(--ash); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border); padding-top:28px; }
.footer-copy { font-size:12px; color:var(--ash2); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:12px; color:var(--ash2); text-decoration:none; transition:color .2s; }
.footer-legal a:hover { color:var(--ash); }

/* ── DASHBOARD COMMON (Sidebar, Topbar, Tables, Badges) ── */
.sidebar {
    width: 260px;
    background: var(--bg1);
    border-right: 1px solid var(--border);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 10;
}
.main-content {
    margin-left: 260px;
    flex: 1;
}
.topbar {
    height: 64px;
    background: rgba(7,7,10,0.97);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 5;
}
.topbar-title {
    font-family: 'Bebas Neue';
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
}
.topbar-search {
    flex: 1;
    max-width: 360px;
    position: relative;
}
.topbar-search input {
    width: 100%;
    padding: 8px 36px 8px 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'DM Sans';
    font-size: 13px;
    outline: none;
    transition: border 0.2s;
}
.topbar-search input:focus {
    border-color: var(--gold);
}
.topbar-search input::placeholder {
    color: var(--ash2);
}
.topbar-end {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar-icon-btn {
    width: 36px;
    height: 36px;
    background: var(--bg2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
}
.topbar-icon-btn.notif {
    position: relative;
}
.notif-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: var(--ash);
    position: relative;
}
.nav-item:hover {
    background: var(--bg2);
    color: var(--white);
}
.nav-item.active {
    background: rgba(200,160,32,0.08);
    color: var(--white);
    border-left: 2px solid var(--gold);
}
.nav-item-icon {
    font-size: 15px;
    width: 18px;
    text-align: center;
}
.nav-item-label {
    font-family: 'Rajdhani';
    font-size: 13px;
    letter-spacing: 0.5px;
}
.nav-item-badge {
    margin-left: auto;
    background: var(--red);
    color: white;
    font-family: 'Rajdhani';
    font-size: 10px;
    padding: 1px 7px;
    min-width: 20px;
    text-align: center;
}
.nav-item-badge.warn {
    background: rgba(200,160,32,0.8);
}
.nav-section-label {
    font-family: 'Rajdhani';
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ash2);
    padding: 6px 20px;
    margin-top: 8px;
}
.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 20px 20px 18px;
    position: relative;
    overflow: hidden;
    transition: border 0.2s;
}
.stat-card:hover {
    border-color: var(--ash3);
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
}
.stat-card.green::after { background: linear-gradient(90deg, transparent, rgba(34,160,90,0.8), transparent); }
.stat-card.red::after { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.stat-card.gold::after { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.stat-card.blue::after { background: linear-gradient(90deg, transparent, var(--blue-b), transparent); }
.stat-card.orange::after { background: linear-gradient(90deg, transparent, var(--orange-b), transparent); }
.stat-label {
    font-family: 'Rajdhani';
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ash2);
    margin-bottom: 10px;
}
.stat-value {
    font-family: 'Bebas Neue';
    font-size: 38px;
    line-height: 1;
    color: var(--white);
    letter-spacing: 1px;
}
.stat-sub {
    font-size: 12px;
    color: var(--ash2);
    margin-top: 6px;
}
.stat-change {
    font-family: 'Rajdhani';
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 4px;
}
.stat-change.up { color: #22A05A; }
.stat-change.down { color: var(--red-b); }
.stat-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.4;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    text-align: left;
    padding: 12px 8px;
    font-family: 'Rajdhani';
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ash2);
    border-bottom: 1px solid var(--border);
}
.data-table td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}
.data-table tr:hover td {
    background: rgba(255,255,255,0.02);
}
.status-badge {
    padding: 4px 10px;
    font-family: 'Rajdhani';
    font-size: 10px;
    border-radius: 0;
    display: inline-block;
}
.status-pending {
    background: rgba(200,160,32,0.15);
    border: 1px solid rgba(200,160,32,0.4);
    color: var(--gold);
}
.status-approved {
    background: rgba(34,160,90,0.15);
    border: 1px solid rgba(34,160,90,0.4);
    color: var(--green);
}
.status-rejected {
    background: rgba(200,33,58,0.15);
    border: 1px solid var(--border-r);
    color: var(--red);
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    font-family: 'Rajdhani';
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.status-pill.instock {
    background: rgba(34,160,90,0.1);
    border: 1px solid rgba(34,160,90,0.25);
    color: #22A05A;
}
.status-pill.lowstock {
    background: rgba(200,160,32,0.1);
    border: 1px solid rgba(200,160,32,0.25);
    color: var(--gold-b);
}
.status-pill.critical {
    background: rgba(200,33,58,0.1);
    border: 1px solid var(--border-r);
    color: var(--red-b);
}
.status-pill.outofstock {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--ash2);
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.btn-sm {
    padding: 7px 16px;
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.2s;
    background: transparent;
    min-width: auto;
    height: auto;
}
.btn-sm-gold {
    background: rgba(200,160,32,0.1);
    border-color: rgba(200,160,32,0.3);
    color: var(--gold-b);
}
.btn-sm-gold:hover {
    background: rgba(200,160,32,0.2);
}
.btn-sm-red {
    background: rgba(200,33,58,0.1);
    border-color: var(--border-r);
    color: var(--red-b);
}
.btn-sm-red:hover {
    background: rgba(200,33,58,0.2);
}
.btn-approve {
    background: rgba(34,160,90,0.2);
    border-color: rgba(34,160,90,0.4);
    color: var(--green);
}
.btn-reject {
    background: rgba(200,33,58,0.2);
    border-color: var(--border-r);
    color: var(--red);
}
.table-card {
    background: var(--card);
    border: 1px solid var(--border);
}
.table-card-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.table-card-title {
    font-family: 'Rajdhani';
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}
.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--ash);
    font-family: 'Rajdhani';
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.page-btn.active {
    background: rgba(34,160,90,0.8);
    border-color: rgba(34,160,90,0.8);
    color: white;
}
.page-btn:hover:not(.active) {
    border-color: rgba(34,160,90,0.3);
    color: var(--white);
}

/* ──────────────────────────────────────────────────────────── */
/*               RESPONSIVE ENHANCEMENTS                       */
/* ──────────────────────────────────────────────────────────── */

/* Large Desktops (above 1600px) – already covered */

/* Laptops / Medium Desktops (1200px - 1600px) */
@media (max-width: 1400px) {
    section { padding: 80px 40px; }
    nav { padding: 0 40px; }
    .hero { padding: 0 40px; }
    .cats-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .test-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { gap: 40px; }
}

/* 14-inch Laptops (1920x1080 but scaled, around 1200px effective) */
@media (max-width: 1200px) {
    section { padding: 70px 30px; }
    nav ul { gap: 24px; }
    .hero-content { max-width: 580px; }
    .hero h1 { font-size: clamp(56px, 8vw, 100px); }
    .hero-accent { width: 50%; }
    .hero-accent img { width: 800px; height: auto; margin-left: 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .rifles-grid { grid-template-columns: repeat(2, 1fr); }
    .sniper-showcase { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .process-steps::after { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
    .brands-row { gap: 20px; }
    .brand-logo { padding: 40px; width: 200px; margin: 15px; }
    .quick-login { padding: 40px 30px; }
    .login-inline { flex-direction: column; align-items: stretch; }
    .btn-login { width: 100%; }
    .cart-drawer { width: 360px; }
}

/* Tablets / Smaller Laptops (1024px and below) */
@media (max-width: 1024px) {
    nav { padding: 0 24px; }
    nav ul { display: none; }  /* hide nav links, mobile menu can be added later */
    .hero { padding: 0 24px; min-height: 90vh; }
    .hero-accent { opacity: 0.3; width: 100%; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .rev-grid { grid-template-columns: 1fr; }
    .testimonials-carousel { margin: 0; }
    .test-card { flex: 0 0 calc(50% - 16px); }
    .cta-section { padding: 80px 30px; }
    .cta-actions { flex-direction: column; }
    .btn-primary-lg, .btn-outline-lg { width: 100%; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal { justify-content: center; flex-wrap: wrap; }
    .sidebar { width: 220px; }
    .main-content { margin-left: 220px; }
}

/* Mobile devices (below 900px) */
@media (max-width: 900px) {
    section { padding: 60px 20px; }
    .hero h1 { font-size: 56px; }
    .hero-sub { font-size: 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .products-grid { grid-template-columns: 1fr; }
    .rifles-grid { grid-template-columns: 1fr; }
    .test-card { flex: 0 0 calc(100% - 16px); }
    .brand-logo { width: 160px; padding: 30px; }
    .sniper-main { height: auto; }
    .sniper-main-img { height: 200px; }
    .cart-drawer { width: 100%; }
}

/* Small phones (below 600px) */
@media (max-width: 600px) {
    nav { height: 60px; padding: 0 16px; }
    .logo { font-size: 24px; }
    .hero h1 { font-size: 42px; }
    .hero-badge { font-size: 9px; padding: 4px 10px; }
    .section-title { font-size: 36px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .process-steps { grid-template-columns: 1fr; }
    .stat-num { font-size: 28px; }
    .stat-label { font-size: 9px; }
    .ticker-item { font-size: 10px; padding: 0 20px; }
    .brand-logo { width: 130px; padding: 20px; margin: 10px; }
}