/* =========================================================
   Pakka24 Zepto Fullscreen Search (v3.2.0)
   - Fullscreen sheet
   - No underline links
   - Product title clamp
   - Zepto-ish spacing, chips, shimmer
========================================================= */
:root{
  --p24zs-bg:#f6f7f9;
  --p24zs-card:#ffffff;
  --p24zs-text:#111827;
  --p24zs-muted:#6b7280;
  --p24zs-border:#e5e7eb;
  --p24zs-shadow:0 10px 30px rgba(17,24,39,.12);
  --p24zs-pink:#ff2e63;
  --p24zs-green:#16a34a;
}

.p24zsBar{ width:100%; }
.p24zsBarBtn{
  width:100%;
  border:0;
  background:#fff;
  border-radius:16px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 6px 18px rgba(17,24,39,.10);
  cursor:pointer;
}
.p24zsIcon{ font-size:18px; }
.p24zsPlace{ color:#6b7280; font-weight:600; font-size:14px; text-align:left; }

/* Modal */
.p24zsModal{ position:fixed; inset:0; z-index:999999; display:none; }
.p24zsModal.p24zsOpen{ display:block; }

.p24zsOverlay{ position:absolute; inset:0; background:rgba(0,0,0,.22); }

.p24zsSheet{
  position:absolute;
  inset:0;
  background:var(--p24zs-bg);
  display:flex;
  flex-direction:column;
  transform:translateY(10px);
  opacity:0;
  transition:all .22s ease;
}
.p24zsOpen .p24zsSheet{ transform:translateY(0); opacity:1; }

.p24zsTop{
  position:sticky;
  top:0;
  z-index:2;
  background:var(--p24zs-bg);
  padding:10px 12px;
  display:flex;
  gap:10px;
  align-items:center;
}
.p24zsBack{
  width:42px; height:42px;
  border-radius:14px;
  border:0;
  background:#fff;
  box-shadow:0 6px 16px rgba(17,24,39,.10);
  cursor:pointer;
  font-size:16px;
}
.p24zsInputWrap{
  flex:1;
  background:#fff;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 10px;
  box-shadow:0 6px 16px rgba(17,24,39,.10);
  height:42px;
}
.p24zsInIcon{ font-size:16px; opacity:.85; }
.p24zsInput{
  flex:1;
  border:0;
  outline:none;
  font-size:14px;
  font-weight:700;
  background:transparent;
  color:var(--p24zs-text);
}
.p24zsClear{
  border:0;
  background:transparent;
  font-size:14px;
  opacity:.7;
  cursor:pointer;
  display:none;
}
.p24zsGo{
  border:0;
  background:var(--p24zs-pink);
  color:#fff;
  height:42px;
  padding:0 14px;
  border-radius:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(255,46,99,.25);
}

.p24zsBody{ padding:10px 12px 88px; overflow:auto; -webkit-overflow-scrolling:touch; }
.p24zsHint{ padding:14px 8px; }
.p24zsHintTitle{ font-size:16px; font-weight:900; color:var(--p24zs-text); }
.p24zsHintSub{ font-size:13px; font-weight:700; color:var(--p24zs-muted); margin-top:2px; }

.p24zsBlock{ margin-top:12px; }
.p24zsBlockHead{ display:flex; align-items:center; justify-content:space-between; margin:8px 4px; }
.p24zsBlockTitle{ font-size:14px; font-weight:900; color:var(--p24zs-text); }

.p24zsCatGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}
.p24zsCat{
  text-decoration:none !important;
  background:#fff;
  border-radius:16px;
  padding:12px 12px;
  box-shadow:0 6px 16px rgba(17,24,39,.10);
  color:var(--p24zs-text);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.p24zsCatName{ font-weight:900; font-size:13px; line-height:1.15; }

/* Products list */
.p24zsProdList{ display:flex; flex-direction:column; gap:10px; }
.p24zsPRow{
  text-decoration:none !important;
  background:#fff;
  border-radius:18px;
  padding:10px;
  box-shadow:0 6px 16px rgba(17,24,39,.10);
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--p24zs-text);
}
.p24zsPImg{ width:64px; height:64px; border-radius:14px; background:#f3f4f6; overflow:hidden; flex:0 0 64px; display:flex; align-items:center; justify-content:center; }
.p24zsPImg img{ width:100%; height:100%; object-fit:contain; }

.p24zsPMid{ flex:1; min-width:0; }
.p24zsPTitle{
  font-weight:900;
  font-size:13px;
  line-height:1.2;
  display:-webkit-box;
  -webkit-line-clamp:2; /* ✅ title limit */
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.p24zsPSub{ display:flex; gap:6px; flex-wrap:wrap; margin-top:6px; }
.p24zsChip{
  font-size:11px;
  font-weight:900;
  padding:4px 8px;
  border-radius:999px;
  background:#f3f4f6;
  color:#374151;
}
.p24zsChipGreen{ background:rgba(22,163,74,.12); color:var(--p24zs-green); }

.p24zsPPrice{ margin-top:6px; font-weight:900; font-size:13px; }
.p24zsPPrice del{ opacity:.5; margin-right:6px; }
.p24zsPAct{ flex:0 0 auto; display:flex; align-items:center; justify-content:flex-end; min-width:92px; }

.p24zsAdd, .p24zsSelect{
  text-decoration:none !important;
  border:0;
  background:var(--p24zs-pink);
  color:#fff;
  font-weight:900;
  border-radius:14px;
  height:36px;
  padding:0 14px;
  cursor:pointer;
  box-shadow:0 10px 18px rgba(255,46,99,.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.p24zsSelect{ background:#111827; box-shadow:0 10px 18px rgba(17,24,39,.18); }

.p24zsStepper{
  height:36px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--p24zs-border);
  display:flex;
  align-items:center;
  overflow:hidden;
}
.p24zsMinus,.p24zsPlus{
  width:34px; height:34px;
  border:0;
  background:#fff;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
}
.p24zsQty{ width:24px; text-align:center; font-weight:900; font-size:13px; }

.p24zsLoadRow{ display:flex; justify-content:center; padding:10px 0 4px; }
.p24zsLoadMore{
  border:0;
  background:#fff;
  color:#111827;
  font-weight:900;
  border-radius:16px;
  padding:12px 16px;
  box-shadow:0 6px 16px rgba(17,24,39,.10);
  cursor:pointer;
}

/* Empty */
.p24zsEmpty{ padding:24px 10px; text-align:center; }
.p24zsEmptyTitle{ font-size:16px; font-weight:900; }
.p24zsEmptySub{ font-size:13px; font-weight:700; color:var(--p24zs-muted); margin-top:4px; }

/* Bottom CTA */
.p24zsBottom{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 12px 12px;
  background:linear-gradient(to top, rgba(246,247,249,1) 60%, rgba(246,247,249,.0));
}
.p24zsSeeAll{
  width:100%;
  border:0;
  background:var(--p24zs-pink);
  color:#fff;
  height:48px;
  border-radius:18px;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(255,46,99,.26);
}

/* Shimmer */
.p24zsShimmer{ padding:10px 4px; }
.p24zsShimLine{
  height:16px; border-radius:10px;
  background:linear-gradient(90deg,#f3f4f6 25%,#e5e7eb 37%,#f3f4f6 63%);
  background-size:400% 100%;
  animation:p24zsSh 1.15s infinite;
  margin:6px 4px 10px;
}
.p24zsShimGrid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px; }
.p24zsShimCard{
  height:74px; border-radius:16px;
  background:linear-gradient(90deg,#f3f4f6 25%,#e5e7eb 37%,#f3f4f6 63%);
  background-size:400% 100%;
  animation:p24zsSh 1.15s infinite;
}
@keyframes p24zsSh{ 0%{background-position:100% 0} 100%{background-position:0 0} }

/* No underline anywhere inside plugin */
.p24zsModal a, .p24zsModal a:hover, .p24zsModal a:focus,
.p24zsPage a, .p24zsPage a:hover, .p24zsPage a:focus{
  text-decoration:none !important;
}

/* Page (optional) */
.p24zsPage{ padding:12px; background:var(--p24zs-bg); border-radius:18px; }
.p24zsPageTop{ display:flex; flex-direction:column; gap:10px; }
.p24zsPageTitle{ font-size:18px; font-weight:950; }
.p24zsPageForm{ display:flex; gap:10px; }
.p24zsPageInput{
  flex:1; border:0; outline:none;
  background:#fff; border-radius:16px;
  padding:12px 12px;
  box-shadow:0 6px 16px rgba(17,24,39,.10);
  font-weight:800;
}
.p24zsPageBtn{
  border:0; background:var(--p24zs-pink); color:#fff;
  border-radius:16px; padding:0 16px;
  font-weight:900; cursor:pointer;
}
.p24zsPageEmpty{ padding:18px 6px; color:var(--p24zs-muted); font-weight:800; }


/* ==== v3.2.1 Premium UI overrides ==== */
.p24zsBarBtn{
  border:1px solid rgba(226,232,240,.9) !important;
  border-radius:18px !important;
}
.p24zsBarIcon{ width:18px;height:18px;color:#94a3b8; display:inline-flex; }
.p24zsBarIcon svg{ width:18px;height:18px; }

.p24zsTop{
  background:rgba(246,247,249,.92) !important;
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid rgba(226,232,240,.65) !important;
  padding:12px 12px 10px !important;
}
.p24zsBack{
  width:44px !important; height:44px !important;
  border-radius:16px !important;
  border:1px solid rgba(226,232,240,.9) !important;
  display:inline-flex !important; align-items:center !important; justify-content:center !important;
}
.p24zsBack svg{ width:20px; height:20px; }

.p24zsInputWrap{
  height:44px !important;
  border-radius:18px !important;
  border:1px solid rgba(226,232,240,.9) !important;
}
.p24zsInIcon{ width:18px;height:18px;color:#94a3b8; display:inline-flex; }
.p24zsInIcon svg{ width:18px;height:18px; }
.p24zsClear{
  width:34px !important; height:34px !important;
  border-radius:12px !important;
  background:rgba(15,23,42,.06) !important;
  align-items:center; justify-content:center;
}
.p24zsClear svg{ width:18px;height:18px; }
.p24zsGo{ height:44px !important; border-radius:18px !important; font-weight:950 !important; }

.p24zsCat, .p24zsPRow{
  border:1px solid rgba(226,232,240,.8) !important;
}


/* ==== v3.2.2 Zepto-like Premium tweaks ==== */
.p24zsBack, .p24zsGo, .p24zsClear{ color:#0f172a !important; }
.p24zsBack svg, .p24zsInIcon svg, .p24zsBarIcon svg, .p24zsClear svg, .p24zsGo svg{ display:block; }

.p24zsInputWrap{ gap:10px !important; }
.p24zsInput{ font-size:15px !important; font-weight:900 !important; }

.p24zsClear{
  background:transparent !important;
  border:0 !important;
  width:34px !important; height:34px !important;
  border-radius:999px !important;
  opacity:.65 !important;
}
.p24zsClear:hover{ opacity:1 !important; background:rgba(15,23,42,.06) !important; }

.p24zsGo{
  width:44px !important;
  padding:0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:16px !important;
}
.p24zsGoIcon{ width:18px; height:18px; display:inline-flex; color:#fff; }
.p24zsGo{ color:#fff !important; } /* icon uses currentColor */
.p24zsGo svg{ width:20px; height:20px; }

.p24zsTop{ gap:12px !important; }
.p24zsBody{ padding-top:12px !important; }

@media (max-width:480px){
  .p24zsTop{ padding:10px 10px 10px !important; }
  .p24zsBack{ width:42px !important; height:42px !important; }
  .p24zsInputWrap{ height:42px !important; }
  .p24zsGo{ width:42px !important; height:42px !important; }
  .p24zsPAct{ min-width:86px !important; }
  .p24zsPImg{ width:62px !important; height:62px !important; flex:0 0 62px !important; }
}

/* Prevent cramped mid column on narrow areas */
.p24zsPRow{ align-items:flex-start !important; }
.p24zsPMid{ padding-top:2px; }
.p24zsPPrice{ white-space:nowrap; }


/* ==== v3.3.0 Premium: wider search, transitions, floating cart ==== */
.p24zsTop{ justify-content:flex-start; }
.p24zsInputWrap{ flex:1 1 auto !important; min-width:0; transition:box-shadow .18s ease, transform .18s ease; }
.p24zsInputWrap:focus-within{ box-shadow:0 14px 26px rgba(15,23,42,.14) !important; transform:translateY(-1px); }
.p24zsGo{ flex:0 0 auto; }

@media (max-width:520px){
  .p24zsGo{ width:44px !important; }
  .p24zsInputWrap{ flex:1 1 auto !important; }
}

/* floating cart bottom-left */
.p24zsCartFloat{
  position:fixed;
  left:12px;
  bottom:18px;
  z-index:999999;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:18px;
  background:#111827;
  color:#fff !important;
  text-decoration:none !important;
  box-shadow:0 14px 28px rgba(17,24,39,.28);
}
.p24zsCartIco{ font-size:16px; }
.p24zsCartTxt{ font-weight:950; font-size:13px; }
.p24zsCartCount{
  min-width:26px;
  height:22px;
  padding:0 8px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-weight:950;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* make back icon look like zepto arrow-line */
.p24zsBack svg{ width:22px !important; height:22px !important; }

/* ==== v3.4.0 FIXES ==== */

/* Bigger images, no crop */
.p24zsPImg{
  width:78px !important;
  height:78px !important;
  flex:0 0 78px !important;
  background:#fff !important;
}
.p24zsPImg img{
  object-fit:contain !important;
  padding:4px;
}

/* Better spacing */
.p24zsPRow{ padding:12px !important; }

/* Remove cramped icons */
.p24zsInIcon{ margin-right:2px !important; }

/* Premium search bar (home) */
.p24zsBarBtn{
  border-radius:20px !important;
  padding:14px 16px !important;
  transition:all .2s ease;
}
.p24zsBarBtn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(0,0,0,.12);
}




/* ==== v3.4.1 FIX (screenshots) ==== */

/* 1) Home search placeholder vertical rotation WITHOUT duplicate text */


/* 2) Bigger product images + full visible */
.p24zsPImg{
  width:86px !important;
  height:86px !important;
  flex:0 0 86px !important;
  border-radius:18px !important;
  background:#fff !important;
}
.p24zsPImg img{ object-fit:contain !important; padding:6px !important; }

/* 3) Stepper must be hidden by default, only show when cart qty>0 (JS controls) */
.p24zsStepper{ display:flex; }
.p24zsStepper[hidden]{ display:none !important; }

/* 4) Fix action alignment when N/A appears */
.p24zsPAct{ align-items:center; justify-content:flex-end; min-width:104px; }

/* 5) Cart button should not cover "See all results" */
.p24zsCartFloat{ bottom:86px !important; }

/* 6) Premium micro transition on popup input */
.p24zsInputWrap{
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease !important;
}
.p24zsInputWrap:focus-within{
  border-color:rgba(255,46,99,.25) !important;
  box-shadow:0 14px 28px rgba(15,23,42,.14) !important;
  transform:translateY(-1px);
}

/* 7) Remove any underline inside cards */
.p24zsPRow *, .p24zsCat *{ text-decoration:none !important; }


/* ==== v3.5.0 Home Search Bar (Zepto/Blinkit premium) ==== */
.p24zsBarBtn{
  position:relative;
  border:0 !important;
  background:linear-gradient(#fff,#fff) padding-box,
             linear-gradient(135deg, rgba(255,46,99,.55), rgba(22,163,74,.35), rgba(59,130,246,.35)) border-box;
  border:1.5px solid transparent !important;
  box-shadow:0 10px 26px rgba(15,23,42,.12) !important;
}
.p24zsBarBtn::after{
  content:"";
  position:absolute; inset:0;
  border-radius:20px;
  pointer-events:none;
  background:radial-gradient(120px 40px at 20% 20%, rgba(255,46,99,.10), transparent 55%),
             radial-gradient(160px 50px at 80% 0%, rgba(59,130,246,.10), transparent 60%);
  opacity:.9;
}
.p24zsBarBtn:active{ transform:translateY(0) scale(.99); }
.p24zsBarIcon{ color:#94a3b8 !important; }
.p24zsPlace::after{ color:#475569 !important; } /* placeholder rotation text */

.p24zsBarBtn:hover{ box-shadow:0 16px 34px rgba(15,23,42,.14) !important; }

/* ==== v3.5.1 Extra premium home search feel ==== */
.p24zsBarBtn{
  min-height:52px;
}
.p24zsBarIcon{
  width:34px;height:34px;
  border-radius:14px;
  background:rgba(15,23,42,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.p24zsBarIcon svg{ width:18px;height:18px; }
.p24zsBarBtn::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:22px;
  pointer-events:none;
  opacity:.18;
  background:linear-gradient(90deg, transparent, rgba(255,46,99,.55), transparent);
  animation:p24zsGlow 3.8s infinite;
}
@keyframes p24zsGlow{
  0%{ transform:translateX(-40%); opacity:.0; }
  20%{ opacity:.18; }
  60%{ opacity:.18; }
  100%{ transform:translateX(40%); opacity:0; }
}


/* ==== v3.6.1 Mobile Instock polish (Zepto-like) ==== */
.p24zsPSub{ gap:6px !important; margin-top:6px !important; }
.p24zsChip{
  font-size:10.5px !important;
  font-weight:900 !important;
  padding:3px 8px !important;
  border-radius:999px !important;
  line-height:1.1 !important;
}
.p24zsChipGreen{
  background:rgba(22,163,74,.10) !important;
  color:#15803d !important;
  border:1px solid rgba(22,163,74,.18) !important;
}

/* Keep chips away from ADD/stepper area */
.p24zsPRow{ align-items:center !important; }
.p24zsPMid{ min-width:0; }
.p24zsPAct{ align-self:center !important; }

/* On very small screens, stack meta under price to avoid ugly wrap */
@media (max-width:420px){
  .p24zsPRow{ gap:10px !important; }
  .p24zsPTitle{ font-size:13px !important; }
  .p24zsPSub{ flex-wrap:wrap !important; }
  .p24zsPPrice{ margin-top:6px !important; font-size:13px !important; }
  .p24zsPSub{ margin-top:5px !important; }
}

/* When ADD -> stepper shows, keep left content stable */
.p24zsPAct{ min-width:108px !important; }
.p24zsAdd, .p24zsSelect{ width:auto; }
.p24zsStepper{ width:100px; justify-content:space-between; }


/* ==== v3.6.2 Stepper (Zepto-like) + card alignment ==== */
.p24zsPAct{ min-width:112px !important; }

/* ADD button */
.p24zsAdd{
  height:38px !important;
  border-radius:18px !important;
  font-size:13px !important;
  letter-spacing:.2px;
}

/* Stepper */
.p24zsStepper{
  width:112px !important;
  height:38px !important;
  border-radius:18px !important;
  border:1px solid rgba(226,232,240,.95) !important;
  box-shadow:0 10px 22px rgba(15,23,42,.08) !important;
  background:#fff !important;
  overflow:visible !important;
}
.p24zsPAct{
  flex:0 0 auto !important;
}

.p24zsMinus, .p24zsPlus{
  width:38px !important;
  height:38px !important;
  border:0 !important;
  background:rgba(255,46,99,.10) !important;
  color:var(--p24zs-pink) !important;
  font-size:20px !important;
  font-weight:950 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.p24zsMinus:active, .p24zsPlus:active{ transform:scale(.98); }
.p24zsQty{
  width:36px !important;
  font-size:13px !important;
  font-weight:950 !important;
  color:#0f172a !important;
}

/* Keep title/stock/price clean on mobile */
.p24zsPRow{ align-items:center !important; }
.p24zsPTitle{ margin-top:0 !important; }
.p24zsPSub{ margin-top:6px !important; }
.p24zsPPrice{ margin-top:6px !important; }

/* ==== v3.7.0 Infinite scroll (no Load more button) ==== */
.p24zsLoadRow{ display:none !important; }
.p24zsPageSentinel{ height:1px; }
.p24zsPageLoading{
  display:flex; justify-content:center; padding:14px 0; color:#64748b; font-weight:900;
}

/* ==== v3.7.1 HARD disable Load More button ==== */
.p24zsLoadRow,
.p24zsLoadMore{
  display:none !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

/* ==== v3.7.2 Fix: CTA clicks should not navigate ==== */
.p24zsPRow{ cursor:pointer; }
.p24zsPAct{ cursor:default; }

/* ==== v3.7.4 Search page layout fix + lazy load reliability ==== */
.p24zsPage .p24zsProdList{
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
}
.p24zsPage .p24zsPRow{
  width:100% !important;
  max-width:720px;
  margin:0 auto;
}
.p24zsPage .p24zsPageSentinel{ height:1px; }


/* ===== STOCK CHIP FIX (ZEPTO STYLE) ===== */

/* container */
.p24zsPSub{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
  flex-wrap:nowrap !important;
  margin-top:2px !important;
}

/* stock badge */
.p24zsChip{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:2px 8px !important;
  font-size:11px !important;
  font-weight:600 !important;
  border-radius:999px !important;
  line-height:1 !important;
  white-space:nowrap !important;
}

/* green chip */
.p24zsChipGreen{
  background:#e7f7ee !important;
  color:#0f9d58 !important;
}

/* remove extra spacing issue */
.p24zsPSub *{
  margin:0 !important;
}

/* align with title */
.p24zsPMid{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

/* prevent badge breaking layout */
.p24zsPRow{
  align-items:center !important;
}










/* Ripple */





/* =====================================================
   FINAL Premium Ripple (Production Safe)
===================================================== */

.p24zsBarBtn {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  transform: translateZ(0); /* prevents flicker on mobile */
}

.p24zsBarIcon {
  position: relative !important;
  z-index: 2 !important;
}

.p24zsBarIcon svg {
  transition: transform .25s cubic-bezier(.4,0,.2,1) !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Ripple */
.p24zsBarBtn.active .p24zsBarIcon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,46,99,.35) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: p24Ripple .6s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: -1;
}

/* Icon press effect */
.p24zsBarBtn.active .p24zsBarIcon svg {
  transform: scale(.9);
}

/* Animation */
@keyframes p24Ripple {
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}









/* ===================================================
   PREMIUM TOP-WEBSITE SEARCH BAR
   Clean • Soft • Expensive • Modern
=================================================== */

.p24zsBarBtn{
  width:100% !important;
  max-width:680px !important;
  margin:0 auto !important;

  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.06) !important;
  border-radius:28px !important;

  padding:18px 22px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:14px !important;

  box-shadow:
    0 1px 2px rgba(15,23,42,.04),
    0 8px 24px rgba(15,23,42,.06) !important;

  backdrop-filter:saturate(180%) blur(6px) !important;

  transition:
    box-shadow .25s cubic-bezier(.4,0,.2,1),
    transform .25s cubic-bezier(.4,0,.2,1),
    border-color .25s ease !important;
}

/* Smooth hover lift */
.p24zsBarBtn:hover{
  transform:translateY(-2px) !important;
  border-color:rgba(15,23,42,.10) !important;
  box-shadow:
    0 4px 12px rgba(15,23,42,.08),
    0 20px 40px rgba(15,23,42,.10) !important;
}

/* Press feedback */
.p24zsBarBtn:active{
  transform:translateY(0) scale(.99) !important;
}

/* Remove old gradient/glow */
.p24zsBarBtn::before,
.p24zsBarBtn::after{
  display:none !important;
  content:none !important;
}

/* Icon container */
.p24zsBarIcon{
  width:42px !important;
  height:42px !important;
  border-radius:18px !important;

  background:rgba(15,23,42,.04) !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  color:#64748b !important;

  transition:background .2s ease, color .2s ease !important;
}

.p24zsBarBtn:hover .p24zsBarIcon{
  background:rgba(15,23,42,.06) !important;
  color:#0f172a !important;
}

.p24zsBarIcon svg{
  width:20px !important;
  height:20px !important;
  fill:currentColor !important;
  stroke:currentColor !important;
}

/* Placeholder text */
.p24zsPlace{
  font-size:17px !important;
  font-weight:600 !important;
  letter-spacing:.2px !important;
  color:#475569 !important;
}












/* ===== PREMIUM SLIM SEARCH BAR ===== */

.p24zsBarBtn{
  width:100% !important;
  max-width:640px !important;
  margin:0 auto !important;

  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.06) !important;
  border-radius:999px !important;

  padding:12px 18px !important;   /* 🔥 smaller padding */

  display:flex !important;
  align-items:center !important;
  gap:12px !important;

  box-shadow:
    0 1px 2px rgba(15,23,42,.04),
    0 6px 18px rgba(15,23,42,.06) !important;

  transition:all .25s cubic-bezier(.4,0,.2,1) !important;
}

/* Hover */
.p24zsBarBtn:hover{
  transform:translateY(-1px) !important;
  box-shadow:
    0 4px 12px rgba(15,23,42,.08),
    0 12px 28px rgba(15,23,42,.08) !important;
}

/* Remove forced min-height */
.p24zsBarBtn{
  min-height:auto !important;
}


.p24zsBarIcon{
  width:34px !important;
  height:34px !important;
  border-radius:12px !important;
}








/* ==========================================
   FINAL CLEAN PREMIUM SEARCH BAR
========================================== */

.p24zsBarBtn{
  width:100% !important;
  max-width:620px !important;
  margin:0 auto !important;

  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:999px !important;

  padding:5px 8px !important;

  display:flex !important;
  align-items:center !important;
  gap:12px !important;

  box-shadow:
    0 1px 2px rgba(15,23,42,.04),
    0 4px 12px rgba(15,23,42,.06) !important;

  transition:all .25s cubic-bezier(.4,0,.2,1) !important;

  min-height:auto !important;
}

/* Hover */
.p24zsBarBtn:hover{
  transform:translateY(-1px) !important;
  box-shadow:
    0 4px 12px rgba(15,23,42,.08),
    0 12px 24px rgba(15,23,42,.08) !important;
}

/* Icon */
.p24zsBarIcon{
  width:32px !important;
  height:32px !important;
  border-radius:12px !important;
  background:rgba(15,23,42,.04) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

/* Placeholder */
.p24zsPlace{
  position:static !important;
  display:inline-block !important;
  height:auto !important;
  overflow:visible !important;

  font-size:16px !important;
  font-weight:600 !important;
  color:#475569 !important;
}



/* ======================================================
   P24ZS – ZEPTO EXACT SEARCH BAR REPLICA
   Flat • Minimal • App Style • Clean
====================================================== */

.p24zsBarBtn{
  width:100% !important;
  max-width:640px !important;
  margin:0 auto !important;

  display:flex !important;
  align-items:center !important;
  gap:12px !important;

  padding:10px 16px !important;

  background:#f1f3f4 !important;   /* Zepto grey */
  border:none !important;
  border-radius:12px !important;

  box-shadow:none !important;

  transition:background .2s ease !important;

  min-height:44px !important;
  cursor:pointer !important;
  
    transition:
    background .18s cubic-bezier(.4,0,.2,1),
    transform .18s cubic-bezier(.4,0,.2,1),
    box-shadow .18s cubic-bezier(.4,0,.2,1) !important;

  will-change: transform;
  
}

/* Subtle hover like web Zepto */
.p24zsBarBtn:hover{
  background:#eceff1 !important;
}

/* ICON */

.p24zsBarIcon{
  flex:0 0 auto !important;

  width:20px !important;
  height:20px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  color:#5f6368 !important;
  background:none !important;
  border-radius:0 !important;
}

.p24zsBarIcon svg{
  width:20px !important;
  height:20px !important;
  fill:currentColor !important;
  stroke:currentColor !important;
}





/* PLACEHOLDER */

.p24zsPlace{
  flex:1 !important;

  font-size:15px !important;
  font-weight:500 !important;

  color:#5f6368 !important;

  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}



/* ===== Vertical Placeholder Animation (JS Controlled) ===== */

.p24zsPlace{
  position:relative !important;
  display:block !important;

  height:20px !important;
  line-height:20px !important;

  overflow:hidden !important;

  font-size:15px !important;
  font-weight:500 !important;

  color:#5f6368 !important;
}

.p24zsPlace span{
  display:block;
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}









/* ======================================================
   ZEPTO POPUP SEARCH – EXACT REPLICA
====================================================== */

.p24zsTop{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;

  padding:8px 12px !important;
  background:#f6f7f9 !important;
}

/* Back button */
.p24zsBack{
  flex:0 0 40px !important;
  width:40px !important;
  height:40px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:#ffffff !important;
  border-radius:12px !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

/* Input wrapper */
.p24zsInputWrap{
  flex:1 1 auto !important;
  min-width:0 !important;

  display:flex !important;
  align-items:center !important;
  gap:6px !important;

  height:40px !important;
  padding:0 12px !important;

  background:#f1f3f4 !important;
  border-radius:12px !important;
  border:none !important;
  box-shadow:none !important;
}

/* Search icon inside input */
.p24zsInIcon{
  width:18px !important;
  height:18px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  color:#5f6368 !important;
}

/* Input field */
.p24zsInput{
  flex:1 !important;
  min-width:0 !important;

  font-size:14px !important;
  font-weight:500 !important;

  border:none !important;
  outline:none !important;
  background:transparent !important;
  padding:0 !important;

  color:#202124 !important;
}

.p24zsInput::placeholder{
  color:#5f6368 !important;
  font-weight:500 !important;
}

/* Clear button */
.p24zsClear{
  width:28px !important;
  height:28px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  border-radius:50% !important;
  background:transparent !important;
  padding:0 !important;
  opacity:.6 !important;
}

.p24zsClear:hover{
  opacity:1 !important;
}

/* Pink search button */
.p24zsGo{
  flex:0 0 40px !important;
  width:40px !important;
  height:40px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:#ff2e63 !important;
  border-radius:12px !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;

  transition:transform .12s ease !important;
}

.p24zsGo:active{
  transform:scale(.95) !important;
}

/* Icons sizing */
.p24zsBack svg,
.p24zsGo svg{
  width:20px !important;
  height:20px !important;
}










/* ======================================
   ZEPTO CLEAN WHITE LOCATION BAR
====================================== */

.wcgcp-lux-bar{
  background:#ffffff !important;   /* remove cement */
  border:1px solid rgba(17,24,39,.06) !important;
  box-shadow:0 4px 16px rgba(0,0,0,.04) !important;
}

/* Softer icon background */
.wcgcp-lux-icon{
  background:rgba(17,24,39,.04) !important;
}

/* Softer profile circle */
.lux-profile-circle{
  background:rgba(17,24,39,.04) !important;
}

/* Divider lighter */
.wcgcp-lux-divider{
  background:rgba(17,24,39,.06) !important;
}







/* ===== FIX: prevent + wrapping ===== */
.p24zsStepper{
  display:flex !important;
  flex-wrap:nowrap !important;   /* ← THIS FIXES IT */
  align-items:center !important;
}

.p24zsMinus,
.p24zsPlus,
.p24zsQty{
  flex:0 0 auto !important;
}


/* ===== FINAL CLEAN STEPPER FIX ===== */

.p24zsPAct{
  flex:0 0 auto !important;
  min-width:auto !important;
}

.p24zsStepper{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  width:auto !important;          /* let content decide */
  height:38px !important;
  border-radius:18px !important;
  border:1px solid rgba(226,232,240,.95) !important;
  background:#fff !important;
}

.p24zsMinus,
.p24zsPlus{
  flex:0 0 38px !important;
}

.p24zsQty{
  flex:0 0 36px !important;
  text-align:center;
}

p24zsBar{ width:100%; }
.p24zsBarBtn{background-color:#fff !important;
    border: 2px solid black !important;
    color: blue !important;
    
}

.p24zsBarIcon svg{
    color: red !important;
    fill: red !important;
    stroke: red !important;
}





