:root{
  --bg:#FAF7F0;
  --surface:#FFFFFF;
  --ink:#1C231D;
  --muted:#6B7566;
  --primary:#1F4D33;
  --primary-dark:#163825;
  --primary-tint:#E7EFE7;
  --accent:#B8862F;
  --accent-soft:#F3E6C4;
  --border:#E3DECF;
  --whatsapp:#25D366;
  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:8px;
  --shadow-card:0 1px 2px rgba(28,35,29,.04), 0 6px 16px rgba(28,35,29,.05);
}

*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2{font-family:'Fraunces',serif;letter-spacing:-.01em}

a{color:inherit}
button{font-family:inherit}
:focus-visible{outline:2px solid var(--primary);outline-offset:2px}

/* Header */
.header{
  background:var(--primary);
  color:#fff;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.brand{display:flex;gap:14px;align-items:center}
.logo{height:58px;width:auto;flex:none}
.header p.tagline{margin:0;font-size:13px;color:rgba(255,255,255,.72)}
.phone{
  display:flex;align-items:center;gap:8px;
  background:var(--accent-soft);
  color:var(--primary-dark);
  text-decoration:none;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
  transition:background .15s;
}
.phone:hover{background:#fff}
.phone svg{width:16px;height:16px}

/* Hero banner */
.hero{
  max-width:1180px;margin:16px auto 0;padding:22px 32px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  background:linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 65%, #2c6b46 100%);
  border-radius:var(--radius-lg);
  box-shadow:0 10px 28px -8px rgba(22,56,37,.35);
  overflow:hidden;
  position:relative;
}
.hero-text{max-width:480px;position:relative;z-index:1}
.hero-text h2{
  color:#fff;margin:0 0 8px;font-size:clamp(22px,3.4vw,32px);line-height:1.15;font-weight:600;
}
.hero-text p{
  color:rgba(255,255,255,.82);margin:0 0 12px;font-size:14.5px;line-height:1.5;
}
.hero-cta{
  background:#fff;color:var(--primary-dark);border:0;border-radius:999px;
  padding:13px 24px;font-weight:800;font-size:14.5px;cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,.15);transition:transform .12s;
}
.hero-cta:hover{transform:translateY(-1px)}
.hero-logo{
  height:150px;width:auto;flex:none;position:relative;z-index:1;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.25));
}
@media(max-width:700px){
  .hero{padding:26px 22px;gap:16px}
  .hero-logo{height:96px}
  .hero-text p{display:none}
}
@media(max-width:480px){
  .hero-logo{display:none}
  .hero{padding:18px 18px;margin-top:12px}
  .hero-text h2{font-size:19px;margin-bottom:8px}
  .hero-pills{display:none}
  .hero-cta{padding:10px 18px;font-size:13px;margin-top:4px}
  .status-bar{margin-top:10px}
  .toolbar{margin:10px auto;padding:8px 16px}
}
.status-bar{
  max-width:1180px;
  margin:16px auto 0;
  padding:16px 22px;
  background:linear-gradient(135deg, var(--surface) 55%, var(--accent-soft) 145%);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
}
.status-row{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.status-item{display:flex;align-items:center;gap:11px}
.status-icon{
  width:38px;height:38px;flex:none;border-radius:50%;
  background:var(--primary-tint);color:var(--primary);
  display:grid;place-items:center;
}
.status-icon svg{width:19px;height:19px}
.status-label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);font-weight:600}
.status-item strong{display:block;font-size:14.5px;color:var(--primary-dark);font-weight:700;margin-top:1px}
.status-arrow{width:15px;height:15px;color:var(--accent);flex:none}
.status-extra{
  display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  margin-top:12px;padding-top:12px;border-top:1px dashed var(--border);
}
.extra-item{
  display:flex;align-items:center;gap:7px;
  font-size:12.5px;font-weight:700;color:var(--primary-dark);
}
.extra-item svg{width:16px;height:16px;color:var(--accent);flex:none}
@media(max-width:640px){
  .status-arrow{display:none}
  .status-bar{gap:10px 20px;padding:12px 16px;margin-top:10px}
  .status-row{gap:9px}
  .status-item{gap:8px}
  .status-icon{width:28px;height:28px}
  .status-icon svg{width:14px;height:14px}
  .status-label{display:inline;font-size:10px}
  .status-label::after{content:" "}
  .status-item strong{display:inline;font-size:12.5px;margin-top:0}
  .status-extra{gap:8px 16px;margin-top:8px;padding-top:8px}
  .extra-item{font-size:11.5px}
  .extra-item svg{width:14px;height:14px}
}

/* Toolbar */
.toolbar{
  max-width:1180px;margin:16px auto;padding:10px 20px;display:flex;flex-direction:column;gap:12px;
  position:sticky;top:0;z-index:30;background:var(--bg);
  box-shadow:0 6px 12px -8px rgba(28,35,29,.12);
}
.toolbar::after{
  content:"";position:absolute;left:0;right:0;bottom:-14px;height:14px;
  background:linear-gradient(to bottom, var(--bg), transparent);
  pointer-events:none;
}
.search-wrap{position:relative}
.search-wrap svg{position:absolute;left:14px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted)}
.toolbar input[type="search"]{
  width:100%;padding:13px 16px 13px 42px;
  border:1px solid var(--border);border-radius:var(--radius-md);
  font-size:15px;background:var(--surface);color:var(--ink);
}
.toolbar input[type="search"]:focus{border-color:var(--primary)}
.categories{display:flex;gap:8px;overflow:auto;padding-bottom:2px}
.cat{
  border:1px solid var(--border);background:var(--surface);color:var(--ink);
  border-radius:999px;padding:8px 15px;font-weight:600;font-size:13.5px;
  white-space:nowrap;cursor:pointer;transition:.15s;
}
.cat:hover{border-color:var(--primary)}
.cat.active{background:var(--primary);color:#fff;border-color:var(--primary)}

/* Layout */
.main{max-width:1180px;margin:auto;padding:0 20px 32px;display:grid;grid-template-columns:1fr 380px;gap:22px}
.status{margin-bottom:12px;color:var(--muted);font-size:13.5px;font-weight:600}

/* Product grid */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:14px}
.category-section{margin-bottom:26px}
.category-section:last-child{margin-bottom:0}
.category-heading{
  display:flex;align-items:baseline;gap:8px;
  font-family:'Fraunces',serif;font-size:19px;font-weight:600;color:var(--primary-dark);
  margin:0 0 12px;padding-bottom:8px;border-bottom:1px solid var(--border);
}
.category-count{
  font-family:'Inter',sans-serif;font-size:12px;font-weight:700;color:var(--muted);
}
.no-results{
  color:var(--muted);font-size:14px;text-align:center;padding:40px 20px;
}
.card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:14px;box-shadow:var(--shadow-card);transition:transform .12s,box-shadow .12s;
  position:relative;
}
.card:hover{transform:translateY(-2px);box-shadow:0 4px 10px rgba(28,35,29,.05),0 12px 22px rgba(28,35,29,.07)}
.pic{
  height:140px;border-radius:var(--radius-md);display:grid;place-items:center;
  font-size:38px;margin-bottom:10px;background:var(--primary-tint);overflow:hidden;
  position:relative;cursor:pointer;
}
.pic img{width:100%;height:100%;object-fit:contain;display:block}
.pic-emoji{line-height:1}
.pic-fruits{background:#FBEFDD}
.pic-leafy{background:#E4F0DE}
.pic-essentials{background:#F1ECE0}
.pic-vegetables{background:var(--primary-tint)}
.ozone-badge{
  position:absolute;top:10px;left:10px;z-index:2;
  display:flex;align-items:center;gap:3px;
  background:var(--primary);color:#fff;
  font-size:9.5px;font-weight:800;letter-spacing:.01em;text-transform:uppercase;
  padding:4px 8px 4px 6px;border-radius:999px;white-space:nowrap;
  box-shadow:0 2px 6px rgba(22,56,37,.3);
}
.ozone-badge svg{width:10px;height:10px;flex:none}
.badge{
  display:inline-block;background:var(--primary-tint);color:var(--primary-dark);
  border-radius:999px;padding:3px 9px;font-size:11px;font-weight:700;letter-spacing:.02em;
}
.card h3{font-family:'Inter';font-size:15.5px;font-weight:700;margin:9px 0 3px;cursor:pointer}
.hindi-name-inline{font-size:0.78em;font-weight:600;color:var(--muted)}
.info-badge{
  position:absolute;top:6px;right:6px;z-index:2;
  width:20px;height:20px;border-radius:50%;
  background:rgba(255,255,255,.92);color:var(--primary);border:1px solid var(--border);
  font-size:11px;font-weight:800;font-style:italic;font-family:Georgia,serif;
  cursor:pointer;display:grid;place-items:center;line-height:1;padding:0;
  box-shadow:0 1px 4px rgba(0,0,0,.15);
}

/* ---------- Product details drawer (nutrition, storage tips, etc.) ---------- */
.product-drawer-overlay{
  position:fixed;inset:0;z-index:200;background:rgba(20,30,24,.55);
  display:flex;align-items:flex-end;justify-content:center;
}
.product-drawer-overlay[hidden]{display:none}
.product-drawer-panel{
  background:var(--surface);border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  padding:20px 18px 28px;width:100%;max-width:520px;max-height:88vh;overflow-y:auto;
  box-shadow:0 -10px 40px rgba(0,0,0,.25);position:relative;
}
.product-drawer-close{
  position:absolute;top:12px;right:12px;background:var(--secondary-soft);border:0;
  width:32px;height:32px;border-radius:50%;font-size:16px;cursor:pointer;color:var(--ink);
}
.product-drawer-pic{height:160px;margin-bottom:12px}
.product-drawer-title{font-family:"Fraunces",serif;font-size:20px;font-weight:600;margin:6px 0 2px;color:var(--ink)}
.nutrition-none{margin:10px 0 0;font-size:13px;color:var(--muted)}
@media(min-width:640px){
  .product-drawer-overlay{align-items:center}
  .product-drawer-panel{border-radius:var(--radius-lg)}
}
.meta{font-size:12px;color:var(--muted)}
.price{font-size:17px;font-weight:800;margin:8px 0;color:var(--primary-dark)}
.price span{font-size:12px;font-weight:600;color:var(--muted)}
.weights{display:grid;grid-template-columns:repeat(2,1fr);gap:6px}
.nutrition{margin-top:10px;border-top:1px solid var(--border);padding-top:8px}
.nutrition-heading{
  font-size:11.5px;font-weight:700;color:var(--primary);margin:0;
  text-transform:uppercase;letter-spacing:.03em;
}
.nutrition-grid{
  display:grid;grid-template-columns:auto auto;gap:3px 10px;
  margin-top:8px;font-size:12px;
}
.nutrition-grid span{color:var(--muted)}
.nutrition-grid strong{color:var(--primary-dark);font-weight:700;text-align:right}
.nutrition-note{
  margin:8px 0 0;font-size:11.5px;color:var(--muted);line-height:1.4;font-style:italic;
}
.nutrition-benefits{
  margin:6px 0 0;font-size:12px;color:var(--ink);line-height:1.5;
}
.weight{
  border:1.5px solid var(--primary);background:var(--surface);color:var(--primary-dark);
  border-radius:var(--radius-sm);padding:6px 8px;font-weight:700;font-size:12.5px;cursor:pointer;
  transition:.12s;display:flex;flex-direction:column;align-items:center;gap:2px;line-height:1.1;
}
.weight:hover{background:var(--primary);color:#fff}
.weight-add{
  font-size:10px;font-weight:800;letter-spacing:.04em;color:var(--primary);
}
.weight:hover .weight-add{color:#fff}
.stepper{
  display:flex;align-items:center;justify-content:space-between;
  border:1.5px solid var(--primary);background:var(--primary);color:#fff;
  border-radius:var(--radius-sm);padding:4px 6px;font-weight:800;font-size:14px;
}
.step-btn{
  background:rgba(255,255,255,.2);border:0;color:#fff;width:30px;height:30px;flex:none;
  border-radius:7px;font-size:18px;font-weight:800;cursor:pointer;display:grid;place-items:center;
  line-height:1;
}
.step-btn:hover{background:rgba(255,255,255,.34)}
.step-count{min-width:18px;text-align:center}

/* Cart */
.cart{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:18px;height:max-content;position:sticky;top:14px;
}
.cart h2{margin:0 0 10px;font-size:20px;font-weight:600}
.empty{color:var(--muted);padding:10px 0;font-size:13.5px}
.line{display:grid;grid-template-columns:1fr auto;gap:10px;border-bottom:1px solid var(--border);padding:10px 0;align-items:start}
.line small{color:var(--muted)}
.actions{display:flex;align-items:center;gap:8px;margin-top:6px}
.actions button{
  width:26px;height:26px;display:grid;place-items:center;
  background:var(--primary-tint);color:var(--primary-dark);border:0;border-radius:7px;
  font-weight:800;cursor:pointer;font-size:14px;
}
.actions button:hover{background:var(--primary);color:#fff}

.details{display:grid;gap:12px;margin-top:14px}
.details-heading{margin:0;font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);font-weight:700}

/* Progress bars toward minimum order / free delivery, shown live in cart */
.progress-card{margin-bottom:10px;padding:10px 12px;background:var(--secondary-soft);border-radius:var(--radius-md)}
.progress-card:last-child{margin-bottom:14px}
.progress-head{display:flex;justify-content:space-between;align-items:baseline;gap:10px;margin-bottom:6px}
.progress-head span{font-size:12px;color:var(--ink);line-height:1.3}
.progress-head strong{font-size:11.5px;color:var(--muted);white-space:nowrap;font-weight:700}
.progress-track{height:6px;border-radius:999px;background:rgba(0,0,0,.08);overflow:hidden}
.progress-fill{height:100%;border-radius:999px;background:var(--primary);transition:width .25s ease}
.progress-fill-free{background:var(--accent)}
.field{display:grid;gap:5px}
.field span{font-size:12.5px;font-weight:600;color:var(--muted)}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.details input,.details select,.details textarea{
  width:100%;padding:12px 12px;border:1px solid var(--border);border-radius:var(--radius-sm);
  font:inherit;font-size:16px;color:var(--ink);background:var(--bg);
}
.details input:focus,.details select:focus,.details textarea:focus{border-color:var(--primary);background:var(--surface)}
.details textarea{min-height:60px;resize:vertical}

.location{
  display:flex;align-items:center;justify-content:center;gap:8px;
  border:1px solid var(--primary);background:var(--primary-tint);color:var(--primary-dark);
  border-radius:var(--radius-sm);padding:11px;font-weight:700;font-size:13.5px;cursor:pointer;
}
.location:hover{background:var(--primary);color:#fff}
.location svg{width:16px;height:16px}
#locationStatus{margin:0;color:var(--primary-dark);font-size:12px;font-weight:700;min-height:14px}
.required-mark{color:var(--accent);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.02em}
.location-required-note{margin:6px 0 0;font-size:12px;color:var(--muted);line-height:1.4}
.saturday-note{
  max-width:1180px;margin:-6px auto 14px;padding:10px 20px;
  font-size:13px;color:var(--primary-dark);background:var(--secondary-soft);
  border-radius:var(--radius-md);
}
.urgent-note{
  margin:-4px 0 0;font-size:12.5px;color:var(--muted);line-height:1.4;
}
.urgent-note a{color:var(--primary);font-weight:700;text-decoration:none}
.urgent-note a:hover{text-decoration:underline}

.billing-note{
  display:flex;gap:8px;align-items:flex-start;
  background:#FFF7E6;border:1px solid #F2D9A0;color:#7A5A10;
  border-radius:var(--radius-sm);padding:10px 12px;margin:14px 0 0;
  font-size:12.5px;line-height:1.45;font-weight:600;
}
.billing-note svg{width:16px;height:16px;flex:none;margin-top:1px;color:#B9860B}

.delivery-row{display:flex;justify-content:space-between;align-items:baseline;margin:10px 0 0;font-size:13.5px;color:var(--muted);font-weight:600}
.delivery-row strong{color:var(--ink);font-weight:700}
.delivery-row.free strong{color:var(--primary-dark)}
#deliveryNote{margin:2px 0 0;font-size:11.5px;color:var(--muted);line-height:1.4}

.total{display:flex;justify-content:space-between;align-items:baseline;margin:14px 0 14px;font-size:14px;color:var(--muted);font-weight:600;border-top:1px dashed var(--border);padding-top:12px}
.total strong{font-size:22px;color:var(--ink);font-weight:800}

.send{
  width:100%;display:flex;align-items:center;justify-content:center;gap:9px;
  border:0;background:var(--whatsapp);color:#fff;border-radius:var(--radius-md);
  padding:14px;font-size:15.5px;font-weight:700;cursor:pointer;transition:filter .12s;
}
.send:hover{filter:brightness(.95)}
.send svg{width:19px;height:19px}
.small{font-size:12px;color:var(--muted);margin-top:10px;text-align:center}

.footer{
  max-width:1180px;margin:8px auto 28px;padding:0 20px;
  color:var(--muted);font-size:12.5px;text-align:center;line-height:1.6;
}
.footer p{margin:2px 0}
.social-link{color:var(--primary);font-weight:700;text-decoration:none}
.social-link:hover{text-decoration:underline}

/* Floating cart bar — mobile only; desktop already shows the sticky sidebar cart */
.cart-bar{
  position:fixed;left:14px;right:14px;bottom:14px;z-index:50;
  background:var(--primary);color:#fff;border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 14px 12px 18px;box-shadow:0 10px 24px rgba(28,35,29,.28);
}
.cart-bar[hidden]{display:none}
.cart-bar-info{display:flex;flex-direction:column;gap:1px}
.cart-bar-info strong{font-size:14.5px;font-weight:700}
.cart-bar-info span{font-size:13px;color:rgba(255,255,255,.85);font-weight:600}
.cart-bar-btn{
  display:flex;align-items:center;gap:6px;
  background:#fff;color:var(--primary-dark);border:0;border-radius:999px;
  padding:11px 16px;font-weight:800;font-size:14px;cursor:pointer;white-space:nowrap;
}
.cart-bar-btn svg{width:16px;height:16px}
@media(min-width:861px){
  .cart-bar{display:none !important}
}

@media(max-width:860px){
  .header{align-items:flex-start;flex-direction:column;padding:14px 16px;gap:10px}
  .logo{height:44px}
  .header p.tagline{font-size:12px}
  .phone{padding:8px 14px;font-size:13px}
  .main{grid-template-columns:1fr}
  .cart{position:static}
  .grid{grid-template-columns:repeat(2,1fr)}
  body{padding-bottom:76px}
}
@media(max-width:430px){
  .field-row{grid-template-columns:1fr}
  .status-bar{border-radius:0;margin-top:0}
  .grid{gap:8px}
  .card{padding:8px}
  .card .badge{display:none}
  .pic{height:78px;margin-bottom:6px;border-radius:8px}
  .card h3{font-size:12.5px;margin:0 2px 1px;line-height:1.2}
  .hindi-name{font-size:10px;margin:0 2px 4px}
  .price{font-size:13.5px;margin:0 2px 6px}
  .price span{font-size:10px}
  .weights{gap:4px}
  .weight{font-size:10px;padding:5px 2px}
  .weight-add{font-size:8px}
  .info-badge{width:17px;height:17px;font-size:9.5px}
}

/* ---------- Hero trust pills (Why Choose OxyFresh, condensed) ---------- */
.hero-pills{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 4px}
.hero-pill{
  display:flex;align-items:center;gap:6px;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);
  color:#fff;font-size:12.5px;font-weight:700;letter-spacing:.01em;
  padding:6px 12px;border-radius:999px;backdrop-filter:blur(2px);
}
.hero-pill svg{width:15px;height:15px;flex:none;color:var(--accent-soft)}

/* ---------- Compact price teaser strip (replaces the old bigger
   value-band + price-highlights-grid sections — kept small on purpose so
   mobile visitors reach search/products with minimal scrolling) ---------- */
.price-teaser{
  max-width:1180px;margin:14px auto 0;padding:14px 20px;
}
.price-teaser-head{
  display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:8px;
}
.price-teaser-head > span{
  font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--accent);
}
.price-teaser-link{font-size:12.5px;font-weight:700;color:var(--primary);text-decoration:none;white-space:nowrap}
.price-teaser-link:hover{text-decoration:underline}
.price-teaser-row{display:flex;gap:8px;overflow-x:auto;padding-bottom:2px}
.price-tile{
  flex:none;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);
  padding:8px 12px;text-align:center;box-shadow:var(--shadow-card);min-width:84px;
}
.price-tile .emoji{font-size:18px;display:block;margin-bottom:2px}
.price-tile .name{font-size:11px;font-weight:700;color:var(--ink);display:block;white-space:nowrap}
.price-tile .rate{font-size:13px;font-weight:800;color:var(--primary-dark);display:block;margin-top:1px;white-space:nowrap}
.price-tile .rate span{font-size:10px;font-weight:600;color:var(--muted)}

/* ---------- Shared section heading (used on about.html) ---------- */
.section-block{max-width:1180px;margin:40px auto 0;padding:0 20px}
.about-back-row{max-width:1180px;margin:16px auto 0;padding:0 20px;text-align:center}
.about-back-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--primary);font-weight:700;font-size:14px;text-decoration:none;
}
.about-back-link svg{width:16px;height:16px}
.about-back-link:hover{text-decoration:underline}
.section-block .section-eyebrow{
  font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);
}
.section-block h2{
  font-family:"Fraunces",serif;font-weight:600;font-size:26px;color:var(--primary-dark);
  margin:4px 0 6px;
}
.section-block > p.section-sub{color:var(--muted);font-size:14.5px;margin:0 0 20px;max-width:60ch}

/* ---------- Why choose (full 4-card version, below the fold) ---------- */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.why-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:20px 16px;box-shadow:var(--shadow-card);
}
.why-card .icon{
  width:42px;height:42px;border-radius:12px;background:var(--primary-tint);color:var(--primary);
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;
}
.why-card .icon svg{width:22px;height:22px}
.why-card h3{font-size:15px;margin:0 0 4px;color:var(--primary-dark)}
.why-card p{font-size:13px;color:var(--muted);margin:0;line-height:1.45}
@media(max-width:860px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:430px){.why-grid{grid-template-columns:1fr}}

/* ---------- Ozone washing explained ---------- */
.ozone-explain-card{
  background:linear-gradient(135deg, var(--surface) 60%, var(--accent-soft) 160%);
  border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-card);
  padding:24px;display:flex;gap:20px;align-items:center;
}
.ozone-explain-card .icon{
  flex:none;width:56px;height:56px;border-radius:50%;background:var(--primary);color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.ozone-explain-card .icon svg{width:28px;height:28px}
.ozone-explain-card p{margin:0;color:var(--ink);font-size:14.5px;line-height:1.55}
.ozone-explain-card p.small-print{margin-top:8px;font-size:12px;color:var(--muted)}
@media(max-width:640px){.ozone-explain-card{flex-direction:column;text-align:center}}

/* ---------- Delivery areas ---------- */
.area-chips{display:flex;flex-wrap:wrap;gap:10px}
.area-chip{
  display:flex;align-items:center;gap:6px;background:var(--surface);border:1px solid var(--border);
  border-radius:999px;padding:9px 16px;font-size:13.5px;font-weight:700;color:var(--primary-dark);
  box-shadow:var(--shadow-card);
}
.area-chip svg{width:15px;height:15px;color:var(--accent)}

/* ---------- Trust / reviews section ---------- */
.trust-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:16px}
.trust-photo-note{
  border:1.5px dashed var(--border);border-radius:var(--radius-lg);
  background:var(--primary-tint);color:var(--muted);font-size:13px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  text-align:center;padding:28px 16px;min-height:200px;
}
.trust-photo-note svg{width:30px;height:30px;color:var(--primary)}
.trust-reviews{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);padding:22px;display:flex;flex-direction:column;justify-content:center;gap:10px;
}
.trust-reviews h3{margin:0;font-size:16px;color:var(--primary-dark)}
.trust-reviews p{margin:0;font-size:13.5px;color:var(--muted)}
.trust-reviews a.trust-cta{
  align-self:flex-start;margin-top:4px;background:var(--primary);color:#fff;font-weight:700;font-size:13.5px;
  padding:10px 18px;border-radius:999px;text-decoration:none;
}
@media(max-width:760px){.trust-grid{grid-template-columns:1fr}}

/* ---------- Storage tip on card ---------- */
.storage-tip{
  margin-top:8px;font-size:11.5px;color:var(--muted);display:flex;gap:5px;align-items:flex-start;
  border-top:1px dashed var(--border);padding-top:8px;
}
.storage-tip svg{width:13px;height:13px;flex:none;margin-top:1px;color:var(--accent)}

/* ---------- Skip link (accessibility) ---------- */
.skip-link{
  position:absolute;left:-9999px;top:0;background:var(--primary);color:#fff;padding:10px 16px;
  border-radius:0 0 8px 0;z-index:100;font-weight:700;font-size:13px;
}
.skip-link:focus{left:0}

/* Floating "Order Now" bar — mobile only. Shown while browsing with an
   empty cart; hands off to .cart-bar (already defined above) the moment
   an item is added, so only one floating CTA is ever visible at once. */
.order-now-bar{
  position:fixed;left:14px;right:14px;bottom:14px;z-index:49;
}
.order-now-bar[hidden]{display:none}
.order-now-btn{
  width:100%;display:flex;align-items:center;justify-content:center;gap:8px;
  background:var(--accent);color:#fff;border:0;border-radius:var(--radius-md);
  padding:14px;font-weight:800;font-size:15px;cursor:pointer;
  box-shadow:0 10px 24px rgba(184,134,47,.35);
}
.order-now-btn svg{width:18px;height:18px}
.order-now-btn:active{transform:translateY(1px)}
@media(min-width:861px){
  .order-now-bar{display:none !important}
}
