:root{
  --indigo:#1B2A4A;
  --indigo-deep:#101c33;
  --marigold:#E8A33D;
  --marigold-deep:#C9821F;
  --terracotta:#B5502E;
  --terracotta-deep:#8f3d21;
  --cream:#FBF6EC;
  --cream-dark:#F1E6D2;
  --leaf:#5B7B4F;
  --ink:#2A2016;
  --white:#FFFDF8;
  --line: rgba(42,32,22,0.14);
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Mukta', sans-serif;
  font-size:16px;
  line-height:1.5;
}
h1,h2,h3,.display{ font-family:'Fraunces', serif; color:var(--indigo); margin:0; letter-spacing:-0.01em; }
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 24px; }

/* top strip */
.topstrip{ background:var(--indigo); color:var(--cream); font-size:13.5px; padding:8px 0; }
.topstrip .wrap{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.topstrip .call{ color:var(--marigold); font-weight:600; }

/* header */
header.site{ background:rgba(251,246,236,0.92); border-bottom:1px solid var(--line); position:sticky; top:0; z-index:50; backdrop-filter:saturate(140%) blur(6px); }
nav.wrap{ display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px; flex-wrap:wrap; gap:10px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-name{ font-family:'Fraunces', serif; font-weight:700; font-size:22px; color:var(--indigo); line-height:1; }
.brand-sub{ font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--terracotta); font-weight:600; margin-top:2px; }
.navlinks{ display:flex; gap:24px; font-weight:600; font-size:15px; }
.navlinks a{ color:var(--indigo); opacity:.75; }
.navlinks a:hover{ opacity:1; }
.cta-btn{ display:inline-flex; align-items:center; gap:8px; background:var(--leaf); color:var(--white); padding:10px 18px; border-radius:999px; font-weight:700; font-size:14.5px; border:none; cursor:pointer; box-shadow:0 6px 16px rgba(91,123,79,0.28); }
.cta-btn svg{ width:17px; height:17px; }

/* hero */
.hero{ position:relative; overflow:hidden; background:radial-gradient(ellipse 80% 60% at 85% -10%, rgba(232,163,61,0.35), transparent 60%), var(--indigo); color:var(--cream); padding:56px 0 40px; }
.hero h1{ font-size:clamp(30px,5vw,50px); color:var(--white); line-height:1.1; font-weight:700; }
.hero h1 em{ font-style:italic; color:var(--marigold); font-weight:600; }
.hero p.lede{ margin-top:16px; font-size:17px; color:rgba(251,246,236,0.82); max-width:52ch; line-height:1.6; }
.eyebrow{ display:inline-flex; align-items:center; gap:8px; background:rgba(251,246,236,0.1); border:1px solid rgba(251,246,236,0.25); color:var(--marigold); padding:6px 14px; border-radius:999px; font-size:13px; font-weight:700; margin-bottom:18px; }
.hero-cta-row{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
.btn-ghost{ display:inline-flex; align-items:center; gap:8px; padding:12px 20px; border-radius:999px; font-weight:700; font-size:14.5px; border:1.5px solid rgba(251,246,236,0.4); color:var(--cream); }

/* sections */
section{ padding:64px 0; }
.section-head{ max-width:640px; margin:0 auto 40px; text-align:center; }
.section-head .kicker{ display:block; color:var(--terracotta); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; }
.section-head h2{ font-size:clamp(24px,3.4vw,34px); }
.section-head p{ margin-top:12px; color:#5a4c3c; font-size:16px; }

/* coverage */
.coverage{ background:var(--cream-dark); }
.coverage-frame{ position:relative; border:2px dashed rgba(181,80,46,0.45); border-radius:32px; padding:48px 24px 34px; background:radial-gradient(circle at 50% 40%, rgba(232,163,61,0.14), transparent 65%), var(--cream); }
.coverage-frame::before{ content:"हमारी डिलीवरी सीमा"; position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--terracotta); color:var(--white); font-weight:700; font-size:13px; padding:6px 18px; border-radius:999px; }
.chip-cloud{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; }
.chip{ display:inline-flex; align-items:center; gap:6px; padding:9px 16px; border-radius:999px; background:var(--white); border:1.5px solid var(--line); font-size:14.5px; font-weight:600; color:var(--indigo); }
.chip.hq{ background:var(--indigo); color:var(--white); border-color:var(--indigo); font-size:16px; padding:11px 22px; font-family:'Fraunces', serif; order:-1; }
.chip .dot{ width:6px; height:6px; border-radius:50%; background:var(--marigold-deep); }
.chip.hq .dot{ background:var(--marigold); }
.coverage-note{ text-align:center; margin-top:22px; font-size:14.5px; color:#6b5d4c; }

/* categories */
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.cat-card{ background:var(--white); border:1px solid var(--line); border-radius:20px; padding:22px 14px 18px; text-align:center; }
.cat-icon{ width:64px; height:64px; margin:0 auto 12px; border-radius:16px; overflow:hidden; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; }
.cat-icon img{ width:100%; height:100%; object-fit:cover; }
.cat-card h3{ font-family:'Mukta',sans-serif; font-weight:700; font-size:15px; color:var(--ink); }
.cat-card p{ font-size:12.5px; color:#7a6a56; margin:4px 0 0; }

/* products */
.prod-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.prod-card{ background:var(--white); border:1px solid var(--line); border-radius:18px; overflow:hidden; position:relative; }
.prod-img{ height:120px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.prod-img img{ width:100%; height:100%; object-fit:cover; }
.prod-body{ padding:14px 14px 16px; }
.prod-body h3{ font-size:14.5px; font-weight:700; color:var(--ink); font-family:'Mukta',sans-serif; }
.prod-unit{ font-size:12px; color:#7a6a56; margin-top:2px; }
.prod-price{ margin-top:8px; display:flex; align-items:baseline; gap:8px; }
.prod-price b{ color:var(--terracotta-deep); font-size:16px; }
.prod-price s{ color:#9a8a76; font-size:12.5px; }
.badge-tag{ position:absolute; top:10px; left:10px; background:var(--marigold); color:var(--indigo); font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px; }
.badge-tag.sunday{ background:var(--leaf); color:var(--white); }
.empty-note{ text-align:center; color:#8a7a66; font-size:14.5px; padding:20px; }

/* offer */
.offer{ background:linear-gradient(120deg, var(--marigold) 0%, var(--terracotta) 100%); border-radius:26px; padding:40px; color:var(--white); }
.offer .kicker{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; opacity:.9; }
.offer h2{ color:var(--white); font-size:clamp(22px,3vw,30px); margin-top:8px; }
.offer p{ margin-top:10px; font-size:15px; opacity:.95; max-width:50ch; }
.offer .btn-white{ display:inline-flex; margin-top:18px; background:var(--white); color:var(--terracotta-deep); font-weight:700; padding:12px 22px; border-radius:999px; font-size:14.5px; }

/* trust */
.trust{ background:var(--indigo); }
.trust .section-head h2, .trust .section-head p{ color:var(--cream); }
.trust .section-head p{ color:rgba(251,246,236,0.7); }
.badge-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.badge{ background:rgba(251,246,236,0.06); border:1px solid rgba(251,246,236,0.14); border-radius:18px; padding:22px 16px; text-align:center; color:var(--cream); }
.badge h3{ font-size:14.5px; font-weight:700; }
.badge p{ font-size:12.5px; color:rgba(251,246,236,0.62); margin-top:6px; }

/* order form */
.order-box{ background:var(--white); border:1.5px solid var(--line); border-radius:24px; padding:36px; display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.order-box h2{ font-size:24px; }
.order-box .field{ margin-bottom:14px; }
.order-box label{ display:block; font-size:13.5px; font-weight:700; color:var(--indigo); margin-bottom:6px; }
.order-box input, .order-box select, .order-box textarea{ width:100%; padding:11px 14px; border-radius:12px; border:1.5px solid var(--line); font-family:'Mukta',sans-serif; font-size:14.5px; background:var(--cream); }
.order-box textarea{ min-height:100px; resize:vertical; }
.order-submit{ width:100%; padding:13px; border:none; border-radius:999px; background:var(--leaf); color:var(--white); font-weight:700; font-size:15px; cursor:pointer; }
.order-success{ background:#eaf3e6; border:1px solid var(--leaf); color:#37502f; padding:16px 20px; border-radius:14px; margin-bottom:20px; font-weight:600; }

/* footer */
footer{ background:var(--indigo-deep); color:rgba(251,246,236,0.7); padding:48px 0 24px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; padding-bottom:30px; border-bottom:1px solid rgba(251,246,236,0.12); }
.footer-brand .brand-name{ color:var(--cream); }
.footer-brand p{ font-size:14px; margin-top:12px; line-height:1.7; max-width:34ch; }
footer h4{ color:var(--marigold); font-size:13px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px; font-weight:700; }
footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; font-size:14px; }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:18px; font-size:13px; flex-wrap:wrap; gap:8px; }

.wa-float{ position:fixed; right:20px; bottom:20px; width:56px; height:56px; border-radius:50%; background:var(--leaf); display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(91,123,79,0.4); z-index:60; }
.wa-float svg{ width:26px; height:26px; }

@media (max-width:920px){
  .cat-grid, .prod-grid{ grid-template-columns:repeat(2,1fr); }
  .badge-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr; gap:26px; }
  .navlinks{ display:none; }
  .order-box{ grid-template-columns:1fr; padding:24px; }
}
