:root{
  --bg: #060b1a;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --brand: #4f7cff;
  --brand2:#22c55e;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(79,124,255,.22), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(34,197,94,.18), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1150px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(6,11,26,.70);
  border-bottom:1px solid var(--stroke);
}

.nav{
  display:flex; align-items:center; gap:14px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800;
  letter-spacing:.2px;
}
.logo{
  width:38px;height:38px;border-radius:12px;
  background: linear-gradient(135deg, rgba(79,124,255,.9), rgba(34,197,94,.75));
  display:grid; place-items:center;
  box-shadow: var(--shadow);
  font-weight:900;
}
.search{
  flex:1;
  display:flex; gap:10px; align-items:center;
  background: var(--panel);
  border:1px solid var(--stroke);
  border-radius:999px;
  padding:10px 12px;
}
.search input{
  width:100%;
  background:transparent;
  border:0; outline:0;
  color:var(--text);
  font-size:14px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--stroke);
  padding:9px 14px;
  border-radius:999px;
  background: var(--panel);
  color:var(--text);
  font-weight:700;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px); background: var(--panel2)}
.btn.primary{
  background: linear-gradient(135deg, rgba(79,124,255,.95), rgba(79,124,255,.65));
  border-color: rgba(79,124,255,.55);
}
.btn.success{
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(34,197,94,.65));
  border-color: rgba(34,197,94,.55);
}

.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{padding:8px 12px; border-radius:999px; background:var(--panel); border:1px solid var(--stroke); font-weight:700; font-size:13px}
.pill.active{background:rgba(79,124,255,.20); border-color:rgba(79,124,255,.55)}

.hero{
  padding:34px 0 14px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:16px;
  align-items:stretch;
}
.card{
  background: var(--panel);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.hTitle{font-size:34px; margin:0 0 10px}
.hSub{color:var(--muted); margin:0 0 16px; line-height:1.6}
.kpis{display:grid; grid-template-columns:repeat(3,1fr); gap:10px}
.kpi{padding:14px; border-radius:14px; background:rgba(255,255,255,.05); border:1px solid var(--stroke)}
.kpi b{display:block; font-size:18px}
.kpi span{color:var(--muted); font-size:12px}

.section{padding:18px 0}
.section h2{margin:0 0 10px; font-size:20px}
.muted{color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:16px;
}
.filters .group{margin-bottom:12px}
.filters .group label{display:block; margin:0 0 8px; color:var(--muted); font-size:13px}
.select, .input{
  width:100%;
  background:rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  outline:0;
}
.products{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

  
  
  
.product{
  overflow:hidden;
}
.product .img{
  height:160px;
  background:
    radial-gradient(260px 140px at 30% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, rgba(79,124,255,.28), rgba(34,197,94,.20));
  border-bottom:1px solid var(--stroke);
}
.product .body{padding:14px}
.badges{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:10px}
.badge{
  font-size:12px; padding:6px 10px; border-radius:999px;
  background:rgba(255,255,255,.06); border:1px solid var(--stroke);
  color:var(--muted);
}
.price{font-weight:900}
.pname{margin:0 0 6px; font-size:16px}
.pdesc{margin:0 0 12px; color:var(--muted); font-size:13px; line-height:1.5}
.row{display:flex; gap:10px; align-items:center; justify-content:space-between}
.qty{
  width:72px;
  text-align:center;
}
.footer{
  margin-top:26px;
  border-top:1px solid var(--stroke);
  background: rgba(6,11,26,.55);
}
.footer .inner{padding:16px 0; display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}
.small{color:var(--muted); font-size:13px}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .products{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .nav{flex-wrap:wrap}
  .search{order:3; width:100%}
  .products{grid-template-columns:1fr}
}/* ===== FIX Featured Categories cards images ===== */
/* ===== BIG PROFESSIONAL FEATURE BOXES ===== */

.products{
  gap: 30px;
}

.card.product{
  min-height: 460px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  transition: all 0.3s ease;
}

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

.card.product .img{
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card.product .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bigger text */
.card.product h3,
.card.product .pname{
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.3;
}

.card.product p{
  font-size: 15px;
}

/* Mobile fix */
@media (max-width: 768px){
  .card.product{
    min-height: 420px;
    padding: 18px;
  }
  .card.product .img{
    height: 240px;
  }
}



/* HERO IMAGE OVERLAY FIX */
.hero {
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* ===================================== */
/* SHOP PAGE ONLY - MOBILE HEADER FIX */
/* ===================================== */

body.shop-page .topbar {
  width: 100%;
}

@media (max-width: 768px) {

  body.shop-page .topbar .nav {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  body.shop-page .brand {
    flex: 1 1 auto !important;
  }

  body.shop-page .logo {
    font-size: 22px !important;
  }

  body.shop-page .search {
    width: 100% !important;
    order: 3 !important;
    margin-top: 8px !important;
  }

  body.shop-page .search input {
    width: 100% !important;
  }

  body.shop-page .links {
    order: 2 !important;
    width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

  body.shop-page .links a {
    white-space: nowrap !important;
    font-size: 13px !important;
  }
}
/* ===================================== */
/* SHOP PAGE ONLY - REMOVE DARK HERO BOX */
/* ===================================== */
body.shop-page .hero::before{
  display:none !important;
  content:none !important;
}

body.shop-page .hero{
  background: transparent !important;
}
/* ===== Product page image + layout fix ===== */
.grid{
  max-width: 1150px;
  margin: 18px auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px){
  .grid{
    grid-template-columns: 1fr;
  }
}

.grid .img{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.grid .img img,
.grid .img #pImg{
  width: 100%;
  max-width: 480px;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}
/* ===== Product page professional e-commerce look ===== */

/* give the whole product area more breathing space */
.grid{
  margin-top: 26px;
}

/* right side buy box */
.buybox{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 92px; /* keeps it visible under sticky header */
}

/* typography */
.buybox .chip{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79,124,255,.12);
  border: 1px solid rgba(79,124,255,.25);
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.buybox .title{
  font-size: 34px;
  line-height: 1.15;
  margin: 8px 0 10px;
}

.buybox .muted{
  font-size: 15px;
  opacity: .85;
  margin-bottom: 14px;
}

/* price block */
.buybox .price{
  font-size: 28px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  margin: 12px 0 16px;
}

/* qty row + button */
.buybox .row{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.buybox label.chip{
  margin: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
}

/* make select look clean */
.buybox select{
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  color: var(--text);
}

/* make Add to cart like ecommerce primary button */
#addBtn{
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}

/* status message */
#status{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
}

/* mobile: disable sticky for buybox */
@media (max-width: 980px){
  .buybox{
    position: static;
    top: auto;
  }
  .buybox .title{
    font-size: 28px;
  }
}
/* ===== Premium trust bar (homepage) ===== */
.trustbar{
  margin-top:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px 16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.trustitem{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 10px;
  border-radius:14px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.trustitem:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
}

.trusticon{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:rgba(76,140,255,.18);
  border:1px solid rgba(76,140,255,.30);
  font-size:18px;
}

.trusttext b{display:block;font-size:16px}
.trusttext span{display:block;font-size:12px;opacity:.8;margin-top:2px}

@media (max-width: 900px){
  .trustbar{grid-template-columns:repeat(2,1fr)}
}
/* ================================
   SaaS Upgrade: How it works + CTA
   ================================ */

.saasSection{
  margin-top: 40px;
  padding: 10px 0 40px;
}

.saasSection .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.saasHead h2{
  font-size: 28px;
  margin: 0 0 8px;
}

.saasHead .muted{
  opacity: .85;
  margin: 0 0 16px;
}

/* ✅ FIX: only .saasSteps becomes grid */
.saasSteps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.saasStep{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.saasStep:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.stepIcon{
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(76,140,255,.18);
  border: 1px solid rgba(76,140,255,.30);
  font-size: 18px;
  margin-bottom: 10px;
}

.saasStep h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.saasStep .muted{
  margin: 0 0 10px;
  opacity: .85;
  line-height: 1.5;
}

.linkSoft{
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  opacity: .95;
}

.linkSoft:hover{
  text-decoration: underline;
}

/* CTA band */
.ctaBand{
  margin-top: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ctaLeft h2{
  font-size: 22px;
  margin: 0 0 6px;
}

.ctaLeft .muted{
  margin: 0;
  opacity: .85;
}

.ctaBtns{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ctaMini{
  margin-top: 10px;
  opacity: .9;
  font-size: 13px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 900px){
  .saasSteps{
    grid-template-columns: 1fr;
  }
  .ctaBand{
    align-items: flex-start;
  }
}
/* CTA right feature badges */
.ctaRight{
display:flex;
flex-direction:column;
gap:6px;
font-size:14px;
opacity:.9;
}

.ctaRight span{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:6px 10px;
border-radius:8px;
}

/* Better hover effect for cards */
.saasStep:hover{
transform:translateY(-4px);
background:rgba(255,255,255,.06);
border-color:rgba(255,255,255,.14);
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* Bigger icons */
.stepIcon{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
background:rgba(76,140,255,.18);
border:1px solid rgba(76,140,255,.30);
font-size:22px;
margin-bottom:12px;
}
/* right side info cards */
.ctaRight{
display:flex;
flex-direction:column;
gap:12px;
min-width:200px;
}

.miniCard{
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.08);
padding: 12px 14px;
border-radius: 10px;
}

.miniTop{
font-size:12px;
opacity:.7;
}

.miniBig{
font-size:16px;
font-weight:600;
margin:2px 0;
}

.miniSub{
font-size:12px;
opacity:.7;
}
/* ===== SaaS polish upgrades ===== */

/* CTA buttons spacing */
.ctaBtns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

/* smoother hover on steps */
.saasStep{
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.saasStep:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 35px rgba(0,0,0,.35);
}

/* mini cards hover glow */
.miniCard{
  transition:all .2s ease;
}
.miniCard:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.15);
}
/* Fix product category badge overlap */
.category{
display:block;
font-size:12px;
background:rgba(255,255,255,.08);
padding:3px 8px;
border-radius:6px;
margin-bottom:6px;
width:fit-content;
}

/* Fix product title spacing */
.product h3{
margin-top:6px;
margin-bottom:6px;
}
