/* =========================================================
   SOURISH AGARBATI — MAIN STYLESHEET
   Design language: "The Ember Line"
   A single lit incense stick — a thin gold line with a glowing
   ember — is the recurring signature used to divide sections,
   mark navigation, and anchor the hero, instead of generic
   numbered badges.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root{
  /* ---- Color tokens (from brand logo: deep navy + warm amber) ---- */
  --cream:        #FBF7EF;
  --cream-soft:   #F3ECDC;
  --white:        #FFFFFF;
  --brown-deep:   #14212A;
  --brown-mid:    #131415;
  --brown-line:   #DCD2BC;
  --gold:         #F39F3D;
  --gold-light:   #F7BD6F;
  --green-deep:   #1C2E3A;
  --green-mid:    #24384A;

  /* ---- Type tokens ---- */
  --font-display: 'Cinzel', serif;
  --font-eyebrow: 'Cinzel', serif;
  --font-body:    'Poppins', sans-serif;

  /* ---- Layout tokens ---- */
  --max-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --shadow-soft: 0 12px 32px -16px rgba(20,33,42,0.32);
  --shadow-card: 0 8px 24px -12px rgba(20,33,42,0.24);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------
   RESET
--------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body{
  font-family: var(--font-body);
  color: var(--brown-deep);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display:block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea{ font-family: inherit; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; color: var(--brown-deep); line-height: 1.15; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--font-eyebrow);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:'';
  width: 26px; height: 1px;
  background: var(--gold);
}

.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2{
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 10px;
}
.section-head p{
  margin-top: 14px;
  color: var(--brown-mid);
  font-size: 16.5px;
}
.section-head.center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section{ padding: 96px 0; position: relative; }

/* ---------------------------------------------------------
   THE EMBER LINE — signature divider
--------------------------------------------------------- */
.ember-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin: 0 auto 28px;
  width: fit-content;
}
.ember-divider .stick{
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown-line));
}
.ember-divider .stick.right{
  background: linear-gradient(90deg, var(--brown-line), transparent);
}
.ember-divider .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 70%);
  box-shadow: 0 0 10px 2px rgba(184,134,59,0.55);
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(184,134,59,0.65);
}
.btn-gold:hover{ background: var(--brown-deep); transform: translateY(-2px); }

.btn-outline{
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-outline-dark{
  border: 1px solid var(--brown-mid);
  color: var(--brown-deep);
  background: transparent;
}
.btn-outline-dark:hover{ background: var(--brown-deep); color: var(--white); transform: translateY(-2px); }

.btn-green{
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(30,58,44,0.6);
}
.btn-green:hover{ background: var(--gold); transform: translateY(-2px); }

.btn-whatsapp{
  background: #1F8A4C;
  color: var(--white);
  width: 100%;
  padding: 12px 20px;
  font-size: 12px;
}
.btn-whatsapp:hover{ background: var(--gold); color: var(--brown-deep); }

/* ---------------------------------------------------------
   HEADER / NAV
--------------------------------------------------------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(20,33,42,0.55) 0%, rgba(20,33,42,0.0) 100%);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.site-header.is-scrolled{
  background: rgba(20,33,42,0.94);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 6px 24px -12px rgba(20,33,42,0.4);
}
.logo img{ height: 90px; width:auto; transition: height .4s var(--ease); }
.site-header.is-scrolled .logo img{ height: 75px; }

.nav-menu{
  display:flex;
  align-items:center;
  gap: 44px;
}
.nav-menu a{
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after{ width:100%; }
.nav-menu a.active{ color: var(--gold-light); }

.header-actions{ display:flex; align-items:center; gap: 18px; }

.hamburger{
  display:none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
}
.hamburger span{
  height: 2px; width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .35s var(--ease);
}
.hamburger.is-active span{ background: var(--brown-deep); }
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity: 0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   HERO / SLIDER  (index page)
--------------------------------------------------------- */
.hero-slider{
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity 1.3s ease-in-out;
  display:flex; align-items:center;
  background-size: cover; background-position: center;
}
.hero-slide.is-active{ opacity: 1; z-index: 2; }
.hero-slide::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(14,22,28,0.68) 0%, rgba(14,22,28,0.58) 35%, rgba(14,22,28,0.94) 100%);
  z-index: 0;
}
.hero-slide .slide-bg{
  position:absolute; inset:0;
  background: linear-gradient(135deg, var(--green-deep), var(--brown-deep));
  z-index: -1;
}
.hero-slide[data-theme="1"] .slide-bg{ background: linear-gradient(135deg, #1E3A2C, #2A1810); }
.hero-slide[data-theme="2"] .slide-bg{ background: linear-gradient(135deg, #3C2415, #1E3A2C); }
.hero-slide[data-theme="3"] .slide-bg{ background: linear-gradient(135deg, #2A1810, #6B4226); }

.hero-content{
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 32px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.hero-content .eyebrow{ color: var(--gold-light); justify-content:center; }
.hero-content .eyebrow::before{ background: var(--gold-light); }
.hero-content h1{
  color: var(--white);
  font-size: clamp(38px, 6.4vw, 60px);
  margin-top: 18px;
  font-weight: 500;
  font-style: italic;
}
.hero-content p{
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-left:auto; margin-right:auto;
}
.hero-btns{
  margin-top: 38px;
  display:flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-smoke{
  position:absolute;
  bottom:0; left:50%;
  width:2px; height: 40%;
  pointer-events:none;
  z-index: 2;
  opacity: 0.5;
}

.slider-nav{
  position:absolute;
  top:50%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
  transition: background .3s, border-color .3s;
}
.slider-nav:hover{ background: rgba(255,255,255,0.15); border-color: var(--gold-light); }
.slider-nav.prev{ left: 26px; }
.slider-nav.next{ right: 26px; }

.slider-dots{
  position:absolute;
  bottom: 34px; left:0; right:0;
  z-index: 5;
  display:flex; justify-content:center; gap: 12px;
}
.slider-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background .3s, transform .3s;
}
.slider-dots button.is-active{
  background: var(--gold-light);
  transform: scale(1.3);
}

.scroll-cue{
  position:absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display:none;
}

/* ---------------------------------------------------------
   PAGE HERO (inner pages)
--------------------------------------------------------- */
.page-hero{
  position: relative;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, var(--brown-deep), var(--green-deep));
  color: var(--white);
  text-align:center;
  overflow:hidden;
}
.page-hero::after{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 80% 20%, rgba(228,201,137,0.18), transparent 55%);
}
.page-hero .eyebrow{ color: var(--gold-light); justify-content:center; position:relative; z-index:2; }
.page-hero .eyebrow::before{ background: var(--gold-light); }
.page-hero h1{
  color: var(--white);
  font-size: clamp(36px, 5.6vw, 60px);
  font-style: italic;
  font-weight: 500;
  margin-top: 16px;
  position:relative; z-index:2;
}
.page-hero p{
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-left:auto; margin-right:auto;
  position:relative; z-index:2;
}
.breadcrumb{
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position:relative; z-index:2;
}
.breadcrumb span{ color: var(--gold-light); }

/* ---------------------------------------------------------
   REVEAL ANIMATIONS
--------------------------------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: .12s; }
.reveal-delay-2{ transition-delay: .24s; }
.reveal-delay-3{ transition-delay: .36s; }
.reveal-delay-4{ transition-delay: .48s; }

/* ---------------------------------------------------------
   ABOUT SHORT (home)
--------------------------------------------------------- */
.about-short{ background: var(--cream); }
.about-short .grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items:center;
}
.about-visual{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 5/5;
  background: linear-gradient(160deg, var(--brown-mid), var(--brown-deep));
  box-shadow: var(--shadow-soft);
}
.about-visual .placeholder-art{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:14px;
  color: rgba(255,255,255,0.85);
}
.about-visual .placeholder-art svg{ width:64px; height:64px; opacity:.85; }
.about-visual .placeholder-art span{
  font-family: var(--font-eyebrow);
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
}
.about-visual img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.about-visual .frame-badge{
  position:absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.94);
  color: var(--brown-deep);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.3;
  box-shadow: var(--shadow-card);
}
.about-visual .frame-badge strong{
  display:block;
  font-size: 26px;
  color: var(--gold);
}
.about-text h2{ font-size: clamp(30px,4vw,42px); margin-top: 10px; }
.about-text p{ margin-top: 18px; color: var(--brown-mid); font-size: 16px; }
.about-text .btn{ margin-top: 30px; }

/* ---------------------------------------------------------
   WHY CHOOSE US
--------------------------------------------------------- */
.why-us{ background: var(--brown-deep); color: var(--white); }
.why-us .eyebrow{ color: var(--gold-light); }
.why-us .eyebrow::before{ background: var(--gold-light); }
.why-us .section-head h2{ color: var(--white); }
.why-us .section-head p{ color: rgba(255,255,255,0.7); }

.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 38px 26px;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.why-card:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}
.why-card .icon{
  width: 52px; height: 52px;
  margin-bottom: 22px;
  color: var(--gold-light);
}
.why-card h3{ color: var(--white); font-size: 20px; }
.why-card p{ margin-top: 10px; color: rgba(255,255,255,0.66); font-size: 14.5px; }

/* ---------------------------------------------------------
   PRODUCT CATEGORIES
--------------------------------------------------------- */
.categories{ background: var(--cream-soft); }
.cat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--green-mid), var(--brown-deep));
  display:flex; align-items:flex-end;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.cat-card:nth-child(2n){ background: linear-gradient(150deg, var(--brown-mid), var(--green-deep)); }
.cat-card:nth-child(3n){ background: linear-gradient(150deg, var(--gold), var(--brown-deep)); }
.cat-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.cat-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .7s var(--ease);
}
.cat-card:hover img{ transform: scale(1.08); }
.cat-card::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,12,7,.1) 35%, rgba(20,12,7,.82) 100%);
  z-index: 1;
}
.cat-card .icon-wrap{
  position:absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; opacity: .8; color: var(--gold-light);
  z-index: 2;
}
.cat-card .cat-label{
  position:relative;
  z-index:2;
  width:100%;
  padding: 22px 16px;
  text-align:center;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
}
.cat-card .cat-label h3{ color: var(--white); font-size: 19px; }
.cat-card .cat-label span{ font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.7); }

/* ---------------------------------------------------------
   PRODUCT CARDS (featured + catalog)
--------------------------------------------------------- */
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.featured-products .product-grid{
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display:flex; flex-direction:column;
}
.product-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.product-media{
  position:relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--cream-soft), var(--brown-line));
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.product-media svg{ width: 46%; height: 46%; color: var(--brown-mid); opacity:.75; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-media .badge{
  position:absolute; top:14px; left:14px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}
.product-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap: 10px; flex:1; }
.product-body h3{ font-size: 20px; }
.product-meta{
  display:flex; justify-content:space-between;
  font-size: 12.5px; color: var(--brown-mid);
  letter-spacing: .4px;
  border-top: 1px solid var(--brown-line);
  border-bottom: 1px solid var(--brown-line);
  padding: 10px 0;
}
.product-price{ font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight:600; }
.product-body p.desc{ font-size: 13.5px; color: var(--brown-mid); flex:1; }
.product-body .btn-whatsapp{ margin-top: 6px; }

/* ---------------------------------------------------------
   CATALOG BANNER (index page)
--------------------------------------------------------- */
.catalog-cta{
  background: linear-gradient(135deg, var(--green-deep), var(--brown-deep));
  color: var(--white);
  text-align:center;
  padding: 110px 0;
  position: relative;
  overflow:hidden;
}
.catalog-cta::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 15% 85%, rgba(228,201,137,0.16), transparent 55%);
}
.catalog-cta .eyebrow{ color: var(--gold-light); justify-content:center; position:relative; z-index:2; }
.catalog-cta .eyebrow::before{ background: var(--gold-light); }
.catalog-cta h2{
  color: var(--white); font-style: italic; font-weight:500;
  font-size: clamp(30px,4.4vw,48px);
  margin-top: 14px; position:relative; z-index:2;
}
.catalog-cta .btn{ margin-top: 34px; position:relative; z-index:2; }

/* ---------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------- */
.testimonials{ background: var(--cream); }
.testi-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease);
}
.testi-card:hover{ transform: translateY(-6px); }
.testi-stars{ color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testi-card p.quote{
  margin-top: 14px;
  color: var(--brown-mid);
  font-size: 15px;
  font-style: italic;
}
.testi-person{
  margin-top: 22px;
  display:flex; align-items:center; gap: 14px;
}
.testi-avatar{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-light), var(--brown-mid));
  display:flex; align-items:center; justify-content:center;
  color: var(--white); font-family: var(--font-display); font-weight:600;
}
.testi-person strong{ display:block; font-size: 14.5px; }
.testi-person span{ font-size: 12px; color: var(--brown-mid); }

/* ---------------------------------------------------------
   CONTACT CTA BANNER
--------------------------------------------------------- */
.contact-cta{
  background: var(--gold);
  color: var(--white);
  text-align:center;
  padding: 90px 0;
}
.contact-cta h2{
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px,4vw,44px);
}
.contact-cta .btn{ margin-top: 30px; }

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.site-footer{
  background: var(--brown-deep);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo img{ height: 90px; }
.footer-brand p{ margin-top: 8px; font-size: 15px; line-height: 1.7; max-width: 320px; }
.footer-social{ display:flex; gap: 12px; margin-top: 24px; }
.footer-social a{
  width: 41px; height: 41px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  transition: background .3s, border-color .3s;
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); }
.footer-social svg{ width: 25px; height: 25px; }

.site-footer h4{
  color: var(--white);
  font-family: var(--font-eyebrow);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer ul li{ margin-bottom: 12px; font-size: 14px; }
.site-footer ul li a{ transition: color .3s, padding-left .3s; }
.site-footer ul li a:hover{ color: var(--gold-light); padding-left: 4px; }
.footer-contact li{ display:flex; gap: 10px; align-items:flex-start; }
.footer-contact svg{ width: 18px; height: 18px; flex-shrink:0; margin-top: 3px; color: var(--gold-light); }

.footer-bottom{
  padding: 24px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size: 14.5px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a{ color: var(--gold-light); }

/* whatsapp floating button */
.float-whatsapp{
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 28px -8px rgba(30,58,44,0.7);
  transition: transform .3s var(--ease), background .3s;
}
.float-whatsapp:hover{ transform: scale(1.08); background: #25D366; }
.float-whatsapp svg{ width: 26px; height: 26px; }

/* ---------------------------------------------------------
   ABOUT PAGE SPECIFIC
--------------------------------------------------------- */
.story-section .grid,
.mission-section .grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
}
.story-section .grid{ grid-template-columns: 1.05fr 0.95fr; }
.mv-cards{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}
.mv-card h3{ font-size: 21px; }
.mv-card p{ margin-top: 12px; font-size: 14.5px; color: var(--brown-mid); }

.process-steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step{
  position: relative;
  padding: 34px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.process-step .step-num{
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-light);
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}
.process-step h3{ margin-top: 8px; font-size: 18px; }
.process-step p{ margin-top: 8px; font-size: 13.5px; color: var(--brown-mid); }
.process-step:not(:last-child)::after{
  content:'';
  position:absolute; top: 50%; right: -24px;
  width: 24px; height: 1px;
  background: var(--brown-line);
  display: none;
}

.quality-section{ background: var(--green-deep); color: var(--white); }
.quality-section .section-head h2{ color: var(--white); }
.quality-section .section-head p{ color: rgba(255,255,255,0.72); }
.quality-list{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quality-item{
  display:flex; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 22px;
}
.quality-item svg{ width: 26px; height: 26px; color: var(--gold-light); flex-shrink:0; }
.quality-item h4{ color: var(--white); font-family: var(--font-body); font-size: 15.5px; font-weight:600; }
.quality-item p{ margin-top: 6px; font-size: 13.5px; color: rgba(255,255,255,0.68); }

/* ---------------------------------------------------------
   CATALOG PAGE SPECIFIC
--------------------------------------------------------- */
.catalog-tabs{
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}
.tab-btn{
  padding: 12px 26px;
  border: 1px solid var(--brown-line);
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown-mid);
  transition: all .35s var(--ease);
}
.tab-btn:hover{ border-color: var(--gold); color: var(--brown-deep); }
.tab-btn.is-active{
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--white);
}
.product-card.is-hidden{ display:none; }
.catalog-empty{
  text-align:center;
  padding: 60px 20px;
  color: var(--brown-mid);
  display:none;
}
.catalog-empty.is-visible{ display:block; }

/* ---------------------------------------------------------
   CONTACT PAGE SPECIFIC
--------------------------------------------------------- */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 23px;
  text-align:center;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease);
}
.contact-card:hover{ transform: translateY(-6px); }
.contact-card .icon{
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.contact-card h3{ font-size: 17px; }
.contact-card p{ margin-top: 8px; font-size: 14.5px; color: var(--brown-mid); }

.contact-form-section .grid{
  display:grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
}
.form-field{ margin-bottom: 22px; }
.form-field label{
  display:block; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown-mid); margin-bottom: 8px;
}
.form-field input, .form-field textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14.5px;
  color: var(--brown-deep);
  transition: border-color .3s;
}
.form-field input:focus, .form-field textarea:focus{ border-color: var(--gold); }
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-note{
  margin-top: 6px;
  font-size: 12px;
  color: var(--brown-mid);
  min-height: 18px;
}
.form-note.is-error{ color: #a13a2e; }
.form-note.is-success{ color: var(--green-deep); }

.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-card); */
  /* height: 100%; */
  min-height: 340px;
}
.map-wrap iframe{ width: 100%; height: 100%; min-height: 340px; border:0; filter: grayscale(20%); }

.info-side h3{ font-size: 22px; margin-bottom: 18px; }
.info-side .quality-item{
  background: var(--cream-soft);
  border: 1px solid var(--brown-line);
  margin-bottom: 16px;
}
.info-side .quality-item svg{ color: var(--gold); }
.info-side .quality-item h4{ color: var(--brown-deep); }
.info-side .quality-item p{ color: var(--brown-mid); }

/* utility */
.text-center{ text-align:center; }
.mt-40{ margin-top:40px; }


.float-whatsapp {
  animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {
   0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  100% {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
}

/* ===== Order Buttons (Amazon / Flipkart) ===== */
.product-buy-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ============================================
   PRODUCT BUY BUTTONS - RESPONSIVE FIX
   ============================================ */

.product-buy-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Consistent gap between buttons */
  width: 100%;
}

.product-buy-buttons .btn {
  /* ── Flexible sizing ── */
  flex: 1 1 auto;
  /* Grow, shrink, auto basis */
  min-width: 120px;
  /* Smaller minimum for mobile */
  max-width: 100%;

  /* ── Visual ── */
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  /* ── Layout ── */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  /* ── Interaction ── */
  transition: all 0.25s ease;
  cursor: pointer;

  /* ── Prevent overflow ── */
  box-sizing: border-box;
  word-break: break-word;
  white-space: normal;
  /* Allow text to wrap if needed */
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ── Tablet (768px and down) ── */
@media (max-width: 768px) {
  .product-buy-buttons {
    gap: 8px;
  }

  .product-buy-buttons .btn {
    flex: 1 1 45%;
    /* Two per row with gap */
    min-width: 100px;
    padding: 11px 14px;
    font-size: 13px;
  }
  .eyebrow::before{
  content:'';
  width: 26px; height: 1px;
  background: none!important;
}
}

/* ── Mobile Large (600px and down) ── */
@media (max-width: 600px) {
  .product-buy-buttons {
    gap: 8px;
  }

  .product-buy-buttons .btn {
    flex: 1 1 100%;
    /* Full width – stack vertically */
    min-width: 0;
    /* Remove min-width constraint */
    padding: 14px 12px;
    /* Taller touch target */
    font-size: 14px;
    border-radius: 10px;
    /* Slightly softer on mobile */
  }
}

/* ── Mobile Small (400px and down) ── */
@media (max-width: 400px) {
  .product-buy-buttons .btn {
    padding: 16px 12px;
    /* Even taller for fat fingers */
    font-size: 15px;
    gap: 8px;
  }
}

/* ============================================
   OPTIONAL: 3+ buttons – force wrap gracefully
   ============================================ */

.product-buy-buttons .btn:nth-child(3) {
  /* When 3+ buttons, third one wraps on tablet */
  flex-basis: auto;
}

@media (max-width: 768px) {
  .product-buy-buttons .btn:nth-child(3) {
    flex: 1 1 100%;
    /* Third button takes full width on tablet */
  }
}

/* ============================================
   OPTIONAL: Dark / light mode safe
   ============================================ */

.product-buy-buttons .btn:active {
  transform: scale(0.97);
  /* Subtle press feedback */
}

/* High-contrast / accessibility – ensure touch targets ≥ 44px */
@media (pointer: coarse) {
  .product-buy-buttons .btn {
    min-height: 48px;
    /* Minimum touch target */
  }
}

/* Amazon */
.btn-amazon {
  background: #ffa41c;
  color: #232f3e;
  border: 2px solid #ffa41c;
}

.btn-amazon:hover {
  background: #ffffff;
  color: #FF9900;
  border-color: #FF9900;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 153, 0, 0.35);
}

/* Flipkart */
.btn-flipkart {
  background: linear-gradient(90deg, rgb(255, 229, 31), rgb(255, 205, 3));
  color: #000;
  border: 2px solid #ffcd03;
}

.btn-flipkart:hover {
  background: #FFFFFF;
  color: #000;
  border-color: #ffcd03;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 205, 3, 0.35);
}


.view-all-wrap{
  text-align: center;
  margin-top: 40px;
}



/* ===== Quantity input box ===== */
.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-input {
  width: 80px;
  height: 40px;
  padding: 6px 10px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.qty-input:disabled {
  background: #f2f2f2;
  color: #999;
  border-color: #ddd;
}

.qty-input:focus {
  outline: none;
  border-color: #F7BD6F;
  
}

/* ===== Order modal inputs (Name / Mobile / Address) ===== */
#orderModal input,
#orderModal textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;        /* 16px+ jaruri chhe, nahi to iOS ma zoom-in thai jashe */
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}

#orderModal textarea {
  resize: vertical;
  min-height: 70px;
}

/* ===== Mobile specific tweaks ===== */
@media (max-width: 480px) {
  .item-row {
    justify-content: space-between;
  }

  .qty-input {
    width: 70px;
    height: 40px;
    font-size: 16px;      /* mobile ma zoom avoid karva */
  }

  .item-names {
    flex: 1;
    min-width: 0;
  }

  #orderModal > div {
    width: 92%;
    padding: 20px 16px;
  }

  #orderModal input,
  #orderModal textarea {
    height: 44px;         /* touch-friendly */
    padding: 10px;
  }

  #orderModal textarea {
    height: auto;
    min-height: 80px;
  }
}

/* =========================================================
   FAQ PAGE SPECIFIC STYLES
   ========================================================= */
.faq-section {
  padding: 70px 0 90px;
  background: var(--cream);
}

.faq-search-bar {
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
}

.faq-search-bar input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1.5px solid var(--brown-line);
  border-radius: 999px;
  background: var(--white);
  font-size: 15px;
  color: var(--brown-deep);
  box-shadow: var(--shadow-card);
  transition: border-color .3s, box-shadow .3s;
}

.faq-search-bar input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 159, 61, 0.18);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gold);
  pointer-events: none;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.faq-tab-btn {
  padding: 10px 22px;
  border: 1px solid var(--brown-line);
  border-radius: 30px;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--brown-mid);
  transition: all .3s var(--ease);
  cursor: pointer;
}

.faq-tab-btn:hover {
  border-color: var(--gold);
  color: var(--brown-deep);
  background: var(--cream-soft);
}

.faq-tab-btn.is-active {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--white);
  box-shadow: 0 4px 14px -4px rgba(20, 33, 42, 0.35);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.faq-item:hover {
  border-color: var(--gold-light);
}

.faq-item.is-open {
  border-color: var(--gold);
  box-shadow: 0 8px 24px -10px rgba(20, 33, 42, 0.18);
}

.faq-item.is-hidden {
  display: none !important;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.4;
  margin: 0;
  transition: color .25s ease;
}

.faq-item.is-open .faq-question h3 {
  color: #B46C14;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, transform .35s var(--ease);
  color: var(--brown-deep);
}

.faq-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform .35s var(--ease);
}

.faq-item.is-open .faq-arrow {
  background: var(--gold);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s cubic-bezier(0, 1, 0, 1), opacity .3s var(--ease);
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  transition: max-height .45s ease-in-out, opacity .35s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 22px 24px;
  font-size: 14.5px;
  color: var(--brown-mid);
  line-height: 1.7;
  border-top: 1px dashed rgba(220, 210, 188, 0.5);
  margin-top: 4px;
  padding-top: 14px;
}

.faq-answer-inner p + p {
  margin-top: 10px;
}

.faq-answer-inner ul {
  list-style: disc;
  margin: 10px 0 10px 22px;
}

.faq-answer-inner li {
  margin-bottom: 6px;
}

.faq-answer-inner a {
  color: #B46C14;
  text-decoration: underline;
  font-weight: 500;
}

.faq-empty-state {
  text-align: center;
  padding: 50px 20px;
  display: none;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--brown-line);
  max-width: 860px;
  margin: 0 auto;
}

.faq-empty-state.is-visible {
  display: block;
}

.faq-empty-state h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brown-deep);
}

.faq-empty-state p {
  font-size: 14px;
  color: var(--brown-mid);
}

/* FAQ Help CTA */
.faq-help-card {
  max-width: 860px;
  margin: 54px auto 0;
  padding: 36px 32px;
  background: linear-gradient(135deg, #1C2E3A, #14212A);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.faq-help-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(243, 159, 61, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq-help-card h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--white);
  margin-bottom: 10px;
}

.faq-help-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 24px;
}

.faq-help-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
