: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;
  --premium-gold:#C8941F;
  --premium-gold-soft:#FCF3DD;
  --premium-image:#EEF7F0;
  --premium-glass:rgba(255,255,255,.88);
  --premium-border:rgba(255,255,255,.65);
  --green-deep:#054016;
  --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:1500px;
  --content-gutter-desktop:clamp(20px,3vw,48px);
  --bp-desktop:900px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Poppins","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;
}

/* Android-style fixed search header (matches HomeFixedSearchStrip) */
.homeFixedHeader{
  position:sticky;top:0;z-index:120;
  background:linear-gradient(180deg,#d4edda 0%,#b7e1c0 100%);
  color:var(--text);
  padding:calc(6px + var(--safe-top)) 0 0;
  box-shadow:0 1px 0 rgba(15,61,58,.08);
  transition:padding .18s ease,box-shadow .18s ease;
}
.homeFixedHeaderInner{padding-bottom:0}
.homeSearchStrip{
  display:flex;align-items:flex-start;gap:10px;padding:4px 0 10px;
}
.homeSearchLogo{
  width:36px;height:36px;border-radius:50%;object-fit:cover;flex-shrink:0;
  border:2px solid rgba(255,255,255,.55);margin-top:2px;
}
.homeSearchBrandBlock{flex:1;min-width:0}
.homeSearchBrandName{
  display:block;font-size:13px;font-weight:800;color:var(--green-deep);
  letter-spacing:-.01em;line-height:1.2;
}
.homeSearchFieldWrap{
  display:flex;align-items:center;gap:8px;background:#fff;border-radius:12px;
  padding:8px 10px;margin-top:6px;
  box-shadow:0 6px 18px rgba(5,64,22,.1);border:1px solid rgba(255,255,255,.85);
}
.homeSearchInput{border:none;outline:none;width:100%;font-size:14px;background:transparent;color:var(--text)}
.homeSearchVoice{
  flex-shrink:0;width:32px;height:32px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--brand-lime-soft);color:var(--brand-teal);
}
.homeHeaderDesktopActions{display:none;align-items:center;gap:8px;flex-shrink:0;padding-top:4px}
.headerIconBtn--dark{background:rgba(255,255,255,.72);color:var(--green-deep);border-color:rgba(5,64,22,.08)}
.etaPill--header{margin:0}

.homeMain{padding-bottom:16px;background:var(--bg)}
.homeLocationBar{
  background:linear-gradient(180deg,#b7e1c0 0%,var(--bg) 100%);
  padding:8px 0 6px;border-bottom:1px solid rgba(221,229,227,.65);
}
.homeLocationFeed,.homeLocationFilter{width:100%}
.homeLocationFilter{
  display:flex;align-items:center;gap:8px;padding:2px 0 4px;
}
.homeBackBtn{
  border:none;background:transparent;padding:4px;cursor:pointer;
  color:var(--text);display:flex;align-items:center;justify-content:center;
}
.homeFilterTitle{
  font-size:16px;font-weight:800;color:var(--text);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1;
}
.deliveryLocationPill{
  display:block;color:inherit;text-decoration:none;
}
.deliveryLocationMain{display:block;min-width:0}
.deliveryLocationTitle{
  display:block;font-size:11px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.03em;
}
.deliveryLocationLine{
  display:block;font-size:16px;font-weight:800;color:var(--text);line-height:1.25;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.deliveryLocationTitle.locationSet{color:var(--brand-teal)}
.deliveryLocationChevron{display:none}
.deliveryLocationEta{
  display:flex;align-items:center;gap:6px;margin-top:4px;
  font-size:12px;font-weight:600;color:var(--muted);
}
.deliveryStatusDot{
  width:6px;height:6px;border-radius:50%;background:var(--brand-teal);flex-shrink:0;
}

.sectionTabBar{
  position:sticky;top:calc(58px + var(--safe-top));z-index:90;
  display:flex;gap:18px;overflow-x:auto;padding:0 2px;
  background:#fff;border-bottom:1px solid rgba(221,229,227,.75);
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.sectionTabBar::-webkit-scrollbar{display:none}
.sectionTab{
  flex:0 0 auto;border:none;background:transparent;cursor:pointer;
  padding:10px 2px 0;color:var(--muted);position:relative;
}
.sectionTabLabel{
  display:block;font-size:12px;font-weight:600;white-space:nowrap;padding-bottom:10px;
}
.sectionTab.active .sectionTabLabel{color:var(--brand-teal);font-weight:800}
.sectionTabUnderline{
  display:block;height:3px;width:0;margin:0 auto;border-radius:3px 3px 0 0;
  background:var(--brand-teal);transition:width .18s ease;
}
.sectionTab.active .sectionTabUnderline{width:22px}

.homeCategorySection{padding:12px 0 4px;background:var(--bg)}
.homeCategoryHead{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2px 10px;
}
.homeCategoryTitle{margin:0;font-size:16px;font-weight:800;color:var(--text)}
.homeCategorySeeAll{
  border:none;background:transparent;color:var(--brand-teal);
  font-size:13px;font-weight:800;cursor:pointer;padding:4px 0;
}
.categoryIconRow.categoryScrollRow{
  display:flex;grid-template-columns:none;
  gap:12px;overflow-x:auto;padding:0 0 8px;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.categoryScrollRow::-webkit-scrollbar{display:none}
.categoryScrollRow .catIconTile{flex:0 0 auto;width:84px}
.categoryScrollRow--expanded{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  overflow:visible;gap:14px;
}
.categoryScrollRow--expanded .catIconTile{width:auto}
.catCollage--lg{width:78px;height:78px;border-radius:18px}

.homeFeedPanel.is-hidden,.homeFilterPanel.is-hidden,.homeLocationFeed.is-hidden,.homeLocationFilter.is-hidden{display:none!important}
body.home-feed-mode #homeFilterPanel{display:none!important}
body.home-filter-mode #homeFeedPanel{display:none!important}
body.home-filter-mode #sectionTabBar{display:none!important}
body.home-filter-mode .homeLocationBar{background:#fff;border-bottom:1px solid var(--line)}
body.home-filter-mode .sectionTabBar{display:none!important}
body.home-filter-mode .homeFilterPanel .feedHead{display:none}
body.home-filter-mode #allProductsSection{padding-top:0}
body.home-filter-mode .searchSortBar{margin:0 -4px 8px}

.homeFilterPanel .feedSection{padding-top:8px}
body.home-filter-mode .categoryBrowseLayout.is-category-mode{
  min-height:calc(100vh - 220px);
}
body.home-filter-mode .subcategoryRail{
  position:sticky;top:calc(110px + var(--safe-top));align-self:start;
  max-height:calc(100vh - 130px);overflow-y:auto;
}

/* Legacy minutes header (other pages may still reference) */
.minutesHeader{
  position:sticky;top:0;z-index:100;
  background:
    radial-gradient(circle at 12% 0%,rgba(200,148,31,.22) 0%,rgba(200,148,31,0) 34%),
    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 6px 24px 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,.42);flex-shrink:0;
  box-shadow:0 8px 18px rgba(5,64,22,.22);
}
.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:linear-gradient(180deg,var(--premium-gold-soft),#fff8e7);
  color:#6f4e0e;font-size:11px;font-weight:900;
  padding:6px 10px;border-radius:999px;white-space:nowrap;
  border:1px solid rgba(200,148,31,.28);
}
.headerIconBtn{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;font-size:16px;
  border:1px solid rgba(255,255,255,.18);
}

.minutesSearchWrap{
  display:flex;align-items:center;gap:8px;background:#fff;border-radius:14px;
  padding:10px 12px;margin-bottom:8px;
  box-shadow:0 8px 22px rgba(5,64,22,.13);
  border:1px solid rgba(255,255,255,.72);
}
.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:8px;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:rgba(255,255,255,.08);color:rgba(255,255,255,.82);
  font-size:14px;font-weight:800;padding:8px 14px 10px;cursor:pointer;position:relative;
  border-radius:999px;
}
.catTab.active{
  color:#fff;background:rgba(255,255,255,.18);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
}
.catTab.active::after{
  content:"";position:absolute;left:18px;right:18px;bottom:3px;height:3px;
  background:var(--premium-gold);border-radius:999px;
}

@media (max-width:899px){
  .homeFixedHeader{padding:calc(4px + var(--safe-top)) 0 0}
  .homeSearchBrandName{font-size:12px}
  .homeSearchFieldWrap{padding:7px 10px;margin-top:5px}
  .sectionTabBar{top:calc(52px + var(--safe-top))}
}

@media (min-width:900px){
  .homeSearchStrip{align-items:center;padding:10px 0 14px}
  .homeSearchBrandName{font-size:14px}
  .homeSearchFieldWrap{margin-top:8px;max-width:560px}
  .homeHeaderDesktopActions{display:flex}
  .homeSearchLogo{width:40px;height:40px}
  .sectionTabBar{top:calc(72px + var(--safe-top))}
  .categoryScrollRow--expanded{grid-template-columns:repeat(auto-fill,minmax(100px,1fr))}
}

@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;
}
.heroSlideCopy{
  position:absolute;left:0;right:0;bottom:0;padding:16px 18px 22px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.45));
  text-align:left;
}
.heroSlideTitle{display:block;font-size:18px;font-weight:800;line-height:1.15}
.heroSlideSub{display:block;margin-top:4px;font-size:12px;font-weight:600;opacity:.92}
.heroSlide{position:relative}
.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)}
/* Blinkit-style 2×2 product-photo collage tile (matches the Android app). */
.catCollage{
  width:60px;height:60px;border-radius:18px;overflow:hidden;
  display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;
  gap:3px;padding:4px;background:var(--brand-lime-soft);
  transition:transform .15s ease;
}
.catIconTile:hover .catCollage{transform:translateY(-2px)}
.catCollageCell{
  background:#fff;border-radius:7px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.catCollageCell img{width:100%;height:100%;object-fit:contain;padding: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}

/* Android-parity WhatsApp updates card */
.whatsUpdatesCard{
  display:flex;align-items:center;gap:12px;margin:12px 0 4px;
  padding:14px;border-radius:14px;background:var(--brand-lime-soft);
  border:1px solid rgba(12,131,31,.14);box-shadow:0 6px 18px rgba(15,61,58,.08);
  color:inherit;text-decoration:none;transition:transform .15s ease,box-shadow .15s ease;
}
.whatsUpdatesCard:hover{
  transform:translateY(-1px);box-shadow:0 10px 22px rgba(15,61,58,.12);
}
.whatsUpdatesIcon{
  width:34px;height:34px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:var(--brand-teal);color:#fff;flex-shrink:0;
}
.whatsUpdatesCopy{display:flex;flex-direction:column;gap:3px;min-width:0;flex:1}
.whatsUpdatesTitle{font-size:14px;font-weight:800;color:var(--text);line-height:1.25}
.whatsUpdatesSub{font-size:12px;font-weight:600;color:var(--muted);line-height:1.35}
.whatsUpdatesArrow{font-size:22px;font-weight:800;color:var(--brand-teal);line-height:1;flex-shrink:0}
.whatsUpdatesCard.is-hidden{display:none}

/* 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:13px 12px 10px;border-radius:14px 14px 0 0;margin:0 10px;
  position:relative;z-index:1;
  border-top:1px solid rgba(255,255,255,.62);
}
.sectionHeadMain{flex:1;min-width:0}
.sectionTitle{
  font-size:17px;font-weight:900;color:var(--green-deep);line-height:1.2;
  letter-spacing:-.01em;
}
.sectionBadges{
  display:flex;flex-wrap:wrap;align-items:center;gap:6px;margin-top:8px;
}
.sectionPriceChip{
  background:var(--premium-gold-soft);color:#6f4e0e;font-size:11px;font-weight:900;
  padding:4px 8px;border-radius:999px;border:1px solid rgba(200,148,31,.28);
}
.sectionAssuredBadge{
  background:rgba(255,255,255,.72);color:var(--brand-teal);font-size:10px;font-weight:900;
  padding:4px 8px;border-radius:999px;display:inline-flex;align-items:center;gap:3px;
  border:1px solid rgba(12,131,31,.12);
}
.sectionViewAll{
  width:36px;height:36px;border-radius:50%;border:none;background:var(--brand-teal);color:#fff;
  font-size:18px;cursor:pointer;flex-shrink:0;margin-top:2px;
  box-shadow:0 8px 18px rgba(10,110,26,.18);
}
.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)}

.categoryBrowseLayout{display:block}
.categoryBrowseLayout.is-category-mode{
  display:grid;grid-template-columns:72px minmax(0,1fr);gap:0;margin:0 -6px;
}
.categoryBrowseMain{min-width:0;padding:0 4px}
.subcategoryRail{
  display:none;flex-direction:column;background:#f3f6f5;
  border-right:1px solid rgba(221,229,227,.85);
}
.categoryBrowseLayout.is-category-mode .subcategoryRail{display:flex}
.subcatRailItem{
  border:none;background:transparent;width:100%;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;padding:12px 4px;position:relative;
}
.subcatRailItem.active{background:#fff}
.subcatRailItem.active::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:3px;height:46px;background:var(--brand-teal);border-radius:0 3px 3px 0;
}
.subcatRailIcon{
  width:48px;height:48px;border-radius:14px;background:#fff;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.subcatRailItem.active .subcatRailIcon{background:var(--nav-selected,#e8f7ef)}
.subcatRailIcon img{width:38px;height:38px;object-fit:contain}
.subcatRailLetter{font-size:15px;font-weight:800;color:var(--muted)}
.subcatRailLabel{
  font-size:10px;font-weight:600;color:var(--muted);text-align:center;line-height:1.25;
  max-width:68px;margin-top:5px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.subcatRailItem.active .subcatRailLabel{color:var(--brand-teal);font-weight:800}

.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 rgba(221,229,227,.9);border-radius:16px;
  overflow:hidden;display:flex;flex-direction:column;min-height:100%;
  box-shadow:0 4px 14px rgba(15,61,58,.075);
  transition:box-shadow .15s ease,transform .15s ease;
}
@media (min-width:900px){
  .productCard:hover{
    box-shadow:0 12px 28px rgba(15,61,58,.13);
    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:linear-gradient(180deg,#fff 0%,var(--premium-image) 100%);
  padding:8px;display:flex;flex-direction:column;gap:6px;
  border-bottom:1px solid rgba(221,229,227,.72);
}
.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:transparent}
.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:8px;left:8px;z-index:2;
  background:var(--brand-teal);color:#fff;font-size:10px;font-weight:900;
  padding:4px 7px;border-radius:6px;line-height:1;letter-spacing:.02em;
  box-shadow:0 4px 10px rgba(10,110,26,.22);
}
.stockBadge,.productTopBadge{
  position:absolute;top:8px;left:8px;z-index:2;
  font-size:10px;font-weight:800;padding:4px 7px;border-radius:6px;
  line-height:1;box-shadow:0 4px 10px rgba(15,23,42,.12);
}
.stockOut{background:#fee2e2;color:#991b1b}
.stockLow{background:#fef3c7;color:#92400e}
.productTopBadge--gold{background:var(--premium-gold);color:#fff}
.productTopBadge--warn{background:var(--brand-offer);color:#fff}

.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:9px 9px 11px;flex:1;display:flex;flex-direction:column}
.productSpecRow{
  display:flex;align-items:center;gap:4px;min-height:18px;margin-bottom:5px;overflow:hidden;
}
.productSpecPill{
  max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  font-size:9px;font-weight:700;line-height:1;
  color:#64706d;background:#f1f3f5;border-radius:5px;padding:4px 6px;
}
.productBadgeRow{
  display:flex;flex-wrap:wrap;gap:4px;margin-top:7px;
}
.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);
}
.productMiniBadge--gold{background:var(--premium-gold-soft);color:#7a560d}
.productMiniBadge--warn{background:#fff3cd;color:#8a4b0a}
.productMiniBadge--deal{background:var(--brand-lime-soft);color:var(--brand-teal)}
.productMiniBadge--green{background:#f0faf2;color:var(--brand-teal)}
.productName{
  font-size:13px;font-weight:700;line-height:1.35;margin-top:5px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.productPackSize{
  font-size:10px;color:var(--muted);font-weight:700;margin-bottom:5px;
}
.productMetaRow{
  display:flex;align-items:center;gap:6px;margin-top:7px;
  font-size:10px;font-weight:700;color:var(--text);
}
.productRating,.productEta{
  display:inline-flex;align-items:center;gap:4px;
  background:#f6faf8;border:1px solid rgba(221,229,227,.95);border-radius:999px;padding:4px 6px;
}
.productMetaIcon{width:11px;height:11px;color:var(--muted);flex-shrink:0}
.productMetaIcon--star{color:var(--brand-teal-mid)}
.productRatingCount{color:var(--muted);font-weight:600}
.priceRow{display:flex;align-items:baseline;gap:5px;flex-wrap:wrap}
.productPrice{font-size:17px;font-weight:900;letter-spacing:-.02em;color:var(--text)}
.productMrp{font-size:12px;color:var(--muted);text-decoration:line-through}
.productSavings{font-size:11px;color:var(--brand-teal);font-weight:900;white-space:nowrap}

.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:16px;padding:14px 16px;
  background:linear-gradient(135deg,var(--green-deep),var(--brand-lime));color:#fff;font-size:15px;font-weight:900;
  display:flex;align-items:center;justify-content:space-between;
  box-shadow:0 12px 30px rgba(5,64,22,.28);cursor:pointer;
}

/* Bottom nav */
.bottomNav{
  position:fixed;left:12px;right:12px;bottom:calc(10px + var(--safe-bottom));z-index:100;
  background:var(--premium-glass);border:1px solid var(--premium-border);
  padding:4px;
  display:flex;justify-content:space-around;
  height:56px;border-radius:28px;
  box-shadow:0 14px 34px rgba(15,61,58,.20);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.navItem{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;
  font-size:10px;font-weight:700;color:var(--muted);border:none;background:transparent;
  cursor:pointer;padding:5px 3px;text-decoration:none;border-radius:20px;
  transition:background .16s ease,color .16s ease,transform .16s ease;
}
.navItem:active{transform:scale(.96)}
.navItem.active{
  color:var(--text);
  background:rgba(200,230,201,.88);
}
.navItem.active .navIcon{color:var(--green-deep)}
.navIcon{font-size:20px;line-height:1;width:20px;height:20px}
.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:linear-gradient(180deg,#fff,#f7fbf8)}

.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)}
.cartMeta span{text-decoration:line-through;color:#9ca3af}
.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}
.cartFreeDelivery{
  background:linear-gradient(135deg,var(--brand-lime-soft),#fff);
  border:1px solid rgba(12,131,31,.14);border-radius:14px;padding:11px 12px;margin-bottom:10px;
}
.cartFreeDeliveryTop{display:flex;align-items:center;justify-content:space-between;gap:10px;font-size:12px;font-weight:900;color:var(--green-deep)}
.cartProgressTrack{height:7px;background:#dcebe0;border-radius:999px;overflow:hidden;margin-top:9px}
.cartProgressTrack span{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--brand-lime),var(--premium-gold));border-radius:999px;transition:width .2s ease}
.cartCouponBox,.cartBillBox{
  border:1px solid #e0e8e2;background:#fff;border-radius:14px;padding:11px 12px;margin-bottom:10px;
}
.cartCouponTitle{font-size:12px;font-weight:900;color:#1b1b1f;margin-bottom:8px}
.cartCouponRow{display:flex;gap:8px}
.cartCouponInput{
  min-width:0;flex:1;border:1px solid #dbe5df;border-radius:10px;padding:10px 11px;
  font-size:13px;font-weight:800;text-transform:uppercase;outline:none;
}
.cartCouponInput:focus{border-color:var(--brand-lime);box-shadow:0 0 0 3px rgba(12,131,31,.08)}
.cartCouponApply{
  border:none;border-radius:10px;background:var(--brand-teal);color:#fff;
  font-size:12px;font-weight:900;padding:0 13px;cursor:pointer;
}
.cartCouponApply:disabled{opacity:.65;cursor:not-allowed}
.cartCouponMessage{font-size:11px;color:var(--muted);font-weight:700;margin-top:7px;line-height:1.35}
.cartCouponMessage.error{color:var(--danger)}
.cartBillLine{display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:13px;font-weight:700;color:#4b5b57;padding:5px 0}
.cartBillLine strong{font-size:13px;color:#1b1b1f}
.cartSavingsLine span,.cartSavingsLine strong{color:#256FEF}
.cartTotalLine{border-top:1px dashed #dbe5df;margin-top:5px;padding-top:10px;font-size:15px;color:#1b1b1f}
.cartTotalLine strong{font-size:18px;font-weight:900}
.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:14px;
  background:linear-gradient(135deg,var(--green-deep),var(--brand-lime));color:#fff;font-size:15px;font-weight:900;cursor:pointer;
  box-shadow:0 10px 22px rgba(5,64,22,.18);
}
.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;margin-bottom:6px;
  }
  .desktopNav .navItem{
    flex:0 0 auto;
    flex-direction:row;
    gap:6px;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;height:auto;
    color:rgba(255,255,255,.9);
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.12);
  }
  .desktopNav .navItem:hover{background:rgba(255,255,255,.18)}
  .desktopNav .navItem.active{
    background:rgba(255,255,255,.92);
    color:var(--green-deep);
    box-shadow:0 8px 18px rgba(5,64,22,.16);
  }
  .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;
  }
  .whatsUpdatesCard{
    margin:16px 0 8px;
  }
  .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,.homeFeedPanel.is-hidden,.homeFilterPanel.is-hidden{display:none}
.quickPickRow.is-hidden,.categoryTileRow.is-hidden,.heroCarousel.is-hidden,
.offerSplit.is-hidden,.paymentOffersRow.is-hidden,.homeCategorySection.is-hidden{display:none}

/* Compact header while scrolling */
body.header-compact .homeFixedHeader{
  padding:calc(2px + var(--safe-top)) 0 0;
  box-shadow:0 3px 12px rgba(15,61,58,.12);
}
body.header-compact .homeSearchBrandName{display:none}
body.header-compact .homeSearchFieldWrap{margin-top:0;padding:7px 10px}
body.header-compact .homeSearchLogo{width:32px;height:32px}
body.header-compact .sectionTabBar{top:calc(46px + var(--safe-top))}

/* 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}
.notServiceableIcon{
  width:64px;height:64px;border-radius:20px;margin-bottom:16px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,var(--brand-lime-soft),#fff);color:var(--brand-teal);
  border:1px solid rgba(12,131,31,.14);
}
.notServiceableIcon svg{width:34px;height:34px}
.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}

/* ── Address Modal ──────────────────────────────────────────────────────── */
.addrModalOverlay{
  position:fixed;inset:0;z-index:1100;background:rgba(0,0,0,.55);
  display:flex;align-items:flex-end;justify-content:center;
}
.addrModalOverlay.hidden{display:none}
@media(min-width:480px){.addrModalOverlay{align-items:center}}
.addrModalCard{
  background:#fff;width:100%;max-width:480px;
  border-radius:20px 20px 0 0;padding:0 0 24px;
  max-height:90vh;overflow-y:auto;
}
@media(min-width:480px){.addrModalCard{border-radius:20px;max-height:85vh}}
.addrModalHeader{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 18px 12px;border-bottom:1px solid #eee;position:sticky;top:0;background:#fff;z-index:1;
}
.addrModalTitle{font-size:16px;font-weight:700;color:#1a1a1a}
.addrModalClose{
  background:none;border:none;cursor:pointer;font-size:18px;color:#666;padding:4px 8px;
}
.addrSearchWrap{position:relative;margin:14px 16px 6px}
.addrSearchInput{
  width:100%;padding:12px 14px 12px 40px;border:1.5px solid #e0e0e0;
  border-radius:12px;font-size:14px;outline:none;box-sizing:border-box;background:#f8f8f8;
}
.addrSearchInput:focus{border-color:#0F3D3A;background:#fff}
.addrSearchIcon{
  position:absolute;left:26px;top:50%;transform:translateY(-50%);
  width:16px;height:16px;fill:#888;pointer-events:none;
}
.addrSuggestions{
  position:absolute;top:calc(100% + 4px);left:0;right:0;
  background:#fff;border:1px solid #e0e0e0;border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,.1);z-index:10;overflow:hidden;
}
.addrSuggestions.hidden{display:none}
.addrSugItem{
  padding:12px 14px;font-size:13px;cursor:pointer;
  border-bottom:1px solid #f0f0f0;display:flex;justify-content:space-between;align-items:center;
}
.addrSugItem:last-child{border-bottom:none}
.addrSugItem:hover{background:#f5f5f5}
.addrSugDist{font-size:11px;color:#888;white-space:nowrap;margin-left:8px}
.addrSugDist.far{color:#e74c3c}
.addrUseGpsBtn{
  display:flex;align-items:center;gap:12px;width:calc(100% - 32px);margin:8px 16px;
  padding:14px;border:none;background:none;cursor:pointer;
  font-size:14px;font-weight:600;color:#0F3D3A;text-align:left;
  border-bottom:1px solid #f0f0f0;
}
.addrUseGpsBtn svg{width:20px;height:20px;fill:#0F3D3A;flex-shrink:0}
.addrChevron{width:16px;height:16px;fill:none;stroke:#888;stroke-width:2;margin-left:auto}
.addrAddNewBtn{
  display:flex;align-items:center;gap:12px;width:calc(100% - 32px);margin:0 16px;
  padding:14px;border:none;background:none;cursor:pointer;
  font-size:14px;font-weight:600;color:#0F3D3A;text-align:left;
  border-bottom:1px solid #f0f0f0;
}
.addrAddNewBtn svg{width:20px;height:20px;fill:#0F3D3A;flex-shrink:0}
.addrSavedSection{padding:12px 16px 0}
.addrSavedLabel{font-size:12px;color:#888;text-transform:uppercase;letter-spacing:.5px;margin-bottom:8px}
.addrSavedItem{
  display:flex;align-items:flex-start;gap:12px;padding:14px 0;
  border-bottom:1px solid #f0f0f0;cursor:pointer;
}
.addrSavedItem:last-child{border-bottom:none}
.addrSavedItem.active-addr .addrSavedIcon{background:#0F3D3A;color:#fff}
.addrSavedIcon{
  width:40px;height:40px;border-radius:10px;background:#f0f0f0;
  display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:900;flex-shrink:0;
  letter-spacing:.03em;
}
.addrSavedInfo{flex:1;min-width:0}
.addrSavedItemLabel{font-size:13px;font-weight:700;color:#1a1a1a}
.addrSavedItemText{font-size:12px;color:#666;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.addrSavedDist{font-size:11px;color:#888;margin-top:2px}
.addrSavedDelete{
  background:none;border:none;cursor:pointer;color:#ccc;font-size:16px;padding:4px;flex-shrink:0;
}
.addrSavedDelete:hover{color:#e74c3c}
.addrStatus{font-size:13px;color:#666;text-align:center;padding:8px 16px 0;min-height:24px}

/* ── Add Address Form Modal ──────────────────────────────────────────────── */
.addrFormOverlay{
  position:fixed;inset:0;z-index:1200;background:rgba(0,0,0,.55);
  display:flex;align-items:flex-end;justify-content:center;
}
.addrFormOverlay.hidden{display:none}
@media(min-width:480px){.addrFormOverlay{align-items:center}}
.addrFormCard{
  background:#fff;width:100%;max-width:480px;
  border-radius:20px 20px 0 0;padding:0 0 32px;max-height:90vh;overflow-y:auto;
}
@media(min-width:480px){.addrFormCard{border-radius:20px}}
.addrLabelRow{display:flex;gap:8px;padding:14px 16px 6px}
.addrLabelBtn{
  display:flex;align-items:center;justify-content:center;gap:6px;
  flex:1;padding:8px 4px;border:1.5px solid #e0e0e0;border-radius:10px;
  background:#f8f8f8;font-size:12px;cursor:pointer;font-weight:600;color:#555;
}
.addrLabelBtn.active{border-color:#0F3D3A;background:#e8f4f0;color:#0F3D3A}
.addrLabelGlyph{
  width:20px;height:20px;border-radius:7px;display:inline-flex;align-items:center;justify-content:center;
  background:#eef3f0;color:#4b5b57;font-size:11px;font-weight:900;
}
.addrLabelBtn.active .addrLabelGlyph{background:#fff;color:#0F3D3A}
.addrFormInput{
  display:block;width:calc(100% - 32px);margin:6px 16px;
  padding:12px 14px;border:1.5px solid #e0e0e0;border-radius:12px;
  font-size:14px;outline:none;box-sizing:border-box;
}
.addrFormInput:focus{border-color:#0F3D3A}
.addrFormSaveBtn{
  display:block;width:calc(100% - 32px);margin:16px 16px 0;
  padding:14px;background:#0F3D3A;color:#fff;border:none;
  border-radius:12px;font-size:15px;font-weight:700;cursor:pointer;
}
.addrFormSaveBtn:hover{background:#1A5C57}

/* ── Wishlist ─────────────────────────────────────────────────────────────── */
.wishlistTitle{font-size:20px;font-weight:800;margin:0 0 16px;color:#1a1a1a}
.wishlistGrid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
}
@media(min-width:480px){.wishlistGrid{grid-template-columns:repeat(3,1fr)}}
.wishlistCard{position:relative}
.wishlistHeart{
  position:absolute;top:8px;right:8px;background:none;border:none;cursor:pointer;z-index:2;padding:4px;
}
.wishlistHeart svg{width:20px;height:20px;fill:#ccc;transition:fill .2s}
.wishlistHeart.active svg{fill:#e74c3c}
.wishlistEmpty{text-align:center;padding:60px 20px}
.wishlistEmpty h2{font-size:20px;font-weight:700;margin:0 0 8px}
.wishlistEmpty p{color:#666;font-size:14px;margin:0 0 20px}
.wishlistShopBtn{
  display:inline-block;padding:12px 28px;background:#0F3D3A;color:#fff;
  border-radius:12px;font-weight:700;text-decoration:none;font-size:15px;
}

/* ── Heart button on product cards ─────────────────────────────────────── */
.productCardHeart{
  position:absolute;top:6px;right:6px;background:rgba(255,255,255,.85);
  border:none;border-radius:50%;width:30px;height:30px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;z-index:2;padding:0;
}
.productCardHeart svg{width:16px;height:16px;fill:#ccc;transition:fill .2s}
.productCardHeart.wished svg{fill:#e74c3c}

/* ── Profile page (Blinkit style) ───────────────────────────────────────── */
.profilePage{padding:0 0 100px;max-width:520px;margin:0 auto}
.profileTopCard{
  background:#0F3D3A;color:#fff;padding:24px 20px 20px;
  display:flex;align-items:center;gap:14px;
}
.profileAvatar{
  width:52px;height:52px;border-radius:50%;background:#9EDC1A;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;font-weight:800;color:#0F3D3A;flex-shrink:0;
}
.profileName{font-size:18px;font-weight:700}
.profilePhone{font-size:13px;opacity:.8;margin-top:2px}
.profileMenuSection{margin:16px 0 0}
.profileMenuLabel{
  font-size:11px;color:#888;text-transform:uppercase;letter-spacing:.5px;
  padding:0 16px;margin-bottom:4px;
}
.profileMenuItem{
  display:flex;align-items:center;gap:14px;padding:15px 16px;
  background:#fff;border-bottom:1px solid #f4f4f4;cursor:pointer;
  text-decoration:none;color:#1a1a1a;font-size:14px;font-weight:500;
}
.profileMenuItem:hover{background:#fafafa}
.profileMenuItem svg{width:20px;height:20px;fill:#0F3D3A;flex-shrink:0}
.profileMenuArrow{margin-left:auto;color:#ccc;font-size:16px}
.profileLogoutBtn{
  display:block;width:calc(100% - 32px);margin:20px 16px 0;
  padding:14px;background:#fff;border:1.5px solid #e0e0e0;
  border-radius:12px;font-size:15px;font-weight:700;color:#e74c3c;cursor:pointer;
  text-align:center;
}

/* ── Android parity batch (2026-06-24) ───────────────────────────────────── */
.searchSortBar,.searchPageSortBar{
  display:flex;gap:8px;overflow-x:auto;padding:0 0 12px;
  scrollbar-width:none;-ms-overflow-style:none;
}
.searchSortBar.is-hidden{display:none}
.sortPill{
  flex:0 0 auto;border:1px solid #e0e8e2;background:#fff;color:#1b1b1f;
  border-radius:999px;padding:8px 12px;font-size:12px;font-weight:700;cursor:pointer;
}
.sortPill.active{background:var(--brand-lime-soft);border-color:rgba(12,131,31,.25);color:var(--green-deep)}

.aiFab{
  position:fixed;right:14px;bottom:calc(var(--nav-h) + 78px);z-index:40;
  width:56px;height:56px;border-radius:18px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,#149a2e,#0a6e1a);color:#fff;text-decoration:none;
  box-shadow:0 10px 24px rgba(12,131,31,.28);
}
body.sheet-open .aiFab,.checkoutPageBody .aiFab,.assistantPageBody .aiFab,.trackingPageBody .aiFab,.successPageBody .aiFab{display:none}

.stickyCartBar{position:relative}
.freeDeliveryHandle{
  position:absolute;right:-2px;top:50%;transform:translateY(-50%);
  width:34px;height:34px;border-radius:999px;border:none;background:#db3022;color:#fff;
  display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;
  box-shadow:0 4px 12px rgba(219,48,34,.25);
}
.freeDeliveryHandle.unlocked{background:#0c831f;box-shadow:0 4px 12px rgba(12,131,31,.25)}
.freeDeliveryPill{
  position:absolute;right:36px;top:50%;transform:translateY(-50%);
  display:flex;align-items:center;gap:8px;background:#fff;border:1px solid #e0e8e2;
  border-radius:999px;padding:8px 10px 8px 12px;font-size:11px;font-weight:700;
  color:#1b1b1f;box-shadow:0 8px 20px rgba(15,61,58,.12);white-space:nowrap;
}
.freeDeliveryPillClose{border:none;background:transparent;font-size:16px;cursor:pointer;color:#6b7280}

.pdpGalleryWrap{position:relative}
.pdpZoomBtn{
  position:absolute;right:10px;bottom:10px;border:none;border-radius:999px;
  background:rgba(255,255,255,.92);padding:7px 12px;font-size:11px;font-weight:800;cursor:pointer;
}
.pdpThumbRow{display:flex;gap:8px;overflow-x:auto;margin:10px 0}
.pdpThumb{
  flex:0 0 auto;width:54px;height:54px;border-radius:10px;overflow:hidden;
  border:2px solid transparent;padding:0;background:#fff;cursor:pointer;
}
.pdpThumb.active{border-color:#0c831f}
.pdpThumb img{width:100%;height:100%;object-fit:cover}
.pdpMetaRow{display:flex;gap:12px;margin:8px 0;font-size:12px;font-weight:700;color:#6b7280}
.pdpSavings{color:#0a6e1a;font-weight:800;margin-left:8px}
.pdpDesc{font-size:13px;line-height:1.5;color:#6b7280;margin:8px 0 12px}
.pdpRelatedBlock{margin-top:14px}
.pdpRelatedTitle{font-size:14px;font-weight:800;margin-bottom:8px}
.pdpLightbox{
  position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:120;
  display:flex;align-items:center;justify-content:center;padding:20px;
}
.pdpLightbox.hidden{display:none}
.pdpLightbox img{max-width:100%;max-height:90vh;object-fit:contain}
.pdpLightboxClose{
  position:absolute;top:16px;right:16px;width:40px;height:40px;border-radius:50%;
  border:none;background:rgba(255,255,255,.15);color:#fff;font-size:24px;cursor:pointer;
}

.pageShell{max-width:720px;margin:0 auto;padding:12px 12px calc(var(--nav-h) + 24px)}
.pageTopBar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:8px 2px 14px}
.pageTitle{margin:0;font-size:22px;font-weight:900;color:#1b1b1f}
.pageBackBtn{
  width:36px;height:36px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:#fff;border:1px solid #e0e8e2;color:#1b1b1f;text-decoration:none;font-size:24px;font-weight:700;
}
.pageTopPill,.pageSkeleton{
  font-size:12px;font-weight:800;padding:8px 12px;border-radius:999px;
  background:#e8f5e9;color:#054016;text-decoration:none;
}
.pageError,.pageSkeleton{color:#6b7280;padding:20px 0}

.orderCard{
  display:flex;gap:12px;background:#fff;border:1px solid #e0e8e2;border-radius:16px;
  padding:12px;margin-bottom:10px;text-decoration:none;color:inherit;
  box-shadow:0 6px 18px rgba(15,61,58,.06);
}
.orderCardThumb{width:64px;height:64px;border-radius:12px;overflow:hidden;background:#eef7f0;flex-shrink:0}
.orderCardThumb img{width:100%;height:100%;object-fit:cover}
.orderCardTop{display:flex;justify-content:space-between;gap:8px;align-items:center}
.orderCardId{font-weight:900}
.orderCardName{font-size:14px;font-weight:700;margin:6px 0 4px}
.orderCardMeta{font-size:12px;color:#6b7280}
.orderCardTrack{display:inline-block;margin-top:8px;color:#0c831f;font-weight:800;font-size:12px}
.statusChip{font-size:11px;font-weight:800;padding:4px 8px;border-radius:999px}
.statusChip--placed{background:#eef7f0;color:#0a6e1a}
.statusChip--accepted{background:#e8f4fd;color:#256fef}
.statusChip--delivery{background:#fff3e8;color:#ff6d00}
.statusChip--delivered{background:#e8f5e9;color:#0c831f}
.statusChip--cancelled{background:#fdecea;color:#db3022}

.orderStatusHero{border-radius:18px;padding:16px;margin-bottom:12px;color:#fff;background:linear-gradient(135deg,#0c831f,#0a6e1a)}
.orderStatusLabel{font-size:18px;font-weight:900}
.orderStatusMsg{margin-top:6px;font-size:13px;opacity:.92}
.orderStatusMeta{margin-top:8px;font-size:12px;font-weight:700;opacity:.85}
.orderTimeline{display:grid;gap:10px}
.orderTimelineStep{display:flex;align-items:center;gap:10px;color:#9ca3af;font-size:13px;font-weight:600}
.orderTimelineStep.done{color:#1b1b1f}
.orderTimelineStep.current{font-weight:800;color:#0c831f}
.orderTimelineDot{width:10px;height:10px;border-radius:50%;background:#d1d5db;flex-shrink:0}
.orderTimelineStep.done .orderTimelineDot{background:#0c831f}
.orderTrackBtn{display:block;text-align:center;margin-top:12px;text-decoration:none}

.checkoutCard,.checkoutPage .checkoutCard{
  background:#fff;border:1px solid #e0e8e2;border-radius:16px;padding:14px;margin-bottom:12px;
  box-shadow:0 6px 18px rgba(15,61,58,.05);
}
.checkoutCardTitle{font-size:13px;font-weight:900;margin-bottom:10px;color:#1b1b1f}
.checkoutAddressBody{font-size:14px;line-height:1.5;color:#4b5563}
.checkoutLinkBtn{display:inline-block;margin-top:8px;color:#0c831f;font-weight:800;font-size:12px;text-decoration:none}
.checkoutItemRow{display:flex;gap:10px;align-items:center;padding:8px 0;border-bottom:1px solid #edf2ef}
.checkoutItemRow:last-child{border-bottom:none}
.checkoutItemRow img{width:48px;height:48px;border-radius:10px;object-fit:cover;background:#eef7f0}
.checkoutItemCopy{flex:1;min-width:0}
.checkoutItemName{font-size:13px;font-weight:700}
.checkoutItemMeta{font-size:11px;color:#6b7280;margin-top:2px}
.checkoutStickyBar{
  position:sticky;bottom:0;padding:12px 0 8px;background:linear-gradient(180deg,transparent,#f5f7f6 30%);
}
.checkoutWhatsCard{margin-bottom:12px}
.payMethodRow{
  display:flex;align-items:center;gap:10px;padding:12px;border:1px solid #e0e8e2;border-radius:12px;
  margin-bottom:8px;cursor:pointer;font-weight:700;
}
.payMethodRow.active{border-color:#0c831f;background:#f5fbf6}

.successPage{padding-top:24px}
.successHero{text-align:center;padding:24px 12px}
.successCheck{
  width:72px;height:72px;border-radius:50%;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;
  background:#e8f5e9;color:#0c831f;font-size:34px;font-weight:900;
}
.successTitle{margin:0;font-size:26px;font-weight:900}
.successSub{margin:10px 0 0;color:#6b7280;line-height:1.5}
.successAmount{margin-top:12px;font-size:28px;font-weight:900;color:#0c831f}
.successActions{display:grid;gap:10px;margin-top:20px}
.successPrimary{text-decoration:none;text-align:center}
.successSecondary{
  display:block;text-align:center;padding:12px;color:#0c831f;font-weight:800;text-decoration:none;
}

.searchPageHeader{position:sticky;top:0;z-index:20}
.searchPageInputWrap{position:relative}
.searchMicBtn{
  position:absolute;right:8px;top:50%;transform:translateY(-50%);
  width:34px;height:34px;border:none;border-radius:50%;background:#eef7f0;color:#0c831f;cursor:pointer;
}
.searchPageMain{padding-top:8px;padding-bottom:calc(var(--nav-h) + 80px)}

.trackingShell{height:100vh;display:flex;flex-direction:column;background:#f5f7f6}
.trackingTopBar{
  display:flex;align-items:center;gap:12px;padding:12px 14px;background:#fff;border-bottom:1px solid #e0e8e2;
}
.trackingMap{flex:1;min-height:320px}
.trackingSheet{padding:14px 16px 24px;background:#fff;border-radius:16px 16px 0 0;margin-top:-12px}
.trackingStatusLabel{font-size:18px;font-weight:900}
.trackingStatusMsg{margin-top:6px;color:#6b7280;line-height:1.5}
.trackingRider{margin-top:8px;font-size:12px;font-weight:800;color:#ff6d00}
.liveBadge{font-size:11px;font-weight:900;background:#256fef;color:#fff;padding:4px 8px;border-radius:999px;margin-left:auto}
.liveBadge.hidden{display:none}

.assistantShell{
  max-width:720px;margin:0 auto;height:calc(100vh - 12px);display:flex;flex-direction:column;padding:8px 12px;
}
.assistantTopBar{display:flex;align-items:center;gap:10px;padding:8px 0}
.assistantTitle{font-size:18px;font-weight:900}
.assistantSub{font-size:11px;color:#6b7280}
.assistantClearBtn{margin-left:auto;border:none;background:#eef7f0;color:#0c831f;border-radius:999px;padding:8px 12px;font-weight:800;cursor:pointer}
.assistantModeRow{display:flex;gap:8px;margin-bottom:8px}
.assistantModeChip{
  border:1px solid #e0e8e2;background:#fff;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:800;cursor:pointer;
}
.assistantModeChip.active{background:#e8f5e9;border-color:#0c831f;color:#054016}
.assistantChat{flex:1;overflow:auto;display:flex;flex-direction:column;gap:10px;padding:8px 0}
.assistantBubble{max-width:85%;padding:10px 12px;border-radius:14px;font-size:14px;line-height:1.45}
.assistantBubble.fromUser{align-self:flex-end;background:#0c831f;color:#fff;border-bottom-right-radius:4px}
.assistantBubble.fromBot{align-self:flex-start;background:#fff;border:1px solid #e0e8e2;border-bottom-left-radius:4px}
.assistantProducts{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px}
.assistantProductCard{
  flex:0 0 120px;background:#fff;border:1px solid #e0e8e2;border-radius:12px;padding:8px;text-decoration:none;color:inherit;
}
.assistantProductCard img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:8px;background:#eef7f0}
.assistantProductCard span{display:block;font-size:11px;font-weight:700;margin-top:6px}
.assistantChips{display:flex;gap:8px;overflow-x:auto;padding:6px 0}
.assistantChip{
  flex:0 0 auto;border:1px solid #e0e8e2;background:#fff;border-radius:999px;padding:8px 12px;font-size:12px;cursor:pointer;
}
.assistantInputRow{display:flex;gap:8px;padding:8px 0 16px}
.assistantInput{
  flex:1;border:1px solid #e0e8e2;border-radius:999px;padding:12px 14px;font-size:14px;
}
.assistantMicBtn,.assistantSendBtn{
  border:none;border-radius:50%;width:42px;height:42px;background:#eef7f0;color:#0c831f;cursor:pointer;font-weight:800;
}
.assistantSendBtn{border-radius:999px;width:auto;padding:0 14px}

.langChipRow{display:flex;gap:8px;padding:0 12px 14px}
.langChip{
  flex:1;border:1px solid #e0e8e2;background:#fff;border-radius:999px;padding:10px 12px;
  font-size:12px;font-weight:800;cursor:pointer;color:#1b1b1f;
}
.langChip.active{background:#e8f5e9;border-color:#0c831f;color:#054016}
.profileToggleRow{
  display:flex;align-items:center;gap:14px;padding:14px 16px;cursor:pointer;
}
.profileToggleInput{
  width:46px;height:26px;accent-color:#0c831f;cursor:pointer;margin-left:auto;
}

.productPage{padding-bottom:96px}
.productPageGallery{position:relative;border-radius:18px;overflow:hidden;background:#eef7f0;margin-bottom:10px}
.productPageGallery img{width:100%;aspect-ratio:1/1;object-fit:contain;display:block;background:#fff}
.productPageName{font-size:20px;font-weight:900;margin:12px 0 8px;line-height:1.25}
.productPagePriceRow{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.productStickyBar{
  position:fixed;left:0;right:0;bottom:0;z-index:30;display:flex;align-items:center;gap:12px;
  padding:12px 16px calc(12px + var(--safe-bottom));background:#fff;border-top:1px solid #e0e8e2;
  box-shadow:0 -8px 24px rgba(15,61,58,.08);
}
.productStickyBar.hidden{display:none}
.productStickyPrice{font-size:18px;font-weight:900;color:#0c831f;min-width:72px}
.productGrid--compact{grid-template-columns:repeat(2,minmax(0,1fr))}
.productCard--link{text-decoration:none;color:inherit;display:block}
.authLangRow{display:flex;gap:8px;margin-bottom:18px}
.authLangChip{border:1px solid #e0e8e2;background:#fff;border-radius:999px;padding:8px 14px;font-size:12px;font-weight:800;cursor:pointer}
.authLangChip.active{background:#e8f5e9;border-color:#0c831f;color:#054016}

/* ============================================================================
   PREMIUM POLISH — 2026-06-25 (modi99.com home, desktop-first, Android-matched)
   Appended as an override layer so it cascades over the base rules above and is
   easy to revert. Goals: (1) tighter header, (2) cleaner category tiles,
   (3) roomier classy cards, (4) cohesive layout.
   ============================================================================ */
.homeFixedHeader{background:linear-gradient(180deg,#c4e6cb 0%, #e4f3e8 70%, var(--bg) 100%);box-shadow:0 2px 16px rgba(5,64,22,.06)}
.homeLocationBar{background:linear-gradient(180deg,#e4f3e8 0%,var(--bg) 100%);padding:10px 0 8px;border-bottom:none}
.deliveryLocationLine{font-size:17px}
.sectionTabBar{gap:22px}
.sectionTab .sectionTabLabel{font-size:13px}

/* Category tiles — larger, deliberate, premium framing */
.homeCategorySection{padding:18px 0 6px}
.homeCategoryTitle{font-size:18px}
.catCollage{width:74px;height:74px;border-radius:20px;padding:6px;gap:5px;background:linear-gradient(180deg,#ffffff,#eef7f0);border:1px solid rgba(12,131,31,.10);box-shadow:0 6px 16px rgba(15,61,58,.07)}
.catCollageCell{border-radius:11px;background:#fff;box-shadow:inset 0 0 0 1px rgba(15,61,58,.03)}
.catIconLabel{font-size:12px;font-weight:700;margin-top:3px}

/* Product cards — roomier, classier (universal) */
.productCard{border-radius:18px;border-color:rgba(221,229,227,.85);box-shadow:0 6px 20px rgba(15,61,58,.06)}
.productImageWrap{padding:10px}
.productBody{padding:11px 11px 13px}

/* WhatsApp updates strip — premium */
.whatsUpdatesCard{border-radius:16px;background:linear-gradient(135deg,#eaf7ee,#f3fbf5);box-shadow:0 6px 18px rgba(15,61,58,.06)}
.sectionTitle{font-size:18px}

@media (min-width:900px){
  /* Header: collapse into ONE tight premium bar (logo · search · nav · actions) */
  .homeFixedHeaderInner{display:flex;align-items:center;gap:20px;padding:12px 0}
  .homeSearchStrip{order:2;flex:1 1 auto;align-items:center;gap:14px;padding:0;min-width:0}
  .homeSearchBrandBlock{flex:1;min-width:0}
  .homeSearchBrandName{display:none}
  .homeSearchFieldWrap{margin-top:0;max-width:none;width:100%;padding:12px 18px;border-radius:14px;box-shadow:0 10px 26px rgba(5,64,22,.10);border:1px solid rgba(12,131,31,.16)}
  .homeSearchInput{font-size:15px}
  .homeSearchLogo{width:46px;height:46px;border:2px solid #fff;box-shadow:0 6px 16px rgba(5,64,22,.18)}
  .desktopNav{order:3;flex:0 0 auto;padding:0;margin:0;gap:7px}
  .desktopNav .navItem{background:rgba(255,255,255,.62);border:1px solid rgba(5,64,22,.08);color:var(--green-deep);box-shadow:0 2px 8px rgba(5,64,22,.05);font-weight:700}
  .desktopNav .navItem:hover{background:#fff}
  .desktopNav .navItem.active{background:linear-gradient(180deg,#0c831f,#0a6e1a);color:#fff;border-color:transparent;box-shadow:0 8px 18px rgba(10,110,26,.26)}
  .homeHeaderDesktopActions{order:4;flex:0 0 auto;padding:0;gap:10px}
  .etaPill--header{font-size:12px;padding:8px 12px}

  /* Hero banner first on desktop (Amazon-style); mobile keeps document order */
  #homeFeedPanel{display:flex;flex-direction:column}
  #homeFeedPanel > #heroCarousel{order:-1}
  /* Category tiles FILL the full width — auto-fit (not auto-fill, which clustered
     the tiles on the left half and left empty tracks on the right). */
  .categoryScrollRow--expanded{grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:16px}
  .catCollage{width:86px;height:86px;border-radius:24px}
  .catIconLabel{font-size:13px;max-width:118px}

  /* Roomier product grid */
  .productGrid,.sectionCarousel{grid-template-columns:repeat(auto-fill,minmax(192px,1fr))!important;gap:18px}
  .productName{font-size:13.5px}
  .productPrice{font-size:18px}
  .feedSection{padding:18px 0 26px}

  /* Banner: hero-first (moved to top via order:-1), tasteful contained band */
  .heroCarousel{margin:4px 0 8px;border-radius:18px;box-shadow:0 10px 30px rgba(15,61,58,.10);max-height:300px}
  .heroSlide{height:300px}
  .heroSlide img{aspect-ratio:auto;height:300px;object-fit:cover;border-radius:18px}

  .consumerMainPanel{box-shadow:0 10px 40px rgba(15,23,42,.07)}
}
@media (min-width:1280px){.productGrid,.sectionCarousel{grid-template-columns:repeat(auto-fill,minmax(202px,1fr))!important}}
@media (min-width:1600px){.productGrid,.sectionCarousel{grid-template-columns:repeat(auto-fill,minmax(214px,1fr))!important}}

/* ---- Product page (PDP) — premium desktop two-column ---- */
.pdpBuyBox{display:none}  /* mobile uses the fixed sticky bar */
@media (min-width:900px){
  .pageShell.productPage{max-width:1120px}
  .productPage .pageTopBar .pageTitle{display:none}        /* redundant with the H2 name */
  .pdpLayout{display:grid;grid-template-columns:minmax(0,470px) minmax(0,1fr);column-gap:52px;align-items:start}
  .pdpLeft{position:sticky;top:84px}
  .productPageGallery{margin-bottom:14px;border:1px solid rgba(221,229,227,.7);box-shadow:0 10px 30px rgba(15,61,58,.08)}
  .productPageName{margin-top:0;font-size:27px;line-height:1.25}
  .productPagePriceRow{margin:6px 0 14px}
  .productPagePriceRow .productPrice{font-size:30px}
  .pdpDesc{font-size:14.5px;line-height:1.6;color:#566}
  #productRelated{margin-top:30px}
  #productStickyBar{display:none!important}
  .pdpBuyBox{display:flex;align-items:center;gap:20px;margin-top:22px;padding:18px 20px;border:1px solid var(--line);border-radius:16px;background:linear-gradient(180deg,#fff,#f4faf6);box-shadow:0 10px 26px rgba(15,61,58,.08)}
  .pdpBuyPrice{font-size:24px;font-weight:900;color:var(--green-deep)}
  .pdpBuyPrice .productMrp{font-size:15px;font-weight:700}
  .pdpBuyBox .submitBtn{width:auto;padding:15px 32px;margin:0;font-size:15px}
  .pdpRelatedTitle{font-size:18px;margin-bottom:12px}
}

/* ---- Checkout — premium desktop two-column (order details | sticky summary) ---- */
@media (min-width:900px){
  .pageShell.checkoutPage{max-width:1080px}
  .checkoutPage .pageTopBar .pageTitle{display:none}
  .checkoutLayout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,384px);column-gap:32px;align-items:start}
  .checkoutRight{position:sticky;top:84px;display:flex;flex-direction:column;gap:12px}
  .checkoutCard{box-shadow:0 8px 24px rgba(15,61,58,.06)}
  .checkoutRight .checkoutCard{margin-bottom:0}
  .checkoutPage .checkoutStickyBar{position:static;padding:0;background:none;margin:2px 0 0}
  .checkoutPage .checkoutStickyBar .submitBtn{box-shadow:0 12px 26px rgba(5,64,22,.22)}
  .checkoutWhatsCard{margin-top:0}
}

/* ---- Orders list + order detail — premium desktop ---- */
@media (min-width:900px){
  .pageShell.ordersPage{max-width:940px}
  .ordersList{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;align-items:start}
  .ordersList .orderCard{margin-bottom:0;box-shadow:0 8px 24px rgba(15,61,58,.07)}
  .pageShell.orderDetailPage{max-width:760px}
  .orderStatusHero{box-shadow:0 12px 30px rgba(10,110,26,.18)}
  /* search header: keep the green strip compact + premium on desktop */
  .searchPageHeader .minutesSearchWrap{max-width:680px;margin-left:auto;margin-right:auto}
}

/* ---- Home 'Shop by category' as Amazon-style cards (desktop) ---- */
@media (min-width:900px){
  .categoryScrollRow--expanded{grid-template-columns:repeat(auto-fit,minmax(146px,1fr))!important;gap:14px}
  .catIconTile{
    background:#fff;border:1px solid rgba(221,229,227,.9);border-radius:16px;
    padding:16px 10px 13px;box-shadow:0 4px 14px rgba(15,61,58,.05);
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  }
  .catIconTile:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(15,61,58,.12);border-color:rgba(12,131,31,.28)}
  .catIconTile .catCollage{width:78px;height:78px}
  .catIconTile .catIconLabel{font-size:13px;font-weight:700;margin-top:9px}
}

/* ---- PDP rating/ETA + spec pills (Android parity) ---- */
.pdpMetaRow{display:flex;gap:8px;flex-wrap:wrap;margin:6px 0 10px}
.pdpMetaChip{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:800;padding:5px 11px;border-radius:999px;line-height:1}
.pdpMetaRating{background:#eef7f0;color:var(--brand-teal)}
.pdpMetaCount{color:var(--muted);font-weight:600}
.pdpMetaEta{background:#f1f3f5;color:#56655f}
.pdpSpecRow{display:flex;gap:10px;flex-wrap:wrap;margin:12px 0}
.pdpSpecPill{display:flex;flex-direction:column;gap:2px;background:#f5f7f6;border:1px solid var(--line);border-radius:12px;padding:9px 14px;font-size:13px;font-weight:800;color:var(--text);min-width:84px}
.pdpSpecLabel{font-size:10px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.03em}

/* ---- Real-rating "New" chip (no reviews yet) + PDP reviews section ---- */
.productNewChip{display:inline-flex;align-items:center;font-size:10px;font-weight:800;padding:3px 8px;border-radius:999px;background:var(--brand-lime-soft);color:var(--brand-teal);line-height:1}
.pdpMetaNew{background:var(--brand-lime-soft);color:var(--brand-teal)}
.pdpReviews{margin-top:26px;border-top:1px solid var(--line);padding-top:18px}
.pdpReviewsHead{font-size:18px;font-weight:900;color:var(--green-deep);margin-bottom:10px}
.pdpReviewsSummary{display:flex;align-items:center;gap:10px;margin-bottom:14px;flex-wrap:wrap}
.pdpReviewsAvg{font-size:22px;font-weight:900;color:var(--brand-teal)}
.pdpReviewsNew{font-size:15px;font-weight:800;color:var(--text)}
.pdpReviewsCount{font-size:13px;color:var(--muted);font-weight:600}
.pdpReviewItem{padding:12px 0;border-bottom:1px solid rgba(221,229,227,.6);max-width:760px}
.pdpReviewTop{display:flex;align-items:center;gap:10px;margin-bottom:5px}
.pdpReviewStars{color:var(--premium-gold);font-size:13px;letter-spacing:1px}
.pdpReviewName{font-size:13px;font-weight:800;color:var(--text)}
.pdpReviewDate{font-size:11px;color:var(--muted);margin-left:auto}
.pdpReviewText{font-size:14px;line-height:1.5;color:#444}
.pdpReviewsEmpty{font-size:13px;color:var(--muted);padding:6px 0}

/* ---- Order-detail review submission (star picker + comment) ---- */
.orderReviewForm{padding:10px 0 4px;border-top:1px dashed var(--line);margin-top:8px}
.orderReviewLabel{font-size:12px;font-weight:800;color:var(--text);margin-bottom:6px}
.orderReviewStars{display:flex;gap:4px;margin-bottom:8px}
.orderStar{border:none;background:none;cursor:pointer;font-size:26px;line-height:1;color:#d9dee5;padding:0;transition:color .12s}
.orderStar.on{color:var(--premium-gold)}
.orderReviewText{width:100%;box-sizing:border-box;border:1px solid var(--line);border-radius:10px;padding:9px 11px;font-size:13px;font-family:inherit;resize:vertical;margin-bottom:8px;outline:none}
.orderReviewText:focus{border-color:var(--brand-lime);box-shadow:0 0 0 3px rgba(12,131,31,.08)}
.orderReviewSubmit{width:auto;padding:9px 20px;font-size:13px;box-shadow:none}
.orderReviewMsg{font-size:12px;color:var(--danger);margin-top:6px;font-weight:700}
.orderReviewDone{font-size:13px;color:var(--brand-teal);font-weight:700;padding:9px 0 4px;border-top:1px dashed var(--line);margin-top:8px;display:flex;align-items:center;gap:8px}
.orderReviewDone .pdpReviewStars{color:var(--premium-gold)}

/* ---- Customer order cancellation (web order detail) ---- */
.orderCancelCard{text-align:center}
.orderCancelBtn{border:1.5px solid #e3a9a9;background:#fff;color:#c0392b;font-size:14px;font-weight:800;padding:12px 18px;border-radius:12px;cursor:pointer;width:100%}
.orderCancelBtn:hover{background:#fdf3f2}
.orderCancelPanel{margin-top:14px;text-align:left}
.orderCancelTitle{font-size:13px;font-weight:800;color:var(--text);margin-bottom:8px}
.orderCancelReasons{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
.orderCancelReason{border:1px solid var(--line);background:#fff;color:var(--text);font-size:12px;font-weight:700;padding:8px 12px;border-radius:999px;cursor:pointer}
.orderCancelReason.active{background:var(--brand-lime-soft);border-color:rgba(12,131,31,.4);color:var(--brand-teal)}
.orderCancelConfirm{background:#c0392b;box-shadow:0 8px 20px rgba(192,57,43,.22)}
.orderCancelMsg{font-size:12px;color:var(--danger);margin-top:8px;font-weight:700}

/* ── Delivery / Store-pickup toggle ─────────────────────────────── */
.fulfillToggle{display:flex;gap:6px;background:#eef2f0;border-radius:14px;padding:5px;margin-bottom:14px}
.fulfillOption{flex:1;display:flex;align-items:center;justify-content:center;gap:7px;border:0;background:transparent;border-radius:10px;padding:11px 8px;font-size:14px;font-weight:700;color:var(--ink-soft,#5b6b63);cursor:pointer;transition:all .15s ease}
.fulfillOption .fulfillIcon{font-size:16px}
.fulfillOption.active{background:#fff;color:var(--brand-teal,#0c831f);box-shadow:0 2px 8px rgba(0,0,0,.08)}
.pickupStoreName{font-size:15px;font-weight:800;color:var(--brand-teal,#0c831f)}
.pickupStoreAddr{font-size:13px;color:var(--ink-soft,#5b6b63);margin-top:3px}
.pickupNote{font-size:12.5px;line-height:1.5;color:var(--ink-soft,#5b6b63);margin-top:10px;background:var(--brand-lime-soft,#eafaf0);border-radius:10px;padding:10px 12px}
.pickupNote strong{color:var(--brand-teal,#0c831f)}

/* Pickup code on the order page */
.pickupCodeCard{margin:0 16px 12px;background:linear-gradient(135deg,#0c831f,#0a6b19);border-radius:16px;padding:16px 18px;color:#fff}
.pickupCodeLabel{font-size:12px;font-weight:700;opacity:.85;text-transform:uppercase;letter-spacing:.5px}
.pickupCodeValue{font-size:32px;font-weight:900;letter-spacing:4px;margin-top:4px}
.pickupCodeHint{font-size:12.5px;opacity:.9;margin-top:6px;line-height:1.5}
