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

body{
  background:#f3f4ff;
  color:#111827;
  padding-bottom:110px;
}

/* ================= HEADER ================= */
.bk-header{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  background:linear-gradient(90deg,#6c2bd9,#9d4edd);
  position:sticky;
  top:0;
  z-index:1000;
}

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

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

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

.bk-link{color:#fff;text-decoration:none}
.bk-user{font-size:12px}

.bk-dark-btn{
  background:rgba(255,255,255,.25);
  border:none;
  width:36px;
  height:36px;
  border-radius:50%;
  cursor:pointer;
}

/* ================= PRODUCT PAGE ================= */
.product-page{
  background:#f3f4ff;
}

/* GALLERY */
.product-gallery{
  background:#111827;
  padding:14px;
}

.slider{
  width:100%;
  height:330px;
  border-radius:20px;
  overflow:hidden;
}

.slide{
  display:none;
  height:330px;
  align-items:center;
  justify-content:center;
}

.slide.active{display:flex}

.slide img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

/* DOTS */
.dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}

.dots span{
  width:8px;
  height:8px;
  background:#bbb;
  border-radius:50%;
}

.dots span.active{
  background:#9d4edd;
}

/* ================= DETAILS BOX ================= */
.detail-box{
  background:#ffffff;
  margin-top:-25px;
  border-radius:30px 30px 0 0;
  padding:30px 20px 40px;
  box-shadow:0 -10px 30px rgba(0,0,0,.08);
}

/* TITLE */
.detail-box h2{
  font-size:24px;
  font-weight:800;
  line-height:1.5;
  margin-bottom:15px;
}

/* PRICE */
.price{
  font-size:26px;
  font-weight:900;
  color:#6c2bd9;
  margin-bottom:8px;
}

.price span{
  font-size:16px;
  color:#9ca3af;
  text-decoration:line-through;
  margin-left:8px;
}

.price b{
  font-size:13px;
  background:#16a34a;
  color:#fff;
  padding:5px 12px;
  border-radius:30px;
  margin-left:10px;
}

/* RATING */
.rating{
  font-size:15px;
  margin-bottom:18px;
  color:#4b5563;
}

/* DESCRIPTION */
.desc{
  font-size:17px;
  line-height:1.9;
  color:#374151;
  margin:22px 0;
}

/* SECTION HEADINGS */
.detail-box h4{
  font-size:19px;
  margin-top:25px;
  margin-bottom:14px;
  color:#6c2bd9;
  font-weight:800;
}

/* FEATURES */
.features{
  list-style:none;
  padding:0;
}

.features li{
  font-size:16px;
  margin-bottom:12px;
  padding:12px 14px;
  background:#f3f4ff;
  border-radius:14px;
  font-weight:500;
}

/* CATEGORY */
.detail-box p{
  margin-top:20px;
  font-size:15px;
}

/* ================= BUY BAR ================= */
.buy-bar{
  position:fixed;
  bottom:60px;
  left:0;
  right:0;
  background:#ffffff;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #eee;
  box-shadow:0 -10px 30px rgba(0,0,0,.15);
  z-index:999;
}

.btn-buy{
  background:linear-gradient(135deg,#6c2bd9,#9d4edd);
  color:#fff;
  padding:16px 36px;
  border-radius:50px;
  font-size:17px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(108,43,217,.4);
  transition:.3s;
}

.btn-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 #e5e7eb;
  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:130px;
  width:56px;
  height:56px;
  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,.25);
  cursor:pointer;
  z-index:1200;
}

/* ================= DARK MODE ================= */
body.dark{
  background:#020617;
  color:#e5e7eb;
}

body.dark .detail-box,
body.dark .buy-bar,
body.dark .bottom-nav{
  background:#111827;
  color:#e5e7eb;
}

body.dark .features li{
  background:#1f2937;
}
/* ================= RELATED PRODUCTS ================= */

.related-section{
  padding:25px 18px 80px;
}

.related-section h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:15px;
  color:#111;
}

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

.related-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:.3s;
}

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

.related-img{
  height:150px;
  background:#f3f4ff;
  display:flex;
  align-items:center;
  justify-content:center;
}

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

.related-body{
  padding:12px;
}

.related-body h4{
  font-size:14px;
  height:38px;
  overflow:hidden;
  margin-bottom:6px;
}

.related-price{
  font-size:16px;
  font-weight:700;
  color:#6c2bd9;
  margin-bottom:8px;
}

.related-btn{
  display:block;
  text-align:center;
  padding:10px;
  background:linear-gradient(135deg,#6c2bd9,#9d4edd);
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}
/* ================= HERO FIX ================= */

.hero{
  position:relative;
  height:420px;
  background:url('/assets/hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

/* Dark overlay */
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(123,44,191,.7),rgba(255,0,128,.5));
}

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

.hero h1{
  font-size:38px;
  font-weight:900;
  margin-bottom:10px;
}

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

.hero-btn{
  display:inline-block;
  padding:14px 32px;
  background:#fff;
  color:#6c2bd9;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.hero-btn:hover{
  transform:scale(1.08);
}
/* ================= PREMIUM HERO ================= */

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

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

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

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

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

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

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

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

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

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

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

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

.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;
  margin-bottom:8px;
  height:42px;
  overflow:hidden;
}

.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.05);
}

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

.quick-cat{
  display:flex;
  gap:12px;
  padding:16px;
}

.quick-cat div{
  flex:1;
  background:#fff;
  padding:14px;
  text-align:center;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  font-weight:600;
  transition:.3s;
}

.quick-cat div:hover{
  transform:scale(1.05);
}

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

@media(max-width:768px){

  .hero-premium{
    height:380px;
  }

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

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

}