/* ============================================================
   SHE SWAAD — Brand Stylesheet
   Colors: Terracotta, Gold, Cream
   Mobile-first, premium feel
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --primary:      #8B3A1F;
  --primary-dark: #5C2210;
  --primary-light:#B25A36;
  --gold:         #C9922A;
  --gold-light:   #F2D57E;
  --gold-pale:    #FBF0D4;
  --cream:        #FFF8E7;
  --cream-dark:   #F5E4C3;
  --text:         #2C1810;
  --text-mid:     #6B3B2A;
  --text-light:   #A0755E;
  --white:        #FFFFFF;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(44,24,16,0.10);
  --shadow-lg:    0 8px 40px rgba(44,24,16,0.15);
  --transition:   0.3s ease;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Poppins', system-ui, sans-serif;
  --font-hindi:   'Hind', 'Poppins', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,146,42,0.12);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tag-light {
  color: var(--gold-light);
  background: rgba(242,213,126,0.15);
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 90px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .section-sub {
  margin-top: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139,58,31,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,58,31,0.35);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-cream {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-cream:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-outline-cream {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.1); }

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44,24,16,0.10);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-badge { width: 48px; height: 48px; flex-shrink: 0; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-en {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.navbar:not(.scrolled) .nav-brand-en { color: var(--white); }
.nav-brand-hi {
  font-family: var(--font-hindi);
  font-size: 0.75rem;
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--primary); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #B25A36 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,146,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(242,213,126,0.10) 0%, transparent 50%);
}
.hero-deco {
  position: absolute;
  pointer-events: none;
}
.hero-deco-tl { width: 340px; top: -60px; left: -80px; opacity: 0.6; }
.hero-deco-br { width: 400px; bottom: -80px; right: -60px; opacity: 0.5; transform: rotate(180deg); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  flex: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-family: var(--font-hindi);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero jar visual */
.hero-jar-visual {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}
.jar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  animation: rotate-ring linear infinite;
}
.jar-ring-1 { width: 320px; height: 320px; animation-duration: 20s; }
.jar-ring-2 { width: 240px; height: 240px; animation-duration: 14s; animation-direction: reverse; border-color: rgba(201,146,42,0.3); }
.jar-ring-3 { width: 160px; height: 160px; animation-duration: 10s; border-color: rgba(242,213,126,0.2); }
@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.jar-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.jar-emoji { font-size: 2.8rem; }
.jar-center p { font-family: var(--font-serif); color: var(--white); font-size: 0.85rem; font-weight: 600; }
.jar-center small { color: var(--gold-light); font-size: 0.7rem; font-family: var(--font-hindi); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.scroll-dot {
  width: 6px; height: 24px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--gold-light);
  border-radius: 1px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { top: 3px; opacity: 1; }
  80%       { top: 11px; opacity: 0; }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--primary-dark);
  padding: 20px 20px;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  color: var(--white);
}
.trust-item span { font-size: 1.5rem; }
.trust-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }
.trust-item small { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ---- PRODUCTS ---- */
.products-section { background: var(--white); }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  border: 2px solid var(--cream-dark);
  background: var(--cream);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.product-img-placeholder span { font-size: 4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.product-img-placeholder small { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-badge.bestseller { background: var(--primary); }
.product-badge.new { background: #2E7D32; }
.product-badge.seasonal { background: #E65100; }

.product-body {
  padding: 20px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.product-name-hi {
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.product-tag {
  font-size: 0.68rem;
  background: rgba(201,146,42,0.18);
  color: var(--primary-dark);
  padding: 3px 9px;
  border-radius: 50px;
  font-weight: 600;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-pricing { display: flex; flex-direction: column; gap: 2px; }
.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.product-weight { font-size: 0.72rem; color: var(--text-mid); }

.add-to-cart {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}
.add-to-cart:hover { background: var(--primary-dark); transform: scale(1.04); }
.add-to-cart.added {
  background: var(--wa-green);
  animation: pop 0.3s ease;
}
@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ---- CART BAR ---- */
.cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  box-shadow: 0 -4px 24px rgba(44,24,16,0.2);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-bar:not(.hidden) { transform: translateY(0); }
.cart-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.cart-sep { opacity: 0.4; }
.cart-bar strong { font-size: 1.1rem; color: var(--gold-light); }
.cart-clear {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.cart-clear:hover { background: rgba(255,255,255,0.22); color: var(--white); }
.footer-wa { margin-top: 4px; }

/* ---- STORY ---- */
.story-section { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
  height: 480px;
}
.story-card-main {
  position: absolute;
  left: 0; top: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.story-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
}
.story-img-placeholder span { font-size: 4rem; }
.story-img-placeholder p { font-family: var(--font-serif); font-size: 1.1rem; }
.story-img-placeholder small { font-size: 0.72rem; opacity: 0.6; }

.story-stat-card {
  position: absolute;
  right: 0; bottom: 60px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.story-stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
.story-stat-card span { font-size: 0.78rem; color: var(--text-mid); font-weight: 500; }

.story-stat-card-2 {
  position: absolute;
  right: 40px; bottom: 0;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 12px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.story-stat-card-2 strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.story-stat-card-2 span { font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 500; }

.story-deco-ring {
  position: absolute;
  top: -20px; left: -20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px dashed var(--gold-light);
  opacity: 0.4;
}

.story-content { }
.story-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.tl-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 16px;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}
.tl-item:last-child::after { display: none; }
.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--cream);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.tl-dot.active { background: var(--gold); }
.tl-body strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 5px; }
.tl-body p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ---- PROCESS ---- */
.process-section {
  background: var(--primary-dark);
}
.process-section .section-title { color: var(--white); }
.process-section .section-title em { color: var(--gold-light); }
.process-section .tag { background: rgba(201,146,42,0.2); color: var(--gold-light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,146,42,0.2);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.process-icon { font-size: 2.2rem; margin-bottom: 14px; }
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ---- SEASONAL BANNER ---- */
.seasonal-banner {
  background: linear-gradient(135deg, #D4650A 0%, #E8891A 40%, #C9922A 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seasonal-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}
.seasonal-deco svg { width: 500px; height: 500px; }
.seasonal-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.seasonal-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.seasonal-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.seasonal-banner h2 em { color: rgba(255,255,255,0.85); font-style: italic; }
.seasonal-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 32px; line-height: 1.7; }
.seasonal-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- GIFTING ---- */
.gifting-section { background: var(--cream); }
.gifting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gift-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.gift-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.gift-list span {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.gift-visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
}
.gift-top {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 28px;
  text-align: center;
}
.gift-ribbon { font-size: 3rem; display: block; margin-bottom: 8px; }
.gift-top h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.3rem;
}
.gift-products {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gift-jar {
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}
.gift-bottom {
  padding: 16px 20px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gift-bottom small { font-size: 0.72rem; color: var(--text-light); }
.gift-bottom strong { font-family: var(--font-serif); font-size: 1.2rem; color: var(--primary); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--gold-light); transform: translateY(-4px); }
.testi-card.featured {
  background: var(--primary);
  color: var(--white);
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card.featured .testi-stars { color: var(--gold-light); }
.testi-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.testi-card.featured p { color: rgba(255,255,255,0.85); }
.testi-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
}
.testi-card.featured .testi-author { color: var(--gold-light); }

/* ---- ORDER CTA ---- */
.order-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 90px 20px;
  text-align: center;
}
.order-content { max-width: 680px; margin: 0 auto; }
.order-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.order-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.o-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  max-width: 180px;
  text-align: center;
}
.o-num {
  display: flex;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.o-step p { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.o-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

.order-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.footer-logo span { color: var(--gold-light); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
}
.footer-socials a:hover { color: var(--gold-light); border-color: var(--gold); }
.footer-links h3, .footer-contact h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 8px;
}
.footer-contact a:not(.btn) { color: rgba(255,255,255,0.82); transition: color var(--transition); }
.footer-contact a:not(.btn):hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.no-js .reveal { opacity: 1; transform: none; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 80px;
  }
  .hero-btns { justify-content: center; }
  .hero-jar-visual {
    margin: 40px auto 0;
    width: 240px; height: 240px;
  }
  .jar-ring-1 { width: 240px; height: 240px; }
  .jar-ring-2 { width: 180px; height: 180px; }
  .jar-ring-3 { width: 120px; height: 120px; }

  .story-grid,
  .gifting-grid {
    grid-template-columns: 1fr;
  }
  .story-visual { height: 320px; }
  .story-card-main { width: 80%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { color: var(--text) !important; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .trust-inner { gap: 0; }
  .trust-sep { display: none; }
  .trust-item { padding: 10px 16px; }

  .section { padding: 60px 0; }
  .seasonal-banner { padding: 60px 24px; }

  .order-steps { flex-direction: column; align-items: center; }
  .o-arrow { transform: rotate(90deg); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }

  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
}

/* ---- SVG VISUALS (jars, bottles, story) ---- */
.product-img {
  height: 260px;
}
.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
}
.product-visual svg {
  max-height: 100%;
  width: auto;
  transition: transform 0.4s ease;
}
.product-card:hover .product-visual svg {
  transform: translateY(-4px) scale(1.03);
}

/* Hero jar SVG */
.hero-jar-svg {
  position: relative;
  z-index: 3;
  width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Story SVG */
.story-card-main {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Gifting visual card: replace emoji jars with mini-jar accents */
.gift-jar {
  position: relative;
  padding-left: 36px;
}
.gift-jar::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 22px;
  background:
    linear-gradient(180deg, #3d1608 0 5px, transparent 5px),
    linear-gradient(180deg, var(--jar-color, #8B3A1F) 0%, #5C2210 100%);
  border-radius: 2px 2px 4px 4px / 2px 2px 6px 6px;
  box-shadow: inset 0 4px 0 #3d1608, inset 2px 0 4px rgba(255,255,255,0.25);
}
.gift-jar:nth-child(1)::before { --jar-color: #d8801c; }
.gift-jar:nth-child(2)::before { --jar-color: #4a7c2f; }
.gift-jar:nth-child(3)::before { --jar-color: #f0c419; }
.gift-jar:nth-child(4)::before { --jar-color: #b8401f; }

/* Subtle pulse for trust bar icons */
.trust-item > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(201,146,42,0.12);
  border-radius: 50%;
  font-size: 1.1rem;
}

/* Process icons polish */
.process-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,146,42,0.18), rgba(242,213,126,0.08));
  border: 1px solid rgba(242,213,126,0.25);
  border-radius: 50%;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .hero-jar-svg { width: 240px; }
  .product-img { height: 220px; }
}

/* ---- REAL PHOTOS ---- */
.hide { display: none !important; }

/* Navbar logo */
.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
  box-shadow: 0 2px 8px rgba(44,24,16,0.2);
  flex-shrink: 0;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  z-index: 3;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 6px rgba(255,255,255,0.08), 0 0 0 14px rgba(201,146,42,0.4);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-badge {
  position: absolute;
  right: -10px;
  bottom: 22px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 50px;
  text-align: center;
  font-family: var(--font-hindi);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  line-height: 1.15;
  transform: rotate(-3deg);
}
.hero-photo-badge span { display: block; font-size: 0.7rem; opacity: 0.9; }
.hero-photo-badge strong { display: block; font-family: var(--font-serif); font-size: 1.3rem; }

/* Story photo */
.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Product photos */
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-photo {
  transform: scale(1.06);
}
.product-img:has(.product-photo) {
  padding: 0;
}

@media (max-width: 768px) {
  .hero-photo-wrap { width: 240px; height: 240px; }
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--cream);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(201,146,42,0.18);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(44,24,16,0.04);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(201,146,42,0.45);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary-dark);
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,146,42,0.14);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--gold);
  color: var(--white);
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .faq-item summary { padding: 18px 48px 18px 18px; font-size: 1rem; }
  .faq-item summary::after { right: 16px; }
  .faq-item p { padding: 0 18px 18px; }
}
