/* ===================================================
   GLOBAL RESET
=================================================== */
*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:#f6f7fb;
  color:#222;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

/* ===================================================
   MICRO TRUST BAR
=================================================== */
.micro-trust{
  background:#000;
  color:#fff;
  text-align:center;
  padding:8px 10px;
  font-size:13px;
  font-weight:500;
}

/* ===================================================
   PREMIUM HEADER
=================================================== */
header{
  position:sticky;
  top:0;
  z-index:1000;
  padding:16px 15px;
  text-align:center;
  background:linear-gradient(135deg,#ffffff,#fff0f6);
  box-shadow:0 8px 30px rgba(233,30,99,.08);
}

header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#ff4fa3,#ff87bb,#ff4b2b);
}

.brand-logo{
  font-size:22px;
  font-weight:800;
  background:linear-gradient(90deg,#e91e63,#ff4fa3,#ff4b2b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.brand-tagline{
  font-size:13px;
  color:#777;
  margin-top:4px;
}

/* ===================================================
   OFFER BAR
=================================================== */
.offer-bar{
  background:linear-gradient(90deg,#ff416c,#ff4b2b);
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:600;
  font-size:14px;
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  padding:60px 8%;
  background:linear-gradient(120deg,#fff,#ffeaf3);
}

.hero-content{
  max-width:520px;
}

.hero-image{
  overflow:hidden;
}

.hero-image img{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
  transition:.4s ease;
}

.hero-image img:hover{
  transform:scale(1.03);
}

/* HERO TEXT ELEMENTS */
.top-offer{
  background:#ffe3ef;
  color:#e91e63;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  display:inline-block;
  margin-bottom:12px;
}

.review-proof{
  color:#ff9800;
  font-weight:700;
  margin-bottom:8px;
  font-size:14px;
}

#title{
  font-size:30px;
  font-weight:700;
  margin-bottom:8px;
}

.rating{
  background:#e91e63;
  color:#fff;
  padding:6px 12px;
  border-radius:6px;
  font-size:13px;
  display:inline-block;
  margin-bottom:12px;
}

.price-box{
  margin:10px 0;
}

.old-price{
  text-decoration:line-through;
  color:#999;
  font-size:16px;
  margin-right:8px;
}

.new-price{
  font-size:28px;
  color:#e91e63;
  font-weight:700;
}

.countdown-box{
  background:#111;
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  font-size:13px;
  display:inline-block;
  margin-bottom:12px;
}

.stock{
  background:#ffe6e6;
  padding:8px 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  margin-bottom:15px;
}

.trust-row{
  font-size:14px;
  color:#555;
  margin-bottom:18px;
}

.cta-note{
  margin-top:8px;
  font-size:13px;
  color:#e91e63;
  font-weight:600;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn{
  width:100%;
  height:46px;
  border:none;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:.35s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.premium-btn{
  background:linear-gradient(90deg,#ff4fa3,#ff87bb);
  color:#fff;
  box-shadow:0 10px 30px rgba(233,30,99,.25);
  transition:all .25s ease;
}

.premium-btn:hover{
  background:#e91e63;
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(233,30,99,.45);
}

.premium-btn:active{
  background:#c2185b;
  transform:scale(.95);
  box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.btn-outline{
  background:#fff;
  border:1px solid #ddd;
  color:#333;
  margin-top:8px;
}

.btn-dark{
  background:#222;
  color:#fff;
  margin-top:8px;
}

.btn-dark:hover{
  background:#000;
}

/* ===================================================
   TRUST SECTION
=================================================== */
.premium-trust{
  background:#fff;
  padding:40px 5%;
}

.trust-container{
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
  text-align:center;
}

.trust-item img{
  width:80px;
  margin-bottom:8px;
}

.trust-item p{
  font-weight:600;
  font-size:14px;
}

/* ===================================================
   PRODUCT GRID
=================================================== */
.container{
  max-width:1200px;
  margin:auto;
  padding:50px 20px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:22px;
}

.card{
  background:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  transition:.3s ease;
  position:relative;
}

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

.product-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:10px;
  transition:transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
}

.product-img.zoomed{
  transform:scale(1.25);
  z-index:5;
  position:relative;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.card h3{
  font-size:15px;
  font-weight:600;
  margin-bottom:6px;
}

.card p{
  font-size:13px;
  color:#666;
  margin-bottom:6px;
}

.price{
  font-size:15px;
  font-weight:700;
  color:#e91e63;
}

.card .orderBtn{
  margin-top:auto;
}

/* ===================================================
   FLOAT CART
=================================================== */
#cartCounterBox{
  position:fixed;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  background:#111;
  color:#fff;
  padding:10px 16px;
  border-radius:30px;
  font-size:13px;
  cursor:pointer;
  z-index:999;
}

/* ===================================================
   LIVE POPUP
=================================================== */
#liveOrder{
  position:fixed;
  bottom:100px;
  left:20px;
  background:#fff;
  padding:14px 16px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  font-size:13px;
  display:none;
  z-index:9999;
}

/* ===================================================
   WHATSAPP FLOAT
=================================================== */
.wa-float{
  position:fixed;
  bottom:120px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:14px;
  border-radius:50%;
  font-size:22px;
  z-index:9999;
  text-decoration:none;
}

/* ===================================================
   STICKY MOBILE CTA
=================================================== */
.sticky-order{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:linear-gradient(90deg,#e91e63,#ff4fa3);
  color:#fff;
  text-align:center;
  padding:14px;
  font-weight:600;
  display:none;
  z-index:9999;
}

/* ===================================================
   FOOTER
=================================================== */
footer{
  background:linear-gradient(135deg,#111,#1f1f1f,#2b2b2b);
  color:#fff;
  text-align:center;
  padding:30px 20px;
  font-size:13px;
}

/* ===================================================
   HERO BENEFITS
=================================================== */
.hero-benefits{
  list-style:none;
  margin:12px 0 18px;
  padding:0;
}

.hero-benefits li{
  font-size:14px;
  margin-bottom:6px;
  color:#444;
  font-weight:500;
}

/* ===================================================
   BADGES
=================================================== */
.badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 10px;
  font-size:11px;
  font-weight:700;
  border-radius:20px;
  color:#fff;
  z-index:2;
}

.best-badge{
  background:linear-gradient(135deg,#d4af37,#f9d423);
  color:#000;
  box-shadow:0 4px 15px rgba(212,175,55,.4);
}

.limited-badge{
  background:#ff3b30;
  box-shadow:0 4px 15px rgba(255,59,48,.4);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media(max-width:992px){
  .hero{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }

  .hero-image{
    order:-1;
  }

  .hero-image img{
    height:320px;
  }
}

@media(max-width:768px){
  .hero{
    padding:40px 5%;
  }

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

  .product-img{
    height:auto !important;
    aspect-ratio:4/5;
    object-fit:contain !important;
    background:#fff;
  }

  .trust-container{
    flex-wrap:nowrap;
    gap:8px;
  }

  .trust-item{
    flex:1;
  }

  .trust-item img{
    width:55px;
  }

  body{
    padding-bottom:100px;
  }

  .sticky-order{
    display:block;
  }

  #cartCounterBox{
    bottom:120px;
    top:auto;
    transform:none;
  }
}

/* IPHONE 12 IMAGE FIX */
@media screen and (max-width:420px){
  .product-img{
    aspect-ratio:4/5;
    height:auto;
    object-fit:cover;
    object-position:center;
  }
}

/* BUTTON EFFECTS */
.premium-btn{
  background:#ff4fa3 !important;
  color:#fff !important;
  transition:all .25s ease !important;
}

@media(hover:hover){
  .premium-btn:hover{
    background:#e91e63 !important;
    transform:translateY(-4px);
  }
}

.premium-btn:active{
  background:#c2185b !important;
  transform:scale(.95);
}

.orderBtn{
  background:linear-gradient(90deg,#ff4fa3,#ff87bb);
  color:#fff;
  transition:all .25s ease;
}

@media(hover:hover){
  .orderBtn:hover{
    background:#e91e63;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(233,30,99,.35);
  }
}

.orderBtn:active{
  background:#c2185b;
  transform:scale(.95);
}

/* IMAGE CLICK ZOOM EFFECT */
.product-img{
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease;
}

.product-img.zoomed{
  transform:scale(1.25);
  z-index:5;
  position:relative;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* TEXT GRADIENT */
#desc{
  font-weight:700;
  background:linear-gradient(90deg,#e91e63,#ff4fa3);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.free-box{
  background: linear-gradient(90deg,#fff3e0,#ffe0b2);
  color:#e65100;
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  margin:10px 0;
  display:inline-block;
}