:root{
  --red:#ff1744;
  --orange:#ff6a00;
  --dark:#111827;
  --muted:#64748b;
  --soft:#fff7ed;
  --soft2:#fff1e8;
  --line:#ffe1d3;
  --white:#ffffff;
  --sale:linear-gradient(135deg,#ff1744 0%,#ff4b1f 55%,#ff8a00 100%);
  --shadow:0 14px 36px rgba(255,75,31,.16);
  --shadow2:0 10px 26px rgba(15,23,42,.07);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

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

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  font-family:'Hind Siliguri',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:linear-gradient(180deg,#fff1e8 0%,#fff7ed 38%,#fff 100%);
  color:var(--dark);
  padding-bottom:88px;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font-family:inherit;
  border:0;
  background:none;
  cursor:pointer;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

.container{
  width:100%;
  max-width:1380px;
  margin:0 auto;
  padding:0 16px;
}

/* TOPBAR */
.topbar{
  background:var(--sale);
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
  padding:9px 0;
  font-weight:900;
}

.topbar-scroll{
  display:flex;
  gap:48px;
  width:max-content;
  animation:scrollTopbar 20s linear infinite;
}

.topbar-scroll span{
  display:inline-flex;
  align-items:center;
}

@keyframes scrollTopbar{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.header-wrapper{
  height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo-wrap{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo-img{
  width:126px;
  height:auto;
}

.desktop-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-left:auto;
}

.desktop-menu a{
  font-weight:900;
  font-size:15px;
  color:var(--dark);
}

.desktop-menu a:hover{
  color:#e91b00;
}

.checkout-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--sale);
  color:#fff;
  font-weight:900;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:var(--shadow);
  white-space:nowrap;
}

/* HERO */
.hero{
  padding:18px 0 22px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}

.hero-image-wrapper{
  width:100%;
  max-width:100%;
}

.hero-image,
.hero-content{
  min-height:520px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-image{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff4ec;
}

.hero-image img,
#heroBanner{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.sale-badge{
  position:absolute;
  top:14px;
  right:14px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--sale);
  color:#fff;
  font-weight:900;
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(255,75,31,.28);
  line-height:1;
}

.hero-content{
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-badge{
  display:inline-flex;
  align-self:flex-start;
  background:#fff1e8;
  border:1px solid #ffc9b8;
  color:#e91b00;
  font-weight:900;
  padding:9px 14px;
  border-radius:999px;
  margin-bottom:14px;
}

.hero-content h1{
  font-size:44px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.5px;
  margin-bottom:16px;
}

.hero-price{
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.old-price{
  font-size:24px;
  color:#94a3b8;
  text-decoration:line-through;
  font-weight:900;
}

.new-price{
  font-size:76px;
  line-height:.95;
  color:#e91b00;
  font-weight:900;
  text-shadow:0 10px 22px rgba(233,27,0,.16);
}

.hero-checkout-btn,
.shop-btn,
.product-order-btn,
.buy-btn,
.sticky-checkout a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:62px;
  border-radius:18px;
  font-size:22px;
  font-weight:900;
  text-align:center;
}

.hero-checkout-btn,
.product-order-btn,
.buy-btn,
.sticky-checkout a{
  background:var(--sale);
  color:#fff;
  box-shadow:0 16px 34px rgba(255,75,31,.32);
}

.shop-btn{
  margin-top:10px;
  border:2px solid #ff4b1f;
  color:#e91b00;
  background:#fff;
}

.hero-checkout-btn:hover,
.product-order-btn:hover,
.buy-btn:hover,
.checkout-btn:hover,
.sticky-checkout a:hover{
  transform:translateY(-1px);
}

/* PRODUCTS */
.products-section{
  padding:22px 0 80px;
}

.section-header{
  text-align:center;
  margin-bottom:24px;
}

.section-badge{
  display:inline-flex;
  background:#fff1e8;
  color:#e91b00;
  border:1px solid #ffc9b8;
  padding:8px 14px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:10px;
}

.section-header h2{
  font-size:42px;
  line-height:1.16;
  font-weight:900;
}

.section-header p{
  font-size:16px;
  color:var(--muted);
  font-weight:700;
  margin-top:8px;
}

.products-grid,
#products{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:18px!important;
  width:100%;
  max-width:100%;
}

.product-card{
  position:relative;
  width:100%;
  max-width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow2);
  transition:.2s ease;
}

.product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(15,23,42,.12);
}

/* Supports new index.php class + old JS classes */
.product-card > .product-image,
.product-image-box{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  background:#fff4ec;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-card > .product-image img,
.product-image-box img,
img.product-image{
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:cover;
  object-position:center;
}

.product-sale-badge,
.gz-sale-ribbon{
  position:absolute;
  top:10px!important;
  right:10px!important;
  left:auto!important;
  z-index:6;
  background:var(--sale);
  color:#fff;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(255,75,31,.24);
}

.product-info,
.product-content{
  padding:14px;
}

.product-info h3,
.product-title{
  font-size:18px;
  line-height:1.25;
  text-align:center;
  font-weight:900;
  margin-top:10px;
  min-height:45px;
}

.product-info p,
.product-desc{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  text-align:center;
  font-weight:700;
}

.product-price{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:8px;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.product-price .old-price,
.product-old-price{
  font-size:15px;
  color:#94a3b8;
  text-decoration:line-through;
  font-weight:900;
}

.product-price .new-price,
.product-new-price{
  font-size:42px;
  line-height:1;
  color:#e91b00;
  font-weight:900;
  text-shadow:none;
}

.product-order-btn,
.buy-btn{
  min-height:54px;
  font-size:17px;
  border-radius:14px;
  margin:10px 0 8px;
}

.product-empty,
.empty-box,
.skeleton-card{
  grid-column:1/-1;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  text-align:center;
  font-weight:900;
  color:var(--dark);
}

/* Hide old cart/conversion blocks if script injects them */
.cart-btn,
.btn-outline,
.hero-mini-trust,
.conversion-strip,
.live-proof,
#cartFloatBtn,
.cart-float,
#cartCount{
  display:none!important;
}

/* FLASH SALE */
.flash-sale{
  padding:0 0 36px;
}

.flash-sale-box{
  background:var(--sale);
  color:#fff;
  border-radius:20px;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:900;
}

/* TRUST */
.trust-section{
  padding:12px 0 60px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.trust-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px 12px;
  text-align:center;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.trust-card h3{
  font-size:34px;
  color:#e91b00;
  font-weight:900;
}

.trust-card p{
  color:var(--muted);
  font-weight:800;
}

/* REVIEWS */
.review-section{
  padding:56px 0;
  background:#fff7ed;
}

.review-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.review-track{
  display:flex;
  gap:28px;
  width:max-content;
  animation:reviewLoop 22s linear infinite;
}

.review-track:hover{
  animation-play-state:paused;
}

.review-card{
  flex:0 0 420px;
  min-width:420px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  white-space:normal;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
}

.review-card strong{
  display:block;
  font-size:18px;
  font-weight:900;
}

.review-card span{
  display:block;
  color:var(--muted);
  font-weight:700;
  margin-top:2px;
}

.review-card p{
  margin-top:10px;
  line-height:1.6;
}

@keyframes reviewLoop{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* FLOATS */
.whatsapp-chat{
  position:fixed;
  left:14px;
  bottom:88px;
  z-index:999;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(37,211,102,.28);
}

.sticky-checkout{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  z-index:998;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-top:1px solid var(--line);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
}

.sticky-checkout a{
  height:58px;
  min-height:58px;
  font-size:19px;
  border-radius:16px;
}

#cartToast,
#livePopup{
  position:fixed;
  left:12px;
  right:12px;
  top:86px;
  z-index:9999;
  background:#111;
  color:#fff;
  padding:12px 16px;
  border-radius:14px;
  text-align:center;
  font-weight:900;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:.2s;
}

#cartToast.show,
#livePopup.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* FOOTER */
.footer{
  background:#fff;
  border-top:1px solid var(--line);
  padding-top:52px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:34px;
  padding-bottom:38px;
}

.footer-logo-img{
  width:140px;
  margin-bottom:12px;
}

.footer h4{
  font-size:20px;
  margin-bottom:12px;
}

.footer p,
.footer a{
  display:block;
  color:var(--muted);
  line-height:1.8;
  font-weight:700;
}

.footer a:hover{
  color:#e91b00;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid var(--line);
  padding:18px;
  color:#94a3b8;
}

/* TABLET */
@media(max-width:1100px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-image,
  .hero-content{
    min-height:auto;
  }

  .hero-image{
    height:520px;
  }

  .products-grid,
  #products{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}

/* MOBILE */
@media(max-width:768px){
  html,
  body{
    width:100%!important;
    max-width:100%!important;
    overflow-x:hidden!important;
    background:#fff7ed!important;
  }

  body{
    padding-bottom:78px!important;
  }

  .container{
    width:100%!important;
    max-width:100%!important;
    margin:0 auto!important;
    padding-left:10px!important;
    padding-right:10px!important;
  }

  .topbar{
    padding:8px 0!important;
    font-size:14px!important;
  }

  .topbar-scroll{
    gap:32px!important;
    animation-duration:18s!important;
  }

  .desktop-menu{
    display:none!important;
  }

  .header-wrapper{
    height:58px!important;
  }

  .logo-img{
    width:108px!important;
  }

  .checkout-btn{
    font-size:13px!important;
    padding:10px 12px!important;
  }

  .hero{
    width:100%!important;
    padding:10px 0 16px!important;
  }

  .hero-grid{
    width:100%!important;
    max-width:100%!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
    margin:0!important;
  }

  .hero-image,
  .hero-content{
    width:100%!important;
    max-width:100%!important;
    min-height:auto!important;
    border-radius:18px!important;
  }

  .hero-image{
    height:auto!important;
    min-height:auto!important;
    padding:10px!important;
    background:#fff!important;
  }

  .hero-image img,
  #heroBanner{
    width:100%!important;
    height:auto!important;
    max-height:none!important;
    object-fit:contain!important;
    object-position:center!important;
    border-radius:16px!important;
  }

  .hero-content{
    padding:14px!important;
  }

  .hero-badge{
    font-size:13px!important;
    padding:7px 11px!important;
    margin-bottom:8px!important;
  }

  .hero-content h1{
    text-align:center!important;
    font-size:25px!important;
    line-height:1.18!important;
    margin-bottom:10px!important;
  }

  .hero-price{
    justify-content:center!important;
    margin-bottom:10px!important;
  }

  .old-price{
    font-size:17px!important;
  }

  .new-price{
    font-size:48px!important;
  }

  .hero-checkout-btn,
  .shop-btn{
    min-height:50px!important;
    font-size:16px!important;
    border-radius:14px!important;
  }

  .products-section,
  .flash-sale,
  .trust-section,
  .review-section{
    width:100%!important;
  }

  .products-section{
    padding:18px 0 56px!important;
  }

  .section-header{
    margin-bottom:18px!important;
  }

  .section-badge{
    font-size:13px!important;
    padding:7px 12px!important;
  }

  .section-header h2{
    font-size:27px!important;
    line-height:1.2!important;
  }

  .section-header p{
    font-size:14px!important;
  }

  .products-grid,
  #products{
    grid-template-columns:1fr!important;
    gap:14px!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    overflow:hidden!important;
  }

  .product-card{
    width:100%!important;
    max-width:100%!important;
    border-radius:16px!important;
    overflow:hidden!important;
    margin-left:0!important;
    margin-right:0!important;
  }

  .product-card > .product-image,
  .product-image-box{
    width:100%!important;
    height:auto!important;
    min-height:auto!important;
    aspect-ratio:auto!important;
    padding:0!important;
    background:#fff7ed!important;
    overflow:hidden!important;
  }

  .product-card > .product-image img,
  .product-image-box img,
  img.product-image{
    width:100%!important;
    height:auto!important;
    max-height:none!important;
    object-fit:contain!important;
    object-position:center!important;
  }

  .product-info,
  .product-content{
    padding:12px!important;
  }

  .product-price .old-price,
  .product-old-price{
    font-size:14px!important;
  }

  .product-price .new-price,
  .product-new-price{
    font-size:40px!important;
  }

  .product-info h3,
  .product-title{
    font-size:20px!important;
    line-height:1.25!important;
    min-height:auto!important;
  }

  .product-info p,
  .product-desc{
    font-size:13px!important;
  }

  .product-order-btn,
  .buy-btn{
    min-height:52px!important;
    font-size:16px!important;
    border-radius:12px!important;
    padding:6px!important;
  }

  .sale-badge,
  .product-sale-badge,
  .gz-sale-ribbon{
    top:10px!important;
    right:10px!important;
    left:auto!important;
    font-size:10px!important;
    padding:6px 8px!important;
  }

  .flash-sale-box{
    flex-direction:column!important;
    text-align:center!important;
    font-size:14px!important;
    padding:13px!important;
  }

  .trust-grid{
    grid-template-columns:repeat(2,1fr)!important;
    gap:9px!important;
  }

  .trust-card{
    padding:16px 8px!important;
    border-radius:15px!important;
  }

  .trust-card h3{
    font-size:24px!important;
  }

  .trust-card p{
    font-size:12px!important;
  }

  .review-section{
    padding:38px 0!important;
  }

  .review-track{
    gap:16px!important;
    animation-duration:22s!important;
  }

  .review-card{
    flex:0 0 82vw!important;
    min-width:82vw!important;
  }

  .whatsapp-chat{
    width:52px!important;
    height:52px!important;
    left:14px!important;
    right:auto!important;
    bottom:82px!important;
  }

  .sticky-checkout{
    left:0!important;
    right:0!important;
    width:100%!important;
  }

  .sticky-checkout a{
    height:54px!important;
    min-height:54px!important;
    font-size:16px!important;
  }

  .footer{
    padding-top:36px!important;
  }

  .footer-grid{
    grid-template-columns:1fr!important;
    gap:22px!important;
  }
}

/* SMALL MOBILE */
@media(max-width:380px){
  .hero-content h1{
    font-size:23px!important;
  }

  .new-price{
    font-size:43px!important;
  }

  .product-price .new-price,
  .product-new-price{
    font-size:36px!important;
  }

  .product-order-btn,
  .buy-btn{
    font-size:15px!important;
  }

  .sticky-checkout a{
    font-size:15px!important;
  }
}