/* ============================================
   Indian Natural Gems & Jewellery
   Premium 3D Interactive Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ---------- Custom Properties (Gemological Ledger Theme) ----------
   Grounded in what this business actually is: a lab-certification
   authority first, jewelry retailer second. Parchment + ink read as
   an appraisal document; brass is aged temple-gold, not showroom-gold;
   the seal blue is the one color reserved for "this has been verified." */
:root {
  --bg-primary: #f7f3e9;
  --bg-secondary: #fffdf8;
  --bg-tertiary: #efe7d4;
  --bg-card: rgba(255, 253, 248, 0.96);
  --bg-glass: rgba(22, 24, 29, 0.03);
  --bg-glass-hover: rgba(22, 24, 29, 0.06);

  --gold: #9c7a2e;
  --gold-light: #c9a04a;
  --gold-dark: #74591f;
  --gold-muted: rgba(156, 122, 46, 0.08);
  --gold-gradient: linear-gradient(135deg, #9c7a2e, #c9a04a, #74591f);

  --text-primary: #1b1a16;
  --text-secondary: #55524a;
  --text-muted: #918d80;

  --seal: #24425f;
  --seal-light: #3d6693;
  --sindoor: #9c3a2c;
  --sapphire: #24425f;
  --ruby: #9c3a2c;
  --emerald: #3c6b3f;
  --topaz: #ad7f14;
  --amethyst: #6d4a8c;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --radius: 3px;
  --radius-lg: 6px;
  --radius-xl: 10px;

  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);

  --perspective: 1200px;
  --shadow-depth: 0 15px 35px rgba(27,26,22,0.07), 0 0 1px rgba(27,26,22,0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

body.page-transitioning-out {
  animation: pageFadeOut 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes pageFadeIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pageFadeOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-15px); }
}

::selection { background: var(--gold); color: var(--bg-primary); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Keyframes ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rotate3d { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); } 70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(201,168,76,0); } }
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201,168,76,0.1); }
  50% { border-color: rgba(201,168,76,0.3); }
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes diamondSpin {
  0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}
@keyframes blink { 50% { border-color: transparent; } }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes orbitFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -15px) rotate(90deg); }
  50% { transform: translate(0, -8px) rotate(180deg); }
  75% { transform: translate(-10px, -15px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ---------- Hallmark Seal ----------
   The recurring signature mark: a lab-stamp motif standing in for
   every "trust" decoration on the site (dividers, badges, trust icons). */
.hallmark-seal {
  --seal-size: 30px;
  width: var(--seal-size); height: var(--seal-size);
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.hallmark-seal::before {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(156,122,46,0.45);
}
.hallmark-seal::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.hallmark-seal.seal-sm { --seal-size: 20px; }
.hallmark-seal.seal-sm::after { width: 5px; height: 5px; }
.hallmark-seal.seal-seal { border-color: var(--seal); }
.hallmark-seal.seal-seal::before { border-color: rgba(36,66,95,0.4); }
.hallmark-seal.seal-seal::after { background: var(--seal); }

/* ---------- Section Title ---------- */
.section-title { text-align: center; margin-bottom: 64px; }
.section-title .overline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 16px;
}
.section-title .overline::before { content: '§ '; opacity: 0.6; }
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-title .divider {
  width: 60px;
  height: 1px;
  background: rgba(156,122,46,0.35);
  margin: 22px auto;
  position: relative;
}
.section-title .divider::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg-primary);
}
.section-title .divider::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px; height: 6px;
  background: var(--gold);
}
.section-title p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- Loading ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-primary);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-diamond {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: pulse 1.5s infinite;
  margin-bottom: 32px;
}
.loader-diamond::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(201,168,76,0.3);
}
.loader span {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  animation: shimmer 2s infinite;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(248,249,250,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav.scrolled {
  padding: 12px 32px;
  background: rgba(27,26,22,0.94);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  top: 14px;
  left: 3%; right: 3%;
  width: 94%;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(20,18,12,0.18), 0 0 10px rgba(156,122,46,0.06);
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand .brand-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: var(--transition);
}
.nav-brand .brand-mark::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--gold);
  transform: rotate(0deg);
  transition: var(--transition);
}
.nav-brand:hover .brand-mark::before { transform: rotate(90deg); }
.nav-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}
.nav-brand .brand-name small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
  font-size: 13px; font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s ease;
}
.nav-menu a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 50%;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text-primary); transform: translateY(-2px); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cart-trigger {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-trigger:hover {
  color: var(--gold);
  transform: scale(1.05);
}
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: var(--bg-secondary);
  font-size: 9px;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-secondary);
  animation: pulse 2s infinite;
}
.nav-cta-btn {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.nav-cta-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}
.nav-cta-btn::after { display: none !important; }
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; z-index: 1001; padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  perspective: var(--perspective);
}
.hero-depth-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-layer {
  position: absolute; inset: 0;
}
.hero-layer-1 {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(30,58,122,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(154,27,48,0.04) 0%, transparent 60%);
}
.hero-layer-2 {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201,168,76,0.015) 80px, rgba(201,168,76,0.015) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.015) 80px, rgba(201,168,76,0.015) 81px);
}
/* -- Hero 3D Diamond Scene (Full Background start-to-end) -- */
.hero-3d-scene {
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  perspective: 1000px;
  overflow: hidden;
  pointer-events: none;
}
.hero-gem-3d {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* Diamond Core */
.diamond-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 180px;
  margin: -90px 0 0 -90px;
  transform-style: preserve-3d;
  animation: diamondSpin 20s linear infinite;
}
.diamond-facet {
  position: absolute;
  width: 100%; height: 100%;
  backface-visibility: visible;
}
.diamond-facet::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border: 1.2px solid rgba(201,168,76,0.25);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(255,255,255,0.02), rgba(201,168,76,0.04));
  backdrop-filter: blur(2px);
}
.diamond-facet:nth-child(1) { transform: rotateY(0deg) translateZ(90px); }
.diamond-facet:nth-child(2) { transform: rotateY(60deg) translateZ(90px); }
.diamond-facet:nth-child(3) { transform: rotateY(120deg) translateZ(90px); }
.diamond-facet:nth-child(4) { transform: rotateY(180deg) translateZ(90px); }
.diamond-facet:nth-child(5) { transform: rotateY(240deg) translateZ(90px); }
.diamond-facet:nth-child(6) { transform: rotateY(300deg) translateZ(90px); }
.diamond-facet:nth-child(7) { transform: rotateX(90deg) translateZ(90px); }
.diamond-facet:nth-child(7)::before { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)); }
.diamond-facet:nth-child(8) { transform: rotateX(-90deg) translateZ(90px); }
.diamond-facet:nth-child(8)::before { background: linear-gradient(135deg, rgba(201,168,76,0.04), rgba(201,168,76,0.01)); }

/* Diamond Inner Glow */
.diamond-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), rgba(201,168,76,0.03) 60%, transparent 80%);
  animation: pulse 4s ease-in-out infinite;
  filter: blur(8px);
}

/* Diamond Outer Aura */
.diamond-aura {
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  animation: pulse 6s ease-in-out infinite reverse;
}

/* Floating Gem Shards */
.gem-shard {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.2);
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  backdrop-filter: blur(2px);
}
.shard-1 {
  width: 24px; height: 24px;
  top: 15%; left: 18%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: shardFloat1 8s ease-in-out infinite;
}
.shard-2 {
  width: 16px; height: 16px;
  top: 72%; left: 12%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation: shardFloat2 10s ease-in-out infinite;
  border-color: rgba(46,92,184,0.25);
  background: linear-gradient(135deg, rgba(46,92,184,0.1), transparent);
}
.shard-3 {
  width: 20px; height: 20px;
  top: 22%; right: 10%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: shardFloat3 9s ease-in-out infinite;
  border-color: rgba(220,53,69,0.2);
  background: linear-gradient(135deg, rgba(220,53,69,0.08), transparent);
}
.shard-4 {
  width: 14px; height: 14px;
  bottom: 18%; right: 15%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation: shardFloat1 12s ease-in-out infinite reverse;
  border-color: rgba(40,167,69,0.2);
  background: linear-gradient(135deg, rgba(40,167,69,0.08), transparent);
}
.shard-5 {
  width: 10px; height: 10px;
  top: 50%; left: 5%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: shardFloat2 7s ease-in-out infinite;
  border-color: rgba(255,193,7,0.25);
  background: linear-gradient(135deg, rgba(255,193,7,0.1), transparent);
}
.shard-6 {
  width: 18px; height: 18px;
  bottom: 25%; left: 25%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: shardFloat3 11s ease-in-out infinite;
}

@keyframes shardFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  25% { transform: translate(12px, -18px) rotate(90deg); opacity: 1; }
  50% { transform: translate(-8px, -10px) rotate(180deg); opacity: 0.4; }
  75% { transform: translate(15px, 8px) rotate(270deg); opacity: 0.9; }
}
@keyframes shardFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  33% { transform: translate(-15px, -20px) rotate(120deg); opacity: 0.8; }
  66% { transform: translate(10px, -5px) rotate(240deg); opacity: 0.3; }
}
@keyframes shardFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); opacity: 0.7; }
  50% { transform: translate(-10px, -25px) rotate(225deg); opacity: 0.4; }
}

/* Orbit Rings */
.hero-orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
}
.orbit-1 {
  width: 260px; height: 260px;
  margin: -130px 0 0 -130px;
  border: 1px solid rgba(201,168,76,0.06);
  animation: rotate3d 22s linear infinite;
}
.orbit-2 {
  width: 350px; height: 350px;
  margin: -175px 0 0 -175px;
  border: 1px solid rgba(201,168,76,0.04);
  animation: rotate3d 30s linear infinite reverse;
}
.orbit-3 {
  width: 440px; height: 440px;
  margin: -220px 0 0 -220px;
  border: 1px dashed rgba(201,168,76,0.03);
  animation: rotate3d 45s linear infinite;
}
.orbit-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 10px rgba(201,168,76,0.6), 0 0 20px rgba(201,168,76,0.2);
}
.orbit-dot-1 { top: 0; left: 50%; margin-left: -2px; }
.orbit-dot-2 { bottom: 0; left: 50%; margin-left: -2px; width: 3px; height: 3px; }
.orbit-dot-3 { top: 50%; right: 0; margin-top: -2px; width: 5px; height: 5px; box-shadow: 0 0 12px rgba(201,168,76,0.7), 0 0 24px rgba(201,168,76,0.3); }
.orbit-dot-4 { top: 50%; left: 0; margin-top: -2px; width: 3px; height: 3px; }
.orbit-dot-5 { top: 15%; right: 15%; width: 2px; height: 2px; }

/* Reflection Beam */
.diamond-beam {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 180px;
  margin-left: -1px;
  margin-top: -90px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12), transparent);
  transform: rotate(35deg);
  animation: beamRotate 15s linear infinite;
  pointer-events: none;
}
.diamond-beam-2 {
  width: 1px; height: 240px;
  margin-top: -120px;
  background: linear-gradient(to bottom, transparent, rgba(200,220,255,0.06), transparent);
  transform: rotate(-50deg);
  animation: beamRotate 22s linear infinite reverse;
}
@keyframes beamRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-label .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-typed-wrap {
  height: 40px; margin-bottom: 24px;
  display: flex; align-items: center;
  opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-typed {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--gold-light);
  border-right: 2px solid var(--gold);
  padding-right: 4px;
  animation: blink 1s step-end infinite;
}
.hero-desc {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 480px;
  opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 1.3s forwards;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: 4px;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(27,26,22,0.16);
  border-radius: 4px;
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Specimen Ticket — replaces the generic stat row with something that
   reads like an actual appraisal card: bordered, mono data, a hallmark
   seal, and a printed reference number. This is the hero's signature. */
.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: var(--text-primary);
  box-shadow: 0 30px 60px rgba(27,26,22,0.22), 0 2px 8px rgba(27,26,22,0.1);
  opacity: 0; animation: fadeUp 0.8s ease 1.5s forwards;
  position: relative;
}
.hero-metrics::before {
  content: 'CERT. NO. INGTL / 04521';
  position: absolute;
  top: -9px; left: 24px;
  background: var(--bg-primary);
  border: 1px solid rgba(27,26,22,0.14);
  border-radius: 20px;
  padding: 2px 12px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 1.5px;
  color: var(--gold-dark);
}
.metric {
  text-align: left;
  flex: 1;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.metric:first-child { padding-left: 0; border-left: none; }
.metric .number {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.metric .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247,243,233,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute; bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ---------- About ---------- */
.about { padding: 120px 0; background: var(--bg-secondary); position: relative; }
.about::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; perspective: var(--perspective); }
.about-card-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.about-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--bg-tertiary), #16161c);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-image-frame .store-visual {
  font-size: 120px;
  filter: grayscale(0.2);
  transform: translateZ(30px);
}
.about-image-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent 60%);
  pointer-events: none;
}
.about-badge-3d {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--bg-primary);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateZ(60px);
  box-shadow: var(--shadow-depth);
}
.about-badge-3d .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about-badge-3d .badge-text {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}
.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text h3 em { font-style: italic; color: var(--gold); }
.about-text > p {
  color: var(--text-secondary);
  font-size: 15px; line-height: 1.9;
  margin-bottom: 20px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 32px 0;
}
.pillar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.pillar:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.12);
  transform: translateX(4px);
}
.pillar-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pillar span {
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
}
.about-founder {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(27,26,22,0.10);
}
.founder-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
}
.founder-role {
  font-size: 12px; color: var(--gold);
  letter-spacing: 0.5px;
}

/* ---------- Collection ---------- */
.collection { padding: 120px 0; background: var(--bg-primary); }

.filters {
  display: flex; justify-content: center;
  gap: 8px; margin-bottom: 56px; flex-wrap: wrap;
}
.filter-chip {
  padding: 9px 24px;
  border: 1px solid rgba(27,26,22,0.12);
  border-radius: 4px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.5px;
}
.filter-chip:hover { border-color: rgba(201,168,76,0.3); color: var(--text-primary); }
.filter-chip.active {
  background: var(--gold); color: var(--bg-primary);
  border-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* 3D Product Card */
.product-card {
  perspective: 1200px;
  cursor: pointer;
}
.product-card-inner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover .product-card-inner {
  border-color: rgba(201,168,76,0.2);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 1px rgba(201,168,76,0.3),
    inset 0 0 80px rgba(201,168,76,0.02);
}
/* Card Shine / Light Reflection */
.card-shine {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(600px circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(255,255,255,0.06), transparent 40%);
  mix-blend-mode: screen;
}
.product-card:hover .card-shine {
  opacity: 1;
}
/* Edge highlight on tilt */
.card-edge-light {
  position: absolute;
  inset: -1px;
  z-index: 11;
  pointer-events: none;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  border: 1px solid transparent;
  background: linear-gradient(var(--edge-angle, 135deg), rgba(201,168,76,0.15), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.product-card:hover .card-edge-light {
  opacity: 1;
}

.product-card-visual {
  aspect-ratio: 1;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gem-glow {
  position: absolute; inset: 0;
  opacity: 0.12; transition: opacity 0.5s ease;
}
.product-card:hover .gem-glow { opacity: 0.25; }
.gem-3d-wrapper {
  position: relative; z-index: 2;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}
.product-card:hover .gem-3d-wrapper { transform: translateZ(30px) scale(1.08); }
.gem-svg {
  width: 100px; height: 100px;
  filter: drop-shadow(0 0 30px var(--gem-color, rgba(201,168,76,0.3)));
  transition: filter 0.5s ease;
}
.product-card:hover .gem-svg {
  filter: drop-shadow(0 0 50px var(--gem-color, rgba(201,168,76,0.5)));
}
.product-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
  backdrop-filter: blur(10px);
}
.product-card-body { padding: 24px; }
.product-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 4px;
}
.product-origin {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-footer {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(27,26,22,0.10);
}
.product-footer .product-price {
  flex: 1 1 100%;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--gold);
}
.product-price small {
  font-size: 11px; color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.enquire-btn {
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer; transition: var(--transition);
}
.enquire-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}
.wishlist-btn {
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}
.wishlist-btn:hover {
  border-color: var(--gold);
}

/* Gem glow colors */
.glow-sapphire { background: radial-gradient(circle, rgba(46,92,184,0.3), rgba(30,58,122,0.1), transparent); }
.glow-ruby { background: radial-gradient(circle, rgba(220,53,69,0.3), rgba(154,27,48,0.1), transparent); }
.glow-emerald { background: radial-gradient(circle, rgba(40,167,69,0.3), rgba(26,107,66,0.1), transparent); }
.glow-yellow { background: radial-gradient(circle, rgba(255,193,7,0.3), rgba(184,134,11,0.1), transparent); }
.glow-catseye { background: radial-gradient(circle, rgba(200,168,78,0.3), rgba(107,90,26,0.1), transparent); }
.glow-amethyst { background: radial-gradient(circle, rgba(155,89,182,0.3), rgba(106,27,138,0.1), transparent); }
.glow-pearl { background: radial-gradient(circle, rgba(220,220,240,0.2), rgba(180,180,200,0.08), transparent); }
.glow-coral { background: radial-gradient(circle, rgba(232,93,74,0.3), rgba(139,58,43,0.1), transparent); }
.glow-rudraksha { background: radial-gradient(circle, rgba(139,105,20,0.3), rgba(90,69,16,0.1), transparent); }
.glow-diamond { background: radial-gradient(circle, rgba(200,220,255,0.3), rgba(160,180,220,0.1), transparent); }

.collection-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Services ---------- */
.services { padding: 120px 0; background: var(--bg-secondary); position: relative; }
.services::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  perspective: var(--perspective);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(201,168,76,0.1);
  background: rgba(201,168,76,0.02);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--gold-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotateZ(-5deg);
  background: rgba(201,168,76,0.12);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Offers ---------- */
.offers {
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.03), rgba(30,58,122,0.02), rgba(154,27,48,0.02));
  position: relative; overflow: hidden;
  text-align: center;
}
.offers::before, .offers::after {
  content: ''; position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.offers::before { top: 0; }
.offers::after { bottom: 0; }
.offer-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: borderGlow 3s infinite;
}
.offers h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px; line-height: 1.2;
}
.offers h2 em { font-style: italic; color: var(--gold); }
.offers > p {
  color: var(--text-secondary); font-size: 15px;
  margin-bottom: 36px;
}
.offer-perks {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-secondary);
}
.perk-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #28a745;
  flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 120px 0; background: var(--bg-primary); }
.testimonials-slider {
  max-width: 700px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.test-track { display: flex; transition: transform 0.5s ease; }
.test-card {
  min-width: 100%; padding: 48px 24px;
  text-align: center;
}
.test-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 24px; }
.test-stars span { color: var(--gold); font-size: 14px; }
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative; padding: 0 16px;
}
.test-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: rgba(201,168,76,0.1);
  position: absolute; top: -20px; left: -8px;
  line-height: 1;
}
.test-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
}
.test-role {
  font-size: 12px; color: var(--gold);
  margin-top: 4px; letter-spacing: 0.5px;
}
.slider-nav {
  display: flex; justify-content: center;
  align-items: center; gap: 16px; margin-top: 24px;
}
.slider-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 16px; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.slider-pips { display: flex; gap: 6px; }
.slider-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.slider-pip.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- Contact ---------- */
.contact { padding: 120px 0; background: var(--bg-secondary); position: relative; }
.contact::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.info-cards { display: grid; gap: 16px; margin-bottom: 24px; }
.info-card {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius);
  transition: var(--transition);
}
.info-card:hover {
  border-color: rgba(201,168,76,0.1);
  transform: translateX(4px);
}
.info-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-muted);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.1);
}
.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600;
  margin-bottom: 4px;
}
.info-card p {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.6;
}
.info-card a { color: var(--gold); }
.info-card a:hover { text-decoration: underline; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.06);
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.4) contrast(1.1) brightness(0.8); }

.form-card {
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; margin-bottom: 6px;
}
.form-card > p {
  font-size: 14px; color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.14);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none;
  transition: var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%235a5a60' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field select option { background: var(--bg-tertiary); color: var(--text-primary); }
.submit-btn {
  width: 100%; padding: 15px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 6px;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s;
}
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; animation: scaleIn 0.5s ease; }
.form-success .success-mark { font-size: 48px; margin-bottom: 16px; }
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--gold); margin-bottom: 8px;
}
.form-success p { color: var(--text-secondary); font-size: 14px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-tertiary);
  padding: 80px 24px 32px; position: relative;
}
.footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; max-width: 1240px;
  margin: 0 auto 60px;
}
.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
}
.footer-about { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(27,26,22,0.14);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold); color: var(--bg-primary);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600;
  margin-bottom: 20px; color: var(--text-primary);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--text-secondary);
}
.footer-col ul li a:hover { color: var(--gold); }
.newsletter-input {
  display: flex; gap: 0;
}
.newsletter-input input {
  flex: 1; padding: 12px 14px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.14);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px; outline: none;
}
.newsletter-input input:focus { border-color: var(--gold); }
.newsletter-input button {
  padding: 12px 18px;
  background: var(--gold); border: none;
  border-radius: 0 6px 6px 0;
  color: var(--bg-primary); font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.newsletter-input button:hover { opacity: 0.85; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid rgba(27,26,22,0.10);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- WhatsApp & Back-to-Top ---------- */
.wa-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  top: auto;
  transform: none;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.wa-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37,211,102,0.55);
}
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.wa-fab .wa-tooltip {
  position: absolute; right: 64px;
  white-space: nowrap;
  background: #fff; color: #333;
  padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0; transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-fab:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

.btt {
  position: fixed; bottom: 92px; right: 32px;
  width: 40px; height: 40px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  z-index: 998; cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}
.btt.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { background: var(--gold); border-color: var(--gold); }
.btt:hover svg { stroke: var(--bg-primary); }
.btt svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 2; fill: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-panel {
  background: var(--bg-secondary);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-xl);
  padding: 48px; max-width: 460px; width: 100%;
  text-align: center;
  animation: scaleIn 0.4s ease;
  position: relative;
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--text-muted); font-size: 24px;
  cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-gem-display { font-size: 80px; margin-bottom: 20px; }
.lightbox-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; margin-bottom: 8px;
}
.lightbox-desc { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; line-height: 1.8; }
.lightbox-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--gold); margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-3d-scene { width: 280px; height: 280px; right: 4%; }
  .about-grid { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(6,6,8,0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 32px;
    clip-path: circle(0px at calc(100% - 40px) 40px);
    transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    border: none;
    z-index: 999;
  }
  .nav-menu.open {
    clip-path: circle(150% at calc(100% - 40px) 40px);
  }
  
  /* Staggered 3D cascading animation for mobile links */
  .nav-menu > * {
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg) scale(0.9);
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav-menu.open > * {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
  .nav-menu.open > *:nth-child(1) { transition-delay: 0.10s; }
  .nav-menu.open > *:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.open > *:nth-child(3) { transition-delay: 0.20s; }
  .nav-menu.open > *:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.open > *:nth-child(5) { transition-delay: 0.30s; }
  .nav-menu.open > *:nth-child(6) { transition-delay: 0.35s; }
  .nav-menu.open > *:nth-child(7) { transition-delay: 0.40s; }
  .nav-menu.open > *:nth-child(8) { transition-delay: 0.45s; }
  
  .nav-menu a { font-size: 20px; font-weight: 500; color: #ffffff !important; letter-spacing: 2px; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--gold-light) !important; transform: translateY(-4px) scale(1.05); }
  .nav-menu .nav-cta-btn { margin-top: 20px; font-size: 14px; padding: 14px 28px; }

  .hero { flex-direction: column; text-align: center; }
  .hero-content { margin: 0; padding: 120px 20px 60px; max-width: 100%; z-index: 10; }
  .hero-3d-scene { display: block; transform: scale(0.6) translateY(30%); opacity: 0.3; }
  .hero-metrics { justify-content: center; gap: 32px; flex-wrap: wrap; }
  .metric { text-align: center; }
  .hero-actions { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-pillars { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .offer-perks { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .trust-items { gap: 20px; justify-content: center; }
  .trust-item { font-size: 11px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 0 60px; }
  .cta-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(248,249,250,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
  .nav.scrolled { padding: 12px 16px; }
  .nav-brand .brand-name { font-size: 14px; }
  .hero h1 { font-size: 30px; }
  .hero-metrics { gap: 20px; }
  .metric .number { font-size: 26px; }
  .section-title h2 { font-size: 26px; }
  .wa-fab {
  position: fixed; top: 55%; right: 20px;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
  .wa-fab svg { width: 24px; height: 24px; }
  .btt { bottom: 76px; right: 24px; width: 36px; height: 36px; }
  .form-card { padding: 24px; }
  .product-card-body { padding: 18px; }
  .trust-items { gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-block { padding: 24px 16px; }
  .page-header-content h1 { font-size: 28px; }
}

/* ============================================
   Multi-Page Additions
   ============================================ */

/* ---------- Sparkle Canvas ---------- */
#sparkleCanvas {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.06);
  overflow: hidden;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  padding: 140px 0 80px;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 30% 60%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 70% 30%, rgba(30,58,122,0.04) 0%, transparent 60%);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.page-header-content {
  position: relative; z-index: 1;
}
.page-header-content .overline {
  font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 16px;
}
.page-header-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-header-content p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Shop Page Modifier ---------- */
.shop-page { padding-top: 60px; }

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.cta-box {
  text-align: center;
  padding: 80px 40px;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.04), rgba(30,58,122,0.03)),
    rgba(255,255,255,0.01);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '◇';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  color: rgba(201,168,76,0.03);
  pointer-events: none;
}
.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Stats Section ---------- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.03), rgba(30,58,122,0.02));
  border-top: 1px solid rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-block {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-block:hover {
  border-color: rgba(201,168,76,0.12);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Why Choose Us Grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  background: var(--bg-glass);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.12);
  transform: translateY(-4px);
}
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(27,26,22,0.10);
}
.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--gold);
}
.faq-toggle {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Responsive additions (merged into shared breakpoints above) ---------- */

/* ============================================
   Gallery Showcase Styling
   ============================================ */
.gallery-grid-3d {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  perspective: 1200px;
}
@media (min-width: 768px) {
  .gallery-grid-3d {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
  }
}
.gallery-item-3d {
  position: relative;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}
.gallery-item-3d:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border-color: var(--gold-light);
}
.gallery-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-tertiary);
}
.gallery-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.gallery-item-3d:hover .gallery-img-wrapper img {
  transform: scale(1.08) rotate(1deg);
}
.gallery-info {
  padding: 20px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.gallery-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.gallery-info span {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}


/* ============================================
   Shopping Cart Drawer System
   ============================================ */


.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 4999;
  display: none;
}
.cart-overlay.show {
  display: block;
}
.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}
.cart-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}
.cart-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}
.cart-items-container {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
  font-size: 14px;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: center;
}
.cart-item-emoji {
  width: 48px; height: 48px;
  background: var(--bg-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-qty-btn {
  width: 24px; height: 24px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--bg-primary);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-qty-val {
  font-size: 13px;
  font-weight: 500;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
  margin-left: 8px;
}
.cart-item-remove:hover {
  color: var(--ruby);
}
.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--bg-tertiary);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
}
.cart-subtotal span:last-child {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--bg-secondary);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: block;
}
.cart-checkout-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.add-cart-btn {
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer; transition: var(--transition);
}
.add-cart-btn:hover {
  background: var(--gold);
  color: var(--bg-secondary);
}

/* ============================================
   Google Reviews Styling
   ============================================ */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid rgba(201,168,76,0.06);
}
.reviews-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.reviews-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.review-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.review-author h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.review-date {
  font-size: 11px;
  color: var(--text-muted);
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   MARKETING & CONVERSION UI
   ============================================ */
.promo-banner {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1000;
  letter-spacing: 0.5px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 50px;
  overflow: hidden;
}
.promo-banner.hidden {
  max-height: 0;
  padding: 0 30px;
}
#closePromo {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.social-proof-toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9998;
  transform: translateX(-150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-proof-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.sp-img {
  font-size: 24px;
  background: var(--bg-primary);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.sp-text p {
  font-size: 13px;
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}
.sp-text small {
  font-size: 11px;
  color: var(--text-muted);
}

.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.exit-popup {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  border: 2px solid var(--gold);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.exit-popup-overlay.show .exit-popup {
  transform: translateY(0) scale(1);
}
.exit-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
}
.exit-popup h2 {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.exit-popup p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}
.exit-cta {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.exit-cta:hover {
  transform: scale(1.05);
}

/* ============================================
   GLOBAL 10% OFF DISCOUNT BADGE
   ============================================ */
.product-card-visual::after {
  content: '10% OFF (T&C Apply)*';
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--sindoor);
  color: var(--bg-secondary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 5px 12px 5px 14px;
  z-index: 20;
  letter-spacing: 0.5px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%; max-width: 400px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid rgba(0,0,0,0.08);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.4s ease;
}
.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}


/* Header Quick Action Buttons Next to 3 Lines */
.nav-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.hdr-btn:hover {
  transform: translateY(-2px) scale(1.08);
  border-color: var(--gold);
  background: var(--bg-tertiary);
}
.hdr-call-btn { color: var(--gold); }
.hdr-wa-btn { color: #25d366; }
.hdr-ai-btn { color: var(--gold); }

.menu-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.menu-call-btn:hover {
  background: var(--gold);
  color: #ffffff !important;
}

.menu-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 30px;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.menu-ai-btn:hover {
  transform: translateY(-2px) scale(1.04);
}




.menu-email-btn:hover {
  background: var(--gold);
  color: #ffffff !important;
}


/* ---------- Legal / Policy Documents ----------
   Reads as a printed record rather than a generic "legal page" —
   same ledger language as the rest of the site, just applied to text. */
.legal-page { padding: 60px 0 100px; background: var(--bg-primary); }
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-depth);
}
.legal-doc .doc-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(27,26,22,0.10);
  padding-bottom: 20px;
  margin-bottom: 36px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text-primary);
  display: flex; align-items: baseline; gap: 10px;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h2 .sec-no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
}
.legal-doc p, .legal-doc li {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.legal-doc ul, .legal-doc ol { padding-left: 22px; margin-bottom: 14px; }
.legal-doc a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-doc strong { color: var(--text-primary); }
.legal-doc .doc-footer {
  display: flex; align-items: center; gap: 14px;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(27,26,22,0.10);
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
}
@media (max-width: 640px) {
  .legal-doc { padding: 36px 24px; }
}

/* ---------- Checkout Page ---------- */
.checkout-page { padding: 60px 0 100px; background: var(--bg-primary); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
}
.checkout-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-depth);
}
.checkout-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 20px;
}
.checkout-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
}
.checkout-empty p { color: var(--text-secondary); margin-bottom: 20px; }

/* Order Summary — the "ticket" side */
.order-summary {
  background: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  color: var(--bg-primary);
  position: relative;
}
.order-summary::before {
  content: 'ORDER TICKET';
  position: absolute;
  top: -9px; left: 24px;
  background: var(--bg-primary);
  border: 1px solid rgba(27,26,22,0.14);
  border-radius: 20px;
  padding: 2px 12px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 1.5px;
  color: var(--gold-dark);
}
.order-summary h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--bg-primary);
}
.order-summary-items {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  max-height: 280px;
  overflow-y: auto;
}
.order-summary-item {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 13px;
}
.order-summary-item .osi-name { color: rgba(247,243,233,0.92); }
.order-summary-item .osi-qty {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(247,243,233,0.5);
}
.order-summary-item .osi-price {
  font-family: var(--font-mono);
  color: var(--gold-light);
  white-space: nowrap;
}
.order-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(247,243,233,0.65);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}
.order-summary-row.total {
  font-size: 17px;
  color: var(--gold-light);
  font-weight: 600;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 14px;
  margin-top: 10px;
}
.order-summary .btn-gold {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}
.order-summary .cod-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(247,243,233,0.5);
  text-align: center;
  font-family: var(--font-mono);
}

/* Success state */
.checkout-success {
  text-align: center;
  padding: 70px 30px;
  background: var(--bg-secondary);
  border: 1px solid rgba(27,26,22,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-depth);
}
.checkout-success .hallmark-seal { margin: 0 auto 20px; --seal-size: 48px; }
.checkout-success h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 10px; }
.checkout-success p { color: var(--text-secondary); max-width: 440px; margin: 0 auto 28px; }

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    position: static !important;
    clip-path: none !important;
    background: transparent !important;
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
  }
  .nav-menu > * {
    opacity: 1 !important;
    transform: none !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
  }
}
