/* ================================================
   SAUMYA KACHI GHANI – style.css
   ================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold: #C8860A;
  --gold-light: #F5C842;
  --gold-pale: #FFF3CC;
  --cream: #FFF8EC;
  --cream-dark: #F2E8D0;
  --brown-dark: #3B2005;
  --brown-mid: #6B3A10;
  --brown-light: #9B5E2A;
  --green: #2D6A2D;
  --green-light: #E8F5E8;
  --white: #FFFFFF;
  --text-dark: #1A0F00;
  --text-mid: #5A3A10;
  --text-light: #9B7A4A;
  --shadow-sm: 0 2px 8px rgba(59,32,5,0.08);
  --shadow-md: 0 6px 24px rgba(59,32,5,0.12);
  --shadow-lg: 0 16px 48px rgba(59,32,5,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.text-center { text-align: center; }
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,134,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,248,236,0.5);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,0.08);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(59,32,5,0.97);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 700;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,232,208,0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(242,232,208,0.8);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold-light);
  transition: right var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--brown-dark) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
}
.nav-links .nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #2C1800 0%, #5A2E08 40%, #A8700A 80%, #C8860A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(200,134,10,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59,32,5,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,134,10,0.18);
  border: 1px solid rgba(200,134,10,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title .highlight { color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--cream-dark);
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,248,236,0.65);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,232,208,0.6);
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(200,134,10,0.35);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: rgba(242,232,208,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bounce {
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--brown-dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream-dark);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item i {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--brown-dark);
  flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images { position: relative; }
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.main-img {
  height: 420px;
  box-shadow: 10px 10px 0 var(--gold);
}
.accent-img {
  width: 52%;
  height: 210px;
  position: absolute;
  bottom: -36px; right: -24px;
  border: 5px solid var(--cream);
  box-shadow: 4px 4px 0 var(--brown-dark);
}
/* Image placeholder (when image not found) */
.img-placeholder { background: var(--cream-dark); display: flex; align-items: center; justify-content: center; }
.img-placeholder img { display: none; }
.img-placeholder-text {
  display: none;
  text-align: center;
  color: var(--text-mid);
  font-size: 0.82rem;
  padding: 20px;
  line-height: 1.6;
}
.img-placeholder .img-placeholder-text { display: block; }

.about-badge-float {
  position: absolute;
  top: -18px; left: -18px;
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--brown-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(200,134,10,0.4);
  z-index: 2;
}
.about-badge-float i { font-size: 1.3rem; margin-bottom: 3px; }

.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
}
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-dark);
  font-size: 1.1rem;
}
.feature-body strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin-bottom: 3px;
}
.feature-body p { font-size: 0.88rem; color: var(--text-mid); }

/* ---------- PRODUCTS ---------- */
.products-section { background: var(--cream-dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  height: 230px;
  background: var(--cream-dark);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder { background: var(--cream-dark); }
.product-img-placeholder .product-img { display: none; }
.product-img-placeholder-text {
  display: none;
  text-align: center; color: var(--text-mid);
  font-size: 0.85rem; line-height: 1.6; padding: 20px;
}
.product-img-placeholder .product-img-placeholder-text { display: block; }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.product-body { padding: 22px 24px 26px; }
.product-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brown-dark);
  margin-bottom: 3px;
}
.product-name-local {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}
.product-tag.pure { background: var(--green-light); color: var(--green); }
.product-tag.natural { background: #EEF5FF; color: #2563EB; }
.product-tag.premium { background: var(--gold-pale); color: var(--brown-mid); }
.product-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}
.price-table { margin-bottom: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.price-row:last-child { border-bottom: none; }
.price-size {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 7px;
}
.price-size i { color: var(--gold); font-size: 0.85rem; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.order-btn { font-size: 0.85rem; }

/* ---------- PROCESS ---------- */
.process-section { background: var(--cream); }
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1; min-width: 160px; max-width: 200px;
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.process-step:hover { transform: translateY(-6px); }
.process-connector {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: auto 0;
  flex-shrink: 0;
  opacity: 0.4;
  margin-top: 48px;
}
.process-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
  font-size: 1.4rem;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

/* ---------- WHY US ---------- */
.why-section { background: var(--brown-dark); }
.why-section .section-label { color: rgba(245,200,66,0.8); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,134,10,0.25);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(200,134,10,0.1);
  border-color: rgba(200,134,10,0.5);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(200,134,10,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.88rem; color: rgba(242,232,208,0.65); line-height: 1.65; }

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--cream-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  min-height: 200px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-large {
  grid-column: span 2;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(59,32,5,0);
  display: flex; align-items: flex-end;
  padding: 16px;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(59,32,5,0.45); }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }
.gallery-placeholder { background: var(--cream-dark); min-height: 200px; display: flex; align-items: center; justify-content: center; }
.gallery-placeholder img { display: none; }
.gallery-placeholder-text {
  display: none;
  text-align: center; color: var(--text-mid);
  font-size: 0.8rem; line-height: 1.7;
}
.gallery-placeholder .gallery-placeholder-text { display: block; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact-card-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-dark);
  font-size: 1.1rem;
}
.contact-card-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card-value {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.6;
  transition: color var(--transition);
}
a.contact-card-value:hover { color: var(--gold); }
.whatsapp-link { color: var(--green) !important; font-weight: 700; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #e74c3c; }
.form-error {
  font-size: 0.78rem;
  color: #e74c3c;
  min-height: 16px;
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--brown-dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 24px 40px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(242,232,208,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-address {
  font-size: 0.88rem;
  color: rgba(242,232,208,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-phones { display: flex; flex-direction: column; gap: 6px; }
.footer-phones a {
  font-size: 0.88rem;
  color: rgba(242,232,208,0.6);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--transition);
}
.footer-phones a:hover { color: var(--gold-light); }
.footer-links-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col ul a,
.footer-links-col ul span {
  font-size: 0.85rem;
  color: rgba(242,232,208,0.55);
  transition: color var(--transition);
}
.footer-links-col ul a:hover { color: var(--gold-light); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.whatsapp-btn:hover { background: #1ebe5a; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(242,232,208,0.1);
  text-align: center;
  padding: 20px 24px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(242,232,208,0.3); }

/* ---------- FLOATING ELEMENTS ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.back-to-top {
  position: fixed;
  bottom: 94px; right: 28px;
  width: 42px; height: 42px;
  background: var(--brown-dark);
  border: 1px solid rgba(200,134,10,0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--brown-dark); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .accent-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-connector { display: none; }
  .process-timeline { gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-container {
    height: auto;
    min-height: 64px;
    padding: 10px 16px;
  }
  .nav-logo-img {
    height: 44px !important;
  }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(59,32,5,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; padding: 8px 0; }
  .nav-links .nav-cta { text-align: center; }
  .hamburger { display: flex; }
  .trust-strip { gap: 18px; }
  .trust-item span { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 24px 20px; }
  .section { padding: 64px 0; }
  .hero { padding-top: 90px; }
}

@media (max-width: 540px) {
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
}


/* ================================================
   ORDER SECTION – Amazon/Flipkart Style
   ================================================ */

.order-section { background: #F5F0E8; }
.order-section .section-desc { color: var(--text-mid); }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* ---- Step Cards ---- */
.order-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #E8DCC8;
}
.order-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--cream-dark);
  border-bottom: 1px solid #E0D4BC;
}
.step-badge {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.order-step-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin: 0;
}
.order-step-body { padding: 22px 24px; }

/* ---- Form Rows ---- */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.optional {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #DDD0B8;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #e74c3c; }
.form-error { font-size: 0.78rem; color: #e74c3c; min-height: 15px; }
.required { color: var(--gold); }

/* ---- Payment Options ---- */
.payment-options { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.payment-option { display: flex; align-items: center; gap: 0; cursor: pointer; }
.payment-option input[type="radio"] { display: none; }
.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid #DDD0B8;
  border-radius: 8px;
  width: 100%;
  font-size: 0.92rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-label i { color: var(--gold); font-size: 1.1rem; width: 20px; text-align: center; }
.payment-option input:checked + .payment-label {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--brown-dark);
  font-weight: 700;
}

/* ---- Product Picker ---- */
.pick-product-card {
  border: 1.5px solid #DDD0B8;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: var(--cream);
  transition: border-color var(--transition);
}
.pick-product-card:last-child { margin-bottom: 0; }
.pick-product-card:hover { border-color: var(--gold); }
.pick-product-info { display: flex; align-items: flex-start; gap: 12px; }
.pick-product-emoji { font-size: 2rem; line-height: 1; margin-top: 2px; }
.pick-product-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.pick-local {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-left: 6px;
}
.pick-size-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pick-size-select {
  padding: 8px 12px;
  border: 1.5px solid #DDD0B8;
  border-radius: 6px;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  min-width: 160px;
  outline: none;
}
.pick-size-select:focus { border-color: var(--gold); }

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #DDD0B8;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.qty-btn {
  width: 32px; height: 36px;
  background: var(--cream-dark);
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--gold); color: var(--white); }
.qty-input {
  width: 40px;
  height: 36px;
  border: none !important;
  border-left: 1.5px solid #DDD0B8 !important;
  border-right: 1.5px solid #DDD0B8 !important;
  border-radius: 0 !important;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-dark);
  background: var(--white) !important;
  padding: 0 !important;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.add-to-order-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold);
  color: var(--brown-dark);
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.add-to-order-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Added Items */
.added-items-wrap {
  margin-top: 18px;
  background: var(--green-light);
  border: 1.5px solid #B8DDB8;
  border-radius: 8px;
  padding: 14px 16px;
}
.added-items-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.added-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed #C8DDB8;
  font-size: 0.88rem;
  color: var(--brown-dark);
  gap: 8px;
}
.added-item-row:last-child { border-bottom: none; }
.added-item-name { flex: 1; font-weight: 600; }
.added-item-price { color: var(--brown-mid); font-weight: 700; white-space: nowrap; }
.remove-item-btn {
  background: none; border: none; color: #e74c3c;
  cursor: pointer; font-size: 1rem; padding: 2px 6px;
  border-radius: 4px; transition: background var(--transition);
}
.remove-item-btn:hover { background: rgba(231,76,60,0.1); }

/* ---- Place Order Button ---- */
.place-order-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #E8A020 100%);
  color: var(--brown-dark);
  border: none;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(200,134,10,0.35);
  transition: all var(--transition);
  margin-bottom: 12px;
}
.place-order-btn:hover {
  background: linear-gradient(135deg, #E8A020 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,134,10,0.45);
}
.order-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ---- Order Summary Sidebar ---- */
.order-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #E8DCC8;
  overflow: hidden;
  margin-bottom: 16px;
  position: sticky;
  top: 88px;
}
.summary-header {
  padding: 16px 20px;
  background: var(--brown-dark);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.summary-body { padding: 16px 20px; }
.summary-empty {
  text-align: center;
  padding: 28px 16px;
  color: var(--text-light);
}
.summary-empty i { font-size: 2rem; margin-bottom: 8px; opacity: 0.4; display: block; }
.summary-empty p { font-size: 0.85rem; }
.summary-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed var(--cream-dark);
  gap: 8px;
  font-size: 0.85rem;
}
.summary-item-row:last-child { border-bottom: none; }
.summary-item-name { color: var(--text-dark); flex: 1; line-height: 1.4; }
.summary-item-price { color: var(--brown-dark); font-weight: 700; white-space: nowrap; }
.summary-totals { border-top: 2px solid var(--cream-dark); padding-top: 12px; margin-top: 6px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.free-delivery { color: var(--green); font-size: 0.8rem; font-weight: 700; }
.total-row {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  font-weight: 700;
  border-top: 1.5px solid var(--cream-dark);
  padding-top: 10px;
  margin-top: 4px;
}

/* Info & Contact boxes */
.order-info-box,
.order-contact-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #E8DCC8;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.info-box-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.info-box-title i { color: var(--gold); }
.info-box-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.info-box-list li {
  font-size: 0.84rem;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.45;
}
.info-box-list li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.contact-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  color: var(--brown-dark);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: background var(--transition);
}
.contact-phone-btn:hover { background: var(--gold-pale); color: var(--gold); }
.contact-phone-btn i { color: var(--gold); }

/* ---- Success Modal ---- */
.order-success-overlay {
  position: fixed; inset: 0;
  background: rgba(30,15,0,0.6);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.order-success-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.success-icon {
  width: 72px; height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--green);
}
.success-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.success-modal-msg {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.success-order-id {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  color: var(--brown-mid);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.success-close-btn {
  background: var(--gold);
  color: var(--brown-dark);
  border: none;
  border-radius: 6px;
  padding: 13px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.success-close-btn:hover { background: var(--gold-light); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-summary-col { order: -1; }
  .order-summary-card { position: static; }
}
@media (max-width: 600px) {
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .pick-size-row { flex-direction: column; align-items: flex-start; }
  .pick-size-select { min-width: 100%; }
  .order-step-body { padding: 16px; }
}

/* ================================================
   NAVBAR LOGO FIX
   ================================================ */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.nav-logo-img[src=""] ~ .nav-logo-fallback,
.nav-logo-img:not([src]) ~ .nav-logo-fallback {
  display: flex !important;
}
.nav-logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* ================================================
   HERO LOGO WATERMARK
   ================================================ */
.hero-logo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.hero-logo-watermark {
  width: min(420px, 75vw);
  height: auto;
  opacity: 0.08;
  filter: brightness(10) saturate(0);
}

/* ================================================
   PRODUCT IMAGE SLIDER
   ================================================ */
.product-slider {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--cream-dark);
}
.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(59,32,5,0.65);
  color: var(--gold-light);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.slide-btn:hover { background: var(--gold); color: var(--brown-dark); }
.slide-prev { left: 8px; }
.slide-next { right: 8px; }
.slide-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* Mobile navbar fix */
@media (max-width: 768px) {
  .nav-logo-img { height: 42px; }
  .nav-container { padding: 8px 16px; height: auto; min-height: 60px; }
}

/* ================================================
   PROCESS VIDEO
   ================================================ */
.process-video-wrap {
  margin-top: 56px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brown-dark);
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.process-video-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.process-video-label i { font-size: 1.2rem; }
.process-video {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  background: #000;
}
/* Error state */
.video-error .process-video { display: none; }
.video-error-msg {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: rgba(242,232,208,0.5);
}
.video-error-msg i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.video-error-msg p { font-size: 0.9rem; line-height: 1.6; }
.video-error .video-error-msg { display: block; }

@media (max-width: 768px) {
  .process-video { max-height: 240px; }
}
