:root{
  --brand-teal:#0a6e1a;
  --brand-teal-light:#0c831f;
  --brand-teal-mid:#0c9a24;
  --brand-lime:#0c831f;
  --brand-lime-dark:#0a6e1a;
  --brand-lime-soft:#e7f5e9;
  --brand-surface:#f5f7f6;
  --brand-offer:#E85D04;
  --fk-blue:var(--brand-teal-light);
  --fk-blue-dark:var(--brand-teal);
  --fk-pink:var(--brand-lime);
  --fk-pink-light:var(--brand-lime-soft);
  --fk-red:#D84315;
  --fk-green:var(--brand-teal-mid);
  --bg:var(--brand-surface);
  --card:#ffffff;
  --text:#1A1A1A;
  --muted:#5C6B68;
  --line:#DDE5E3;
  --primary:var(--brand-lime);
  --primary-dark:var(--brand-lime-dark);
  --accent:var(--brand-teal-light);
  --danger:var(--fk-red);
  --shadow:0 4px 20px rgba(15,61,58,.1);
  --radius:12px;
  --nav-h:60px;
  --safe-top:env(safe-area-inset-top,0px);
  --safe-bottom:env(safe-area-inset-bottom,0px);
  --content-max-mobile:720px;
  --content-max-desktop:1720px;
  --content-gutter-desktop:clamp(20px,3vw,48px);
  --bp-desktop:900px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Plus Jakarta Sans","Segoe UI",Roboto,system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  padding-bottom:calc(var(--nav-h) + var(--safe-bottom) + 12px);
}
body.sheet-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.appShell{min-height:100vh}
.consumerContainer{
  width:100%;
  max-width:var(--content-max-mobile);
  margin:0 auto;
  padding:0 12px;
}
.appMain{
  width:100%;
  max-width:100%;
  margin:0;
}

/* Modi99 storefront header */
.minutesHeader{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg,var(--brand-teal-light) 0%,var(--brand-teal) 100%);
  color:#fff;padding:calc(8px + var(--safe-top)) 0 0;
  box-shadow:0 4px 18px rgba(15,61,58,.28);
  transition:padding .18s ease, box-shadow .18s ease, transform .18s ease;
}
.brandBar{
  display:flex;align-items:center;gap:10px;padding:8px 0 10px;
}
.brandLogo{
  width:40px;height:40px;border-radius:50%;object-fit:cover;
  border:2px solid rgba(255,255,255,.25);flex-shrink:0;
}
.brandWordmark{
  display:flex;flex-direction:column;min-width:0;line-height:1.15;
}
.brandName{
  font-size:17px;font-weight:800;letter-spacing:-.02em;color:#fff;
}
.brandTagline{
  font-size:11px;font-weight:600;color:rgba(255,255,255,.75);
}
.minutesHeaderTop{margin-bottom:8px}
.minutesHeader .consumerContainer{padding-bottom:0}
.minutesHeaderTop{
  display:flex;align-items:flex-start;justify-content:space-between;gap:10px;margin-bottom:10px;
}
.minutesAddress{display:flex;align-items:center;gap:8px;min-width:0;flex:1;color:#fff}
.minutesAddressIcon{font-size:18px;opacity:.95}
.minutesAddressText{min-width:0;flex:1}
.minutesAddressTitle{font-size:11px;opacity:.85;font-weight:600}
.minutesAddressLabel{font-size:14px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}
.minutesAddressChevron{opacity:.8;font-size:18px}
.minutesHeaderActions{display:flex;align-items:center;gap:8px;flex-shrink:0}
.etaPill{
  background:rgba(255,255,255,.18);color:#fff;font-size:11px;font-weight:800;
  padding:6px 10px;border-radius:8px;white-space:nowrap;
}
.headerIconBtn{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;font-size:16px;
}

.minutesSearchWrap{
  display:flex;align-items:center;gap:8px;background:#fff;border-radius:10px;
  padding:10px 12px;margin-bottom:8px;
}
.minutesSearchIcon{color:var(--muted);font-size:16px}
.minutesSearch{
  border:none;outline:none;width:100%;font-size:15px;background:transparent;color:var(--text);
}
.minutesSearch::placeholder{color:#9e9e9e}

.quickFilterBar{
  display:flex;gap:8px;overflow-x:auto;padding:4px 0 8px;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
  transition:max-height .18s ease, opacity .18s ease, margin .18s ease, padding .18s ease;
}
.quickFilterBar::-webkit-scrollbar{display:none}
.quickFilterChip{
  flex:0 0 auto;border:1px solid var(--line);background:#fff;color:var(--text);
  font-size:12px;font-weight:800;padding:9px 12px;border-radius:999px;cursor:pointer;
  box-shadow:0 1px 4px rgba(15,61,58,.05);
}
.quickFilterChip.active{
  background:var(--brand-lime-soft);
  border-color:rgba(12,131,31,.45);
  color:var(--brand-teal);
}

.catTabBar{
  display:flex;gap:4px;overflow-x:auto;padding:0 0 8px;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
  transition:padding .18s ease, margin .18s ease;
}
.catTabBar::-webkit-scrollbar{display:none}
.catTab{
  flex:0 0 auto;border:none;background:transparent;color:rgba(255,255,255,.75);
  font-size:14px;font-weight:700;padding:8px 14px 10px;cursor:pointer;position:relative;
}
.catTab.active{color:#fff}
.catTab.active::after{
  content:"";position:absolute;left:14px;right:14px;bottom:2px;height:3px;
  background:#fff;border-radius:999px;
}

@media (max-width:899px){
  .minutesHeader{
    padding:calc(4px + var(--safe-top)) 0 0;
  }
  .brandBar,
  .minutesHeaderTop,
  .quickFilterBar{
    display:none;
  }
  .minutesSearchWrap{
    margin:0 0 6px;
    padding:8px 12px;
    border-radius:10px;
  }
  .minutesSearch{
    font-size:14px;
  }
  .catTabBar{
    padding:0 0 6px;
    margin-top:2px;
  }
  .catTab{
    font-size:13px;
    padding:6px 12px 8px;
  }
}

.minutesMain{padding-bottom:16px}

/* Hero carousel */
.heroCarousel{
  position:relative;margin:12px 0 0;border-radius:14px;overflow:hidden;
  box-shadow:var(--shadow);background:var(--brand-teal);
}
.heroCarouselTrack{
  display:flex;transition:transform .45s ease;
  touch-action:pan-y;
}
.heroSlide{
  flex:0 0 100%;min-width:100%;display:block;cursor:pointer;border:none;
  padding:0;background:transparent;
}
.heroSlide img{
  width:100%;aspect-ratio:3/1;object-fit:cover;display:block;
}
.heroCarouselDots{
  position:absolute;bottom:10px;left:0;right:0;
  display:flex;justify-content:center;gap:6px;z-index:2;
}
.heroDot{
  width:8px;height:8px;border-radius:50%;border:none;padding:0;
  background:rgba(255,255,255,.45);cursor:pointer;
}
.heroDot.active{background:var(--brand-lime);transform:scale(1.15)}

/* Category image tiles */
.categoryTileRow{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;
  padding:14px 0 0;
}
.categoryTile{
  border:none;border-radius:14px;overflow:hidden;padding:0;cursor:pointer;
  background:var(--card);box-shadow:0 2px 10px rgba(15,61,58,.08);
  transition:transform .15s ease,box-shadow .15s ease;
}
.categoryTile:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(15,61,58,.12)}
.categoryTile img{
  width:100%;aspect-ratio:1/1;object-fit:cover;display:block;
}
.categoryTileLabel{
  display:block;padding:8px 6px;font-size:11px;font-weight:800;
  text-align:center;color:var(--text);
}

/* Compact Blinkit-style category icon grid (no images needed) */
.categoryIconRow{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(82px,1fr));
  gap:14px;padding:16px 0 6px;box-shadow:none;background:transparent;
}
.catIconTile{
  border:none;background:transparent;padding:0;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;gap:7px;
}
.catIconBubble{
  width:60px;height:60px;border-radius:18px;display:flex;
  align-items:center;justify-content:center;font-size:24px;font-weight:800;
  transition:transform .15s ease;
}
.catIconTile:hover .catIconBubble{transform:translateY(-2px)}
.catIconLabel{
  font-size:11px;font-weight:700;color:var(--text);text-align:center;
  line-height:1.2;max-width:84px;
}
.cIcon0{background:#eef6e6;color:#3b6d11}
.cIcon1{background:#e6f1fb;color:#185fa5}
.cIcon2{background:#faece7;color:#993c1d}
.cIcon3{background:#fbeaf0;color:#993556}
.cIcon4{background:#eeedfe;color:#534ab7}
.cIcon5{background:#fef0d4;color:#854f0b}
.cIcon6{background:#e1f5ee;color:#0f6e56}
.cIcon7{background:#f1efe8;color:#5f5e5a}

/* Quick picks */
.quickPickRow{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;
  padding:12px 10px 0;
}
.quickPickCard{
  border:none;border-radius:12px;min-height:72px;padding:8px;
  display:flex;align-items:flex-end;cursor:pointer;color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}
.quickPickLabel{font-size:11px;font-weight:800;line-height:1.2;text-align:left}

/* Offer split */
.offerSplit{
  margin:12px 10px 0;display:flex;align-items:stretch;border-radius:12px;overflow:hidden;
  min-height:64px;box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.offerSplitLeft{
  flex:1;background:#e8f7ef;padding:12px 14px;
}
.offerSplitLeft .offerSplitTitle{color:var(--brand-teal)}
.offerSplitRight{
  flex:1;background:var(--brand-teal);color:#fff;padding:12px 14px;
}
.offerSplitRight .offerSplitTitle,.offerSplitRight .offerSplitSub{color:#fff}
.offerSplitPlus{
  display:flex;align-items:center;justify-content:center;width:28px;
  background:#fff;font-weight:900;color:var(--text);font-size:18px;
}
.offerSplitTitle{font-size:15px;font-weight:800;line-height:1.2}
.offerSplitSub{font-size:11px;margin-top:4px;opacity:.85}

/* Payment offers carousel */
.paymentOffersRow{
  margin:14px 10px 0;padding:0 2px;
}
.paymentOffersRow[hidden]{display:none!important}
.paymentOffersTitle{
  font-size:15px;font-weight:800;color:#1a1a1a;margin:0 4px 10px;
}
.paymentOffersTrack{
  display:flex;gap:10px;overflow-x:auto;padding-bottom:4px;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.paymentOffersTrack::-webkit-scrollbar{display:none}
.paymentOfferCard{
  flex:0 0 200px;border-radius:12px;padding:12px 14px;
  border:1px solid var(--line);min-height:72px;
}
.paymentOfferBrand{
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.03em;
  margin-bottom:6px;
}
.paymentOfferTitle{font-size:14px;font-weight:800;line-height:1.25;color:#1a1a1a}
.paymentOfferSub{font-size:11px;color:var(--muted);margin-top:4px;line-height:1.3}

/* Feed sections */
.feedSections{padding:8px 0}
.feedSectionBlock{
  margin-bottom:14px;position:relative;
}
.feedSectionBlock--wave{margin-top:18px}
.feedSectionBlock--wave::before{
  content:"";position:absolute;left:10px;right:10px;top:-10px;height:20px;
  background:inherit;border-radius:50% 50% 0 0/100% 100% 0 0;
  z-index:0;pointer-events:none;
}
.sectionHead{
  display:flex;align-items:flex-start;justify-content:space-between;gap:10px;
  padding:12px 12px 10px;border-radius:12px 12px 0 0;margin:0 10px;
  position:relative;z-index:1;
}
.sectionHeadMain{flex:1;min-width:0}
.sectionTitle{font-size:17px;font-weight:800;color:var(--brand-teal);line-height:1.2}
.sectionBadges{
  display:flex;flex-wrap:wrap;align-items:center;gap:6px;margin-top:8px;
}
.sectionPriceChip{
  background:#fff3cd;color:#1a1a1a;font-size:11px;font-weight:800;
  padding:4px 8px;border-radius:6px;border:1px solid #ffe08a;
}
.sectionAssuredBadge{
  background:var(--brand-lime-soft);color:var(--brand-teal);font-size:10px;font-weight:800;
  padding:4px 8px;border-radius:6px;display:inline-flex;align-items:center;gap:3px;
}
.sectionViewAll{
  width:36px;height:36px;border-radius:50%;border:none;background:var(--brand-lime);color:var(--brand-teal);
  font-size:18px;cursor:pointer;flex-shrink:0;margin-top:2px;
}
.sectionCarousel{
  display:flex;gap:10px;overflow-x:auto;padding:0 10px 12px;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  position:relative;z-index:1;
}
.sectionCarousel::-webkit-scrollbar{display:none}

/* Product grid */
.feedSection{padding:12px 10px 20px}
.feedHead{display:flex;align-items:center;justify-content:space-between;padding:4px 4px 10px}
.feedTitle{font-size:16px;font-weight:800}
.feedMeta{font-size:12px;color:var(--muted)}

.productGrid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;
}
.productCarouselTrack .productCard{flex:0 0 140px;scroll-snap-align:start}

.productCard{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;min-height:100%;
  box-shadow:0 2px 8px rgba(15,61,58,.06);
  transition:box-shadow .15s ease,transform .15s ease;
}
@media (min-width:900px){
  .productCard:hover{
    box-shadow:0 8px 20px rgba(15,61,58,.1);
    transform:translateY(-2px);
  }
}
.productCard--skeleton .productImageWrap{
  background:linear-gradient(90deg,#e8eeec 25%,#f4f7f6 50%,#e8eeec 75%);
  background-size:200% 100%;animation:shimmer 1.2s infinite;
}
.productCard--skeleton .productBody span{
  display:block;height:12px;border-radius:6px;margin-top:8px;
  background:linear-gradient(90deg,#e8eeec 25%,#f4f7f6 50%,#e8eeec 75%);
  background-size:200% 100%;animation:shimmer 1.2s infinite;
}
@keyframes shimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}
.productCard--carousel{min-width:140px;max-width:140px}

.productImageWrap{
  position:relative;aspect-ratio:1/1;background:#fafafa;padding:6px;display:flex;flex-direction:column;gap:6px;
}
.productImageCarousel{display:flex;flex:1 1 auto;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;gap:0;border-radius:10px;min-height:0}
.productImageCarousel::-webkit-scrollbar{display:none}
.productImageSlide{flex:0 0 100%;scroll-snap-align:start;display:flex;align-items:center;justify-content:center;border-radius:10px;overflow:hidden;background:#f7f8fa}
.productImageSlide img{width:100%;height:100%;object-fit:contain;display:block}
.productNoImage{width:100%}
.noImgInitial{font-size:34px;font-weight:800;line-height:1;opacity:.92}
.noImgThumb{display:flex;align-items:center;justify-content:center;font-weight:800;font-size:20px}
.pdpNoImg{display:flex;align-items:center;justify-content:center;min-height:200px}
.pdpNoImg .noImgInitial{font-size:64px}
.productImageDots{display:flex;justify-content:center;gap:4px;flex:0 0 auto}
.productImageDot{width:5px;height:5px;border-radius:999px;background:#d9dee5;display:inline-block}
.productImageDot.active{background:var(--fk-pink)}

.discountPill{
  position:absolute;top:6px;left:6px;z-index:2;
  background:var(--brand-offer);color:#fff;font-size:10px;font-weight:800;
  padding:3px 6px;border-radius:4px;line-height:1;
}
.stockBadge{
  position:absolute;top:6px;left:6px;z-index:2;
  font-size:10px;font-weight:800;padding:4px 7px;border-radius:6px;
}
.stockOut{background:#fee2e2;color:#991b1b}
.stockLow{background:#fef3c7;color:#92400e}

.imageAddBtn{
  position:absolute;right:6px;bottom:6px;z-index:3;
  min-width:58px;height:32px;padding:0 14px;border-radius:8px;
  border:1.5px solid var(--brand-lime);
  background:#f1f8f0;color:var(--brand-lime);font-size:13px;font-weight:800;
  letter-spacing:.02em;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(12,131,31,.12);
}
.imageAddBtn:disabled{opacity:.5;border-color:#ccc;color:#999;background:#f3f3f3}

.imageQtyStepper{
  position:absolute;right:6px;bottom:6px;z-index:3;
  display:inline-flex;align-items:center;background:var(--brand-lime);
  border:1.5px solid var(--brand-lime);border-radius:8px;overflow:hidden;
  box-shadow:0 2px 8px rgba(12,131,31,.18);
}
.imageQtyStepper button{
  width:30px;height:32px;border:none;background:transparent;
  color:#fff;font-size:18px;font-weight:800;cursor:pointer;
}
.imageQtyStepper span{
  min-width:24px;text-align:center;font-size:13px;font-weight:800;padding:0 2px;color:#fff;
}

.productBody{padding:8px 8px 10px;flex:1;display:flex;flex-direction:column}
.productBadgeRow{
  display:flex;flex-wrap:wrap;gap:4px;margin-bottom:6px;
}
.productMiniBadge{
  font-size:9px;font-weight:800;line-height:1;
  padding:4px 6px;border-radius:999px;background:var(--brand-lime-soft);color:var(--brand-teal);
}
.productName{
  font-size:13px;font-weight:600;line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.productPackSize{
  font-size:11px;color:var(--muted);font-weight:600;margin-top:4px;
}
.productMetaRow{
  display:flex;align-items:center;justify-content:space-between;gap:6px;margin-top:6px;
  font-size:10px;font-weight:800;color:var(--brand-teal);
}
.productRating,.productEta{
  display:inline-flex;align-items:center;gap:4px;
  background:#f6faf8;border:1px solid var(--line);border-radius:999px;padding:4px 6px;
}
.priceRow{display:flex;align-items:baseline;gap:6px;margin-top:6px;flex-wrap:wrap}
.productPrice{font-size:15px;font-weight:800}
.productMrp{font-size:12px;color:var(--muted);text-decoration:line-through}

.emptyState{
  grid-column:1 / -1;display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:36px 20px;color:var(--muted);
}
.emptyStateIcon{color:var(--line);margin-bottom:10px}
.emptyStateTitle{font-size:16px;font-weight:800;color:var(--text);margin-bottom:4px}
.emptyStateText{font-size:13px;margin-bottom:16px}
.emptyStateBtn{
  border:1px solid var(--brand-lime);background:var(--brand-lime);color:#fff;
  font-size:14px;font-weight:800;padding:11px 20px;border-radius:999px;cursor:pointer;
}

.emptyFeed,.loadingFeed,.sectionLoading{
  text-align:center;padding:24px 16px;color:var(--muted);font-size:14px;
}

/* Sticky basket bar */
.stickyCartBar{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:calc(var(--nav-h) + var(--safe-bottom) + 8px);
  width:min(680px,calc(100% - 20px));z-index:90;display:none;
}
.stickyCartBar.show{display:block}
.stickyCartBtn{
  width:100%;border:none;border-radius:12px;padding:14px 16px;
  background:var(--fk-pink);color:#fff;font-size:15px;font-weight:800;
  display:flex;align-items:center;justify-content:space-between;
  box-shadow:0 8px 24px rgba(15,61,58,.25);cursor:pointer;
}

/* Bottom nav */
.bottomNav{
  position:fixed;left:0;right:0;bottom:0;z-index:100;
  background:var(--card);border-top:1px solid var(--line);
  padding-bottom:var(--safe-bottom);
  display:flex;justify-content:space-around;
  height:calc(var(--nav-h) + var(--safe-bottom));padding-top:6px;
}
.navItem{
  flex:1;display:flex;flex-direction:column;align-items:center;gap:2px;
  font-size:10px;font-weight:700;color:var(--muted);border:none;background:transparent;
  cursor:pointer;padding:4px;text-decoration:none;
}
.navItem.active{color:var(--brand-teal)}
.navItem.active .navIcon{color:var(--brand-lime)}
.navIcon{font-size:20px;line-height:1}
.navIconSvg{display:block;color:inherit}
.navIconWrap{position:relative;display:inline-block}
.navBadge{
  position:absolute;top:-4px;right:-8px;
  background:var(--fk-red);color:#fff;font-size:9px;font-weight:800;
  min-width:16px;height:16px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;padding:0 4px;
}

/* Sheets */
.sheetOverlay{
  position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:200;
  opacity:0;pointer-events:none;transition:.2s ease;
}
.sheetOverlay.show{opacity:1;pointer-events:auto}
.bottomSheet{
  position:fixed;left:0;right:0;bottom:0;z-index:210;
  background:var(--card);border-radius:20px 20px 0 0;
  max-height:88vh;display:flex;flex-direction:column;
  transform:translateY(105%);transition:transform .25s ease;
  padding-bottom:var(--safe-bottom);
}
.bottomSheet.open{transform:translateY(0)}
.sheetHandle{width:40px;height:4px;background:#d1d5db;border-radius:999px;margin:10px auto 0}
.sheetHeader{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 16px;border-bottom:1px solid var(--line);
}
.sheetTitle{font-size:17px;font-weight:800}
.sheetClose{
  width:36px;height:36px;border-radius:50%;border:1px solid var(--line);
  background:#fff;font-size:22px;cursor:pointer;
}
.sheetBody{overflow:auto;padding:14px 16px;flex:1}
.sheetFooter{padding:12px 16px;border-top:1px solid var(--line);background:var(--card)}

.cartItem{display:flex;gap:10px;padding:10px 0;border-bottom:1px solid var(--line)}
.cartThumb{width:56px;height:56px;object-fit:contain;background:#fafafa;border-radius:10px}
.cartInfo{flex:1;min-width:0}
.cartName{font-size:14px;font-weight:700}
.cartMeta{font-size:12px;color:var(--muted)}
.cartRow{display:flex;align-items:center;justify-content:space-between;margin-top:8px}
.cartLineTotal{font-size:14px;font-weight:800}
.removeBtn{border:none;background:transparent;color:var(--danger);font-size:12px;font-weight:700;cursor:pointer}
.emptyCart{text-align:center;color:var(--muted);padding:24px}
.cartSummary{display:flex;justify-content:space-between;font-size:15px;font-weight:800;margin:8px 0 12px}
.submitBtn{
  width:100%;padding:14px;border:none;border-radius:10px;
  background:var(--fk-pink);color:#fff;font-size:15px;font-weight:800;cursor:pointer;
}
.submitBtn:disabled{opacity:.6;cursor:not-allowed}
.clearCartBtn{
  width:100%;margin-top:8px;padding:10px;border:1px solid var(--line);
  border-radius:10px;background:#fff;font-weight:700;cursor:pointer;
}

.pdpImage{width:100%;max-height:280px;object-fit:contain;margin:0 auto;background:#fafafa;border-radius:12px}
.pdpGallery{margin:10px 0 2px}
.pdpGalleryStrip{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}
.pdpGalleryStrip::-webkit-scrollbar{display:none}
.pdpThumb{flex:0 0 auto;width:72px;height:72px;padding:0;border:2px solid transparent;border-radius:14px;background:#f3f5f7;overflow:hidden;cursor:pointer}
.pdpThumb.active{border-color:var(--fk-pink);box-shadow:0 0 0 2px rgba(12,131,31,.12)}
.pdpThumb img{width:100%;height:100%;object-fit:cover;display:block}
.pdpName{font-size:18px;font-weight:800;margin:12px 0 6px}
.pdpPrice{font-size:22px;font-weight:800}
.pdpMrp{font-size:14px;color:var(--muted);text-decoration:line-through;margin-left:8px}
.pdpActions{margin-top:16px}
.addBtn{
  min-width:72px;padding:10px 16px;border-radius:8px;border:none;
  background:var(--fk-pink);color:#fff;font-size:14px;font-weight:800;cursor:pointer;
}

.catListBtn{
  width:100%;text-align:left;padding:14px 12px;border:none;border-bottom:1px solid var(--line);
  background:#fff;font-size:15px;font-weight:600;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;
}
.catListBtn::after{content:"\203A";color:var(--muted);font-size:18px;font-weight:700}
.catListBtn.active{background:var(--brand-lime-soft);color:var(--brand-teal)}
.catListBtn.active::after{color:var(--brand-teal)}

/* Blinkit cart polish: the cart reuses .imageQtyStepper, which is absolutely
   positioned for product-card corners — keep it inline inside cart rows. */
.cartItem{align-items:flex-start;gap:12px;padding:12px 0}
.cartItem .imageQtyStepper{position:static;box-shadow:none;height:32px}
.cartRow{margin-top:10px;align-items:flex-end}
.cartLineTotal{text-align:right}
.removeBtn{margin-top:4px}
.cartSummary{font-size:16px}

.toastStack{
  position:fixed;top:12px;left:50%;transform:translateX(-50%);
  z-index:300;display:flex;flex-direction:column;gap:8px;
  width:min(420px,calc(100% - 24px));pointer-events:none;
}
.toast{
  background:#111827;color:#fff;padding:12px 14px;border-radius:12px;
  font-size:13px;font-weight:600;opacity:0;transform:translateY(-8px);transition:.2s ease;
}
.toast.show{opacity:1;transform:translateY(0)}
.toast.success{background:#065f46}
.toast.error{background:#991b1b}

.pageWrap{
  width:100%;
  max-width:var(--content-max-mobile);
  margin:0 auto;
  padding:16px 12px;
}
.accountPage{
  width:100%;
  max-width:var(--content-max-mobile);
  margin-left:auto;
  margin-right:auto;
  padding-left:12px;
  padding-right:12px;
  box-sizing:border-box;
}

/* Desktop storefront (>= 900px) */
.desktopNav{
  display:none;
}
.bottomNav--mobile{display:flex}

@media (min-width:900px){
  body{
    padding-bottom:24px;
  }
  body.sheet-open{overflow:hidden}

  .consumerContainer{
    width:100%;
    max-width:min(var(--content-max-desktop),calc(100vw - (var(--content-gutter-desktop) * 2)));
    margin-left:auto;
    margin-right:auto;
    padding-left:var(--content-gutter-desktop);
    padding-right:var(--content-gutter-desktop);
    box-sizing:border-box;
  }
  .pageWrap,.accountPage{
    width:100%;
    max-width:min(var(--content-max-desktop),calc(100vw - (var(--content-gutter-desktop) * 2)));
    padding-left:var(--content-gutter-desktop);
    padding-right:var(--content-gutter-desktop);
    box-sizing:border-box;
  }

  .consumerMainPanel{
    background:var(--card);
    border-radius:16px;
    box-shadow:0 8px 32px rgba(15,23,42,.08);
    padding:16px 0 28px;
    margin-top:12px;
    width:100%;
  }

  .desktopNav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    padding:10px 0 12px;
    border-bottom:1px solid rgba(255,255,255,.2);
    margin-bottom:4px;
  }
  .desktopNav .navItem{
    flex:0 0 auto;
    flex-direction:row;
    gap:6px;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    color:rgba(255,255,255,.9);
    background:rgba(255,255,255,.1);
  }
  .desktopNav .navItem:hover{background:rgba(255,255,255,.18)}
  .desktopNav .navItem.active{
    background:var(--brand-lime);
    color:var(--brand-teal);
  }
  .categoryTileRow{
    gap:14px;
    padding:18px 0 0;
  }
  .heroSlide img{aspect-ratio:3.2/1;border-radius:0}
  .desktopNav .navIcon{font-size:16px}

  .bottomNav--mobile{display:none!important}

  .minutesSearchWrap{margin-top:4px}
  .catTab{font-size:15px;padding:10px 16px 12px}

  .quickPickRow{
    padding:16px 0 0;
    gap:12px;
  }
  .quickPickCard{min-height:88px}

  .offerSplit,.paymentOffersRow{
    margin-left:0;
    margin-right:0;
  }
  .paymentOffersTrack{
    overflow:visible;
    flex-wrap:wrap;
  }
  .paymentOfferCard{
    flex:1 1 calc(33.333% - 10px);
    min-width:220px;
  }

  .feedSectionBlock--wave::before{
    left:0;
    right:0;
  }
  .sectionHead{margin:0}
  .feedSectionBlock{
    width:100%;
  }
  .sectionCarousel{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(148px,1fr));
    gap:12px;
    overflow:visible;
    padding:0 0 16px;
    width:100%;
  }
  .sectionCarousel .productCard--carousel{
    min-width:0;
    max-width:none;
  }
  .sectionCarousel.productCarouselTrack .productCard{
    flex:none;
    width:auto;
  }

  .feedSection{padding:16px 0 24px;width:100%}
  .productGrid{
    grid-template-columns:repeat(auto-fill,minmax(148px,1fr));
    gap:14px;
    width:100%;
  }

  .stickyCartBar{
    width:min(var(--content-max-desktop),calc(100vw - (var(--content-gutter-desktop) * 2)));
    bottom:20px;
  }

  .bottomSheet{
    left:50%;
    right:auto;
    transform:translateX(-50%) translateY(105%);
    width:min(520px,calc(100% - 48px));
    border-radius:20px;
  }
  .bottomSheet.open{
    transform:translateX(-50%) translateY(0);
  }

  .toastStack{width:min(480px,calc(100% - 48px))}

  .whatsAppFab{
    right:var(--content-gutter-desktop);
    bottom:24px;
  }
}

@media (min-width:1280px){
  .productGrid,
  .sectionCarousel{
    grid-template-columns:repeat(auto-fill,minmax(156px,1fr));
  }
}

@media (min-width:1600px){
  .productGrid,
  .sectionCarousel{
    grid-template-columns:repeat(auto-fill,minmax(164px,1fr));
  }
}
.pageHero{
  background:linear-gradient(135deg,var(--brand-lime-soft),#fff);
  border:1px solid var(--line);border-radius:var(--radius);padding:18px;margin-bottom:14px;
}
.pageHero h1{margin:0 0 6px;font-size:22px}
.pageHero p{margin:0;color:var(--muted);font-size:14px}
.backLink{display:inline-flex;align-items:center;gap:6px;font-weight:700;color:var(--brand-teal-light);margin-bottom:12px}

.feedSections.is-hidden{display:none}
.quickPickRow.is-hidden,.categoryTileRow.is-hidden,.heroCarousel.is-hidden,
.offerSplit.is-hidden,.paymentOffersRow.is-hidden{display:none}

/* Compact header while scrolling */
body.header-compact .minutesHeader{
  padding:calc(2px + var(--safe-top)) 0 0;
  box-shadow:0 3px 12px rgba(15,61,58,.22);
}
body.header-compact .brandBar,
body.header-compact .minutesHeaderTop,
body.header-compact .quickFilterBar,
body.header-compact .offerSplit{
  display:none;
}
body.header-compact .minutesSearchWrap{
  margin:0 0 4px;
  padding:7px 12px;
  border-radius:10px;
}
body.header-compact .minutesSearch{
  font-size:14px;
}
body.header-compact .catTabBar{
  padding:0 0 4px;
}
body.header-compact .catTab{
  font-size:13px;
  padding:5px 12px 7px;
}

/* Account brand strip */
.brandStrip{
  background:linear-gradient(180deg,var(--brand-teal-light),var(--brand-teal));
  color:#fff;padding:20px 16px;border-radius:0 0 16px 16px;margin:-16px -12px 20px;
}
.brandStripInner{
  display:flex;align-items:center;gap:12px;max-width:var(--content-max-mobile);margin:0 auto;
}
@media (min-width:900px){
  .brandStrip{
    margin:-16px calc(-1 * var(--content-gutter-desktop)) 24px;
    padding:24px var(--content-gutter-desktop);
    border-radius:0 0 20px 20px;
  }
  .brandStripInner{max-width:min(var(--content-max-desktop),calc(100vw - (var(--content-gutter-desktop) * 2)))}
}

/* Auth pages using consumer-app.css */
@media (min-width:900px){
  body.authPage .shell{
    max-width:1100px;
  }
}

/* ── Location Gate ────────────────────────────────────────────────────────── */
.locationGateOverlay{
  position:fixed;inset:0;z-index:9000;
  background:rgba(0,0,0,.55);
  display:flex;align-items:flex-end;justify-content:center;
}
.locationGateOverlay.hidden{display:none}
.locationGateCard{
  background:#fff;
  width:100%;max-width:520px;
  border-radius:20px 20px 0 0;
  padding:28px 20px 32px;
  box-shadow:0 -4px 32px rgba(0,0,0,.18);
  animation:slideUp .25s ease;
}
@keyframes slideUp{from{transform:translateY(60px);opacity:0}to{transform:translateY(0);opacity:1}}
@media(min-width:600px){
  .locationGateOverlay{align-items:center}
  .locationGateCard{border-radius:20px;max-width:420px;padding:32px 28px 36px}
}
.locationGatePin{
  width:48px;height:48px;background:#e8f8f0;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
}
.locationGatePin svg{width:26px;height:26px;fill:#0F3D3A}
.locationGateTitle{
  font-size:19px;font-weight:800;color:#111;text-align:center;margin:0 0 6px;
}
.locationGateSub{
  font-size:13px;color:#666;text-align:center;margin:0 0 22px;line-height:1.5;
}
.locationDetectBtn{
  width:100%;display:flex;align-items:center;justify-content:center;gap:8px;
  background:#0F3D3A;color:#fff;border:none;border-radius:12px;
  font-size:15px;font-weight:700;padding:14px 20px;cursor:pointer;
  transition:background .15s;
}
.locationDetectBtn:hover{background:#1A5C57}
.locationDetectBtn svg{width:18px;height:18px;fill:#9EDC1A;flex-shrink:0}
.locationDetectBtn:disabled{opacity:.6;cursor:not-allowed}
.locationOrDivider{
  display:flex;align-items:center;gap:10px;margin:16px 0;color:#bbb;font-size:13px;
}
.locationOrDivider::before,.locationOrDivider::after{
  content:'';flex:1;height:1px;background:#e5e7eb;
}
.locationSearchWrap{position:relative}
.locationSearchInput{
  width:100%;box-sizing:border-box;
  border:1.5px solid #e2e8f0;border-radius:12px;
  font-size:14px;padding:12px 14px 12px 40px;
  outline:none;background:#f8fafc;transition:border .15s;
}
.locationSearchInput:focus{border-color:#0F3D3A;background:#fff}
.locationSearchInputIcon{
  position:absolute;left:13px;top:50%;transform:translateY(-50%);
  width:18px;height:18px;fill:#9ca3af;pointer-events:none;
}
.locationSuggestions{
  position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:10;
  background:#fff;border:1.5px solid #e2e8f0;border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.1);overflow:hidden;
}
.locationSuggestionItem{
  display:flex;align-items:flex-start;gap:10px;
  padding:12px 14px;cursor:pointer;border-bottom:1px solid #f1f5f9;
  transition:background .1s;
}
.locationSuggestionItem:last-child{border-bottom:none}
.locationSuggestionItem:hover,.locationSuggestionItem:focus{background:#f0fdf4}
.locationSuggestionItem .sugIcon{
  width:28px;height:28px;flex-shrink:0;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.locationSuggestionItem .sugIcon.yes{background:#dcfce7}
.locationSuggestionItem .sugIcon.no{background:#fee2e2}
.locationSuggestionItem .sugIcon svg{width:14px;height:14px}
.locationSuggestionItem .sugIcon.yes svg{fill:#16a34a}
.locationSuggestionItem .sugIcon.no svg{fill:#dc2626}
.locationSuggestionItem .sugName{font-size:13px;font-weight:600;color:#111;line-height:1.4}
.locationSuggestionItem .sugDist{font-size:11px;color:#6b7280;margin-top:2px}
.locationSuggestionItem .sugDist.ok{color:#16a34a}
.locationSuggestionItem .sugDist.far{color:#dc2626}
.locationStatus{
  margin-top:14px;font-size:13px;text-align:center;min-height:20px;color:#6b7280;
}
.locationStatus.error{color:#dc2626}
.locationStatus.loading{color:#0F3D3A}

/* ── Not Serviceable Screen ───────────────────────────────────────────────── */
.notServiceableOverlay{
  position:fixed;inset:0;z-index:9000;
  background:#fff;display:flex;align-items:center;justify-content:center;
  flex-direction:column;padding:32px 24px;text-align:center;
}
.notServiceableOverlay.hidden{display:none}
.notServiceableEmoji{font-size:52px;margin-bottom:16px}
.notServiceableTitle{font-size:21px;font-weight:800;color:#111;margin:0 0 10px}
.notServiceableSub{
  font-size:14px;color:#666;max-width:320px;line-height:1.6;margin:0 auto 24px;
}
.notServiceableSub strong{color:#dc2626}
.notServiceableChange{
  background:#f1f5f9;color:#0F3D3A;border:none;border-radius:12px;
  font-size:14px;font-weight:700;padding:12px 24px;cursor:pointer;
  transition:background .15s;
}
.notServiceableChange:hover{background:#e2e8f0}

/* Location chip in header */
.locationChip{
  display:inline-flex;align-items:center;gap:5px;cursor:pointer;
  max-width:220px;overflow:hidden;
}
.locationChip .chipPin{width:14px;height:14px;fill:currentColor;flex-shrink:0}
.minutesAddressTitle.locationSet{color:#9EDC1A}
