/** Shopify CDN: Minification failed

Line 15:8 Expected identifier but found whitespace
Line 15:9 Unexpected "1120px"

**/
/* BOGI — minimal, tactical-lux baseline */

:root{
  --bogi-bg: #0b0b0b;
  --bogi-text: rgba(255,255,255,.92);
  --bogi-border: rgba(255,255,255,.10);
  --bogi-accent: #b7b15a;
}
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
:root{
  --camo-url: url('{{ "camo.png" | asset_url }}');
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bogi-bg);
  color: var(--bogi-text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: 0.2px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select, input { font: inherit; color: inherit; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:#fff; color:#000; border-radius:10px; z-index:9999;
}

.page { padding: 24px 16px 64px; }
.container { max-width: var(--max); margin: 0 auto; }
.stack { display: grid; gap: 16px; }

.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bogi-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--bogi-border);
  background: rgba(255,255,255,.06);
  color: var(--bogi-text);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
  cursor: pointer;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}
.btn:disabled{ opacity: .55; cursor: not-allowed; transform: none; }
.btn.primary{
  background: var(--bogi-accent);
  color: #0b0b0b;
  border-color: rgba(0,0,0,.1);
}
.btn.primary:hover{ filter: brightness(1.03); }

.badge{
  display:inline-flex; align-items:center;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 16px;
  background: rgba(11,11,11,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.header .bar{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.brand img{ width: 40px; height: 40px; border-radius: 999px; }
.brand .name{
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav{
  justify-self: center;
  display:flex; gap: 10px; flex-wrap: wrap;
  font-size: 13px;
  opacity: .95;
}
.nav a{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.actions{
  justify-self: end;
  display:flex; gap: 10px; align-items: center;
}
.icon-btn{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.camo-bg{
  background:
    linear-gradient(rgba(11,11,11,.88), rgba(11,11,11,.88)),
    var(--camo-url);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* HERO */
.hero{ padding: 34px 0 10px; }
.hero .wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.hero .panel{ padding: 22px; }
.hero h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.hero p{ margin: 0 0 16px; opacity: .90; max-width: 52ch; }
.hero .cta{ display:flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero .media{
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}
.hero .media .img{
  width: 100%; height: 100%;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(137,129,49,.25), transparent 55%),
    linear-gradient(135deg, rgba(68,76,23,.75), rgba(11,11,11,.85)),
    var(--camo-url);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero .line{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }

/* Product grid */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .hero .wrap{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){ .grid{ grid-template-columns: 1fr; } }

.product-card{
  padding: 14px;
  display:grid; gap: 10px;
}
.product-card .thumb{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  aspect-ratio: 1 / 1;
  display:grid; place-items:center;
}
.product-card .title{
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: 13px;
}
.product-card .price{ opacity: .9; font-size: 13px; }

.hr{ height:1px; background: rgba(255,255,255,.08); margin: 18px 0; }

.footer{
  padding: 34px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(11,11,11,.72);
  backdrop-filter: blur(10px);
}
.footer .cols{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.footer small{ opacity: .75; }

/* Product form */
.form-row{ display:grid; gap: 8px; }
.select{
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
