/* ================= RESET ================= */
*{
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  margin:0;
  background:#0b0f14;
  color:#fff;
}

/* ================= TOP BAR ================= */
.topbar{
  padding:12px 20px;
  background:#05080c;
  text-align:center;
}
.logo{
  font-weight:700;
  font-size:20px;
  color:#3aa0ff;
}

/* ================= HERO (COMPACT & CLEAN) ================= */
.hero{
  text-align:center;
  padding:18px 14px 16px;
  margin:12px;
  background:linear-gradient(135deg,#111827,#020617);
  border-radius:20px;
  box-shadow:0 10px 32px rgba(0,0,0,.45);
}

.hero h1{
  margin:0 0 6px;
  font-size:1.45rem;
  color:#e5e7eb;
}

.hero-desc{
  max-width:520px;
  margin:0 auto 10px;
  font-size:12.5px;
  opacity:.85;
  line-height:1.5;
}

/* ================= TRUST ICONS ================= */
.trust-icons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px 10px;
  margin-top:8px;
  font-size:11.5px;
}

.trust-icons span{
  background:rgba(255,255,255,.08);
  padding:5px 9px;
  border-radius:10px;
  display:flex;
  align-items:center;
  gap:5px;
  box-shadow:0 3px 10px rgba(0,0,0,.3);
}

/* ================= CONTAINER ================= */
.container{
  padding:20px 16px;
  max-width:520px;
  margin:0 auto;
}

/* ================= PRODUCT CARD ================= */
.card{
  background:linear-gradient(135deg,#0b1220,#020617);
  border-radius:20px;
  padding:14px;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
}

.card img{
  width:100%;
  border-radius:14px;
  display:block;
  margin-bottom:12px;
}

.card h3{
  font-size:16px;
  margin:0 0 4px;
  color:#fff;
}

.card p{
  font-size:12.5px;
  opacity:.8;
  margin:0 0 6px;
}

.card .price{
  font-size:14px;
  font-weight:600;
  color:#4da3ff;
  margin-bottom:10px;
}

.card .btn{
  display:block;
  width:100%;
  text-align:center;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#fff;
  padding:11px 0;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 5px 16px rgba(59,130,246,.4);
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  background:#25D366;
  color:#000;
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.5);
  z-index:20;
}

/* ================= FOOTER (SMALL & CENTERED) ================= */
.site-footer{
  margin:32px 16px 18px;
  padding:12px 10px 10px;
  text-align:center;
  background:#05080c;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
}

.footer-info{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  font-size:10.5px;
  color:#cbd5f5;
  opacity:.7;
  margin-bottom:5px;
}

.footer-copy{
  font-size:10px;
  color:#94a3b8;
  opacity:.6;
  letter-spacing:.3px;
}

/* ================= MOBILE TUNING ================= */
@media(max-width:480px){
  .hero{
    padding:16px 12px 14px;
    margin:10px;
  }

  .hero h1{
    font-size:1.35rem;
  }

  .hero-desc{
    font-size:12px;
  }

  .trust-icons{
    gap:6px 8px;
  }

  .trust-icons span{
    font-size:11px;
    padding:5px 8px;
  }
}
