:root{
  --brand-pastel:#CDEDD6;   /* pastel brand fill (matches Android GreenPastel) */
  --on-pastel:#054016;      /* text/icons on the pastel fill */
  --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:"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;
}

/* 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{
  /* Compact banner band so it doesn't dominate the feed. Artwork is 2078×757
     (~2.75:1); a 4:1 box trims only the empty margins, keeping the text +
     products. ~4.2:1 is the limit before the artwork itself starts clipping. */
  width:100%;aspect-ratio:4/1;object-fit:cover;object-position:center;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;
}
/* Clean single-photo category tile (matches the Android app — one product
   photo on a pastel rounded tile, no busy 2×2 collage). */
.catTile{
  width:64px;height:64px;border-radius:18px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;padding:7px;
  transition:transform .15s ease;
}
.catIconTile:hover .catTile{transform:translateY(-2px)}
.catTileInner{
  width:100%;height:100%;border-radius:12px;background:#fff;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  box-shadow:inset 0 0 0 1px rgba(15,61,58,.04);
}
.catTileInner img{width:100%;height:100%;object-fit:contain;padding:5px}
.catTile--empty .catTileInner img{display:none}
.catTileLetter{font-size:24px;font-weight:800;color:var(--brand-teal)}
.cTile0{background:#E8D5FF}.cTile1{background:#D5F5E0}.cTile2{background:#D5F0FF}
.cTile3{background:#FFD5E8}.cTile4{background:#D5FFE4}.cTile5{background:#E8F5E9}
.cTile6{background:#FFE5E5}.cTile7{background:#E5F5FF}.cTile8{background:#F0FFF4}
.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-pastel);color:var(--brand-teal);font-size:10px;font-weight:900;
  padding:4px 7px;border-radius:6px;line-height:1;letter-spacing:.02em;
  border:1px solid rgba(10,110,26,.14);
}
.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:1px solid rgba(5,64,22,.18);border-radius:999px;padding:13px 16px;
  background:var(--brand-pastel);color:var(--on-pastel);font-size:15px;font-weight:900;
  display:flex;align-items:center;justify-content:space-between;
  box-shadow:0 10px 26px rgba(5,64,22,.16);cursor:pointer;
}
.stickyCartBtn span:last-child{
  width:30px;height:30px;border-radius:50%;background:var(--brand-lime);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;font-size:16px;flex:0 0 auto;
}

/* 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:4/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)}

/* "Need help?" assistant pill — robot + persistent label on a pastel chip
   (matches the Android app's AiFloatingButton), with a gentle pulse. */
.aiFab{
  position:fixed;right:10px;bottom:calc(var(--nav-h) + 74px);z-index:40;
  display:flex;align-items:center;gap:6px;text-decoration:none;
  background:var(--brand-pastel);border:1px solid rgba(5,64,22,.22);
  border-radius:22px;padding:4px 12px 4px 4px;
  box-shadow:0 8px 20px rgba(5,64,22,.18);
  animation:aiFabPulse 2.2s ease-in-out infinite;
}
.aiFabRobot{width:36px;height:36px;object-fit:contain;flex-shrink:0}
.aiFabCta{font-size:13px;font-weight:900;color:var(--on-pastel);white-space:nowrap}
@keyframes aiFabPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.045)}}
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}
/* Inline "use my current location" (Android-style auto-fetch) shown when there's
   no saved delivery address yet. */
.checkoutNoAddr{display:flex;flex-direction:column;gap:8px}
.checkoutGpsBtn{
  display:inline-flex;align-items:center;gap:8px;align-self:flex-start;
  border:1.5px solid var(--brand-lime);background:#f1f8f0;color:var(--brand-lime-dark);
  font-size:14px;font-weight:800;padding:11px 16px;border-radius:12px;cursor:pointer;
}
.checkoutGpsBtn:disabled{opacity:.6;cursor:default}
.checkoutGpsBtn svg{width:18px;height:18px}
.checkoutAddrStatus{font-size:12.5px;font-weight:600;color:var(--muted);line-height:1.4}
.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}

/* ── Orders page v2 (matches the Android Blinkit-style cards) ─────────────── */
.orderCard--v2{display:block;padding:14px;cursor:pointer}
.orderCardHead{display:flex;align-items:center;justify-content:space-between;gap:8px}
.orderMoney{font-size:20px;font-weight:900;letter-spacing:-.02em;color:var(--text);white-space:nowrap}
.orderCardSub{font-size:12px;font-weight:600;color:#9ca3af;margin-top:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.orderThumbStrip{display:flex;margin-top:12px}
.orderThumbStrip .orderThumb{
  width:44px;height:44px;border-radius:50%;overflow:hidden;background:var(--premium-image);
  border:2px solid #fff;box-shadow:0 1px 4px rgba(15,61,58,.10);flex:0 0 auto;
}
.orderThumbStrip .orderThumb:not(:first-child){margin-left:-12px}
.orderThumbStrip .orderThumb img{width:100%;height:100%;object-fit:contain;padding:3px;background:#fff}
.orderThumbMore{
  width:44px;height:44px;border-radius:50%;margin-left:-12px;flex:0 0 auto;
  background:var(--brand-pastel);border:2px solid #fff;color:var(--brand-teal);
  display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:900;
}
.orderCardName{margin-top:9px}
.orderCardFoot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:10px}
.orderCardDate{font-size:12px;font-weight:600;color:var(--muted)}
.buyAgainPill{
  display:inline-flex;align-items:center;gap:5px;border:1.2px solid var(--brand-lime);
  background:var(--brand-pastel);color:var(--brand-teal);font-size:12px;font-weight:900;
  padding:7px 12px;border-radius:999px;cursor:pointer;
}
.buyAgainPill:disabled{opacity:.6}

/* ── Checkout: ETA strip + doorstep policy (matches the app) ──────────────── */
.checkoutEtaStrip{
  display:flex;align-items:center;gap:8px;margin-bottom:10px;
  background:var(--brand-pastel);border:1px solid rgba(10,110,26,.22);
  border-radius:14px;padding:11px 14px;
  font-size:14px;font-weight:800;color:var(--on-pastel);
}
.checkoutPolicyNote{
  display:flex;gap:10px;background:#FFF7E6;border:1px solid rgba(245,158,11,.30);
  border-radius:14px;padding:14px;margin-bottom:12px;
}
.checkoutPolicyNote .cpTitle{font-size:14px;font-weight:800;color:var(--text)}
.checkoutPolicyNote .cpBody{font-size:12.5px;font-weight:600;color:var(--muted);line-height:1.45;margin-top:2px}

/* ============================================================================
   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}
/* Delivery location — full-width white card so it fills the header row instead of
   hugging the left edge / getting cut off. Pin on the left, change-chevron on the right. */
.deliveryLocationPill{
  display:flex;align-items:center;gap:11px;
  background:#fff;border:1px solid rgba(12,131,31,.14);border-radius:16px;
  padding:10px 12px;box-shadow:0 4px 14px rgba(15,61,58,.07);
}
.deliveryLocationPin{
  flex:0 0 auto;width:38px;height:38px;border-radius:12px;
  background:var(--brand-lime-soft);color:var(--brand-lime);
  display:flex;align-items:center;justify-content:center;
}
.deliveryLocationPin svg{width:22px;height:22px}
.deliveryLocationMain{flex:1 1 auto;min-width:0}
.deliveryLocationLine{font-size:17px}
.deliveryLocationEta{margin-top:3px}
.deliveryLocationChevron{
  display:flex;flex:0 0 auto;width:30px;height:30px;border-radius:50%;
  align-items:center;justify-content:center;color:var(--muted);
  background:var(--brand-surface);
}
.deliveryLocationChevron svg{width:20px;height:20px}
.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)}
  .heroSlide{height:auto}
  .heroSlide img{aspect-ratio:4/1;height:auto;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}


/* ============================================================================
   PREMIUM REDESIGN — 2026-07-03 ("boutique calm")
   Direction: warm-stone neutrals, ONE restrained brand green, Plus Jakarta
   Sans display + Inter UI, glass header, soft layered depth. Green is spent
   only on actions & live-status; everything else is quiet — that's what makes
   it feel expensive. Appended last so it wins the cascade.
   ============================================================================ */
:root{
  --bg:#F7F6F3;
  --card:#FFFFFF;
  --text:#1B1B18;
  --muted:#6B6A63;
  --line:#E8E6E0;
  --ink-hint:#9C9B94;
  --shadow-soft:0 1px 2px rgba(27,27,24,.04),0 12px 32px rgba(27,27,24,.07);
  --shadow-lift:0 2px 4px rgba(27,27,24,.05),0 18px 44px rgba(27,27,24,.10);
  --font-display:"Plus Jakarta Sans","Poppins",system-ui,sans-serif;
  --font-ui:"Inter","Poppins",system-ui,sans-serif;
}
body{font-family:var(--font-ui);background:var(--bg);color:var(--text)}
h1,h2,h3,.homeCategoryTitle,.sectionTitle,.feedTitle,.pageTitle,.sheetTitle,
.homeSearchBrandName,.pdpName,.checkoutCardTitle,.productPrice,.orderMoney,
.emptyStateTitle,.deliveryLocationLine{font-family:var(--font-display)}

/* ── Header: white glass instead of the green slab ── */
.homeFixedHeader{
  background:rgba(255,255,255,.82);
  -webkit-backdrop-filter:blur(16px) saturate(1.5);
  backdrop-filter:blur(16px) saturate(1.5);
  box-shadow:none;border-bottom:1px solid var(--line);
}
.homeSearchBrandName{color:var(--text);font-weight:800;letter-spacing:-.02em}
.homeSearchFieldWrap{
  background:var(--bg);border:1px solid var(--line);box-shadow:none;border-radius:999px;
}
.minutesSearch,.homeSearchInput{background:transparent;border:none;box-shadow:none;outline:none}
.etaPill,.etaPill--header{
  background:#EDF7EF;color:#0A4D18;border:1px solid rgba(12,131,31,.14);font-weight:700;
}
.homeLocationBar{background:transparent;border-bottom:none;padding:12px 0 6px}
.deliveryLocationPill{
  background:var(--card);border:1px solid var(--line);border-radius:18px;
  box-shadow:var(--shadow-soft);
}
.deliveryLocationTitle{letter-spacing:.08em;color:var(--ink-hint)}
.deliveryLocationLine{font-size:17px;font-weight:800;letter-spacing:-.015em}

/* ── Category tiles: quiet neutral frames, photo does the talking ── */
.catTile,.cTile0,.cTile1,.cTile2,.cTile3,.cTile4,.cTile5,.cTile6,.cTile7,.cTile8{
  background:#F1F0EA;
}
.catTileInner{box-shadow:inset 0 0 0 1px rgba(27,27,24,.04)}
.catIconLabel{font-weight:600;color:var(--muted);font-size:11.5px}
.homeCategoryTitle{font-weight:800;letter-spacing:-.02em}
.homeCategorySeeAll{color:#0A6E1A;font-weight:700}

/* ── Product cards: hairline + layered shadow, quiet metadata, loud price ── */
.productCard{
  border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-soft);
}
@media (min-width:900px){
  .productCard:hover{box-shadow:var(--shadow-lift);transform:translateY(-2px)}
}
.productImageWrap{
  background:linear-gradient(180deg,#FFFFFF 0%,#F5F4F0 100%);
  border-bottom:1px solid rgba(232,230,224,.7);
}
.productSpecPill{background:#F3F2ED;color:#83827A;font-weight:600}
.productPrice{font-weight:800;letter-spacing:-.03em}
.productMrp{color:var(--ink-hint)}
.productSavings{color:#0A6E1A}
.productName{font-weight:600;color:#2A2A26}
.productRating,.productEta{background:#FAF9F6;border-color:var(--line);color:var(--muted)}
.productNewChip{background:#F3F2ED;color:#83827A}
.discountPill{
  background:rgba(255,255,255,.92);border:1px solid rgba(10,110,26,.25);color:#0A6E1A;
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);
}
.imageAddBtn{
  background:#0C831F;border:none;color:#fff;border-radius:10px;
  box-shadow:0 6px 16px rgba(12,131,31,.30);
}
.imageAddBtn:disabled{background:#EDEDEA;color:#A6A59E;box-shadow:none}
.imageQtyStepper{border:none;border-radius:10px;box-shadow:0 6px 16px rgba(12,131,31,.30)}

/* ── Feed sections: white editorial cards, no tinted stripes ── */
.feedSectionBlock{
  background:var(--card)!important;border:1px solid var(--line);border-radius:20px;
  margin:0 0 14px;box-shadow:var(--shadow-soft);overflow:hidden;
}
.feedSectionBlock--wave{margin-top:0}
.feedSectionBlock--wave::before{display:none}
.sectionHead{background:transparent!important;margin:0;border-top:none;padding:16px 16px 10px}
.sectionTitle{color:var(--text);font-weight:800;letter-spacing:-.02em}
.sectionPriceChip{background:#FCF6E8;border-color:rgba(200,148,31,.25);color:#8A6414}
.sectionAssuredBadge{background:#F3F2ED;border:none;color:#83827A}
.sectionViewAll{background:var(--text);box-shadow:none;width:34px;height:34px}
.sectionCarousel{padding:0 14px 16px}
.heroCarousel{border-radius:20px;box-shadow:var(--shadow-soft);border:1px solid var(--line)}
.whatsUpdatesCard{
  background:var(--card);border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-soft);
}
.homeCategorySection{background:transparent}
.sectionTabBar{background:rgba(255,255,255,.9);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}

/* ── Sticky cart: one loud, confident green ── */
.stickyCartBtn{
  background:#0C831F;border:none;color:#fff;border-radius:999px;
  box-shadow:0 14px 34px rgba(12,131,31,.35);
}
.stickyCartBtn span:last-child{background:rgba(255,255,255,.22);color:#fff}

/* ── Assistant pill: quiet glass ── */
.aiFab{
  background:rgba(255,255,255,.9);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border:1px solid var(--line);box-shadow:var(--shadow-lift);
}
.aiFabCta{color:var(--text)}

/* ── Bottom nav: glass hairline ── */
.bottomNav{
  background:rgba(255,255,255,.88);
  -webkit-backdrop-filter:blur(16px) saturate(1.4);backdrop-filter:blur(16px) saturate(1.4);
  border-top:1px solid var(--line);box-shadow:none;
}

/* ── Orders page ── */
.pageTopBar .pageTitle{font-weight:800;letter-spacing:-.02em;flex:1;min-width:0}
.orderCard{border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-soft)}
.orderMoney{font-weight:800;letter-spacing:-.03em}
.statusChip{font-weight:700;letter-spacing:.01em}
.statusChip--placed{background:#F3F2ED;color:#6B6A63}
.statusChip--accepted{background:#EDF3FC;color:#2563EB}
.statusChip--delivery{background:#FDF3E7;color:#C2660A}
.statusChip--delivered{background:#EDF7EF;color:#0A6E1A}
.statusChip--cancelled{background:#FBEFED;color:#C0392B}
.orderThumbStrip .orderThumb{border-color:var(--card)}
.orderThumbMore{background:#F3F2ED;border-color:var(--card);color:var(--muted)}
.buyAgainPill{background:transparent;border-color:#0C831F;color:#0A6E1A}

/* ── Sheets, cards, buttons ── */
.bottomSheet{border-radius:24px 24px 0 0}
.checkoutCard,.checkoutPage .checkoutCard{border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-soft)}
.submitBtn{
  background:#0C831F;border:none;border-radius:14px;
  box-shadow:0 10px 26px rgba(12,131,31,.30);font-family:var(--font-display);
}
.checkoutEtaStrip{background:#EDF7EF;border-color:rgba(12,131,31,.16);color:#0A4D18}
.cartTotalLine strong{font-family:var(--font-display);color:var(--text)}
.consumerMainPanel{box-shadow:none}

/* Legacy tint utilities that fought the calm look */
.homeFeedPanel{background:transparent}
body.home-feed-mode{background:var(--bg)}


/* ── Sub-page back navigation: always-reachable sticky bar + clear button ──── */
.pageTopBar--sticky{
  position:sticky;top:0;z-index:60;margin:0 -12px;padding:12px 12px;
  background:rgba(247,246,243,.9);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid var(--line);
}
.pageBackBtn{
  width:40px;height:40px;flex:0 0 auto;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--card);border:1px solid var(--line);color:var(--text);
  box-shadow:var(--shadow-soft);text-decoration:none;
  transition:background .18s ease,box-shadow .18s ease;
}
.pageBackBtn:hover{background:#F1F0EA;box-shadow:var(--shadow-lift)}
.pageBackBtn:active{transform:scale(.94)}
.searchPageTop{display:flex;align-items:center;gap:10px}
.searchBackBtn{width:42px;height:42px}


/* ============================================================================
   EDITORIAL LAYER — 2026-07-03 (homeessentials.in-inspired, see DESIGN.md)
   White canvas · ONE deep-green accent · Jost display + Source Sans 3 body ·
   story-circle categories · badge/ribbon cards with full-width CTAs ·
   two-tone section titles · solid green footer. Appended last: wins cascade.
   ============================================================================ */
:root{
  --bg:#FFFFFF;
  --card:#FFFFFF;
  --text:#2C2D2E;
  --muted:#6E6E6B;
  --line:#ECEAE6;
  --accent:#0A6E1A;
  --accent-deep:#054016;
  --ribbon:#2C2D2E;
  --font-display:"Jost","Plus Jakarta Sans",system-ui,sans-serif;
  --font-ui:"Source Sans 3","Source Sans Pro","Inter",system-ui,sans-serif;
  --shadow-soft:0 1px 2px rgba(44,45,46,.04),0 10px 28px rgba(44,45,46,.06);
}
body,body.home-feed-mode{background:var(--bg)}
.pageTopBar--sticky{background:rgba(255,255,255,.92)}

/* Announcement bar */
.announceBar{
  background:var(--accent-deep);color:#fff;text-align:center;
  font:600 12px/1 var(--font-ui);letter-spacing:.04em;
  padding:9px 12px;
}
.announceBar b{color:#FFD98A;font-weight:700}

/* Header: pure white, wordmark feel */
.homeFixedHeader{background:rgba(255,255,255,.94);border-bottom:1px solid var(--line)}
.homeSearchBrandName{font-family:var(--font-display);font-weight:600;letter-spacing:.02em;text-transform:none}
.etaPill,.etaPill--header{background:#F4F9F4;color:var(--accent-deep);border-color:rgba(10,110,26,.14)}

/* Category story circles */
.catStory{gap:8px}
.catStoryRing{
  width:74px;height:74px;border-radius:50%;padding:3px;flex:0 0 auto;display:block;
  border:2px solid var(--accent);transition:transform .18s ease;
}
.catIconTile:hover .catStoryRing{transform:translateY(-2px)}
.catStoryImg{
  width:100%;height:100%;border-radius:50%;overflow:hidden;background:#F6F5F2;
  display:flex;align-items:center;justify-content:center;
}
.catStoryImg img{width:100%;height:100%;object-fit:cover}
.catStoryLetter{font:600 22px var(--font-display);color:var(--accent)}
.categoryScrollRow .catIconTile{width:82px}
.catIconLabel{font:600 11.5px/1.3 var(--font-ui);color:var(--text)}
.homeCategoryTitle{font-family:var(--font-display);font-weight:600;font-size:19px;letter-spacing:.01em}
.homeCategorySeeAll{color:var(--accent);font-weight:700}

/* Hero: editorial copy treatment */
.heroCarousel{border-radius:16px;border:1px solid var(--line);box-shadow:none}
.heroSlideTitle{
  font-family:var(--font-display);font-weight:500;font-size:20px;
  letter-spacing:.10em;text-transform:uppercase;
}
.heroSlideSub{font-family:var(--font-ui);font-weight:600;letter-spacing:.02em}

/* Section blocks: airy editorial, two-tone titles, View More pill */
.feedSectionBlock{border:none;border-top:1px solid var(--line);border-radius:0;box-shadow:none;margin-bottom:4px}
.sectionHead{padding:20px 4px 8px}
.sectionTitle{font-family:var(--font-display);font-weight:600;font-size:20px;color:var(--text);letter-spacing:.01em}
.titleAccent{color:var(--accent)}
.sectionBadges{margin-top:6px}
.sectionPriceChip{background:#F6F5F2;border:none;color:#8A6414}
.sectionAssuredBadge{background:transparent;border:none;color:var(--muted);padding-left:0}
.sectionViewAll{
  width:auto;height:auto;border-radius:999px;background:#F4F4F2;color:var(--text);
  font:600 12px var(--font-ui);padding:8px 14px;box-shadow:none;
}
.sectionCarousel{padding:6px 4px 18px}

/* Product cards: editorial — badge chip, dark ribbon, full-width CTA */
.productCard{border:1px solid var(--line);border-radius:14px;box-shadow:none;transition:box-shadow .2s ease}
@media (min-width:900px){ .productCard:hover{box-shadow:var(--shadow-soft);transform:none} }
.productImageWrap{background:#FBFAF8;border-bottom:none;padding:10px;aspect-ratio:1/1}
.offRibbon{
  position:absolute;left:0;bottom:8px;z-index:2;
  background:var(--ribbon);color:#fff;font:700 10px/1 var(--font-ui);
  letter-spacing:.05em;padding:5px 8px;border-radius:0 4px 4px 0;
}
.discountPill{display:none}
.stockBadge,.productTopBadge{border-radius:4px;font-weight:700}
.productTopBadge--gold{background:#E9F6EC;color:#0A6E1A}
.productBody{padding:10px 12px 12px}
.productName{
  font:600 13.5px/1.4 var(--font-ui);color:var(--text);margin-top:0;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  min-height:38px;
}
.priceRow{margin-top:6px}
.productPrice{font-family:var(--font-ui);font-weight:700;font-size:16px;letter-spacing:0;color:var(--text)}
.productMrp{font-size:12.5px;text-decoration:line-through;color:#A2A19C}
.productMetaRow{margin-top:6px}
.productRating,.productEta{background:transparent;border:none;padding:2px 0;color:var(--muted)}
.cardCtaWrap{margin-top:10px}
.cardCta{
  width:100%;border:none;border-radius:999px;padding:10px 12px;cursor:pointer;
  background:var(--accent);color:#fff;font:700 13px var(--font-ui);letter-spacing:.02em;
  transition:background .18s ease;
}
.cardCta:hover{background:var(--accent-deep)}
.cardCta:disabled{background:#EFEEEA;color:#A2A19C;cursor:default}
.cardStepper{
  display:flex;align-items:center;justify-content:space-between;width:100%;
  background:#fff;border:1.5px solid var(--accent);border-radius:999px;overflow:hidden;
}
.cardStepper button{
  width:38px;height:38px;border:none;background:transparent;color:var(--accent);
  font-size:18px;font-weight:700;cursor:pointer;
}
.cardStepper span{font:700 14px var(--font-ui);color:var(--accent-deep)}
.productCarouselTrack .productCard{flex:0 0 168px}
.productCard--carousel{min-width:168px;max-width:168px}

/* Sticky cart + assistant keep the single-accent rule */
.stickyCartBtn{background:var(--accent);box-shadow:0 12px 30px rgba(10,110,26,.30)}
.aiFab{border-color:var(--line)}

/* Delivery location: quiet hairline card */
.deliveryLocationPill{border-radius:14px;box-shadow:none}
.deliveryLocationPin{background:#F4F9F4;color:var(--accent)}

/* WhatsApp card + whats updates quieter */
.whatsUpdatesCard{border-radius:14px;box-shadow:none}

/* Orders + checkout inherit type; align chips to the accent story */
.orderCard{border-radius:14px;box-shadow:none}
.orderMoney{font-family:var(--font-ui);font-weight:800}
.statusChip--delivered{background:#E9F6EC;color:#0A6E1A}
.buyAgainPill{border-color:var(--accent);color:var(--accent-deep);background:#fff}
.checkoutCard,.checkoutPage .checkoutCard{border-radius:14px;box-shadow:none}
.submitBtn{background:var(--accent);border-radius:999px;font-family:var(--font-ui);font-weight:700}
.checkoutEtaStrip{background:#F4F9F4;border-color:rgba(10,110,26,.14);color:var(--accent-deep)}

/* Solid green footer (reference: solid terracotta) */
.siteFooter{
  margin-top:26px;background:var(--accent-deep);color:#fff;
  padding:26px 0 calc(var(--nav-h) + 90px);
}
.siteFooterBrand{display:flex;align-items:center;gap:12px;margin-bottom:20px}
.siteFooterBrand img{border-radius:12px;background:#fff;padding:4px}
.siteFooterName{font-family:var(--font-display);font-weight:600;font-size:18px;letter-spacing:.02em}
.siteFooterTagline{font:400 12.5px var(--font-ui);color:rgba(255,255,255,.75);margin-top:3px}
.siteFooterCols{display:flex;gap:40px;flex-wrap:wrap;margin-bottom:20px}
.siteFooterCol{display:flex;flex-direction:column;gap:9px}
.siteFooterHead{font:600 12px var(--font-ui);letter-spacing:.10em;text-transform:uppercase;color:rgba(255,255,255,.65);margin-bottom:2px}
.siteFooterCol a{color:#fff;font:500 13.5px var(--font-ui);text-decoration:none}
.siteFooterCol a:hover{text-decoration:underline}
.siteFooterFine{
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.18);padding-top:14px;
  font:400 12px var(--font-ui);color:rgba(255,255,255,.7);
}


/* ── Hero copy: editorial placement inside the banner's empty left panel ──── */
.heroSlideCopy{
  position:absolute;left:0;top:0;bottom:0;right:auto;width:46%;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;
  padding:12px 10px 12px 22px;background:none;text-align:left;
}
.heroSlideTitle{
  font-family:var(--font-display);font-weight:500;
  font-size:clamp(12.5px,3.4vw,24px);line-height:1.18;
  letter-spacing:.05em;text-transform:uppercase;
}
.heroSlideSub{
  display:inline-block;margin-top:7px;opacity:1;white-space:nowrap;
  font:600 10px/1 var(--font-ui);letter-spacing:.04em;
  padding:5px 9px;border-radius:999px;border:1px solid currentColor;
  max-width:100%;overflow:hidden;text-overflow:ellipsis;
}
@media (min-width:900px){
  .heroSlideCopy{padding-left:36px}
  .heroSlideTitle{font-size:30px}
}


/* ── Watch & Shop: vertical shoppable video cards (reference pattern) ──────── */
.watchShop{margin:6px 0 14px}
.watchShopRow{
  display:flex;gap:10px;overflow-x:auto;padding:4px 2px 12px;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.watchShopRow::-webkit-scrollbar{display:none}
.watchCard{
  position:relative;flex:0 0 200px;aspect-ratio:9/16;border-radius:16px;overflow:hidden;
  background:#111;scroll-snap-align:start;border:1px solid var(--line);
}
.watchCard video{width:100%;height:100%;object-fit:cover;display:block}
.watchCardOverlay{
  position:absolute;left:8px;right:8px;bottom:8px;display:flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.94);border-radius:12px;padding:8px;
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
}
.watchCardOverlay img{width:36px;height:36px;border-radius:8px;object-fit:contain;background:#F6F5F2;flex:0 0 auto}
.watchCardInfo{flex:1;min-width:0}
.watchCardName{font:600 11.5px/1.3 var(--font-ui);color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.watchCardPrice{font:700 13px var(--font-ui);color:var(--text);margin-top:1px}
.watchCardAdd{
  border:none;border-radius:999px;background:var(--accent);color:#fff;
  font:700 12px var(--font-ui);padding:8px 14px;cursor:pointer;flex:0 0 auto;
}


/* ── Map picker (Leaflet) — full-screen, center-fixed pin, bottom confirm sheet ── */
.locationOpenMapBtn{
  width:100%;display:flex;align-items:center;justify-content:center;gap:8px;
  margin-top:10px;padding:12px;border-radius:12px;border:1px solid var(--line);
  background:var(--card);color:var(--text);font:600 13.5px var(--font-ui);cursor:pointer;
}
.locationOpenMapBtn svg{width:18px;height:18px;fill:var(--muted)}
.mapPickerOverlay{
  position:fixed;inset:0;z-index:200;background:var(--card);
  display:flex;flex-direction:column;
}
.mapPickerOverlay.hidden{display:none}
.mapPickerHeader{
  display:flex;align-items:center;gap:12px;padding:14px 16px;z-index:2;
  background:rgba(255,255,255,.95);border-bottom:1px solid var(--line);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
}
.mapPickerBack{
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:#fff;
  display:flex;align-items:center;justify-content:center;color:var(--text);cursor:pointer;flex:0 0 auto;
}
.mapPickerTitle{font:600 14px var(--font-ui);color:var(--text)}
.mapPickerBody{position:relative;flex:1;min-height:0}
.mapPickerMap{position:absolute;inset:0;width:100%;height:100%}
.mapPickerCenterPin{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-100%);
  z-index:401;pointer-events:none;color:var(--text);width:38px;height:38px;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,.28));
}
.mapPickerFooter{
  padding:16px;background:#fff;border-top:1px solid var(--line);z-index:2;
  border-radius:20px 20px 0 0;box-shadow:0 -8px 24px rgba(44,45,46,.08);
}
.mapPickerAddr{font:700 15px var(--font-ui);color:var(--text)}
.mapPickerDist{font:600 12.5px var(--font-ui);color:var(--muted);margin-top:4px}
.mapPickerDist.ok{color:var(--accent)}
.mapPickerDist.far{color:#C0392B}
.mapPickerConfirm{
  width:100%;margin-top:12px;padding:13px;border:none;border-radius:999px;
  background:var(--accent);color:#fff;font:700 14px var(--font-ui);cursor:pointer;
}
.mapPickerConfirm:disabled{background:#EFEEEA;color:#A2A19C}
.leaflet-control-zoom a{border-radius:8px!important}

/* ============================================================================
   PREMIUM WARM REDESIGN — 2026-07-03
   Warm ivory canvas + deep forest green + muted gold trim, replacing the
   stark all-white editorial look. The delivery-location bar is rebuilt as a
   compact, rich chip — it no longer stretches full-width with mostly empty
   space next to it. Appended last: wins the cascade.
   ============================================================================ */
:root{
  --bg:#F6F1E4;
  --line:#E7DFCB;
  --muted:#7A7362;
  --ink-hint:#9C9484;
  --gold:#C8941F;
  --gold-soft:#FCF3DD;
  --shadow-soft:0 1px 2px rgba(44,45,46,.05),0 12px 30px rgba(84,68,20,.08);
  --shadow-lift:0 2px 4px rgba(44,45,46,.06),0 18px 40px rgba(84,68,20,.12);
}
body,body.home-feed-mode{background:var(--bg)}

/* Header: warm glass instead of flat white; gold hairline instead of grey */
.homeFixedHeader{background:rgba(247,241,228,.9);border-bottom:1px solid rgba(200,148,31,.16)}
.announceBar{border-bottom:1px solid rgba(200,148,31,.3)}
.homeSearchFieldWrap{background:#fff;border-color:var(--line)}
.etaPill,.etaPill--header{
  background:linear-gradient(180deg,var(--gold-soft),#fff8e7);
  color:#6F4E0E;border:1px solid rgba(200,148,31,.3);font-weight:800;
}

/* Delivery-location: a compact, rich chip — sized to its content (not the
   full container width), floating on the ivory canvas instead of being a
   mostly-empty white strip. */
.homeLocationBar{background:transparent;padding:14px 0 8px}
.deliveryLocationPill{
  display:flex;width:fit-content;max-width:min(420px,88%);
  background:linear-gradient(135deg,#0a6e1a 0%,#054016 100%);
  border:1px solid rgba(200,148,31,.35);
  border-radius:18px;padding:11px 16px 11px 12px;
  box-shadow:0 10px 26px rgba(5,64,22,.24);
}
.deliveryLocationPin{background:rgba(255,255,255,.14);color:var(--gold)}
.deliveryLocationTitle{color:rgba(247,241,228,.65)}
.deliveryLocationTitle.locationSet{color:var(--gold)}
.deliveryLocationLine{color:#FBF7EC;font-weight:800}
.deliveryLocationEta{color:rgba(247,241,228,.8)}
.deliveryStatusDot{background:var(--gold)}
.deliveryLocationChevron{display:flex;background:rgba(255,255,255,.14);color:#FBF7EC}
@media (max-width:480px){ .deliveryLocationPill{max-width:92%} }

/* Footer: gold seam trim */
.siteFooter{border-top:3px solid var(--gold)}

/* ============================================================================
   CLEAN QUICK-COMMERCE REDESIGN — 2026-07-23
   Replaces the warm-ivory/gold editorial look with a bright, trustworthy
   grocery-app direction: one disciplined green on a clean neutral canvas,
   Plus Jakarta Sans throughout, softer shadows, calmer header stack, and
   fixed-frame product image wells so cards never render as blank gaps.
   Appended last: wins the cascade. (Approved preview, 2026-07-23.)
   ============================================================================ */
:root{
  --bg:#F5F7F5;
  --card:#FFFFFF;
  --text:#14211B;
  --muted:#6A7772;
  --ink-hint:#9AA6A1;
  --line:#E7ECE8;
  --accent:#0E8A43;
  --accent-deep:#0A5F30;
  --accent-mid:#12A24E;
  --mint:#E6F4EA;
  --mint-2:#F0F8F2;
  --font-display:"Plus Jakarta Sans",system-ui,-apple-system,sans-serif;
  --font-ui:"Plus Jakarta Sans",system-ui,-apple-system,sans-serif;
  --shadow-soft:0 1px 2px rgba(20,33,27,.05),0 2px 8px rgba(20,33,27,.05);
  --shadow-lift:0 6px 22px rgba(10,63,34,.10);
  --ribbon:#0A5F30;
  --radius:16px;
  /* keep legacy brand vars aligned so any component still reading them matches */
  --brand-lime:#0E8A43; --brand-lime-dark:#0A5F30; --brand-lime-soft:#E6F4EA;
  --brand-teal:#0A5F30; --brand-teal-light:#0E8A43; --brand-teal-mid:#12A24E;
  --brand-pastel:#D6EEDD; --on-pastel:#0A3D22; --green-deep:#0A3D22;
  --premium-image:#EFF5F1; --gold:#0E8A43; --gold-soft:#E6F4EA; --premium-gold:#0A5F30;
}
body,body.home-feed-mode{background:var(--bg);color:var(--text);font-family:var(--font-ui)}

/* ---- Header stack: three calm layers, no competing green/gold blocks ---- */
.announceBar{
  background:linear-gradient(90deg,var(--accent-deep),var(--accent));
  color:#EAF7EE;border-bottom:none;letter-spacing:.01em;font-weight:600;
}
.announceBar b{color:#fff}
.homeFixedHeader{
  background:var(--mint);border-bottom:1px solid rgba(14,138,67,.10);
  box-shadow:none;
}
.homeSearchBrandName{
  font-family:var(--font-display);font-weight:800;letter-spacing:-.01em;
  color:var(--accent-deep);text-transform:none;
}
.homeSearchLogo{border:2px solid #fff;box-shadow:var(--shadow-soft)}
.homeSearchFieldWrap{
  background:#fff;border:1px solid rgba(14,138,67,.10);border-radius:14px;
  box-shadow:var(--shadow-lift);padding:11px 13px;
}
.homeSearchInput{font-size:14px}
.homeSearchVoice{background:var(--mint);color:var(--accent)}
.etaPill,.etaPill--header{
  background:#fff;color:var(--accent-deep);
  border:1px solid rgba(14,138,67,.14);font-weight:800;box-shadow:var(--shadow-soft);
}

/* ---- Delivery-location: clean light chip (was dark-green/gold gradient) ---- */
.homeLocationBar{
  background:transparent;padding:12px 0 6px;border-bottom:none;
}
.deliveryLocationPill{
  display:flex;align-items:center;gap:10px;width:fit-content;max-width:min(460px,92%);
  background:#fff;border:1px solid var(--line);
  border-radius:14px;padding:9px 14px 9px 10px;box-shadow:var(--shadow-soft);
}
.deliveryLocationPin{background:var(--mint);color:var(--accent)}
.deliveryLocationTitle{color:var(--muted)}
.deliveryLocationTitle.locationSet{color:var(--accent)}
.deliveryLocationLine{color:var(--text);font-weight:800}
.deliveryLocationEta{color:var(--muted)}
.deliveryStatusDot{background:var(--accent)}
.deliveryLocationChevron{display:flex;background:var(--mint-2);color:var(--muted)}

/* ---- Section headings ---- */
.homeCategoryTitle,.sectionTitle{
  font-family:var(--font-display);font-weight:800;font-size:17px;
  letter-spacing:-.015em;color:var(--text);text-transform:none;
}
.homeCategorySeeAll,.titleAccent{color:var(--accent);font-weight:800}
.sectionViewAll{background:var(--mint);color:var(--accent-deep);font-weight:800}
.sectionPriceChip{background:var(--mint);color:var(--accent-deep)}
.sectionAssuredBadge{color:var(--muted)}

/* ---- Category tiles: rounded-square, clean (was story circles) ---- */
.catStoryRing{
  width:66px;height:66px;border-radius:20px;padding:0;
  border:1px solid var(--line);background:var(--mint-2);
  box-shadow:var(--shadow-soft);overflow:hidden;
}
.catStoryImg{border-radius:19px;background:var(--mint-2)}
.catStoryLetter{color:var(--accent);font-family:var(--font-display);font-weight:800}
.catIconLabel{font:700 11px/1.2 var(--font-ui);color:var(--text)}
.categoryScrollRow .catIconTile{width:70px}

/* ---- Hero ---- */
.heroCarousel{
  border-radius:var(--radius);border:1px solid var(--line);
  box-shadow:var(--shadow-lift);margin-top:8px;
}
.heroSlideTitle{
  font-family:var(--font-display);font-weight:800;font-size:20px;
  letter-spacing:-.01em;text-transform:none;
}
.heroSlideSub{font-family:var(--font-ui);font-weight:500;letter-spacing:0}
.heroDot.active{background:#fff;transform:none;width:16px;border-radius:999px}

/* ---- Trust row (added to home.html) ---- */
.trustRow{
  display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin:14px 0 2px;
}
.trustCard{
  background:var(--card);border:1px solid var(--line);border-radius:12px;
  padding:11px 8px;text-align:center;box-shadow:var(--shadow-soft);
}
.trustIco{
  width:30px;height:30px;border-radius:9px;background:var(--mint);
  display:flex;align-items:center;justify-content:center;margin:0 auto 7px;color:var(--accent);
}
.trustIco svg{width:17px;height:17px}
.trustT{font:800 11.5px/1.2 var(--font-ui);color:var(--text);letter-spacing:-.01em}
.trustS{font:600 9.5px/1.2 var(--font-ui);color:var(--muted);margin-top:2px}

/* ---- Product cards ---- */
.productCard{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
@media (min-width:900px){ .productCard:hover{box-shadow:var(--shadow-lift);transform:translateY(-2px)} }
.productImageWrap{
  background:linear-gradient(135deg,#F6FAF7,#EEF4F0);
  border-bottom:1px solid var(--line);padding:10px;aspect-ratio:1/1;
}
/* fixed-frame well: a soft tinted tile shows while the photo lazy-loads —
   the card never renders as a stark blank gap. No blend mode, so product
   photos on non-white backgrounds are never muddied. */
.productImageSlide{background:transparent}
.productImageSlide img{width:100%;height:100%;object-fit:contain}
.productImageDot.active{background:var(--accent)}
/* discount: top-left rounded green badge (was bottom dark ribbon) */
.offRibbon{
  left:8px;bottom:auto;top:8px;
  background:var(--accent-deep);color:#fff;font:800 10px/1 var(--font-ui);
  letter-spacing:.01em;padding:4px 7px;border-radius:8px;
}
.productBody{padding:10px 11px 12px}
.productName{
  font:700 12.5px/1.28 var(--font-ui);color:var(--text);min-height:32px;
}
.priceRow{margin-top:6px}
.productPrice{font-family:var(--font-ui);font-weight:800;font-size:15.5px;letter-spacing:-.01em;color:var(--text)}
.productMrp{font-size:11.5px;color:var(--ink-hint);text-decoration:line-through;font-weight:600}
.productMetaRow{margin-top:6px}
.productRating,.productEta{background:transparent;border:none;padding:0;color:var(--muted);font-weight:700}
.productNewChip{background:var(--mint);color:var(--accent-deep);border-radius:999px;padding:3px 8px;font-weight:800}
.cardCtaWrap{margin-top:10px}
.cardCta{
  width:100%;border:1px solid rgba(14,138,67,.24);border-radius:12px;padding:10px 12px;
  background:var(--mint);color:var(--accent-deep);font:800 12.5px var(--font-ui);letter-spacing:.01em;
}
.cardCta:hover{background:#DBEFE1}
.cardCta:disabled{background:#EEF1EF;color:var(--ink-hint);border-color:var(--line)}
.cardStepper{border:1.5px solid var(--accent);border-radius:12px}
.cardStepper button{color:var(--accent)}
.cardStepper span{color:var(--accent-deep)}

/* ---- Sticky cart + bottom nav ---- */
.stickyCartBtn{
  background:var(--accent);color:#fff;border:1px solid var(--accent);
  border-radius:16px;box-shadow:0 10px 24px rgba(10,63,34,.30);
}
.stickyCartBtn span:last-child{background:rgba(255,255,255,.22);color:#fff}
.bottomNav{
  background:rgba(255,255,255,.96);border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(20,33,27,.14);
}
.navItem.active{color:var(--accent);background:var(--mint)}
.navItem.active .navIcon,.navItem.active .navIconSvg{color:var(--accent)}

/* ---- WhatsApp updates card + assistant ---- */
.whatsUpdatesCard{border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-soft)}
.whatsUpdatesIcon{background:var(--mint);color:var(--accent)}

/* ---- Footer ---- */
.siteFooter{border-top:none;background:var(--accent-deep)}

/* ---- Location gate + not-serviceable: align accent ---- */
.locationDetectBtn{background:var(--accent-deep)}
.locationGatePin{background:var(--mint);color:var(--accent)}
.mapPickerConfirm,.notServiceableChange,.emptyStateBtn,.submitBtn{background:var(--accent)}

/* Savings lines in the basket: green (was legacy Flipkart blue #256FEF) */
.cartSavingsLine span,.cartSavingsLine strong{color:var(--accent)}

/* ---- Sticky checkout bar: a floating, contained pill ----
   Was in-flow (position:relative) and full container width on desktop, so it
   rendered as a green slab merged into the green footer, with a red handle
   poking out. Now it floats over the page, contained + shadowed, clearly
   separate from the footer at every scroll position. */
.stickyCartBar{
  position:fixed;left:50%;right:auto;
  transform:translateX(-50%);
  bottom:calc(var(--nav-h) + var(--safe-bottom) + 10px);
  width:calc(100% - 24px);max-width:640px;z-index:95;
}
@media (min-width:900px){
  .stickyCartBar{width:min(720px,calc(100% - 48px));bottom:24px}
}
.stickyCartBtn{
  background:var(--accent);color:#fff;border:1px solid rgba(255,255,255,.14);
  border-radius:15px;padding:14px 18px;
  box-shadow:0 16px 38px rgba(4,38,19,.40);
}
.stickyCartBtn span:last-child{background:rgba(255,255,255,.22);color:#fff}
/* free-delivery handle: brand-toned, not the clashing red */
.freeDeliveryHandle{
  right:7px;width:32px;height:32px;
  background:rgba(255,255,255,.16);color:#fff;box-shadow:none;
}
.freeDeliveryHandle.unlocked{background:rgba(255,255,255,.28);box-shadow:none}
/* free-delivery pill floats just ABOVE the bar (no longer overlapping it) */
.freeDeliveryPill{
  top:auto;bottom:calc(100% + 8px);right:0;transform:none;
  border-color:var(--line);box-shadow:var(--shadow-lift);
}

/* ============================================================================
   AMAZON-STYLE LANDING — 2026-07-23
   First-impression restructure modeled on amazon.in, in Modi99's green:
   two-tier dark header (offer strip → deep-green search bar → delivery strip),
   banner-first layout, and a collage-card grid (Deal of the Day with a live
   IST-midnight countdown + 2×2 category collages) overlapping the banner on
   desktop. Appended after the CLEAN layer: wins the cascade.
   ============================================================================ */

/* ---- Tier 0: offer strip — near-black green ---- */
.announceBar{background:#081F12;color:#B9D8C5}
.announceBar b{color:#fff}

/* ---- Tier 1: premium dark flat bar, contained search ---- */
.homeFixedHeader{
  background:#0F3A20;
  border-bottom:none;
}
.homeSearchBrandName{color:#fff}
.homeSearchLogo{border-color:rgba(255,255,255,.4)}
.homeSearchFieldWrap{
  background:#fff;border:none;border-radius:9px;
  padding:9px 5px 9px 13px;
  box-shadow:0 1px 3px rgba(0,0,0,.22);
}
/* mic styled as the Amazon-orange action block on the field's right edge */
.homeSearchVoice{
  width:36px;height:36px;border-radius:7px;
  background:#F08C1E;color:#fff;
}

/* ---- Tier 2: dark sub-strips (delivery + category tabs), full-bleed ---- */
.homeLocationBar{padding:0;background:transparent;border-bottom:none}
.deliveryLocationPill{
  width:auto;max-width:none;display:flex;align-items:center;gap:9px;
  margin:0 -12px;background:#164426;border:none;border-radius:0;
  padding:8px 14px;box-shadow:none;
}
.deliveryLocationPin{background:rgba(255,255,255,.12);color:#fff;width:26px;height:26px}
.deliveryLocationMain{display:flex;align-items:baseline;gap:8px;min-width:0;flex:1}
.deliveryLocationTitle{display:none}
.deliveryLocationLine{color:#fff;font-size:13px;font-weight:800;flex-shrink:1}
.deliveryLocationEta{color:rgba(255,255,255,.72);margin-top:0;flex-shrink:0}
.deliveryStatusDot{background:#7DDCA3}
.deliveryLocationChevron{display:flex;background:transparent;color:rgba(255,255,255,.75)}

.sectionTabBar{
  background:#164426;border-bottom:none;border-radius:0;
  margin:0 -12px;padding:0 14px;gap:20px;
}
.sectionTab .sectionTabLabel{color:rgba(255,255,255,.8);font-weight:700}
.sectionTab.active .sectionTabLabel{color:#fff}
.sectionTabUnderline{background:#F08C1E}

@media (min-width:900px){
  .deliveryLocationPill,.sectionTabBar{
    margin-left:calc(var(--content-gutter-desktop) * -1);
    margin-right:calc(var(--content-gutter-desktop) * -1);
  }
  .homeSearchFieldWrap{max-width:640px}
  .desktopNav .navItem{
    background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);
    color:#fff;box-shadow:none;
  }
  .desktopNav .navItem:hover{background:rgba(255,255,255,.22)}
  .desktopNav .navItem.active{
    background:#fff;color:var(--accent-deep);border-color:transparent;
    box-shadow:0 8px 18px rgba(4,38,19,.25);
  }
}

/* ---- Shop by category: fill the full row width ---- */
.categoryIconRow.categoryScrollRow{margin:0 -12px;padding:2px 12px 8px}
@media (min-width:900px){
  .categoryIconRow.categoryScrollRow{
    margin:0;padding:6px 0 12px;
    justify-content:space-between;gap:12px;overflow-x:visible;
  }
  .categoryScrollRow .catIconTile{width:auto;flex:1 1 0;min-width:0}
  .catStoryRing{width:96px;height:96px;border-radius:26px}
  .catStoryImg{border-radius:25px}
  .catIconLabel{font-size:13px;max-width:none;white-space:nowrap}
}

/* ---- Banner: compact, edge-to-edge, fades into the page (Amazon) ---- */
.heroCarousel{
  margin:0 -12px;border-radius:0;border:none;box-shadow:none;
  --hero-fade:var(--bg,#F5F7F5);
}
.heroCarousel::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:44%;
  background:linear-gradient(180deg,transparent,var(--hero-fade));
  pointer-events:none;z-index:2;
}
.heroCarouselDots{z-index:3}
.heroSlide img{aspect-ratio:4/1}
@media (min-width:900px){
  .heroCarousel{
    margin:0 calc(var(--content-gutter-desktop) * -1);
    --hero-fade:var(--card,#fff);
  }
  .heroSlide img{aspect-ratio:3.8/1}
}

/* ---- Collage grid (Amazon signature) ---- */
.collageGrid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;
  margin:-10px 0 4px;position:relative;z-index:5;
}
.collageCard{
  background:var(--card);border:1px solid var(--line);border-radius:12px;
  padding:13px 13px 12px;box-shadow:var(--shadow-soft);
  display:flex;flex-direction:column;gap:10px;min-width:0;
  color:inherit;text-decoration:none;cursor:pointer;
}
.collageCard[hidden]{display:none!important}
.collageTitle{
  font:800 14.5px/1.25 var(--font-display);letter-spacing:-.015em;color:var(--text);
}
.collageQuad{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.collageCell{
  position:relative;aspect-ratio:1/1;border-radius:8px;overflow:hidden;
  background:linear-gradient(135deg,#F6FAF7,#EEF4F0);
  display:flex;align-items:center;justify-content:center;
}
.collageCell img{width:100%;height:100%;object-fit:contain;padding:7px}
.collageCellOff{
  position:absolute;top:5px;left:5px;z-index:2;
  background:var(--brand-offer,#E85D04);color:#fff;
  font:800 9px/1 var(--font-ui);padding:3px 6px;border-radius:6px;
  letter-spacing:.01em;
}
.collageLink{
  margin-top:auto;color:var(--accent);font:800 12.5px var(--font-ui);
  border:none;background:none;padding:0;text-align:left;
}
.collageCard:hover .collageLink{text-decoration:underline}
.dealTimer{
  display:inline-flex;align-items:center;gap:5px;width:fit-content;
  background:var(--amber-soft,#FDF1DF);color:#8A4B0A;
  font:800 11px/1 var(--font-ui);border-radius:999px;padding:5px 10px;
  margin-top:-3px;
}
.dealTimer b{font-variant-numeric:tabular-nums;letter-spacing:.03em}
@media (min-width:900px){
  .collageGrid{
    grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;
    margin-top:-64px;padding:0 6px;
  }
  .collageCard{padding:16px}
  .collageTitle{font-size:16.5px}
  .heroCarousel{position:relative;z-index:1}
}

/* ============================================================================
   CART BAR (2-row) + AMAZON-STYLE FOOTER — 2026-07-24
   The sticky cart bar folds the free-delivery progress into one inline line
   (no stray handle circle / pop-up pill / broken close button); the chevron
   is a plain arrow, not a clickable-looking button. Footer matches the header
   dark green, spans full width, and gets a "Back to top" bar (Amazon).
   ============================================================================ */

/* ---- Sticky cart bar: single button, two stacked rows ---- */
.stickyCartBtn{
  flex-direction:column;align-items:stretch;justify-content:flex-start;
  gap:0;padding:0;overflow:hidden;
  background:var(--accent);color:#fff;border:1px solid rgba(255,255,255,.14);
  border-radius:15px;box-shadow:0 16px 38px rgba(4,38,19,.40);
}
.stickyFreeRow{
  display:flex;align-items:center;justify-content:center;gap:7px;
  padding:7px 16px;font:700 11.5px/1 var(--font-ui);letter-spacing:.01em;
  color:#EAF7EE;background:rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.stickyFreeRow[hidden]{display:none}
.stickyFreeRow.unlocked{color:#BFF0CF}
.stickyFreeIcon{flex:0 0 auto;opacity:.9}
.stickyMainRow{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  width:100%;align-self:stretch;flex:0 0 auto;
  padding:13px 18px;font:800 15px var(--font-ui);color:#fff;
}
/* The old base rule `.stickyCartBtn span:last-child` styled a circular chevron;
   it now wrongly matches every last-child span (main row, free-row text) and
   squished them to 30px. Fully neutralise it and size our elements explicitly. */
.stickyCartBtn span:last-child{
  width:auto;height:auto;min-width:0;flex:0 1 auto;
  border-radius:0;background:none;
}
.stickyFreeRow #freeDeliveryPillText{white-space:nowrap}
/* plain chevron — part of the button, NOT its own clickable pill */
.stickyChevron{
  font-size:20px;font-weight:800;line-height:1;opacity:.85;
  background:none;width:auto;height:auto;border-radius:0;flex:0 0 auto;
  display:inline-flex;align-items:center;
}

/* ---- Footer: header-dark-green, full-width, Amazon layout ---- */
.siteFooter{
  margin-top:32px;background:#0F3A20;color:#fff;padding:0;border-top:none;
}
.siteFooterTop{
  display:block;width:100%;border:none;cursor:pointer;
  background:#164426;color:#fff;
  font:700 13px var(--font-ui);letter-spacing:.02em;
  padding:15px 12px;text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .15s ease;
}
.siteFooterTop:hover{background:#1B5230}
.siteFooterInner{padding:34px 12px 26px}
.siteFooterCols{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:28px 40px;margin:0;align-items:start;
}
.siteFooterCol{display:flex;flex-direction:column;gap:11px;min-width:0}
.siteFooterCol--brand{gap:14px}
.siteFooterBrand{display:flex;align-items:center;gap:11px;margin-bottom:0}
.siteFooterBrand img{border-radius:11px;background:#fff;padding:3px;flex:0 0 auto}
.siteFooterName{
  font:800 17px var(--font-display);letter-spacing:-.01em;color:#fff;
}
.siteFooterTagline{
  font:500 13px/1.6 var(--font-ui);color:rgba(255,255,255,.7);max-width:34ch;
}
.siteFooterHead{
  font:800 11px var(--font-ui);letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.55);margin-bottom:3px;
}
.siteFooterCol a{
  color:rgba(255,255,255,.9);font:500 13.5px var(--font-ui);
  text-decoration:none;width:fit-content;
}
.siteFooterCol a:hover{color:#fff;text-decoration:underline}
.siteFooterBar{background:#0A2C17;padding:14px 0 calc(14px + var(--safe-bottom))}
.siteFooterFine{
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;padding:0 12px;
  border-top:none;font:500 12px var(--font-ui);color:rgba(255,255,255,.6);
}
@media (max-width:640px){
  .siteFooterCols{grid-template-columns:1fr 1fr;gap:24px 20px}
  .siteFooterCol--brand{grid-column:1 / -1}
}

/* ============================================================================
   AUTO-HIDE STICKY CHROME ON SCROLL — 2026-07-24
   Only the BOTTOM bars (sticky cart bar + bottom nav) slide away while
   scrolling down and return on scroll-up / at the top / near the bottom.
   The TOP header stays pinned: hiding it left the sticky "All | Kitchen |
   …" tab strip (top:52px) stranded with a gap above it, and hid the basket
   button — both looked wrong. Driven by JS toggling body.chrome-hidden.
   ============================================================================ */
.stickyCartBar{transition:transform .28s cubic-bezier(.4,0,.2,1)}
.bottomNav{transition:transform .28s cubic-bezier(.4,0,.2,1)}
/* keep the cart bar's horizontal centering while sliding it down */
body.chrome-hidden .stickyCartBar{transform:translateX(-50%) translateY(220%)}
body.chrome-hidden .bottomNav{transform:translateY(200%)}
@media (prefers-reduced-motion:reduce){
  .stickyCartBar,.bottomNav{transition:none}
}

/* ============================================================================
   THINNER TOP BAR (Amazon-style) — 2026-07-24
   The store name sat on its own line above a tall search field, making the
   pinned header ~90px. Collapse to a single compact row (logo + search),
   drop the redundant text wordmark (the logo carries the brand), and slim
   the field + announce strip.
   ============================================================================ */
.announceBar{padding:5px 12px;font-size:11px}
.homeFixedHeader{padding-top:calc(2px + var(--safe-top))}
.homeSearchStrip{align-items:center;gap:10px;padding:4px 0 6px}
.homeSearchBrandName{display:none}
.homeSearchBrandBlock{flex:1;min-width:0}
.homeSearchFieldWrap{margin-top:0;padding:7px 6px 7px 13px;border-radius:12px}
.homeSearchInput{font-size:13.5px}
.homeSearchLogo{width:34px;height:34px}
.homeSearchVoice{width:30px;height:30px}
@media (min-width:900px){
  /* the desktop header's inner wrapper carried 24px of vertical padding —
     that, not the content, is what made the dark-green band tall. */
  .homeFixedHeaderInner{padding:5px 0}
  .homeSearchStrip{padding:0}
  .homeSearchLogo{width:36px;height:36px}
  .homeSearchFieldWrap{padding:7px 6px 7px 13px}
  .desktopNav .navItem{padding:5px 12px}
  .homeHeaderDesktopActions{padding-top:0}
}

/* ============================================================================
   MODERN LIFT — 2026-07-24
   The page opened with 162px of stacked dark green (announce + header +
   location + category tabs) — a heavy wall that read as dated and pushed all
   product content below the fold. Modern quick-commerce (Blinkit / Zepto /
   Instamart) keeps ONE compact dark header and goes light + product-forward
   underneath. Plus: softer layered depth, hover lift, and image zoom.
   ============================================================================ */

/* ---- 1. Light delivery strip (was dark green band #164426) ---- */
.deliveryLocationPill{
  background:#fff;border-bottom:1px solid var(--line);
  padding:9px 14px;box-shadow:none;
}
.deliveryLocationPin{background:var(--mint);color:var(--accent)}
.deliveryLocationLine{color:var(--text)}
.deliveryLocationEta{color:var(--muted)}
.deliveryStatusDot{background:var(--accent)}
.deliveryLocationChevron{background:transparent;color:var(--muted)}

/* ---- 2. Light category tabs (was dark green band) ---- */
.sectionTabBar{
  background:rgba(255,255,255,.92);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
  top:calc(56px + var(--safe-top));
}
.sectionTab .sectionTabLabel{color:var(--muted);font-weight:700}
.sectionTab.active .sectionTabLabel{color:var(--accent-deep);font-weight:800}
.sectionTabUnderline{background:var(--accent)}
@media (min-width:900px){
  .sectionTabBar{top:calc(56px + var(--safe-top))}
}

/* ---- 3. Hero: lighter fade so the artwork isn't washed out ---- */
.heroCarousel::after{
  height:26%;
  background:linear-gradient(180deg,transparent,rgba(245,247,245,.55) 55%,var(--hero-fade));
}

/* ---- 4. Layered depth + hover lift on cards ---- */
.productCard,.collageCard{
  border-radius:18px;
  box-shadow:0 1px 2px rgba(20,33,27,.04),0 4px 16px rgba(20,33,27,.06);
  transition:transform .25s cubic-bezier(.22,1,.36,1),box-shadow .25s ease;
}
.productImageSlide img,.collageCell img{
  transition:transform .45s cubic-bezier(.22,1,.36,1);
}
@media (hover:hover) and (min-width:900px){
  .productCard:hover,.collageCard:hover{
    transform:translateY(-4px);
    box-shadow:0 4px 10px rgba(20,33,27,.05),0 18px 40px rgba(10,63,34,.15);
  }
  .productCard:hover .productImageSlide img{transform:scale(1.06)}
  .collageCard:hover .collageCell img{transform:scale(1.05)}
  .catIconTile:hover .catStoryRing{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(10,63,34,.16);
  }
}
.catStoryRing{transition:transform .25s cubic-bezier(.22,1,.36,1),box-shadow .25s ease}

/* ---- 5. Tactile press feedback ---- */
.cardCta,.addBtn,.imageAddBtn,.submitBtn,.heroCta,.sectionViewAll{
  transition:background .18s ease,transform .12s ease,box-shadow .18s ease;
}
.cardCta:active,.addBtn:active,.imageAddBtn:active,.submitBtn:active{transform:scale(.97)}
.stickyCartBtn{transition:transform .28s cubic-bezier(.4,0,.2,1),filter .15s ease}
.stickyCartBtn:active{filter:brightness(.95)}

/* ---- 6. Visible keyboard focus (was missing) ---- */
a:focus-visible,button:focus-visible,input:focus-visible,
.catIconTile:focus-visible,.productCard:focus-visible{
  outline:2px solid var(--accent);outline-offset:2px;border-radius:10px;
}
.homeFixedHeader a:focus-visible,.homeFixedHeader button:focus-visible{
  outline-color:#fff;
}

@media (prefers-reduced-motion:reduce){
  .productCard,.collageCard,.productImageSlide img,.collageCell img,
  .catStoryRing,.cardCta,.addBtn,.stickyCartBtn{transition:none}
  .productCard:hover,.collageCard:hover{transform:none}
}

/* ---- Hero: stop cropping the artwork on phones ----------------------------
   The banner art is 2078x757 (~2.75:1) but mobile rendered it at 4:1, which
   object-fit:cover resolved by cutting 31% of the height away — the product
   photography on the right was cropped out and only the flat green text panel
   remained. 3:1 keeps nearly all of the artwork. */
.heroSlide img{aspect-ratio:3/1}
@media (min-width:900px){
  .heroSlide img{aspect-ratio:3.8/1}
}

/* ============================================================================
   MODERN PDP + CHECKOUT — 2026-07-24
   These two pages (where orders are actually completed) still carried the old
   look: a text-character "<" back button, an unstyled "Zoom" label floating on
   the product photo, emoji used as icons (scooter / shop / bolt / box — they
   render differently on every device and read as amateur), and flat form rows.
   ============================================================================ */

/* ---- Page chrome: compact sticky bar ---- */
.pageTopBar{
  padding:8px 2px 10px;gap:10px;justify-content:flex-start;
}
.pageTitle{font-size:17px;font-weight:800;letter-spacing:-.02em;color:var(--text)}
.pageBackBtn{
  width:38px;height:38px;flex:0 0 auto;font-size:0;
  background:#fff;border:1px solid var(--line);color:var(--text);
  box-shadow:var(--shadow-soft);
  transition:background .16s ease,transform .12s ease,box-shadow .16s ease;
}
.pageBackBtn svg{display:block}
.pageBackBtn:hover{background:var(--mint-2)}
.pageBackBtn:active{transform:scale(.94)}
.pageTopBar--sticky{
  background:rgba(255,255,255,.92);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}

/* ---- PDP: zoom becomes a real icon chip (was a bare text label) ---- */
.pdpZoomBtn{
  display:inline-flex;align-items:center;gap:6px;
  right:12px;bottom:12px;padding:8px 13px;
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  color:var(--accent-deep);border:1px solid var(--line);
  box-shadow:0 4px 14px rgba(20,33,27,.12);
  font-size:11.5px;font-weight:800;
  transition:background .16s ease,transform .12s ease;
}
.pdpZoomBtn:hover{background:#fff}
.pdpZoomBtn:active{transform:scale(.95)}
.pdpZoomBtn svg{flex:0 0 auto}

.pdpThumb{border-radius:12px;border-width:2px;box-shadow:var(--shadow-soft)}
.pdpThumb.active{border-color:var(--accent)}

/* ---- PDP sticky buy bar ---- */
.productStickyBar{
  background:rgba(255,255,255,.96);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  border-top:1px solid var(--line);
  box-shadow:0 -6px 26px rgba(20,33,27,.10);
}
.productStickyPrice{color:var(--text);font-weight:800;letter-spacing:-.01em}

/* ---- Checkout: ETA strip with a real icon ---- */
.checkoutEtaStrip{
  display:flex;align-items:center;gap:8px;
  font-weight:700;border-radius:12px;
}
.checkoutEtaStrip svg{flex:0 0 auto}

/* ---- Checkout: modern segmented control (delivery / pickup) ---- */
.fulfillToggle{
  display:flex;gap:6px;padding:5px;background:var(--mint-2);
  border:1px solid var(--line);border-radius:14px;margin-bottom:12px;
}
.fulfillOption{
  flex:1;display:flex;align-items:center;justify-content:center;gap:7px;
  padding:10px 10px;border:none;border-radius:10px;cursor:pointer;
  background:transparent;color:var(--muted);
  font:800 12.5px var(--font-ui);letter-spacing:.01em;
  transition:background .18s ease,color .18s ease,box-shadow .18s ease;
}
.fulfillOption .fulfillIcon{display:inline-flex;align-items:center;font-size:0}
.fulfillOption.active{
  background:#fff;color:var(--accent-deep);box-shadow:var(--shadow-soft);
}

/* ---- Checkout: payment rows as selectable cards ---- */
.payMethodRow{
  display:flex;align-items:center;gap:11px;cursor:pointer;
  padding:13px 14px;border:1.5px solid var(--line);border-radius:13px;
  margin-bottom:9px;background:#fff;
  font:700 13.5px var(--font-ui);color:var(--text);
  transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.payMethodRow:hover{border-color:rgba(14,138,67,.4)}
.payMethodRow.active{
  border-color:var(--accent);background:var(--mint-2);
  box-shadow:0 0 0 3px rgba(14,138,67,.10);
}
.payMethodRow input[type=radio]{accent-color:var(--accent);width:18px;height:18px;flex:0 0 auto}

/* ---- Checkout: cards + doorstep note ---- */
.checkoutCard{
  border:1px solid var(--line);border-radius:18px;background:#fff;
  box-shadow:0 1px 2px rgba(20,33,27,.04),0 4px 16px rgba(20,33,27,.05);
}
.checkoutCardTitle{font:800 14px var(--font-ui);letter-spacing:-.01em;color:var(--text)}
.checkoutPolicyNote{
  display:flex;gap:11px;align-items:flex-start;
  border-radius:14px;border:1px solid var(--line);background:var(--mint-2);
}
.cpIcon{
  flex:0 0 auto;width:32px;height:32px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  background:#fff;color:var(--accent);border:1px solid var(--line);
}
.cpTitle{font:800 12.5px var(--font-ui);color:var(--text)}
.cpBody{font:500 11.5px/1.55 var(--font-ui);color:var(--muted);margin-top:2px}

/* ---- Checkout: coupon + submit ---- */
.cartCouponInput{
  border:1.5px solid var(--line);border-radius:11px;padding:11px 12px;
  font:600 13px var(--font-ui);
}
.cartCouponInput:focus{border-color:var(--accent);outline:none}
.cartCouponApply{
  border-radius:11px;background:var(--mint);color:var(--accent-deep);
  border:1px solid rgba(14,138,67,.24);font:800 12.5px var(--font-ui);padding:11px 16px;
}
.checkoutSubmitBtn{
  border-radius:14px;font-weight:800;letter-spacing:.01em;
  box-shadow:0 10px 26px rgba(10,63,34,.26);
}

/* PDP: name the page after the product, keep it visible while scrolling.
   Single line + ellipsis so long names can't wrap the bar. */
.productPage .pageTopBar{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.92);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
  margin:0 -12px;padding:8px 12px;
}
.pageTopBar .pageTitle{
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}

/* Buy-again pill: the label used a bare "↻" text glyph; it's an SVG now,
   so align it with the text. */
.buyAgainPill{display:inline-flex;align-items:center;gap:6px}
.buyAgainPill svg{flex:0 0 auto}
