/* Custom Podz – dark + green theme */
:root{
  --bg:#070a08;
  --panel:#0c120e;
  --panel2:#0a0f0c;
  --text:#e7efe9;
  --muted:#a7b4ac;
  --line:rgba(255,255,255,.08);
  --accent:#22c55e;
  --accent2:#16a34a;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --r-xl:26px;
  --r-lg:18px;
  --r-md:14px;
  --container:1200px;
  --hero-h:clamp(340px,46vh,520px);
  --header-h:78px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 650px at 50% -20%, rgba(34,197,94,.26) 0, rgba(34,197,94,.12) 40%, transparent 80%),
    radial-gradient(900px 520px at 15% 10%, rgba(34,197,94,.16) 0, transparent 75%),
    var(--bg);
  background-repeat:no-repeat;
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.55rem;padding:12px 16px;border-radius:999px;
  border:1px solid rgba(34,197,94,.38);
  background:linear-gradient(180deg,rgba(34,197,94,.95),rgba(22,163,74,.95));
  color:#04120a;font-weight:700;letter-spacing:.2px;
  box-shadow:0 12px 35px rgba(34,197,94,.18);
}
.btn:focus{outline:2px solid rgba(34,197,94,.55);outline-offset:3px}
.btn.secondary{
  background:transparent;color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.chip{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(7,10,8,.35);
  color:rgba(220,255,235,.9);
  font-size:.9rem;
}

/* Header */

.site-header{
  position:sticky;top:0;z-index:50;
  height:var(--header-h);
  backdrop-filter:blur(10px);
  background:rgba(7,10,8,.62);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:100%;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:190px}
.brand svg{width:28px;height:28px}
.brand .title{font-weight:800;line-height:1.05}
.brand .tag{color:var(--muted);font-size:.82rem}

.nav{display:flex;align-items:center;gap:18px}
.nav a{color:rgba(231,239,233,.92);font-weight:600;font-size:.95rem}
.nav a:hover{color:#fff}
.nav a.active{color:var(--accent)}
.nav .dropdown{position:relative}
.nav .dropdown-toggle{display:flex;align-items:center;gap:6px}
.nav .dropdown-menu{
  position:absolute;top:120%;left:-10px;
  min-width:240px;padding:10px;
  border-radius:16px;
  background:rgba(10,15,12,.92);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  display:none;
}
.nav .dropdown-menu a{
  display:block;padding:10px 12px;border-radius:12px;
  color:rgba(231,239,233,.92);
}
.nav .dropdown-menu a:hover{background:rgba(255,255,255,.06)}
.nav .dropdown.open .dropdown-menu{display:block}

.dropdown-label{
  padding:6px 12px 4px;
  color:rgba(231,239,233,.62);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dropdown-sep{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:8px 8px;
  border-radius:999px;
}

.header-cta{display:flex;align-items:center;gap:12px}
.burger{
  display:none;width:44px;height:44px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.burger span{display:block;width:18px;height:2px;background:currentColor;margin:4px auto;border-radius:2px}

/* Drawer (mobile menu) */

.drawer-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.55);
  opacity:0;pointer-events:none;transition:.2s;
  z-index:60;
}
.drawer{
  position:fixed;top:0;right:0;height:100%;width:min(420px,92vw);
  background:rgba(10,15,12,.96);
  border-left:1px solid rgba(255,255,255,.10);
  transform:translateX(102%);transition:.22s;
  z-index:61;display:flex;flex-direction:column;
}
.drawer.open{transform:translateX(0)}
.drawer-backdrop.open{opacity:1;pointer-events:auto}
.drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08);
}
.drawer-nav{
  padding:12px 12px 18px;
  display:flex;flex-direction:column;gap:6px;
  overflow:auto;
}
.drawer-nav a{
  padding:12px 12px;border-radius:14px;
  border:1px solid transparent;
  color:rgba(231,239,233,.95);
  font-weight:650;
}
.drawer-nav a:hover{background:rgba(255,255,255,.06)}
.drawer-nav details{border-radius:14px;overflow:hidden}
.drawer-nav summary{
  cursor:pointer;list-style:none;
  padding:12px 12px;border-radius:14px;
  color:rgba(231,239,233,.95);
  font-weight:700;background:rgba(255,255,255,.04);
}
.drawer-nav details[open] summary{background:rgba(255,255,255,.06)}
.drawer-nav .submenu{display:flex;flex-direction:column;gap:4px;padding:8px}
.drawer-nav .submenu a{padding:10px 10px;font-weight:650}
.submenu-label{
  padding:10px 10px 6px;
  color:rgba(231,239,233,.62);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.submenu-sep{
  height:1px;background:rgba(255,255,255,.10);
  margin:8px 8px;border-radius:999px;
}

/* Home hero slider */

.hero{
  position:relative;
  margin-top:18px;
}
.hero-shell{
  border-radius:var(--r-xl);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,15,12,.55);
  box-shadow:var(--shadow);
  padding:0;
}
.slider{
  position:relative;
  height:var(--hero-h);
  display:grid;
}
.slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  opacity:0;transition:opacity .45s ease;
}
.slide.active{opacity:1}
.slide::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.55) 46%,
    rgba(0,0,0,.25) 74%,
    rgba(0,0,0,.12) 100%);
}
.hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;align-items:flex-end;
  padding:clamp(18px,4vw,34px);
}
.hero-grid{
  width:100%;
  display:grid;
  grid-template-columns:minmax(260px,560px) 1fr;
  gap:24px;
  align-items:end;
}
.hero-copy h1{
  margin:0 0 10px;
  font-size:clamp(2rem,3.2vw,3.2rem);
  line-height:1.02;
  letter-spacing:-.8px;
}
.hero-copy .accent{color:var(--accent)}
.hero-copy p{
  margin:0 0 18px;
  color:rgba(231,239,233,.84);
  max-width:54ch;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-meta{
  display:flex;justify-content:flex-end;align-items:flex-end;
}
.hero-chips{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

.slider-controls{
  position:absolute;inset:auto 14px 14px 14px;
  z-index:3;
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  pointer-events:none;
}
.slider-controls .arrows{display:flex;gap:10px;pointer-events:auto}
.icon-btn{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:var(--text);
  display:grid;place-items:center;
}
.dots{display:flex;gap:8px;pointer-events:auto}
.dot{
  width:9px;height:9px;border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.18);
  opacity:.9;
}
.dot.active{
  background:var(--accent);
  border-color:rgba(34,197,94,.85);
}

/* Sections & cards */

.section{padding:46px 0}
.h2{
  font-size:clamp(1.35rem,2.1vw,2rem);
  margin:0 0 8px;
}
.lead{color:rgba(231,239,233,.78);margin:0 0 20px}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:18px 18px 16px;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
  min-height:150px;
}
.card .kicker{color:rgba(231,239,233,.78);font-size:.92rem;margin-top:6px}
.card .link{
  display:inline-flex;gap:8px;align-items:center;
  margin-top:14px;color:var(--accent);font-weight:750;
}
.card:hover{border-color:rgba(34,197,94,.25)}

/* two-column sections like Product info + Quick highlights */

.split{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:18px;
  align-items:start;
}

/* Lists & stats */

.list{
  margin:0;padding:0;
  list-style:none;
  display:grid;gap:10px;
}
.list li{
  display:flex;gap:10px;align-items:flex-start;
  color:rgba(231,239,233,.86);
}
.tick{
  width:20px;height:20px;border-radius:6px;
  border:1px solid rgba(34,197,94,.55);
  background:rgba(34,197,94,.16);
  display:grid;place-items:center;margin-top:2px;
}
.stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.stat{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:14px;
}
.stat .label{
  color:rgba(231,239,233,.65);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.stat .value{margin-top:6px;font-weight:800}

/* Forms, notices, footer */

.form{display:grid;gap:12px}
.field label{display:block;font-weight:700;margin-bottom:6px}
.field input,.field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:12px 12px;
}
.field textarea{min-height:140px;resize:vertical}

.notice{
  margin:14px 0 0;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(34,197,94,.10);
  color:rgba(220,255,235,.92);
}
.notice.err{
  border-color:rgba(239,68,68,.35);
  background:rgba(239,68,68,.10);
}

.site-footer{
  margin-top:56px;
  padding:32px 0 26px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.20);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
}
.small{color:rgba(231,239,233,.70);font-size:.92rem}
.social{display:flex;gap:12px;margin-top:14px}
.social a{
  width:44px;height:44px;display:grid;place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.social a:hover{
  border-color:rgba(34,197,94,.35);
  box-shadow:0 0 0 3px rgba(34,197,94,.15);
}
.icon{width:22px;height:22px}

/* Responsive tweaks */

@media (min-width:981px){
  .hero-content{padding-bottom:90px;}
}

@media (max-width:980px){
  .nav{display:none}
  .burger{display:inline-block}
  .hero-grid{grid-template-columns:1fr}
  .hero-meta{justify-content:flex-start}
  .hero-chips{justify-content:flex-start}
  .cards{grid-template-columns:1fr 1fr}

  /* stack split sections (product info + quick highlights) */
  .split{display:block;}
  .split > * + *{margin-top:18px;}

  .footer-grid{grid-template-columns:1fr}
}

@media (max-width:560px){
  .cards{grid-template-columns:1fr}
  .btn{width:100%}
  .header-cta .btn{display:none}
  .slider-controls{inset:auto 12px 12px 12px}
}

/* soften global background on smaller screens */

@media (max-width:1024px){
  body{
    background:
      radial-gradient(700px 420px at 50% -10%, rgba(34,197,94,.12), transparent 60%),
      radial-gradient(520px 360px at 20% 12%, rgba(34,197,94,.08), transparent 60%),
      var(--bg);
  }
}

@media (max-width:560px){
  body{background:var(--bg);}
  .hero{
    background:
      radial-gradient(520px 360px at 50% 0%, rgba(34,197,94,.14), transparent 65%);
    padding-top:10px;
  }
}

/* ============================
   Products & accessories
   ============================ */

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.28);
  color:rgba(231,239,233,.92);
  font-weight:800;font-size:.86rem;
  text-decoration:none;
}
.pill-price{
  border-color:rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  white-space:nowrap;
}

.product-card{padding:0;overflow:hidden;min-height:auto}
.product-card-media{
  height:190px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.product-card-body{padding:16px 18px 16px}

/* product / accessory hero */

.product-hero{padding:26px 0 8px}
.product-hero-wrap{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  /* no border/shadow to avoid outer brightness line */
  border:none;
  box-shadow:none;
  min-height:clamp(340px,48vw,520px);
  background-size:cover;
  background-position:center;
}

/* bottom-only gradient overlay for readability, no halo */
.product-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.80) 100%
  );
}

.product-hero-content{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:22px 22px 20px;
}
.product-hero-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.product-title{
  margin:0;
  font-size:clamp(1.9rem,3.3vw,3rem);
  line-height:1.05;
  letter-spacing:-.02em;
}
.product-sub{
  margin:10px 0 0;
  color:rgba(231,239,233,.82);
  font-size:clamp(1rem,1.25vw,1.12rem);
  max-width:68ch;
}

.prose{
  color:rgba(231,239,233,.88);
  line-height:1.7;
  font-size:1.02rem;
}

/* product gallery */

.product-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:16px;
}
.pg-item{
  padding:0;border:0;
  background:rgba(15,23,42,.94);
  cursor:pointer;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  text-align:left;
  display:flex;
  flex-direction:column;
}
.pg-item img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  transition:transform .22s ease;
}
.pg-item:hover img{transform:scale(1.03)}
.pg-caption{padding:12px 12px 14px}
.pg-title{
  margin:0 0 6px;
  font-size:1.05rem;
  line-height:1.2;
  letter-spacing:-.01em;
  color:#f9fafb;
}
.pg-desc{
  margin:0;
  color:rgba(226,232,240,.92);
  font-size:.92rem;
  line-height:1.45;
}
.pg-more{
  color:var(--accent);
  text-decoration:underline;
  opacity:.96;
}

@media (max-width:1024px){
  .product-gallery{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:760px){
  .product-gallery{grid-template-columns:repeat(2,1fr)}
  .pg-item img{height:150px}
}
@media (max-width:520px){
  .product-gallery{grid-template-columns:1fr 1fr}
}

/* lightbox */

.lightbox{
  position:fixed;inset:0;
  display:none;
  align-items:center;justify-content:center;
  z-index:9999;
}
.lightbox.open{display:flex}
.lightbox-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.78)}
.lightbox-shell{
  position:relative;
  width:min(980px,calc(100vw - 28px));
  max-height:calc(100vh - 28px);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(14,18,15,.95);
  box-shadow:0 22px 80px rgba(0,0,0,.58);
}
.lightbox-img{
  width:100%;
  height:min(62vh,640px);
  object-fit:contain;
  background:rgba(0,0,0,.55);
}
.lightbox-meta{padding:14px 16px 16px}
.lightbox-title{font-weight:900;margin:0 0 6px;font-size:1.05rem}
.lightbox-desc{margin:0;color:rgba(231,239,233,.78);line-height:1.55}
.lightbox-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}
.lb-btn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(231,239,233,.94);
  padding:10px 12px;
  border-radius:14px;
  font-weight:850;
  cursor:pointer;
}
.lb-btn:hover{border-color:rgba(34,197,94,.25)}
.lb-close{position:absolute;top:10px;right:10px}
.lb-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  gap:10px;
}
.lb-prev{left:10px}
.lb-next{right:10px}

/* gallery caption legibility */

.pg-caption{background:rgba(0,0,0,.45);}
.pg-title{color:#fff;}
.pg-desc{color:rgba(255,255,255,.9);}
.pg-more{color:#4ade80;}

/* legacy helper – safe even if unused */
.product-layout{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.faq-item p.small{
  margin:8px 0 0;
}
