/* ============================================
   Pure Organic Masale — Design System
   ============================================ */

/* ---------- Tokens ---------- */
:root {
  /* Light/cream theme for content sections. Navbar, Hero and Footer
     re-declare the original dark values below so they stay dramatic. */
  --bg-base: #FBF3E6;
  --bg-panel: #F4E8D4;
  --bg-elev: #EEE0C7;
  --maroon-deep: #3A0808;
  --maroon: #4A0E12;
  --maroon-warm: #6B1818;

  --gold: #B8892A;
  --gold-bright: #E8C547;
  --gold-soft: #8A6A1F;
  --gold-line: rgba(184, 137, 42, 0.4);

  --cream: #2A1810;
  --cream-muted: #6B5544;
  --cream-dim: rgba(42, 24, 16, 0.68);

  --green: #5C8A34;
  --green-deep: #4A7C2E;
  --copper: #B8732E;
  --chili: #C03A1F;

  /* Always-dark text, for use on gold/green/accent-colored surfaces
     regardless of whether the surrounding section is light or dark. */
  --ink: #1F0D0D;

  --shadow-deep: 0 30px 80px rgba(58,30,10,0.18);
  --shadow-soft: 0 10px 30px rgba(58,30,10,0.12);

  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);

  --f-display: 'Cormorant Garamond', 'Garamond', serif;
  --f-ornate:  'Cinzel', 'Trajan Pro', serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-deva:    'Tiro Devanagari Hindi', serif;
}

/* Navbar, Hero and Footer keep the original dark, dramatic palette */
.nav, .hero, footer {
  --bg-base: #0A0505;
  --bg-panel: #160909;
  --bg-elev: #1F0D0D;
  --gold: #D4AF37;
  --gold-soft: #9A7B25;
  --gold-line: rgba(212, 175, 55, 0.35);
  --cream: #F5E6D3;
  --cream-muted: #C4B59C;
  --cream-dim: rgba(245, 230, 211, 0.65);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.1; letter-spacing: .005em; margin: 0; }

/* ---------- Ambient texture (subtle mandala glow) ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(184, 137, 42, 0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(74, 14, 18, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Utilities ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--f-ornate);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--gold-line);
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 18px;
  color: var(--cream);
}
.section-head h2 em {
  font-style: italic; color: var(--gold); font-weight: 500;
}
.section-head p {
  color: var(--cream-dim); max-width: 620px; margin: 18px auto 0;
}
.deva {
  font-family: var(--f-deva);
  color: var(--gold-soft);
  font-weight: 400;
}

/* Mortar-pestle divider (SVG inline) */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 64px auto;
  color: var(--gold-line);
}
.divider svg { color: var(--gold); }
.divider .line {
  height: 1px; width: min(160px, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-ornate);
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  background: transparent;
  position: relative; overflow: hidden;
  transition: color .3s ease, background .3s ease, transform .2s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn.solid { background: var(--gold); color: var(--ink); }
.btn.solid:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 5, 5, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(10, 5, 5, 0.92);
  border-bottom-color: var(--gold-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  transition: padding .3s ease;
}
.nav.scrolled .nav-inner { padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 56px; width: 56px; object-fit: contain; border-radius: 50%; }
.brand-text { line-height: 1; }
.brand-text .name {
  font-family: var(--f-display); font-size: 22px; font-weight: 600;
  color: var(--cream); letter-spacing: .02em;
}
.brand-text .name span { color: var(--gold); }
.brand-text .tag {
  display: block; font-family: var(--f-ornate); font-size: 9px;
  letter-spacing: .35em; color: var(--green); margin-top: 4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14px; color: var(--cream-muted); position: relative;
  padding: 6px 0; font-weight: 500;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: 11px; }

.menu-toggle {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--gold-line);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px; max-height: 880px;
  overflow: hidden;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,5,5,0.35) 0%, rgba(10,5,5,0.55) 50%, rgba(10,5,5,0.95) 100%),
    radial-gradient(circle at 30% 50%, rgba(74,14,18,0.5), transparent 70%);
}
.slide-content {
  position: relative; z-index: 3;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.slide-inner { max-width: 720px; }
.slide .eyebrow {
  opacity: 0; transform: translateY(20px);
  transition: all .8s ease .3s;
}
.slide h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  margin-top: 24px;
  color: var(--cream);
  opacity: 0; transform: translateY(30px);
  transition: all 1s ease .5s;
}
.slide h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.slide p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--cream-dim); max-width: 540px; margin: 24px 0 36px;
  opacity: 0; transform: translateY(30px);
  transition: all 1s ease .7s;
}
.slide .btn-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  transition: all 1s ease .9s;
}
.slide.active .eyebrow,
.slide.active h1,
.slide.active p,
.slide.active .btn-row { opacity: 1; transform: translateY(0); }

/* Floating brand icon on hero */
.hero-icon {
  position: absolute; right: -80px; bottom: -80px;
  width: 520px; height: 520px;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  opacity: 0.95;
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; align-items: center; gap: 20px;
}
.dot {
  width: 28px; height: 3px; background: rgba(245,230,211,0.25);
  position: relative; overflow: hidden;
  transition: background .3s ease;
}
.dot.active { background: rgba(212,175,55,0.3); }
.dot.active::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  animation: dotFill 6s linear forwards;
}
@keyframes dotFill { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid var(--gold-line); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 5; background: rgba(10,5,5,0.4);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.slide-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.slide-nav.prev { left: 32px; }
.slide-nav.next { right: 32px; }

/* ============================================
   SECTIONS — shared
   ============================================ */
section { position: relative; padding: 110px 0; z-index: 1; }
section.tight { padding: 80px 0; }

/* ============================================
   CATEGORIES
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cat-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-elev));
  border: 1px solid rgba(212,175,55,0.15);
  padding: 36px 28px 32px;
  text-align: center;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.cat-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, rgba(212,175,55,0.18), transparent 70%);
  opacity: 0; transition: opacity .35s ease;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 84px; height: 84px; margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--maroon-warm), var(--maroon-deep));
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.cat-icon svg { color: var(--gold); }
.cat-card h3 {
  font-size: 22px; color: var(--cream); margin-bottom: 8px;
  position: relative; z-index: 1;
}
.cat-card .count {
  font-family: var(--f-ornate); font-size: 10px; letter-spacing: .3em;
  color: var(--gold-soft); text-transform: uppercase;
  position: relative; z-index: 1;
}

/* ============================================
   PROCESSING — timeline
   ============================================ */
.processing { background: linear-gradient(180deg, var(--bg-base), var(--bg-panel) 50%, var(--bg-base)); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-top: 40px;
}
.process-grid::before {
  content: ""; position: absolute; top: 48px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 18px;
  position: relative; z-index: 1;
}
.step-circle {
  width: 96px; height: 96px; margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--maroon), var(--maroon-deep));
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 0 6px var(--bg-base), 0 10px 30px rgba(0,0,0,0.5);
}
.step-circle svg { color: var(--gold); }
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-family: var(--f-ornate); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 {
  font-size: 22px; color: var(--cream); margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--cream-dim); line-height: 1.6; }

/* ============================================
   PRODUCTS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product {
  background: var(--bg-panel);
  border: 1px solid rgba(212,175,55,0.12);
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.product:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-deep);
}
.product-img {
  aspect-ratio: 3 / 4;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--bg-panel);
  position: relative; overflow: hidden;
}
.product-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,5,5,0.6));
}
.product-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--ink);
  font-family: var(--f-ornate); font-size: 9px; letter-spacing: .25em;
  padding: 6px 12px; text-transform: uppercase; font-weight: 600;
}
.product-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product h3 { font-size: 22px; color: var(--cream); margin-bottom: 6px; }
.product .hi { font-family: var(--f-deva); color: var(--gold-soft); font-size: 14px; margin-bottom: 14px; }
.product .desc { font-size: 14px; color: var(--cream-dim); margin-bottom: 18px; flex: 1; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(212,175,55,0.12);
}
.price {
  font-family: var(--f-display); font-size: 24px; color: var(--gold); font-weight: 600;
}
.price small { font-size: 12px; color: var(--cream-muted); font-family: var(--f-body); }
.cart-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-line); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.cart-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ============================================
   SPECIALITY
   ============================================ */
.speciality {
  background:
    radial-gradient(800px 500px at 20% 50%, rgba(184,137,42,0.10), transparent 70%),
    var(--bg-base);
}
.spec-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.spec-visual {
  position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto;
}
.spec-visual img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: floatY 8s ease-in-out infinite;
}
.spec-visual::before {
  content: ""; position: absolute; inset: -10%;
  border: 1px dashed var(--gold-line); border-radius: 50%;
  animation: spin 60s linear infinite;
}
.spec-visual::after {
  content: ""; position: absolute; inset: -2%;
  border: 1px solid var(--gold-line); border-radius: 50%;
  opacity: .4;
}
@keyframes spin { to { transform: rotate(360deg); } }

.spec-features { display: grid; gap: 24px; }
.feature {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 20px; border: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.feature:hover { border-color: var(--gold-line); background: rgba(184,137,42,0.08); }
.feature-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { color: var(--gold); }
.feature h4 { font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--cream-dim); line-height: 1.65; }

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(184,137,42,0.12), transparent 70%),
    var(--bg-base);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}
.page-header h1 {
  font-size: clamp(48px, 6vw, 76px);
  color: var(--cream); margin-top: 20px;
}
.page-header h1 em { color: var(--gold); font-style: italic; font-weight: 500; }
.page-header p {
  color: var(--cream-dim); max-width: 600px; margin: 20px auto 0;
  font-size: 17px;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 28px;
  font-family: var(--f-ornate); font-size: 11px; letter-spacing: .25em;
  color: var(--cream-muted); text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-soft); }

/* ============================================
   ABOUT / STORY pages
   ============================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split-text h2 { font-size: clamp(34px, 4vw, 50px); margin-bottom: 24px; color: var(--cream); }
.split-text h2 em { color: var(--gold); font-style: italic; font-weight: 500; }
.split-text p { color: var(--cream-dim); margin-bottom: 18px; font-size: 16px; }
.split-img {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  border: 1px solid var(--gold-line);
  position: relative;
}
.split-img::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--gold-line); pointer-events: none;
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; margin-top: 50px;
}
.value-card {
  padding: 36px 28px;
  background: linear-gradient(180deg, var(--bg-panel), transparent);
  border: 1px solid var(--gold-line);
  text-align: center;
  transition: all .35s ease;
}
.value-card:hover { background: linear-gradient(180deg, var(--maroon-deep), var(--bg-panel)); transform: translateY(-4px); }
.value-card .num {
  font-family: var(--f-display); font-style: italic;
  font-size: 48px; color: var(--gold); line-height: 1;
}
.value-card h4 { font-size: 22px; color: var(--cream); margin: 14px 0 10px; }
.value-card p { font-size: 14px; color: var(--cream-dim); }

/* Story timeline */
.timeline {
  max-width: 780px; margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 32px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-line) 10%, var(--gold-line) 90%, transparent);
}
.t-item { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding-bottom: 56px; position: relative; }
.t-year {
  font-family: var(--f-display); font-style: italic;
  font-size: 30px; color: var(--gold);
  position: relative;
}
.t-year::after {
  content: ""; position: absolute; right: -8px; top: 14px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--bg-base);
  box-shadow: 0 0 0 1px var(--gold);
}
.t-body { padding-top: 6px; }
.t-body h4 { font-size: 22px; color: var(--cream); margin-bottom: 8px; }
.t-body p { font-size: 15px; color: var(--cream-dim); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
}
.contact-info { padding-right: 20px; }
.contact-info h3 {
  font-size: 32px; color: var(--cream); margin-bottom: 12px;
}
.contact-info > p { color: var(--cream-dim); margin-bottom: 36px; }
.info-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(212,175,55,0.12);
}
.info-row:last-child { border-bottom: 0; }
.info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.info-row strong {
  display: block; font-family: var(--f-ornate); font-size: 11px;
  letter-spacing: .25em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 4px;
}
.info-row span, .info-row a { color: var(--cream); font-size: 15px; }
.info-row a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--gold-line);
  padding: 44px 40px;
}
.contact-form h3 { font-size: 28px; color: var(--cream); margin-bottom: 8px; }
.contact-form .lead { color: var(--cream-dim); margin-bottom: 30px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--f-ornate); font-size: 10px; letter-spacing: .28em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  background: rgba(58,30,10,0.04);
  border: 1px solid rgba(184,137,42,0.3);
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--f-body); font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--gold); background: rgba(58,30,10,0.07);
}
.field textarea { resize: vertical; min-height: 130px; }
.full { grid-column: 1 / -1; }
.form-msg {
  margin-top: 18px; padding: 14px; text-align: center;
  font-size: 14px; display: none;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(123,165,70,0.12); color: var(--green); border: 1px solid var(--green); }
.form-msg.error { background: rgba(192,58,31,0.12); color: #c03a1f; border: 1px solid #c03a1f; }

.map-wrap {
  margin-top: 80px;
  border: 1px solid var(--gold-line);
  overflow: hidden;
  position: relative;
}
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(.4) sepia(.2) brightness(.85); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #050202;
  border-top: 1px solid var(--gold-line);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 60px;
}
.foot-brand img { height: 64px; width: 64px; }
.foot-brand .brand-text .name { font-size: 24px; }
.foot-about {
  color: var(--cream-dim); font-size: 14px; margin-top: 20px; line-height: 1.7;
}
.foot-col h5 {
  font-family: var(--f-ornate); font-size: 12px; letter-spacing: .28em;
  color: var(--gold); text-transform: uppercase; margin: 0 0 22px;
  font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { color: var(--cream-muted); font-size: 14px; }
.foot-col a:hover { color: var(--gold); }
.foot-col .info-line {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 14px; color: var(--cream-muted);
}
.foot-col .info-line svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.socials a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }

.foot-bar {
  border-top: 1px solid var(--gold-line);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--cream-muted);
}
.foot-bar a:hover { color: var(--gold); }

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

/* Mobile cart icon — hidden on desktop, shown on mobile */
.mobile-cart {
  display: none;
  align-items: center; justify-content: center;
  position: relative;
  padding: 6px 8px;
  color: var(--cream-dim);
  transition: color .25s;
}
.mobile-cart:hover { color: var(--gold); }

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .mobile-cart { display: inline-flex; margin-left: auto; margin-right: 6px; }

  /* collapse the <nav> wrapper so it doesn't push mobile-cart off center */
  .nav-inner > nav { flex: 0 0 0; overflow: hidden; }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(10,5,5,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 28px;
    transform: translateX(100%); transition: transform .4s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; font-family: var(--f-display); color: var(--cream); }
  .nav-links .nav-cta { font-size: 11px; font-family: var(--f-ornate); }
  .nav-links .cart-nav { display: none; }

  .menu-toggle { position: relative; z-index: 101; }
  .menu-toggle.active svg { color: var(--cream); }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 16px; }
  .process-grid::before { display: none; }
  .spec-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-icon { width: 360px; height: 360px; right: -120px; bottom: -120px; opacity: 0.6; }
  .slide-nav { display: none; }
  section { padding: 60px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .spec-visual::before, .spec-visual::after { display: none; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bar { justify-content: center; text-align: center; }
  .contact-form { padding: 32px 20px; }
  .hero-icon { display: none; }
  .brand img { height: 40px; width: 40px; }
  .brand-text .name { font-size: 17px; }
  .brand-text .tag { font-size: 7px; }
  .t-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .t-year { font-size: 22px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-body { padding: 16px 14px 18px; }
  .product h3 { font-size: 17px; }
  .price { font-size: 18px; }
  .cart-btn { width: 36px; height: 36px; }
  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 28px; }
  .wrap { padding-left: 16px; padding-right: 16px; }
}

/* ===== CART BADGE IN NAVBAR ===== */
.cart-nav {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 8px;
  color: var(--cream-dim);
  transition: color .25s;
}
.cart-nav:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px; font-weight: 700;
  min-width: 17px; height: 17px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 3px; line-height: 1;
}
.cart-badge.hidden { display: none; }

/* ===== CART MODAL ===== */
.cart-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-modal.open { opacity: 1; pointer-events: auto; }
.cart-modal-box {
  background: var(--bg-elev);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 32px;
  width: min(460px, 92vw);
  transform: translateY(24px);
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
}
.cart-modal.open .cart-modal-box { transform: translateY(0); }
.cart-modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 4px;
}
.cart-modal-head h4 {
  font-family: var(--f-display); font-size: 24px; color: var(--cream); font-weight: 600;
}
.cart-modal-hi { font-size: 13px; color: var(--cream-muted); font-family: var(--f-deva); margin-top: 2px; }
.cart-modal-close {
  background: none; border: none; color: var(--cream-muted);
  font-size: 26px; cursor: pointer; line-height: 1; padding: 0 4px; margin-left: 12px;
  transition: color .2s;
}
.cart-modal-close:hover { color: var(--gold); }
.cart-modal-price { color: var(--gold); font-size: 14px; margin: 8px 0 20px; font-style: italic; }
.cart-modal-qty label {
  display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream-muted); margin-bottom: 10px;
}
.qty-presets { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.qty-preset {
  background: var(--bg-panel); border: 1px solid var(--gold-line);
  border-radius: 6px; color: var(--cream-dim); font-size: 13px;
  padding: 7px 14px; cursor: pointer; transition: all .2s; font-family: var(--f-body);
}
.qty-preset:hover, .qty-preset.active {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.qty-btn {
  width: 38px; height: 38px;
  background: var(--bg-panel); border: 1px solid var(--gold-line);
  border-radius: 8px; color: var(--cream); font-size: 22px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; line-height: 1;
}
.qty-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
#qtyDisplay {
  font-family: var(--f-display); font-size: 30px; color: var(--cream);
  min-width: 70px; text-align: center;
}
.cart-modal-total {
  color: var(--cream-dim); font-size: 14px; margin-bottom: 18px;
  padding: 14px 0; border-top: 1px solid var(--gold-line);
}
.cart-modal-total span { color: var(--gold); font-size: 22px; font-family: var(--f-display); font-weight: 600; }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed; bottom: 100px; right: 28px;
  background: var(--bg-elev); border: 1px solid var(--gold);
  border-radius: 10px; padding: 14px 20px;
  color: var(--cream); font-size: 14px;
  z-index: 99999;
  transform: translateY(80px); opacity: 0;
  transition: all .35s cubic-bezier(.2,.9,.3,1);
  max-width: 300px; line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  pointer-events: none;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 9998;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,0.45); }
@media (max-width: 600px) {
  .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}

/* ===== LOGIN / OTP POPUP ===== */
.login-popup {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.login-popup.open { opacity: 1; pointer-events: auto; }
.login-popup-box {
  background: var(--bg-elev);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 36px 32px;
  width: min(420px, 92vw);
  position: relative;
  transform: translateY(24px);
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
}
.login-popup.open .login-popup-box { transform: translateY(0); }
.login-popup-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--cream-muted);
  font-size: 26px; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.login-popup-close:hover { color: var(--gold); }
.login-popup-box h3 {
  font-family: var(--f-display); font-size: 24px; color: var(--cream); font-weight: 600; margin-bottom: 6px;
}
.login-popup-sub { color: var(--cream-muted); font-size: 13px; margin-bottom: 22px; }
.login-popup-box .field { margin-bottom: 16px; }
.login-popup-msg { margin-top: 14px; font-size: 13px; text-align: center; display: none; }
.login-popup-msg.show { display: block; }
.login-popup-msg.success { color: var(--green); }
.login-popup-msg.error { color: #c03a1f; }
.login-popup-resend {
  display: block; width: 100%; text-align: center; margin-top: 12px;
  background: none; border: none; color: var(--gold-soft); font-size: 13px; cursor: pointer;
  text-decoration: underline;
}
.login-popup-resend:disabled { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 480px) {
  .login-popup-box { padding: 28px 22px; }
}

/* ===== MY ACCOUNT ===== */
.account-tabs {
  display: flex; gap: 8px; margin-bottom: 32px; border-bottom: 1px solid var(--gold-line);
}
.account-tab {
  background: none; border: none; color: var(--cream-muted);
  font-family: var(--f-body); font-size: 15px; padding: 12px 20px;
  cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s;
}
.account-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.account-panel { display: none; }
.account-panel.active { display: block; }
.account-empty {
  text-align: center; padding: 60px 20px; color: var(--cream-muted);
}
.account-empty .btn { margin-top: 18px; }

.order-card {
  background: var(--bg-elev); border: 1px solid var(--gold-line);
  border-radius: 10px; padding: 20px 24px; margin-bottom: 18px;
}
.order-card-head {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--gold-line);
}
.order-card-head .oid { font-family: var(--f-display); font-size: 18px; color: var(--cream); }
.order-card-head .odate { font-size: 12px; color: var(--cream-muted); margin-top: 2px; }
.order-status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.order-item-row {
  display: flex; align-items: center; gap: 14px; padding: 10px 0;
}
.order-item-row img {
  width: 52px; height: 52px; border-radius: 8px; object-fit: cover; background: var(--bg-panel); flex-shrink: 0;
}
.order-item-row .oi-name { color: var(--cream); font-size: 14px; }
.order-item-row .oi-meta { color: var(--cream-muted); font-size: 12px; margin-top: 2px; }
.order-item-row .oi-sub { margin-left: auto; color: var(--gold); font-size: 14px; font-weight: 600; white-space: nowrap; }
.order-card-total {
  text-align: right; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gold-line);
  color: var(--cream-dim); font-size: 14px;
}
.order-card-total strong { color: var(--gold); font-size: 18px; font-family: var(--f-display); }

.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.address-card {
  background: var(--bg-elev); border: 1px solid var(--gold-line); border-radius: 10px; padding: 20px;
  position: relative;
}
.address-card .addr-label {
  display: inline-block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-line); border-radius: 20px; padding: 3px 10px; margin-bottom: 10px;
}
.address-card .addr-default {
  background: var(--green); color: var(--ink); border: none; margin-left: 6px;
}
.address-card p { color: var(--cream-dim); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.address-card-actions { display: flex; gap: 14px; font-size: 12px; }
.address-card-actions button {
  background: none; border: none; color: var(--gold-soft); cursor: pointer; padding: 0; font-size: 12px; text-decoration: underline;
}
.address-card-actions button.danger { color: #c03a1f; }
.add-address-card {
  display: flex; align-items: center; justify-content: center; min-height: 140px;
  border: 1px dashed var(--gold-line); border-radius: 10px; cursor: pointer;
  color: var(--gold-soft); font-size: 14px; background: none;
}
.add-address-card:hover { border-color: var(--gold); color: var(--gold); }

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px; align-items: flex-start;
}
.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px; align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-line);
}
.cart-item-info h4 { font-family: var(--f-display); font-size: 20px; color: var(--cream); margin-bottom: 4px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream-dim); font-size: 14px;
}
.cart-item-qty span { min-width: 54px; text-align: center; font-family: var(--f-display); font-size: 18px; color: var(--cream); }
.cart-item-sub { color: var(--gold); font-family: var(--f-display); font-size: 20px; white-space: nowrap; }
.cart-remove {
  background: none; border: none; color: var(--cream-muted); cursor: pointer;
  padding: 6px; border-radius: 4px; transition: color .2s;
  display: flex; align-items: center;
}
.cart-remove:hover { color: var(--chili); }
.cart-summary {
  background: var(--bg-elev);
  border: 1px solid var(--gold-line);
  border-radius: 12px; padding: 28px;
  position: sticky; top: 100px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; color: var(--cream-dim); font-size: 15px;
}
.summary-total {
  border-top: 2px solid var(--gold-line);
  padding-top: 16px; margin-top: 6px;
  font-weight: 600; color: var(--cream);
}
.summary-total span:last-child { color: var(--gold); font-family: var(--f-display); font-size: 26px; }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; gap: 28px; }
  .cart-summary { position: static; }
}
@media (max-width: 560px) {
  .cart-item { grid-template-columns: 1fr auto auto; gap: 10px; }
  .cart-item-sub { display: none; }
  .cart-layout { gap: 20px; }
  .cart-summary { padding: 20px; }
  .cart-toast { bottom: 82px; right: 16px; left: 16px; max-width: none; font-size: 13px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: all .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
