/* =========================================================
   Maha Laxmi Namkin — Wholesale Namkeen Supplier, Udaipur
   Design tokens
   Colour   : Maroon #7A2027 / Maroon-dark #4E1218 / Gold #C8952A
              Gold-light #E8C275 / Cream #FBF3E6 / Paper #F1E4C8
              Brown-black #2B1B12
   Type     : Display — 'Rozha One' (serif, Indic-influenced)
              Body    — 'Mukta' (sans, wide weight range)
   Layout   : Left-aligned, asymmetric hero, scalloped "seal" dividers
              between sections, cornered product tags (no card-kit look)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rozha+One&family=Mukta:wght@400;500;600;700;800&display=swap');

:root{
  --maroon: #7A2027;
  --maroon-dark: #4E1218;
  --maroon-tint: #F4E3E1;
  --gold: #C8952A;
  --gold-light: #E8C275;
  --cream: #FBF3E6;
  --paper: #F1E4C8;
  --brown: #2B1B12;
  --brown-soft: #5A4535;
  --ok: #3F6B3F;
  --radius-s: 4px;
  --radius-m: 10px;
  --max: 1180px;
  --shadow: 0 10px 30px rgba(43,27,18,0.14);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: 'Mukta', system-ui, sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

h1,h2,h3,h4{
  font-family: 'Rozha One', 'Mukta', serif;
  font-weight: 400;
  color: var(--maroon-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1{ font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3{ font-size: 1.3rem; }
p{ margin: 0 0 1em; max-width: 62ch; }
.lede{ font-size: 1.15rem; color: var(--brown-soft); max-width: 56ch; }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.container{ max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section{ padding: 72px 0; }
.section--tight{ padding: 48px 0; }
.section--paper{ background: var(--paper); }
.section--maroon{ background: var(--maroon-dark); color: var(--cream); }
.section--maroon h2, .section--maroon h3{ color: var(--gold-light); }
.section--maroon p{ color: #EADFCB; }

.eyebrow-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon);
  background: var(--maroon-tint);
  border: 1px solid rgba(122,32,39,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head{ max-width: 720px; margin-bottom: 40px; }

/* ---------- Scalloped seal divider (packet-seal motif) ---------- */
.seal-divider{
  height: 26px;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 34px 26px;
}
.seal-divider--cream-to-paper{
  background-color: var(--paper);
  background-image: radial-gradient(circle at 17px 0, var(--cream) 15px, transparent 15.5px);
}
.seal-divider--paper-to-cream{
  background-color: var(--cream);
  background-image: radial-gradient(circle at 17px 0, var(--paper) 15px, transparent 15.5px);
}
.seal-divider--cream-to-maroon{
  background-color: var(--maroon-dark);
  background-image: radial-gradient(circle at 17px 0, var(--cream) 15px, transparent 15.5px);
}
.seal-divider--maroon-to-cream{
  background-color: var(--cream);
  background-image: radial-gradient(circle at 17px 0, var(--maroon-dark) 15px, transparent 15.5px);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--gold); color: var(--maroon-dark); }
.btn-primary:hover{ background: var(--gold-light); }
.btn-whatsapp{ background: #1F7A4D; color: #fff; }
.btn-whatsapp:hover{ background: #24904F; }
.btn-outline{ background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover{ background: var(--cream); color: var(--maroon-dark); }
.btn-outline-dark{ background: transparent; color: var(--maroon-dark); border-color: var(--maroon-dark); }
.btn-outline-dark:hover{ background: var(--maroon-dark); color: var(--cream); }
.btn-block{ width:100%; }
.btn-row{ display:flex; flex-wrap:wrap; gap: 14px; margin-top: 8px; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(122,32,39,0.15);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height: 78px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width: 42px; height:42px; border-radius: 50%;
  background: var(--maroon); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  font-family:'Rozha One', serif; font-size: 1.3rem;
  flex-shrink:0;
}
.brand-name{ font-family:'Rozha One', serif; font-size:1.28rem; color: var(--maroon-dark); line-height:1.1; }
.brand-name span{ display:block; font-family:'Mukta',sans-serif; font-size:0.66rem; font-weight:600; letter-spacing:0.03em; color: var(--brown-soft); margin-top:2px; }

.main-nav{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  font-weight: 600; color: var(--brown); font-size: 0.98rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{ color: var(--maroon); border-color: var(--gold); }

.header-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none; background:none; border:2px solid var(--maroon); border-radius: var(--radius-s);
  width: 44px; height: 44px; align-items:center; justify-content:center;
}
.nav-toggle svg{ width:22px; height:22px; }

@media (max-width: 900px){
  .main-nav{
    position: fixed; inset: 78px 0 0 0; background: var(--cream);
    flex-direction: column; align-items: flex-start; padding: 26px 24px;
    gap: 4px; transform: translateX(100%); transition: transform 0.25s ease;
    overflow-y:auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav a{ width:100%; padding: 14px 4px; border-bottom: 1px solid rgba(122,32,39,0.12); }
  .nav-toggle{ display:flex; }
  .header-cta .btn-primary-desktop{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(180deg, var(--cream) 0%, #F7EBD8 100%);
  padding: 56px 0 0;
  overflow:hidden;
}
.hero .container{
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items:center;
}
.hero-copy .eyebrow-tag{ background: #fff; }
.hero-trust{ display:flex; flex-wrap:wrap; gap: 12px 22px; margin: 26px 0 30px; padding:0; }
.hero-trust li{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:0.95rem; color: var(--brown-soft); }
.hero-trust li svg{ width:18px; height:18px; color: var(--maroon); flex-shrink:0; }

.hero-art{ position:relative; }
.hero-art svg{ width:100%; height:auto; }

/* ---------- Trust bar ---------- */
.trust-bar{ background: var(--maroon); color: var(--cream); }
.trust-bar .container{
  display:flex; flex-wrap:wrap; gap: 18px 34px; justify-content:center;
  padding: 18px 24px; font-weight:600; font-size:0.92rem;
}
.trust-bar li{ display:flex; align-items:center; gap:8px; }
.trust-bar svg{ width:16px; height:16px; color: var(--gold-light); }

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.product-card{
  position:relative;
  background: #fff;
  border: 1px solid rgba(122,32,39,0.16);
  padding: 26px 22px 22px;
  display:flex; flex-direction:column; gap:10px;
}
.product-card::before{
  content:"";
  position:absolute; top:0; left:0; width: 46px; height: 6px; background: var(--gold);
}
.product-tag{
  font-size: 0.78rem; font-weight:700; color: var(--maroon);
}
.product-media{
  width:100%; aspect-ratio: 4/3; border-radius: var(--radius-s);
  overflow:hidden; background: var(--paper); margin-bottom: 4px;
}
.product-media svg{ width:100%; height:100%; }
.product-card h3{ margin-bottom: 2px; font-size:1.18rem; }
.product-card p{ font-size:0.94rem; color: var(--brown-soft); margin-bottom: 10px; }
.product-card .btn-row{ margin-top:auto; gap:10px; }
.product-card .btn{ padding: 10px 16px; font-size:0.88rem; flex:1; }

.feature-card{
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
}
.feature-card h3{ font-size:1.08rem; margin-bottom:6px; }
.feature-card p{ font-size:0.95rem; color: var(--brown-soft); margin:0; }

.serve-list{ display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media (max-width:900px){ .serve-list{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:560px){ .serve-list{ grid-template-columns: repeat(2,1fr); } }
.serve-list li{
  background: #fff; border: 1px solid rgba(122,32,39,0.15);
  padding: 16px 14px; font-weight:600; font-size:0.92rem; text-align:center;
  border-radius: var(--radius-s);
}

.area-pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
.area-pill-list li{
  background: #fff; border:1px solid rgba(122,32,39,0.18); color: var(--maroon-dark);
  padding: 9px 16px; border-radius: 999px; font-weight:600; font-size:0.9rem;
}

/* ---------- Stat / info strip ---------- */
.info-strip{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 26px;
  background: #fff; border: 1px solid rgba(122,32,39,0.15); padding: 30px;
}
@media (max-width:768px){ .info-strip{ grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom: 1px solid rgba(122,32,39,0.18); }
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding: 20px 4px; font-weight:700; font-size:1.02rem; color: var(--maroon-dark);
}
.faq-q svg{ width:20px; height:20px; flex-shrink:0; transition: transform 0.2s ease; color: var(--maroon); }
.faq-item[open] .faq-q svg{ transform: rotate(45deg); }
.faq-a{ padding: 0 4px 20px; color: var(--brown-soft); }
.faq-item summary{ list-style:none; }
.faq-item summary::-webkit-details-marker{ display:none; }

/* ---------- Form ---------- */
.enquiry-panel{
  background: #fff; border: 1px solid rgba(122,32,39,0.18);
  padding: 32px; box-shadow: var(--shadow);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:640px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 16px; }
.field label{ display:block; font-weight:700; font-size:0.9rem; margin-bottom:6px; color: var(--maroon-dark); }
.field input, .field select, .field textarea{
  width:100%; padding: 12px 14px; border: 1.5px solid rgba(122,32,39,0.25);
  border-radius: var(--radius-s); font-family:inherit; font-size:0.98rem; background:#FEFCF8;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: 3px solid var(--gold); outline-offset:1px; border-color: var(--maroon); }
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size:0.85rem; color: var(--brown-soft); margin-top:10px; }

/* ---------- Contact blocks ---------- */
.contact-block{ display:flex; gap:14px; padding: 18px 0; border-bottom:1px solid rgba(122,32,39,0.15); }
.contact-block:last-child{ border-bottom:none; }
.contact-block svg{ width:22px; height:22px; color: var(--maroon); flex-shrink:0; margin-top:3px; }
.contact-block h3{ font-size:1rem; margin-bottom:2px; font-family:'Mukta',sans-serif; font-weight:700; color: var(--maroon-dark); }
.contact-block p{ margin:0; color: var(--brown-soft); font-size:0.96rem; }
.map-embed{ width:100%; aspect-ratio: 16/9; border:1px solid rgba(122,32,39,0.18); background: var(--paper); display:flex; align-items:center; justify-content:center; color: var(--brown-soft); font-size:0.92rem; text-align:center; padding: 20px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--maroon-dark); color: #EADFCB; padding-top: 56px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
@media (max-width:768px){ .footer-grid{ grid-template-columns: 1fr; gap:30px; } }
.footer-grid h3{ color: var(--gold-light); font-size:0.98rem; font-family:'Mukta',sans-serif; font-weight:700; margin-bottom:14px; }
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid ul a{ color:#EADFCB; opacity:0.92; }
.footer-grid ul a:hover{ color: var(--gold-light); }
.footer-brand p{ color:#D8C6AE; font-size:0.94rem; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 20px 0; font-size:0.85rem; color:#C9B79C;
  display:flex; flex-wrap:wrap; gap:10px 24px; justify-content:space-between;
}
.footer-bottom a{ color:#C9B79C; }
.footer-bottom a:hover{ color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.wa-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: #1F7A4D; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.wa-float:hover{ transform: scale(1.07); }
.wa-float svg{ width:30px; height:30px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ font-size:0.85rem; color: var(--brown-soft); padding: 18px 0 0; }
.breadcrumb a{ color: var(--maroon); font-weight:600; }

/* ---------- Utility ---------- */
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
