
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Nunito:wght@700;800;900&display=swap');

:root{
  --black:#10110d;
  --charcoal:#24271f;
  --olive:#4f5c43;
  --olive-dark:#29321f;
  --sage:#727867;
  --khaki:#d8c7a2;
  --sand:#f3e6c9;
  --cream:#fffaf0;
  --bone:#f9f4e8;
  --lime:#b7ff28;
  --orange:#ff9b21;
  --stroke:#11130f;
  --muted:#6c6f61;
  --shadow: 0 14px 0 rgba(16,17,13,.32), 0 18px 34px rgba(0,0,0,.28);
  --softshadow: 0 8px 0 rgba(16,17,13,.18), 0 14px 25px rgba(0,0,0,.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--black);
  font-family: Nunito, Arial, sans-serif;
  font-weight:800;
  background-color:#525b4b;
  background-image:
    linear-gradient(rgba(35,39,31,.18), rgba(35,39,31,.18)),
    url('assets/camo-seamless.svg');
  background-size:auto, 680px 680px;
  background-repeat:repeat;
  min-height:100vh;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,250,240,.22), transparent 38%),
    rgba(37,43,32,.08);
  z-index:-1;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.page{
  width:min(1180px, calc(100% - 34px));
  margin:0 auto;
  padding:0 0 42px;
}
.top-strip{
  margin:0 auto 14px;
  background:var(--black);
  color:var(--sand);
  border:3px solid #000;
  border-top:0;
  border-radius:0 0 20px 20px;
  text-align:center;
  padding:8px 14px 7px;
  font-size:14px;
  letter-spacing:.09em;
  text-transform:uppercase;
  box-shadow:0 7px 0 rgba(0,0,0,.35);
}
.bubble-font,
h1,h2,h3,.nav a,.btn,.badge,.price-pill,.cart,.crumbs{
  font-family:"Luckiest Guy", "Cooper Black", "Arial Black", Nunito, sans-serif;
  letter-spacing:.035em;
  font-weight:900;
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(255,250,240,.97);
  border:4px solid var(--stroke);
  border-radius:var(--radius-xl);
  padding:20px 24px;
  box-shadow:var(--shadow);
  position:relative;
  top:auto;
  z-index:10;
}
.logo img{ width:160px; height:auto; filter:drop-shadow(0 3px 0 rgba(0,0,0,.22)); }
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  font-size:17px;
  text-transform:uppercase;
}
.nav a{ position:relative; padding:8px 0 5px; }
.nav a:after{
  content:"";
  position:absolute;
  height:6px;
  width:0;
  left:0;
  bottom:0;
  border-radius:999px;
  background:var(--lime);
  transition:width .2s ease;
}
.nav a:hover:after, .nav a.active:after{ width:100%; }
.cart{
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--black);
  color:var(--cream);
  border-radius:999px;
  padding:14px 18px;
  border:3px solid var(--stroke);
  box-shadow:0 6px 0 rgba(0,0,0,.22);
  white-space:nowrap;
}
.cart span{
  display:inline-grid;
  place-items:center;
  width:26px;
  height:26px;
  background:var(--khaki);
  color:var(--black);
  border-radius:999px;
}

.hero{
  margin-top:28px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:24px;
  background:linear-gradient(135deg, rgba(255,250,240,.98), rgba(245,255,208,.96));
  border:4px solid var(--stroke);
  border-radius:var(--radius-xl);
  padding:54px 58px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero:before{
  content:"";
  position:absolute;
  inset:auto -40px -70px auto;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(183,255,40,.55), transparent 64%);
  pointer-events:none;
}
.hero h1{
  margin:0;
  font-size:clamp(48px, 7vw, 91px);
  line-height:.9;
  text-transform:uppercase;
}
.hero h1 span{ color:var(--olive); }
.hero p{
  max-width:540px;
  font-size:20px;
  line-height:1.35;
  margin:22px 0 26px;
}
.actions{ display:flex; flex-wrap:wrap; gap:16px; align-items:center; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:4px solid var(--stroke);
  border-radius:999px;
  padding:16px 28px 13px;
  text-transform:uppercase;
  font-size:18px;
  box-shadow:0 7px 0 rgba(0,0,0,.24);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 9px 0 rgba(0,0,0,.28); }
.btn-primary{ background:var(--lime); }
.btn-secondary{ background:var(--cream); }
.btn-dark{ background:var(--black); color:var(--cream); }

.product-spotlight{
  background:rgba(255,250,240,.72);
  border:4px solid var(--stroke);
  border-radius:26px;
  padding:24px;
  display:grid;
  place-items:center;
  position:relative;
  min-height:330px;
}
.badge{
  position:absolute;
  top:-24px;
  left:-4px;
  background:var(--sand);
  border:4px solid var(--stroke);
  border-radius:999px;
  padding:11px 18px 8px;
  text-transform:uppercase;
  font-size:18px;
}
.product-spotlight img{
  max-height:290px;
  filter:drop-shadow(0 18px 20px rgba(0,0,0,.25));
}
.spot-name{
  position:absolute;
  bottom:22px;
  left:20px;
  background:var(--sand);
  border:4px solid var(--stroke);
  border-radius:16px;
  padding:12px 15px 9px;
  text-transform:uppercase;
  line-height:1;
}
.price-pill{
  position:absolute;
  right:24px;
  bottom:22px;
  background:var(--black);
  color:var(--cream);
  border-radius:18px;
  padding:12px 18px 9px;
  text-align:center;
  text-transform:uppercase;
}

.panel{
  margin-top:20px;
  background:rgba(255,250,240,.97);
  border:4px solid var(--stroke);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--softshadow);
}
.panel h2{
  margin:0 0 18px;
  font-size:34px;
  text-transform:uppercase;
}
.panel-intro{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:20px;
}
.panel-intro p{
  margin:0;
  max-width:670px;
  color:var(--charcoal);
  font-size:18px;
  line-height:1.4;
}
.category-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.category-card{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:138px;
  background:var(--bone);
  border:4px solid var(--stroke);
  border-radius:22px;
  padding:20px;
  box-shadow:0 7px 0 rgba(0,0,0,.18);
}
.category-card:hover{ transform:translateY(-2px); }
.category-card img{ width:78px; height:86px; object-fit:contain; }
.category-card h3{ margin:0; font-size:30px; text-transform:uppercase; }
.category-card p{ margin:5px 0 0; color:var(--muted); line-height:1.3; }



.filter-shell{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin:4px 0 26px;
  padding:16px 18px;
  background:linear-gradient(180deg, rgba(255,250,240,.98), rgba(243,230,201,.95));
  border:4px solid var(--stroke);
  border-radius:24px;
  box-shadow:0 7px 0 rgba(0,0,0,.18);
}
.filter-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px 9px;
  background:var(--black);
  color:var(--cream);
  border:3px solid var(--stroke);
  border-radius:999px;
  font-family:"Luckiest Guy", "Cooper Black", "Arial Black", Nunito, sans-serif;
  letter-spacing:.035em;
  font-size:18px;
  text-transform:uppercase;
  box-shadow:0 5px 0 rgba(0,0,0,.2);
  white-space:nowrap;
}
.shop-filters{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:0;
}
.filter-btn{
  appearance:none;
  border:4px solid var(--stroke);
  border-radius:999px;
  background:linear-gradient(180deg, var(--cream), var(--bone));
  color:var(--black);
  padding:14px 24px 11px;
  font-family:"Luckiest Guy", "Cooper Black", "Arial Black", Nunito, sans-serif;
  letter-spacing:.035em;
  font-size:18px;
  line-height:1;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 6px 0 rgba(0,0,0,.22);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.filter-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 0 rgba(0,0,0,.25);
}
.filter-btn.active{
  background:var(--lime);
  color:var(--black);
}


.product-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}
.product-card{
  background:linear-gradient(180deg, var(--cream), var(--bone));
  border:4px solid var(--stroke);
  border-radius:24px;
  padding:18px;
  box-shadow:0 8px 0 rgba(0,0,0,.2);
  position:relative;
  overflow:hidden;
}
.product-card:before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  right:-38px;
  top:-45px;
  background:var(--lime);
  border-radius:999px;
  opacity:.42;
}
.product-card .tag{
  display:inline-flex;
  background:var(--orange);
  border:3px solid var(--stroke);
  border-radius:999px;
  padding:7px 12px 5px;
  font-size:13px;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:12px;
  position:relative;
  z-index:1;
}
.product-card .image-wrap{
  display:grid;
  place-items:center;
  background:rgba(79,92,67,.12);
  border:3px solid rgba(17,19,15,.25);
  border-radius:18px;
  min-height:205px;
  margin-bottom:16px;
}
.product-card img{ max-height:190px; object-fit:contain; filter:drop-shadow(0 15px 15px rgba(0,0,0,.22)); }
.product-card h3{ margin:0; font-size:26px; line-height:1; text-transform:uppercase; }
.product-card .meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin:11px 0 10px;
  color:var(--olive);
  text-transform:uppercase;
}
.product-card p{ margin:0 0 14px; line-height:1.35; color:var(--charcoal); font-size:15px; }
.product-card .btn{ width:100%; padding:13px 18px 10px; font-size:16px; }

.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.step{
  background:var(--bone);
  border:4px solid var(--stroke);
  border-radius:22px;
  padding:24px;
  min-height:180px;
  box-shadow:0 7px 0 rgba(0,0,0,.18);
}
.step-num{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  background:var(--lime);
  border:3px solid var(--stroke);
  border-radius:999px;
  font-family:"Luckiest Guy";
  margin-bottom:16px;
}
.step h3{ margin:0 0 8px; font-size:28px; text-transform:uppercase; }
.step p{ margin:0; color:var(--charcoal); line-height:1.35; }

.feature-strip{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:0;
  background:rgba(41,50,31,.96);
  border:4px solid var(--stroke);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--softshadow);
}
.feature{
  color:var(--cream);
  padding:22px;
  border-right:2px solid rgba(243,230,201,.35);
}
.feature:last-child{ border-right:0; }
.feature strong{ display:block; text-transform:uppercase; }
.feature span{ display:block; color:var(--sand); margin-top:3px; font-weight:700; }

.page-hero{
  margin-top:28px;
  background:linear-gradient(135deg, rgba(255,250,240,.98), rgba(245,255,208,.96));
  border:4px solid var(--stroke);
  border-radius:var(--radius-xl);
  padding:48px;
  box-shadow:var(--shadow);
}
.crumbs{
  color:var(--olive);
  text-transform:uppercase;
  margin-bottom:14px;
}
.page-hero h1{
  margin:0;
  font-size:clamp(48px, 7vw, 82px);
  line-height:.9;
  text-transform:uppercase;
}
.page-hero p{
  max-width:720px;
  font-size:20px;
  line-height:1.4;
  margin:18px 0 0;
}
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.about-copy p{
  font-size:18px;
  line-height:1.55;
  color:var(--charcoal);
  margin:0 0 16px;
}
.about-photo{
  background:var(--bone);
  border:4px solid var(--stroke);
  border-radius:28px;
  padding:16px;
  box-shadow:0 8px 0 rgba(0,0,0,.2);
}
.about-photo img{
  border-radius:20px;
  width:100%;
  height:auto;
}
.callout{
  margin-top:18px;
  background:var(--lime);
  border:4px solid var(--stroke);
  border-radius:22px;
  padding:18px;
  font-size:19px;
  box-shadow:0 7px 0 rgba(0,0,0,.18);
}

.footer{
  margin-top:28px;
  background:rgba(16,17,13,.98);
  border:4px solid #000;
  border-radius:var(--radius-xl);
  color:var(--cream);
  padding:34px;
  box-shadow:var(--shadow);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.4fr;
  gap:30px;
}
.footer img{ width:135px; margin-bottom:12px; }
.footer p, .footer a{ color:var(--sand); line-height:1.45; }
.footer h3{ margin:0 0 10px; text-transform:uppercase; font-size:19px; }
.footer-links{ display:grid; gap:9px; }
.email-box{
  display:flex;
  background:#1d2018;
  border:3px solid var(--khaki);
  border-radius:999px;
  overflow:hidden;
  max-width:300px;
}
.email-box input{
  flex:1;
  border:0;
  outline:0;
  background:transparent;
  color:var(--cream);
  padding:13px 16px;
  font-weight:800;
  min-width:0;
}
.email-box button{
  border:0;
  background:var(--khaki);
  color:var(--black);
  padding:0 16px;
  font-weight:900;
  cursor:pointer;
}
.copyright{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid rgba(243,230,201,.18);
  color:var(--sand);
  text-align:center;
  font-size:14px;
}

@media (max-width: 920px){
  .site-header{ flex-wrap:wrap; justify-content:center; }
  .nav{ order:3; width:100%; gap:18px; flex-wrap:wrap; }
  .hero{ grid-template-columns:1fr; padding:40px 26px; }
  

.filter-shell{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin:4px 0 26px;
  padding:16px 18px;
  background:linear-gradient(180deg, rgba(255,250,240,.98), rgba(243,230,201,.95));
  border:4px solid var(--stroke);
  border-radius:24px;
  box-shadow:0 7px 0 rgba(0,0,0,.18);
}
.filter-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px 9px;
  background:var(--black);
  color:var(--cream);
  border:3px solid var(--stroke);
  border-radius:999px;
  font-family:"Luckiest Guy", "Cooper Black", "Arial Black", Nunito, sans-serif;
  letter-spacing:.035em;
  font-size:18px;
  text-transform:uppercase;
  box-shadow:0 5px 0 rgba(0,0,0,.2);
  white-space:nowrap;
}
.shop-filters{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:0;
}
.filter-btn{
  appearance:none;
  border:4px solid var(--stroke);
  border-radius:999px;
  background:linear-gradient(180deg, var(--cream), var(--bone));
  color:var(--black);
  padding:14px 24px 11px;
  font-family:"Luckiest Guy", "Cooper Black", "Arial Black", Nunito, sans-serif;
  letter-spacing:.035em;
  font-size:18px;
  line-height:1;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 6px 0 rgba(0,0,0,.22);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.filter-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 0 rgba(0,0,0,.25);
}
.filter-btn.active{
  background:var(--lime);
  color:var(--black);
}


.product-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .steps,.feature-strip,.footer-grid,.about-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px){

  .filter-shell{
    align-items:flex-start;
  }
  .filter-label{
    width:100%;
  }

  body{ background-size:auto, 520px 520px; }
  .page{ width:min(100% - 20px, 1180px); }
  .site-header{ padding:16px; border-radius:24px; }
  .logo img{ width:140px; }
  .hero,.page-hero{ padding:34px 20px; }
  .hero h1,.page-hero h1{ font-size:48px; }
  .hero p,.page-hero p{ font-size:17px; }
  .category-row,.product-grid,.steps,.feature-strip,.footer-grid,.about-grid{ grid-template-columns:1fr; }
  .feature{ border-right:0; border-bottom:2px solid rgba(243,230,201,.35); }
  .feature:last-child{ border-bottom:0; }
}





/* Final header behavior: header stays at top and scrolls away on all devices */
.site-header{
  position:relative !important;
  top:auto !important;
}
.top-strip{
  position:relative !important;
}
.site-header.mobile-compact{
  position:relative !important;
  top:auto !important;
  padding:20px 24px !important;
  border-radius:var(--radius-xl) !important;
}
body.mobile-scrolled .top-strip{
  opacity:1 !important;
  height:auto !important;
  padding:8px 14px 7px !important;
  margin:0 auto 14px !important;
  border:3px solid #000 !important;
  border-top:0 !important;
  overflow:visible !important;
  box-shadow:0 7px 0 rgba(0,0,0,.35) !important;
}
@media (max-width: 760px){
  .site-header{
    position:relative !important;
    top:auto !important;
  }
  .site-header.mobile-compact .logo img{
    width:140px !important;
  }
  .site-header.mobile-compact .nav{
    display:flex !important;
  }
}
