﻿/* ============================================================
   SARVA â€” "Sacred Geometry" theme overlay
   Loaded AFTER main.css. Reworks Sarva into a warm, traditional,
   ornate spiritual aesthetic â€” mandalas, serif display type,
   rounded ornaments, golden accents â€” visibly distinct from
   IRFC and Nexacore.
   ============================================================ */

:root {
  /* Typography swap â€” traditional / editorial / spiritual */
  --font: 'Lato', 'Karla', system-ui, sans-serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Tiro Devanagari Sanskrit', 'Mukta Vaani', serif;

  /* Very rounded, soft, ornamental */
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 36px;
  --nav-h: 84px;

  /* Royal Mystic palette — violet primary, amber-gold accent */
  --border: rgba(252, 211, 77, 0.22);
  --border-hover: rgba(167, 139, 250, 0.55);
  --accent-glow: rgba(251, 191, 36, 0.45);
  --violet-glow: rgba(124, 58, 237, 0.45);
  --gradient-btn: linear-gradient(135deg, #a78bfa 0%, #7c3aed 50%, #5b21b6 100%);
  --gradient-accent: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
  --gradient-text: linear-gradient(135deg, #fef3c7 0%, #fde68a 25%, #facc15 55%, #fbbf24 100%);
  --shadow-card: 0 22px 60px rgba(26, 11, 46, 0.55), 0 0 0 1px rgba(167, 139, 250, 0.16);
  --shadow-glow: 0 0 80px rgba(124, 58, 237, 0.18);
}

/* â”€â”€â”€ Body / page bg: warm maroon-cream gradient â”€â”€â”€ */
body.theme-sarva {
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.005em;
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(245, 158, 11, 0.15), transparent 65%),
    radial-gradient(800px 500px at 10% 90%, rgba(124, 58, 237, 0.15), transparent 60%),
    radial-gradient(700px 500px at 90% 60%, rgba(91, 33, 182, 0.4), transparent 65%),
    linear-gradient(180deg, #241141 0%, #1a0b2e 60%, #0d0518 100%);
}

/* Mandala backdrop pattern â€” fixed, very subtle */
body.theme-sarva::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g fill='none' stroke='%23fbbf24' stroke-width='0.6' opacity='0.08'><circle cx='300' cy='300' r='280'/><circle cx='300' cy='300' r='220'/><circle cx='300' cy='300' r='160'/><circle cx='300' cy='300' r='100'/><circle cx='300' cy='300' r='40'/><g transform='translate(300 300)'><g><path d='M0 -280 L0 280 M-280 0 L280 0 M-198 -198 L198 198 M-198 198 L198 -198'/></g><g transform='rotate(22.5)'><path d='M0 -280 L0 280 M-280 0 L280 0 M-198 -198 L198 198 M-198 198 L198 -198'/></g></g><g transform='translate(300 300)' opacity='0.6'><circle r='250' stroke-dasharray='3 8'/><circle r='180' stroke-dasharray='2 5'/></g></g></svg>");
  background-size: 720px 720px;
  background-position: center;
  background-repeat: repeat;
  animation: sarvaMandalaFloat 240s linear infinite;
}

@keyframes sarvaMandalaFloat {
  from { background-position: 0 0; }
  to { background-position: 720px 720px; }
}

/* Lift page content above the ::after mandala overlay (z-index: 0).
   Do NOT include .site-nav here — it must keep its main.css values
   (position: fixed; z-index: 1000) so the Shop dropdown menu stacks
   above main content; otherwise hero elements intercept clicks. */
body.theme-sarva main,
body.theme-sarva .site-footer {
  position: relative;
  z-index: 1;
}

/* â”€â”€â”€ Navigation: warm maroon, serif logo, golden underline â”€â”€â”€ */
body.theme-sarva .site-nav {
  background: rgba(45, 19, 78, 0.55);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

body.theme-sarva .site-nav.scrolled {
  background: linear-gradient(180deg, rgba(45, 19, 78, 0.97) 0%, rgba(13, 5, 24, 0.92) 100%);
  border-bottom-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 1px 0 rgba(245, 158, 11, 0.2), 0 16px 48px rgba(91, 33, 182, 0.5);
}

body.theme-sarva .site-nav::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(245, 158, 11, 0.5) 50%, transparent 95%);
}

body.theme-sarva .brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  font-style: italic;
}

body.theme-sarva .site-logo img {
  filter: drop-shadow(0 0 14px rgba(245, 158, 11, 0.3)) brightness(1.05);
}

body.theme-sarva .nav-links { gap: 6px; }

body.theme-sarva .nav-links > li > a {
  position: relative;
  padding: 11px 18px;
  border-radius: 999px;
  background: transparent !important;
  color: #ede9fe;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  text-transform: none;
}

body.theme-sarva .nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #fbbf24, #f59e0b, #fbbf24, transparent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), left 0.4s;
}

body.theme-sarva .nav-links > li > a:hover {
  color: #fde68a;
  background: transparent !important;
}
body.theme-sarva .nav-links > li > a:hover::after {
  width: calc(100% - 24px);
  left: 12px;
}

/* â”€â”€â”€ Buttons: ornate rounded pills, double-line golden border â”€â”€â”€ */
body.theme-sarva .btn {
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.015em;
  padding: 14px 30px;
}

body.theme-sarva .btn-primary {
  background: var(--gradient-btn);
  color: #fef3c7;
  font-weight: 700;
  border: 1px solid rgba(252, 211, 77, 0.45);
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.18),
    0 12px 36px rgba(124, 58, 237, 0.45),
    inset 0 1px 0 rgba(252, 211, 77, 0.35);
}
body.theme-sarva .btn-primary:hover {
  box-shadow:
    0 0 0 5px rgba(124, 58, 237, 0.25),
    0 16px 44px rgba(124, 58, 237, 0.6),
    inset 0 1px 0 rgba(252, 211, 77, 0.35);
  transform: translateY(-3px);
}

body.theme-sarva .btn-ghost {
  background: rgba(252, 211, 77, 0.04);
  color: #fef3c7;
  border: 1px solid rgba(252, 211, 77, 0.35);
  box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.04);
}
body.theme-sarva .btn-ghost:hover {
  border-color: rgba(245, 158, 11, 0.6);
  background: rgba(245, 158, 11, 0.08);
  color: #fef3c7;
  box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.08);
}

body.theme-sarva .btn-accent {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #1e1b4b;
}

/* â”€â”€â”€ Hero: centered traditional, mandala bg, ornate divider â”€â”€â”€ */
body.theme-sarva .hero {
  padding: calc(var(--nav-h) + 56px) 0 110px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 25%, rgba(245, 158, 11, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(124, 58, 237, 0.18), transparent 60%);
}

/* Force hero into centered single column on all sizes â€” different from IRFC's split-screen */
body.theme-sarva .hero-layout {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
  gap: 0;
}

body.theme-sarva .hero-content { text-align: center; }

body.theme-sarva .hero-mockup {
  display: none; /* hide the dashboard mockup â€” Sarva is content-focused */
}

/* Background mandala layer inside hero */
body.theme-sarva .hero-grid-bg {
  background-image: none;
  mask-image: none;
  background:
    radial-gradient(circle at center, transparent 0, transparent 320px, rgba(245, 158, 11, 0.05) 322px, transparent 326px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'><g fill='none' stroke='%23fbbf24' stroke-width='0.8' opacity='0.18'><circle cx='400' cy='400' r='380'/><circle cx='400' cy='400' r='320'/><circle cx='400' cy='400' r='260'/><circle cx='400' cy='400' r='200'/><circle cx='400' cy='400' r='140'/><circle cx='400' cy='400' r='80'/><g transform='translate(400 400)'><g><circle r='340' stroke-dasharray='4 8'/></g><g transform='rotate(15)'><line x1='-340' y1='0' x2='340' y2='0'/><line x1='0' y1='-340' x2='0' y2='340'/></g><g transform='rotate(45)'><line x1='-340' y1='0' x2='340' y2='0'/><line x1='0' y1='-340' x2='0' y2='340'/></g><g transform='rotate(75)'><line x1='-340' y1='0' x2='340' y2='0'/><line x1='0' y1='-340' x2='0' y2='340'/></g></g><g transform='translate(400 400)' opacity='0.7'><g id='petal' transform='translate(0 -220)'><path d='M0 0 Q20 -60 0 -120 Q-20 -60 0 0Z'/></g><use href='%23petal' transform='rotate(30 0 0)'/><use href='%23petal' transform='rotate(60 0 0)'/><use href='%23petal' transform='rotate(90 0 0)'/><use href='%23petal' transform='rotate(120 0 0)'/><use href='%23petal' transform='rotate(150 0 0)'/><use href='%23petal' transform='rotate(180 0 0)'/><use href='%23petal' transform='rotate(210 0 0)'/><use href='%23petal' transform='rotate(240 0 0)'/><use href='%23petal' transform='rotate(270 0 0)'/><use href='%23petal' transform='rotate(300 0 0)'/><use href='%23petal' transform='rotate(330 0 0)'/></g></g></svg>");
  background-size: cover, 760px 760px;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
  animation: sarvaMandalaSpin 180s linear infinite;
}

@keyframes sarvaMandalaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

body.theme-sarva .hero-stars {
  background-image:
    radial-gradient(1.4px 1.4px at 50px 60px, rgba(252, 211, 77, 0.6), transparent),
    radial-gradient(1px 1px at 180px 220px, rgba(254, 243, 199, 0.4), transparent),
    radial-gradient(1.6px 1.6px at 320px 100px, rgba(245, 158, 11, 0.55), transparent),
    radial-gradient(1px 1px at 90px 340px, rgba(255, 255, 255, 0.3), transparent);
  background-size: 420px 380px;
  opacity: 0.4;
}

body.theme-sarva .hero-orb-1 {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.32) 0%, transparent 70%);
}
body.theme-sarva .hero-orb-2 {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 70%);
}
body.theme-sarva .hero-orb-3 {
  background: radial-gradient(circle, rgba(91, 33, 182, 0.25) 0%, transparent 70%);
}

/* Neutral geometric mark above hero content (SVG rendered inline in markup) */
body.theme-sarva .hero-mark {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(245, 158, 11, 0.55));
  animation: sarvaMarkGlow 4s ease-in-out infinite;
}

@keyframes sarvaMarkGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(245, 158, 11, 0.45)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 32px rgba(245, 158, 11, 0.85)); transform: scale(1.04); }
}

body.theme-sarva .hero-badge {
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.08);
  border: 1px solid rgba(252, 211, 77, 0.4);
  color: #fde68a;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 auto 28px;
  padding: 8px 18px 8px 12px;
  display: inline-flex;
}
body.theme-sarva .hero-badge i {
  background: var(--gradient-accent);
  color: #1e1b4b;
}

body.theme-sarva .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

body.theme-sarva .hero h1 .gradient-text {
  font-style: italic;
  font-weight: 700;
}

/* Ornate horizontal divider under sub */
body.theme-sarva .hero-sub {
  font-family: var(--font);
  font-size: 1.15rem;
  color: #ddd6fe;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
}
body.theme-sarva .hero-sub::after {
  content: '';
  display: block;
  margin: 28px auto 0;
  width: 220px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 22'><g fill='none' stroke='%23fbbf24' stroke-width='1.3'><line x1='0' y1='11' x2='80' y2='11' stroke-linecap='round'/><line x1='140' y1='11' x2='220' y2='11' stroke-linecap='round'/></g><g fill='%23fbbf24'><circle cx='95' cy='11' r='2.2'/><circle cx='125' cy='11' r='2.2'/><path d='M110 3 L115 11 L110 19 L105 11 Z'/></g></svg>") no-repeat center;
  opacity: 0.85;
}

body.theme-sarva .hero-cta {
  justify-content: center;
}

body.theme-sarva .hero-trust {
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
body.theme-sarva .hero-trust-avatars {
  margin-bottom: 4px;
}
body.theme-sarva .hero-trust-avatars span {
  background: linear-gradient(135deg, #fbbf24, #b45309);
  border-color: #1e1b4b;
}

/* Stats strip â€” ornate card group */
body.theme-sarva .stats-strip {
  margin-top: 64px;
  gap: 14px;
}
body.theme-sarva .stat-item {
  border-radius: 18px;
  border: 1px solid rgba(252, 211, 77, 0.22);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 60%),
    rgba(45, 19, 78, 0.7);
  padding: 24px 16px;
  position: relative;
}
body.theme-sarva .stat-item::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 16px; height: 16px;
  border-top: 1.5px solid rgba(252, 211, 77, 0.55);
  border-left: 1.5px solid rgba(252, 211, 77, 0.55);
  border-radius: 6px 0 0 0;
}
body.theme-sarva .stat-item::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 16px; height: 16px;
  border-bottom: 1.5px solid rgba(252, 211, 77, 0.55);
  border-right: 1.5px solid rgba(252, 211, 77, 0.55);
  border-radius: 0 0 6px 0;
}
body.theme-sarva .stat-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.theme-sarva .stat-item span {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #ddd6fe;
  font-weight: 600;
}

/* Logo marquee â€” ornate scroll */
body.theme-sarva .logo-marquee {
  padding: 44px 0;
  border-block: 1px solid rgba(252, 211, 77, 0.18);
  background:
    linear-gradient(90deg, rgba(45, 19, 78, 0.65), rgba(91, 33, 182, 0.55), rgba(45, 19, 78, 0.65));
}
body.theme-sarva .marquee-track span {
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 77, 0.35);
  background: rgba(252, 211, 77, 0.05);
  color: #ede9fe;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px;
}
body.theme-sarva .marquee-track span::before {
  content: '\2726 ';
  color: #fbbf24;
  font-size: 0.85rem;
}

/* --- Sections --- */
body.theme-sarva .section { padding: 116px 0; }

body.theme-sarva .section-alt {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.07), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(245, 158, 11, 0.07), transparent 60%);
}

body.theme-sarva .section-label {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  border: none;
  padding: 0 0 6px;
  color: #fbbf24;
  border-radius: 0;
  position: relative;
}
body.theme-sarva .section-label::before {
  content: '\2014  ';
  color: rgba(252, 211, 77, 0.7);
}
body.theme-sarva .section-label::after {
  content: '  \2014';
  color: rgba(252, 211, 77, 0.7);
}

body.theme-sarva .section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

body.theme-sarva .section h2 + .section-lead,
body.theme-sarva .section-lead {
  font-family: var(--font);
  font-size: 1.08rem;
  color: #ddd6fe;
  line-height: 1.8;
}

/* â”€â”€â”€ Feature cards: heavily rounded, ornamental corners â”€â”€â”€ */
body.theme-sarva .feature-grid { gap: 26px; }

body.theme-sarva .feature-card {
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.08), transparent 50%),
    linear-gradient(170deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
  border: 1px solid rgba(252, 211, 77, 0.2);
  padding: 38px 32px 32px;
  overflow: hidden;
}

body.theme-sarva .feature-card::before {
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.6), rgba(124, 58, 237, 0.4) 60%, transparent);
  padding: 1.5px;
}

body.theme-sarva .feature-card::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  border-top: 1.5px solid rgba(252, 211, 77, 0.45);
  border-left: 1.5px solid rgba(252, 211, 77, 0.45);
  border-radius: 12px 0 0 0;
  pointer-events: none;
  transition: border-color 0.3s;
}

body.theme-sarva .feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(91, 33, 182, 0.65),
    0 0 0 1px rgba(245, 158, 11, 0.35),
    0 0 60px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.45);
}

body.theme-sarva .feature-card:hover::after {
  border-color: rgba(252, 211, 77, 0.8);
}

body.theme-sarva .feature-card .card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 3.4rem;
  color: rgba(252, 211, 77, 0.1);
  top: 18px;
  right: 24px;
}

body.theme-sarva .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(252, 211, 77, 0.3);
  margin-bottom: 24px;
  font-size: 1.65rem;
  color: #fbbf24 !important;
  box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.15), 0 0 28px rgba(245, 158, 11, 0.15);
}

/* override main.css per-child icons */
body.theme-sarva .feature-card:nth-child(1) .feature-icon,
body.theme-sarva .feature-card:nth-child(2) .feature-icon,
body.theme-sarva .feature-card:nth-child(3) .feature-icon {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(124, 58, 237, 0.08));
  color: #fde68a !important;
  box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.15), 0 0 30px rgba(245, 158, 11, 0.18);
}

body.theme-sarva .feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

body.theme-sarva .feature-card p {
  font-family: var(--font);
  color: #ddd6fe;
  font-size: 0.98rem;
  line-height: 1.75;
}

body.theme-sarva .feature-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  transform: none;
}

body.theme-sarva .feature-card:hover .feature-link {
  color: #fde68a;
  transform: translateX(4px);
}

body.theme-sarva .feature-link i {
  transition: transform 0.3s;
}
body.theme-sarva .feature-card:hover .feature-link i {
  transform: translateX(4px);
}

/* â”€â”€â”€ Product cards: rounded, warm shadow, ornament â”€â”€â”€ */
body.theme-sarva .product-card {
  border-radius: 26px;
  border-color: rgba(252, 211, 77, 0.18);
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.08), transparent 50%),
    linear-gradient(170deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
}

body.theme-sarva .product-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 30px 60px rgba(91, 33, 182, 0.55), 0 0 38px rgba(245, 158, 11, 0.18);
}

body.theme-sarva .product-img::before {
  background: linear-gradient(165deg, #2e1554 0%, #1a0b2e 60%, #3a1c66 100%);
}
body.theme-sarva .product-img::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.32), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.22), transparent 50%);
}

body.theme-sarva .product-badge {
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(245, 158, 11, 0.85), rgba(180, 83, 9, 0.85));
  color: #1e1b4b;
  border: 1px solid rgba(252, 211, 77, 0.55);
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.05em;
}

body.theme-sarva .product-img i {
  color: #fbbf24;
  filter: drop-shadow(0 0 24px rgba(245, 158, 11, 0.55));
}

body.theme-sarva .product-body { padding: 24px 22px; }
body.theme-sarva .product-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}
body.theme-sarva .product-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fbbf24;
  font-size: 1.25rem;
}

/* â”€â”€â”€ Testimonials: ornate cards with serif quote â”€â”€â”€ */
body.theme-sarva .testimonial-card {
  border-radius: 26px;
  border-color: rgba(252, 211, 77, 0.2);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.06), transparent 55%),
    linear-gradient(170deg, rgba(45, 19, 78, 0.9), rgba(13, 5, 24, 0.96));
  padding: 32px 28px;
}
body.theme-sarva .testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  font-style: italic;
  color: rgba(245, 158, 11, 0.3);
  top: 18px;
  right: 28px;
}
body.theme-sarva .testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #ede9fe;
}
body.theme-sarva .testimonial-stars { color: #fbbf24; }
body.theme-sarva .testimonial-author {
  font-family: var(--font);
  font-weight: 700;
  color: #fef3c7;
  font-size: 0.92rem;
}
body.theme-sarva .testimonial-author span {
  font-family: var(--font);
  color: #ddd6fe;
  font-weight: 400;
  font-style: italic;
}

/* â”€â”€â”€ CTA band: ornate gold-bordered card â”€â”€â”€ */
body.theme-sarva .cta-band {
  margin: 0 24px 110px;
  border-radius: 36px;
  border: 1px solid rgba(252, 211, 77, 0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.28), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(124, 58, 237, 0.2), transparent 50%),
    linear-gradient(135deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
  padding: 80px 56px;
  box-shadow:
    0 40px 80px rgba(91, 33, 182, 0.55),
    inset 0 1px 0 rgba(252, 211, 77, 0.25),
    inset 0 0 60px rgba(245, 158, 11, 0.08);
}
body.theme-sarva .cta-band::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g fill='none' stroke='%23fbbf24' stroke-width='1' opacity='0.18'><circle cx='300' cy='300' r='280'/><circle cx='300' cy='300' r='220'/><circle cx='300' cy='300' r='160'/><g transform='translate(300 300)'><line x1='-280' y1='0' x2='280' y2='0'/><line x1='0' y1='-280' x2='0' y2='280'/><line x1='-198' y1='-198' x2='198' y2='198'/><line x1='-198' y1='198' x2='198' y2='-198'/></g></g></svg>") no-repeat center;
  background-size: contain;
  animation: sarvaMandalaSpin 90s linear infinite;
}
body.theme-sarva .cta-band::after { display: none; }
body.theme-sarva .cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
body.theme-sarva .cta-band p {
  font-family: var(--font);
  color: #ede9fe;
}

/* â”€â”€â”€ Footer: centered traditional, ornate divider, Sanskrit blessing â”€â”€â”€ */
body.theme-sarva .site-footer {
  border-top: 1px solid rgba(252, 211, 77, 0.18);
  padding: 80px 0 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(45, 19, 78, 1) 0%, #0d0518 100%);
  position: relative;
}

body.theme-sarva .site-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 26px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 26'><g fill='%23fbbf24' opacity='0.4'><circle cx='130' cy='13' r='1.8'/><circle cx='160' cy='13' r='3'/><circle cx='190' cy='13' r='1.8'/></g><g fill='none' stroke='%23fbbf24' stroke-width='0.8' opacity='0.45'><line x1='10' y1='13' x2='120' y2='13' stroke-linecap='round'/><line x1='200' y1='13' x2='310' y2='13' stroke-linecap='round'/></g></svg>") no-repeat center / 320px 26px;
  pointer-events: none;
}

body.theme-sarva .footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 56px;
}

body.theme-sarva .footer-grid h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: #fbbf24;
  text-transform: none;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
body.theme-sarva .footer-grid h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, #fbbf24, transparent);
}

body.theme-sarva .footer-grid a {
  font-family: var(--font);
  color: #ddd6fe;
  font-size: 0.94rem;
}
body.theme-sarva .footer-grid a:hover {
  color: #fde68a;
  padding-left: 4px;
}

body.theme-sarva .footer-bottom {
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid rgba(252, 211, 77, 0.15);
  font-family: var(--font);
}

body.theme-sarva .footer-bottom::before {
  content: 'May all beings be happy';
  display: block;
  font-family: var(--font-accent);
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.03em;
  opacity: 0.95;
}

body.theme-sarva .footer-bottom > span {
  font-family: var(--font);
  color: #c4b5fd;
}

/* â”€â”€â”€ Page hero (interior pages) â”€â”€â”€ */
body.theme-sarva .page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(45, 19, 78, 0.95) 0%, rgba(13, 5, 24, 0.6) 100%);
}
body.theme-sarva .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.015em;
}

/* â”€â”€â”€ Forms â”€â”€â”€ */
body.theme-sarva .form-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: #ede9fe;
}
body.theme-sarva .form-control,
body.theme-sarva .form-select {
  border-radius: 14px;
  background: rgba(45, 19, 78, 0.7);
  border-color: rgba(252, 211, 77, 0.22);
  padding: 14px 18px;
}
body.theme-sarva .form-control:focus,
body.theme-sarva .form-select:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

/* Coin cards / pricing â€” ornate spiritual â”€ */
body.theme-sarva .coin-package-card {
  border-radius: 24px;
  border-color: rgba(252, 211, 77, 0.22);
  background: linear-gradient(170deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
  padding: 36px 26px;
}
body.theme-sarva .coin-package-card.popular {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
}
body.theme-sarva .coin-amount {
  font-family: var(--font-display);
  font-style: italic;
  color: #fbbf24;
}

/* Headings everywhere */
body.theme-sarva h1,
body.theme-sarva h2,
body.theme-sarva h3 {
  font-family: var(--font-display);
}

body.theme-sarva p,
body.theme-sarva .form-control,
body.theme-sarva .form-select {
  font-family: var(--font);
}

/* Scrollbar */
body.theme-sarva ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fbbf24, #b45309);
  border-radius: 12px;
}

/* Reveal anim â€” gentle float-up + scale (slower than IRFC) */
body.theme-sarva .reveal {
  transform: translateY(34px) scale(0.985);
  transition-duration: 1s;
}
body.theme-sarva .reveal.visible {
  transform: translateY(0) scale(1);
}

/* Mobile drawer */
body.theme-sarva .mobile-drawer {
  background: rgba(45, 19, 78, 0.97);
}
body.theme-sarva .mobile-drawer a {
  border-radius: 18px;
  border-color: rgba(252, 211, 77, 0.2);
  background: rgba(45, 19, 78, 0.75);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

/* Cart badge */
body.theme-sarva .badge-cart {
  background: linear-gradient(135deg, #fbbf24, #b45309);
  color: #1e1b4b;
}

/* Chat / category badge */
body.theme-sarva .badge-cat {
  font-family: var(--font-display);
  font-style: italic;
  background: rgba(245, 158, 11, 0.18);
  color: #fde68a;
}

/* Responsive â€” keep centered hero on smaller screens */
@media (max-width: 992px) {
  body.theme-sarva .hero-layout {
    text-align: center;
    grid-template-columns: 1fr;
  }
  body.theme-sarva .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    text-align: left;
  }
}

@media (max-width: 576px) {
  body.theme-sarva .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  body.theme-sarva .cta-band { padding: 56px 28px; margin: 0 16px 72px; border-radius: 28px; }
  body.theme-sarva .hero-content::before { font-size: 2.8rem; }
}

/* ─── Nav "Shop" dropdown — royal violet + amber, fully opaque, consistent items ─── */
body.theme-sarva .dropdown-menu,
body.theme-sarva .dropdown-menu-dark {
  background: linear-gradient(180deg, #2d134e 0%, #1a0b2e 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 22px;
  padding: 10px 0;
  box-shadow:
    0 18px 50px rgba(13, 5, 24, 0.6),
    0 0 0 1px rgba(167, 139, 250, 0.18),
    inset 0 1px 0 rgba(252, 211, 77, 0.08);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  min-width: 240px;
  margin-top: 8px;
  opacity: 1;
}

body.theme-sarva .dropdown-menu .dropdown-item,
body.theme-sarva .dropdown-menu-dark .dropdown-item,
body.theme-sarva .nav-links .dropdown-menu .dropdown-item,
body.theme-sarva .nav-links .dropdown-menu-dark .dropdown-item,
body.theme-sarva .nav-links .dropdown-menu li > a,
body.theme-sarva .nav-links .dropdown-menu-dark li > a {
  color: #ede9fe !important;
  background: transparent !important;
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 0.98rem !important;
  letter-spacing: 0.015em !important;
  padding: 11px 22px !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  transition: color 0.22s ease, background 0.22s ease, padding-left 0.22s ease;
}

body.theme-sarva .dropdown-menu .dropdown-item:hover,
body.theme-sarva .dropdown-menu .dropdown-item:focus,
body.theme-sarva .dropdown-menu-dark .dropdown-item:hover,
body.theme-sarva .dropdown-menu-dark .dropdown-item:focus,
body.theme-sarva .nav-links .dropdown-menu .dropdown-item:hover,
body.theme-sarva .nav-links .dropdown-menu .dropdown-item:focus,
body.theme-sarva .nav-links .dropdown-menu-dark .dropdown-item:hover,
body.theme-sarva .nav-links .dropdown-menu-dark .dropdown-item:focus,
body.theme-sarva .nav-links .dropdown-menu li > a:hover,
body.theme-sarva .nav-links .dropdown-menu li > a:focus,
body.theme-sarva .nav-links .dropdown-menu-dark li > a:hover,
body.theme-sarva .nav-links .dropdown-menu-dark li > a:focus {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.16) 0%, rgba(124, 58, 237, 0.18) 100%) !important;
  color: #fde68a !important;
  padding-left: 26px !important;
  opacity: 1 !important;
}

body.theme-sarva .dropdown-menu .dropdown-item.active,
body.theme-sarva .dropdown-menu .dropdown-item:active,
body.theme-sarva .dropdown-menu-dark .dropdown-item.active,
body.theme-sarva .dropdown-menu-dark .dropdown-item:active,
body.theme-sarva .nav-links .dropdown-menu .dropdown-item.active,
body.theme-sarva .nav-links .dropdown-menu-dark .dropdown-item.active {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.28) 0%, rgba(91, 33, 182, 0.22) 100%) !important;
  color: #fde68a !important;
  opacity: 1 !important;
}

body.theme-sarva .dropdown-menu .dropdown-divider,
body.theme-sarva .dropdown-menu-dark .dropdown-divider {
  border-top: 1px solid rgba(251, 191, 36, 0.28);
  opacity: 1;
  margin: 8px 14px;
}

body.theme-sarva .dropdown-toggle::after {
  border-top-color: #fbbf24;
  vertical-align: 0.18em;
  margin-left: 0.4em;
}

body.theme-sarva .nav-links .dropdown-item.reveal,
body.theme-sarva .nav-links .dropdown-menu .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
