/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,Arial,sans-serif;
}

body{
  background:#f6f7fb;
  color:#111;
  padding-bottom:90px;
  overflow-x:hidden;
}

/* ================= HEADER ================= */

.bk-header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  background:linear-gradient(90deg,#7b2cbf,#5a189a);
  position:sticky;
  top:0;
  z-index:1000;
}

.bk-logo{
  font-size:22px;
  font-weight:900;
  color:#fff;
  text-decoration:none;
}

.bk-logo span{
  color:#ffd166;
}

.bk-search{
  flex:1;
}

.bk-search input{
  width:100%;
  padding:10px 16px;
  border-radius:25px;
  border:none;
  outline:none;
  font-size:14px;
}

.bk-icons{
  display:flex;
  gap:12px;
  font-size:18px;
  color:#fff;
}

.bk-link{
  color:#fff;
  text-decoration:none;
}

/* ================= HERO ================= */

.hero-premium{
  position:relative;
  height:460px;
  background:url('../uploads/banner.png') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(123,44,191,.85),rgba(255,0,128,.6));
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:90%;
  padding:0 10px;
}

.hero-content h1{
  font-size:42px;
  font-weight:900;
  margin-bottom:12px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:25px;
}

.hero-btn{
  display:inline-block;
  padding:14px 38px;
  background:#fff;
  color:#6c2bd9;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.hero-btn:hover{
  transform:scale(1.1);
}

/* ================= QUICK CATEGORY ================= */

.quick-cat{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:20px 18px;
}

.quick-cat div{
  background:#fff;
  padding:16px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  font-weight:600;
  transition:.3s;
  cursor:pointer;
}

.quick-cat div:hover{
  transform:translateY(-6px);
}

/* ================= SECTION ================= */

.section{
  padding:20px 18px;
}

.section-title{
  font-size:22px;
  font-weight:800;
  margin-bottom:18px;
  color:#6c2bd9;
}

/* ================= PRODUCT GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

@media(min-width:768px){
  .grid{
    grid-template-columns:repeat(4,1fr);
  }
}

/* ================= PRODUCT CARD ================= */

.card{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.12);
  transition:.3s;
}

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

.card-img{
  background:linear-gradient(135deg,#cdb4db,#ffc8dd);
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card-img img{
  max-width:90%;
  max-height:90%;
}

.card-body{
  padding:16px;
}

.card-body h4{
  font-size:15px;
  height:42px;
  overflow:hidden;
  margin-bottom:10px;
}

.price{
  font-size:20px;
  font-weight:800;
  color:#6c2bd9;
  margin-bottom:12px;
}

.buy{
  display:block;
  padding:12px;
  background:linear-gradient(135deg,#6c2bd9,#9d4edd);
  color:#fff;
  text-align:center;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.buy:hover{
  transform:scale(1.06);
}

/* ================= BOTTOM NAV ================= */

.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:60px;
  background:#fff;
  display:flex;
  justify-content:space-around;
  align-items:center;
  border-top:1px solid #eee;
  z-index:1000;
}

.bottom-nav a{
  font-size:12px;
  text-decoration:none;
  color:#555;
  text-align:center;
}

.bottom-nav .active{
  color:#6c2bd9;
  font-weight:700;
}

/* ================= WHATSAPP ================= */

.wa-float{
  position:fixed;
  right:18px;
  bottom:110px;
  width:55px;
  height:55px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  cursor:pointer;
  z-index:999;
}

.wa-popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.wa-box{
  background:#fff;
  padding:22px;
  border-radius:18px;
  text-align:center;
  width:90%;
  max-width:320px;
}

.wa-btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 24px;
  background:#25D366;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .quick-cat{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:480px){

  .hero-premium{
    height:360px;
  }

  .hero-content h1{
    font-size:28px;
  }

  .hero-content p{
    font-size:16px;
  }

}