:root{
  --bg:#fff;
  --text:#1b1f24;
  --muted:#4e5865;
  --brand:#0b4733;
  --brand-2:#5b2b22;
  --accent:#136b4c;
  --accent-2:#eef7f1;
  --surface:#fbfcfd;
  --border:#e6e8eb;
  --shadow:0 12px 24px rgba(0,0,0,.14),0 8px 16px rgba(0,0,0,.10)
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 400px at 20% -200px, #f1faf4, transparent),
    radial-gradient(900px 400px at 80% -200px, #fdf4ef, transparent),
    linear-gradient(180deg,#ffffff,#fbfcfd);
  line-height:1.55
}
img{max-width:100%;display:block}
a{color:var(--brand);text-decoration:none}

.container{max-width:1200px;margin-inline:auto;padding:0 20px}
.section{padding:64px 0}
.section.alt{background:var(--surface)}
.section-title{font-family:"Playfair Display",Georgia,serif;font-size:32px;margin:0 0 24px}
.section.brand{background:linear-gradient(180deg,#fff, #fefcf8)}
.section.brand .section-title{color:var(--brand-2)}
.legal{max-width:900px}
.legal h2{font-size:24px;margin:24px 0 8px;color:var(--brand-2)}
.legal h3{font-size:20px;margin:20px 0 8px}
.legal-list{padding-left:18px;margin:8px 0}
.legal-list li{margin:6px 0}
.bullets{padding-left:18px;margin:0}
.bullets li{margin:6px 0}

.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border)
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--text)}
.brand-logo{width:64px;height:auto;object-fit:contain;filter:drop-shadow(0 1px 0 rgba(0,0,0,.06))}
.brand-logo.small{width:36px}
.brand-text{font-family:"Playfair Display",Georgia,serif;font-size:20px}
.nav-toggle{display:none;background:none;border:0;font-size:28px;line-height:1;padding:6px 8px;cursor:pointer}
.site-nav{display:flex;gap:20px}
.site-nav a{padding:8px 6px;border-radius:8px}
.site-nav a:hover{background:var(--surface)}
.cart{display:inline-flex;align-items:center;gap:6px;color:var(--text);position:relative}
.badge{display:inline-block;min-width:18px;padding:2px 6px;border-radius:999px;background:var(--brand);color:#fff;font-size:12px;line-height:1;text-align:center}

.hero{
  background:
    radial-gradient(1200px 400px at 50% -100px, var(--accent-2), transparent),
    linear-gradient(180deg,#fff,#fff);
  border-bottom:1px solid var(--border)
}
.hero-inner{display:grid;grid-template-columns:1fr;gap:24px;padding:72px 0}
.hero-media img{width:100%;height:auto;border-radius:16px;box-shadow:var(--shadow);object-fit:cover}
.hero-copy h1{font-family:"Playfair Display",Georgia,serif;font-size:44px;line-height:1.1;margin:0 0 12px;color:var(--brand-2)}
.hero-copy p{font-size:18px;color:var(--muted);margin:0 0 24px;max-width:680px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}

.slider{position:relative;padding:0 48px}
.slides{display:flex;overflow:hidden;border-radius:16px;box-shadow:var(--shadow);transition:transform .6s ease-in-out;will-change:transform}
.slide{flex:0 0 100%;display:flex;align-items:center;justify-content:center}
.slide-bg{width:100%;height:100%;border-radius:16px;background-repeat:no-repeat;background-position:center;background-size:contain;box-shadow:var(--shadow);background-color:#fff}
.slider-btn{position:absolute;top:50%;transform:translateY(-50%);background:#fff;border:1px solid var(--border);border-radius:999px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:var(--shadow)}
.slider-btn.prev{left:10px}
.slider-btn.next{right:10px}
.slider-btn{z-index:2}
.slider-dots{position:absolute;left:0;right:0;bottom:10px;display:flex;gap:6px;justify-content:center}
.slider-dots button{width:10px;height:10px;border-radius:999px;border:1px solid var(--border);background:#fff;opacity:.7;cursor:pointer}
.slider-dots button.active{background:var(--brand);border-color:var(--brand);opacity:1}

/* Constrain banner height for clean look */
.hero .slider{width:100%;max-width:900px;height:clamp(220px,40vw,420px);border-radius:16px;margin:0 auto}
.hero .slider .slides{height:100%}
.hero .slider .slide{height:100%}
.hero .slider .slide img{height:100%;object-fit:contain}

.grid{display:grid;gap:24px}
.products-grid{grid-template-columns:repeat(3,1fr)}
.product-image{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:12px;margin-bottom:10px}
.filters{display:flex;gap:8px;margin-bottom:16px;flex-wrap:wrap}
.filters .btn.ghost{border-color:#dcdfe3}
.filters .btn.ghost:hover{background:#f1f3f5}
.card{
  background:#fff;border:1px solid var(--border);border-radius:16px;padding:18px;
  box-shadow:var(--shadow);transition:transform .2s ease,box-shadow .2s ease
}
.card:hover{transform:translateY(-2px)}
.product-media{font-size:44px;line-height:1;margin-bottom:6px}
.product-name{margin:6px 0;font-size:18px}
.product-desc{margin:0 0 14px;color:var(--muted)}
.product-foot{display:flex;align-items:center;justify-content:space-between}
.price{font-weight:700}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 16px;border-radius:999px;border:1px solid var(--border);
  background:#fff;color:var(--text);cursor:pointer;text-decoration:none;font-weight:600
}
.btn.primary{background:linear-gradient(90deg,#0b4733,#093a2a);border-color:#093a2a;color:#fff}
.btn.ghost{background:transparent;border-color:var(--border)}
.btn.accent{background:var(--accent);border-color:var(--accent);color:#fff}
.btn:hover{filter:brightness(.98)}
.btn:active{transform:translateY(1px)}

.about-inner{display:grid;grid-template-columns:1fr;gap:24px}
.contact-inner .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.contact-form{display:grid;gap:12px}
.contact-form input,.contact-form textarea{
  width:100%;padding:12px 14px;border:1px solid var(--border);border-radius:10px;background:#fff
}
.contact-form button{justify-self:start}

.site-footer{border-top:1px solid var(--border);padding:24px 0;background:#fff}
.footer-inner{display:block}
.footer-columns{display:grid;grid-template-columns:2fr 1fr 1fr 2fr;gap:20px;align-items:flex-start}
.footer-brand{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.footer-brand .brand-row{display:flex;align-items:center;gap:10px}
.footer-brand .brand-text{font-size:18px}
.footer-marks{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:8px}
.social-links{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.social-links a{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:999px;border:1px solid var(--border);background:#fff;color:var(--text)}
.social-links a:hover{background:var(--surface)}
.social-links .label{font-size:12px;color:var(--muted);margin-right:6px}
.footer-nav a{display:block;color:var(--text);margin:6px 0}
.footer-contact p{margin:6px 0}
.footer-location h4{margin:0 0 8px}
.footer-location address{font-style:normal;color:var(--muted)}
.map-wrap{margin-top:10px;border:1px solid var(--border);border-radius:12px;overflow:hidden;background:#fff}
.map-wrap iframe{width:100%;height:200px;border:0}
.footer-bottom{margin-top:16px;padding-top:12px;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;color:var(--muted)}
.footer-credit{font-size:12px;color:var(--muted)}
.footer-credit a{color:var(--brand)}
.outlets-list{list-style:none;padding:0;margin:10px 0 0}
.outlets-list li{margin:6px 0}
.outlets-list button{background:transparent;border:1px solid var(--border);padding:6px 10px;border-radius:8px;cursor:pointer}
.outlets-list button:hover{background:var(--surface)}

.chip{display:inline-block;padding:6px 10px;border-radius:999px;background:var(--accent-2);color:var(--brand);font-weight:600;border:1px solid #d8e8df}

.veg-mark{display:inline-flex;align-items:center;gap:6px;margin-left:10px}
.veg-square{width:16px;height:16px;border:2px solid #0b4733;border-radius:2px;display:inline-flex;align-items:center;justify-content:center}
.veg-dot{width:10px;height:10px;border-radius:50%;background:#0b4733}
.veg-text{font-size:12px;font-weight:700;color:#0b4733}

.fssai-badge{display:inline-flex;align-items:center;gap:6px;margin-left:10px}
.fssai-pill{padding:4px 8px;border-radius:999px;border:1px solid #0b4733;background:#eef7f1;color:#0b4733;font-size:12px;font-weight:700}
.fssai-text{font-size:12px;color:#0b4733}
.footer-compliance{font-size:12px;color:var(--muted)}

.toast{
  position:fixed;right:16px;top:16px;background:#111;color:#fff;padding:12px 16px;border-radius:12px;
  box-shadow:var(--shadow);opacity:0;transform:translateY(-10px);pointer-events:none;transition:opacity .2s,transform .2s
}
.toast.show{opacity:1;transform:translateY(0)}

.gallery-grid{grid-template-columns:repeat(3,1fr)}
.gallery-item{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:12px;box-shadow:var(--shadow)}

@media (max-width:960px){
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .footer-columns{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .header-inner{height:64px}
  .nav-toggle{display:block}
  .site-nav{position:absolute;top:64px;right:0;background:#fff;border:1px solid var(--border);border-right:0;border-radius:12px;
    flex-direction:column;align-items:flex-start;padding:12px;gap:12px;display:none;min-width:220px;box-shadow:var(--shadow)}
  .site-nav.open{display:flex}
  .hero-copy h1{font-size:36px}
  .products-grid{grid-template-columns:1fr}
  .contact-inner .contact-grid{grid-template-columns:1fr}
  .footer-columns{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px;align-items:flex-start}
  body{
    background:
      radial-gradient(700px 300px at 10% -150px, #e9f7ee, transparent),
      radial-gradient(700px 300px at 90% -150px, #fff2ea, transparent),
      linear-gradient(180deg,#ffffff,#f7f9fb);
  }
  .hero .slider{max-width:100%;height:clamp(200px,50vw,360px);padding:0 24px}
  .slider-btn{width:32px;height:32px}
  .card{border-radius:20px}
  .btn.primary{background:linear-gradient(90deg,#0f5a3f,#0b4733);border-color:#0b4733}
  .btn.ghost{background:#ffffffa8}
  .filters{justify-content:center}
  .section{padding:52px 0}
}
@media (min-width:960px){
  .hero-inner{grid-template-columns:1fr 1fr}
}

@media (max-width:720px){
  .social-links a{width:34px;height:34px}
}
