/* ============================================================
   GizmoGlad â€” "Sacred Geometry" theme overlay
   Loaded AFTER main.css. Reworks GizmoGlad 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: 'DM Sans', 'Karla', system-ui, sans-serif;
  --font-display: 'Syne', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'DM Sans', '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(163, 230, 53, 0.22);
  --border-hover: rgba(232, 121, 249, 0.55);
  --accent-glow: rgba(217, 70, 239, 0.45);
  --violet-glow: rgba(217, 70, 239, 0.45);
  --gradient-btn: linear-gradient(135deg, #a78bfa 0%, #d946ef 50%, #a21caf 100%);
  --gradient-accent: linear-gradient(135deg, #d9f99d 0%, #a3e635 50%, #65a30d 100%);
  --gradient-text: linear-gradient(135deg, #ecfccb 0%, #d9f99d 25%, #84cc16 55%, #a3e635 100%);
  --shadow-card: 0 22px 60px rgba(30, 5, 51, 0.55), 0 0 0 1px rgba(232, 121, 249, 0.16);
  --shadow-glow: 0 0 80px rgba(217, 70, 239, 0.18);
}

/* â”€â”€â”€ Body / page bg: warm maroon-cream gradient â”€â”€â”€ */
body.theme-gizmoglad {
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.005em;
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(163, 230, 53, 0.15), transparent 65%),
    radial-gradient(800px 500px at 10% 90%, rgba(217, 70, 239, 0.15), transparent 60%),
    radial-gradient(700px 500px at 90% 60%, rgba(134, 25, 143, 0.4), transparent 65%),
    linear-gradient(180deg, #2e1065 0%, #1e0533 60%, #0c0414 100%);
}

/* Mandala backdrop pattern â€” fixed, very subtle */
body.theme-gizmoglad::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: GizmoGladMandalaFloat 240s linear infinite;
}

@keyframes GizmoGladMandalaFloat {
  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-gizmoglad main,
body.theme-gizmoglad .site-footer {
  position: relative;
  z-index: 1;
}

/* â”€â”€â”€ Navigation: warm maroon, serif logo, golden underline â”€â”€â”€ */
body.theme-gizmoglad .site-nav {
  background: rgba(45, 19, 78, 0.55);
  border-bottom: 1px solid rgba(163, 230, 53, 0.1);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

body.theme-gizmoglad .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(163, 230, 53, 0.35);
  box-shadow: 0 1px 0 rgba(163, 230, 53, 0.2), 0 16px 48px rgba(134, 25, 143, 0.5);
}

body.theme-gizmoglad .site-nav::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(163, 230, 53, 0.5) 50%, transparent 95%);
}

body.theme-gizmoglad .brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  font-style: italic;
}

body.theme-gizmoglad .site-logo img {
  filter: drop-shadow(0 0 14px rgba(163, 230, 53, 0.3)) brightness(1.05);
}

body.theme-gizmoglad .nav-links { gap: 6px; }

body.theme-gizmoglad .nav-links > li > a {
  position: relative;
  padding: 11px 18px;
  border-radius: 999px;
  background: transparent !important;
  color: #fae8ff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  text-transform: none;
}

body.theme-gizmoglad .nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #a3e635, #65a30d, #a3e635, transparent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), left 0.4s;
}

body.theme-gizmoglad .nav-links > li > a:hover {
  color: #d9f99d;
  background: transparent !important;
}
body.theme-gizmoglad .nav-links > li > a:hover::after {
  width: calc(100% - 24px);
  left: 12px;
}

/* â”€â”€â”€ Buttons: ornate rounded pills, double-line golden border â”€â”€â”€ */
body.theme-gizmoglad .btn {
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.015em;
  padding: 14px 30px;
}

body.theme-gizmoglad .btn-primary {
  background: var(--gradient-btn);
  color: #ecfccb;
  font-weight: 700;
  border: 1px solid rgba(163, 230, 53, 0.45);
  box-shadow:
    0 0 0 4px rgba(217, 70, 239, 0.18),
    0 12px 36px rgba(217, 70, 239, 0.45),
    inset 0 1px 0 rgba(163, 230, 53, 0.35);
}
body.theme-gizmoglad .btn-primary:hover {
  box-shadow:
    0 0 0 5px rgba(217, 70, 239, 0.25),
    0 16px 44px rgba(217, 70, 239, 0.6),
    inset 0 1px 0 rgba(163, 230, 53, 0.35);
  transform: translateY(-3px);
}

body.theme-gizmoglad .btn-ghost {
  background: rgba(163, 230, 53, 0.04);
  color: #ecfccb;
  border: 1px solid rgba(163, 230, 53, 0.35);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.04);
}
body.theme-gizmoglad .btn-ghost:hover {
  border-color: rgba(163, 230, 53, 0.6);
  background: rgba(163, 230, 53, 0.08);
  color: #ecfccb;
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.08);
}

body.theme-gizmoglad .btn-accent {
  background: linear-gradient(135deg, #d9f99d, #a3e635);
  color: #2e1065;
}

/* â”€â”€â”€ Hero: centered traditional, mandala bg, ornate divider â”€â”€â”€ */
body.theme-gizmoglad .hero {
  padding: calc(var(--nav-h) + 56px) 0 110px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 25%, rgba(163, 230, 53, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(217, 70, 239, 0.18), transparent 60%);
}

/* Force hero into centered single column on all sizes â€” different from IRFC's split-screen */
body.theme-gizmoglad .hero-layout {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
  gap: 0;
}

body.theme-gizmoglad .hero-content { text-align: center; }

body.theme-gizmoglad .hero-mockup {
  display: none; /* hide the dashboard mockup â€” GizmoGlad is content-focused */
}

/* Background mandala layer inside hero */
body.theme-gizmoglad .hero-grid-bg {
  background-image: none;
  mask-image: none;
  background:
    radial-gradient(circle at center, transparent 0, transparent 320px, rgba(163, 230, 53, 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: GizmoGladMandalaSpin 180s linear infinite;
}

@keyframes GizmoGladMandalaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

body.theme-gizmoglad .hero-stars {
  background-image:
    radial-gradient(1.4px 1.4px at 50px 60px, rgba(163, 230, 53, 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(163, 230, 53, 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-gizmoglad .hero-orb-1 {
  background: radial-gradient(circle, rgba(163, 230, 53, 0.32) 0%, transparent 70%);
}
body.theme-gizmoglad .hero-orb-2 {
  background: radial-gradient(circle, rgba(217, 70, 239, 0.28) 0%, transparent 70%);
}
body.theme-gizmoglad .hero-orb-3 {
  background: radial-gradient(circle, rgba(134, 25, 143, 0.25) 0%, transparent 70%);
}

/* Neutral geometric mark above hero content (SVG rendered inline in markup) */
body.theme-gizmoglad .hero-mark {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(163, 230, 53, 0.55));
  animation: GizmoGladMarkGlow 4s ease-in-out infinite;
}

@keyframes GizmoGladMarkGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(163, 230, 53, 0.45)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 32px rgba(163, 230, 53, 0.85)); transform: scale(1.04); }
}

body.theme-gizmoglad .hero-badge {
  border-radius: 999px;
  background: rgba(163, 230, 53, 0.08);
  border: 1px solid rgba(163, 230, 53, 0.4);
  color: #d9f99d;
  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-gizmoglad .hero-badge i {
  background: var(--gradient-accent);
  color: #2e1065;
}

body.theme-gizmoglad .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-gizmoglad .hero h1 .gradient-text {
  font-style: italic;
  font-weight: 700;
}

/* Ornate horizontal divider under sub */
body.theme-gizmoglad .hero-sub {
  font-family: var(--font);
  font-size: 1.15rem;
  color: #e9d5ff;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
}
body.theme-gizmoglad .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-gizmoglad .hero-cta {
  justify-content: center;
}

body.theme-gizmoglad .hero-trust {
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
body.theme-gizmoglad .hero-trust-avatars {
  margin-bottom: 4px;
}
body.theme-gizmoglad .hero-trust-avatars span {
  background: linear-gradient(135deg, #a3e635, #4d7c0f);
  border-color: #2e1065;
}

/* Stats strip â€” ornate card group */
body.theme-gizmoglad .stats-strip {
  margin-top: 64px;
  gap: 14px;
}
body.theme-gizmoglad .stat-item {
  border-radius: 18px;
  border: 1px solid rgba(163, 230, 53, 0.22);
  background:
    radial-gradient(circle at top right, rgba(163, 230, 53, 0.08), transparent 60%),
    rgba(45, 19, 78, 0.7);
  padding: 24px 16px;
  position: relative;
}
body.theme-gizmoglad .stat-item::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 16px; height: 16px;
  border-top: 1.5px solid rgba(163, 230, 53, 0.55);
  border-left: 1.5px solid rgba(163, 230, 53, 0.55);
  border-radius: 6px 0 0 0;
}
body.theme-gizmoglad .stat-item::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 16px; height: 16px;
  border-bottom: 1.5px solid rgba(163, 230, 53, 0.55);
  border-right: 1.5px solid rgba(163, 230, 53, 0.55);
  border-radius: 0 0 6px 0;
}
body.theme-gizmoglad .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-gizmoglad .stat-item span {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #e9d5ff;
  font-weight: 600;
}

/* Logo marquee â€” ornate scroll */
body.theme-gizmoglad .logo-marquee {
  padding: 44px 0;
  border-block: 1px solid rgba(163, 230, 53, 0.18);
  background:
    linear-gradient(90deg, rgba(45, 19, 78, 0.65), rgba(134, 25, 143, 0.55), rgba(45, 19, 78, 0.65));
}
body.theme-gizmoglad .marquee-track span {
  border-radius: 999px;
  border: 1px solid rgba(163, 230, 53, 0.35);
  background: rgba(163, 230, 53, 0.05);
  color: #fae8ff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px;
}
body.theme-gizmoglad .marquee-track span::before {
  content: '\2726 ';
  color: #a3e635;
  font-size: 0.85rem;
}

/* --- Sections --- */
body.theme-gizmoglad .section { padding: 116px 0; }

body.theme-gizmoglad .section-alt {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(217, 70, 239, 0.07), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(163, 230, 53, 0.07), transparent 60%);
}

body.theme-gizmoglad .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: #a3e635;
  border-radius: 0;
  position: relative;
}
body.theme-gizmoglad .section-label::before {
  content: '\2014  ';
  color: rgba(163, 230, 53, 0.7);
}
body.theme-gizmoglad .section-label::after {
  content: '  \2014';
  color: rgba(163, 230, 53, 0.7);
}

body.theme-gizmoglad .section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

body.theme-gizmoglad .section h2 + .section-lead,
body.theme-gizmoglad .section-lead {
  font-family: var(--font);
  font-size: 1.08rem;
  color: #e9d5ff;
  line-height: 1.8;
}

/* â”€â”€â”€ Feature cards: heavily rounded, ornamental corners â”€â”€â”€ */
body.theme-gizmoglad .feature-grid { gap: 26px; }

body.theme-gizmoglad .feature-card {
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 230, 53, 0.08), transparent 50%),
    linear-gradient(170deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
  border: 1px solid rgba(163, 230, 53, 0.2);
  padding: 38px 32px 32px;
  overflow: hidden;
}

body.theme-gizmoglad .feature-card::before {
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.6), rgba(217, 70, 239, 0.4) 60%, transparent);
  padding: 1.5px;
}

body.theme-gizmoglad .feature-card::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  border-top: 1.5px solid rgba(163, 230, 53, 0.45);
  border-left: 1.5px solid rgba(163, 230, 53, 0.45);
  border-radius: 12px 0 0 0;
  pointer-events: none;
  transition: border-color 0.3s;
}

body.theme-gizmoglad .feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(134, 25, 143, 0.65),
    0 0 0 1px rgba(163, 230, 53, 0.35),
    0 0 60px rgba(163, 230, 53, 0.15);
  border-color: rgba(163, 230, 53, 0.45);
}

body.theme-gizmoglad .feature-card:hover::after {
  border-color: rgba(163, 230, 53, 0.8);
}

body.theme-gizmoglad .feature-card .card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 3.4rem;
  color: rgba(163, 230, 53, 0.1);
  top: 18px;
  right: 24px;
}

body.theme-gizmoglad .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.18), rgba(217, 70, 239, 0.1));
  border: 1px solid rgba(163, 230, 53, 0.3);
  margin-bottom: 24px;
  font-size: 1.65rem;
  color: #a3e635 !important;
  box-shadow: inset 0 0 20px rgba(163, 230, 53, 0.15), 0 0 28px rgba(163, 230, 53, 0.15);
}

/* override main.css per-child icons */
body.theme-gizmoglad .feature-card:nth-child(1) .feature-icon,
body.theme-gizmoglad .feature-card:nth-child(2) .feature-icon,
body.theme-gizmoglad .feature-card:nth-child(3) .feature-icon {
  background: radial-gradient(circle, rgba(163, 230, 53, 0.22), rgba(217, 70, 239, 0.08));
  color: #d9f99d !important;
  box-shadow: inset 0 0 20px rgba(163, 230, 53, 0.15), 0 0 30px rgba(163, 230, 53, 0.18);
}

body.theme-gizmoglad .feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

body.theme-gizmoglad .feature-card p {
  font-family: var(--font);
  color: #e9d5ff;
  font-size: 0.98rem;
  line-height: 1.75;
}

body.theme-gizmoglad .feature-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  color: #a3e635;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  transform: none;
}

body.theme-gizmoglad .feature-card:hover .feature-link {
  color: #d9f99d;
  transform: translateX(4px);
}

body.theme-gizmoglad .feature-link i {
  transition: transform 0.3s;
}
body.theme-gizmoglad .feature-card:hover .feature-link i {
  transform: translateX(4px);
}

/* â”€â”€â”€ Product cards: rounded, warm shadow, ornament â”€â”€â”€ */
body.theme-gizmoglad .product-card {
  border-radius: 26px;
  border-color: rgba(163, 230, 53, 0.18);
  background:
    radial-gradient(circle at 90% 10%, rgba(163, 230, 53, 0.08), transparent 50%),
    linear-gradient(170deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
}

body.theme-gizmoglad .product-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(163, 230, 53, 0.55);
  box-shadow: 0 30px 60px rgba(134, 25, 143, 0.55), 0 0 38px rgba(163, 230, 53, 0.18);
}

body.theme-gizmoglad .product-img::before {
  background: linear-gradient(165deg, #2e1554 0%, #1e0533 60%, #3a1c66 100%);
}
body.theme-gizmoglad .product-img::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(163, 230, 53, 0.32), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(217, 70, 239, 0.22), transparent 50%);
}

body.theme-gizmoglad .product-badge {
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(163, 230, 53, 0.85), rgba(180, 83, 9, 0.85));
  color: #2e1065;
  border: 1px solid rgba(163, 230, 53, 0.55);
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.05em;
}

body.theme-gizmoglad .product-img i {
  color: #a3e635;
  filter: drop-shadow(0 0 24px rgba(163, 230, 53, 0.55));
}

body.theme-gizmoglad .product-body { padding: 24px 22px; }
body.theme-gizmoglad .product-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}
body.theme-gizmoglad .product-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: #a3e635;
  font-size: 1.25rem;
}

/* â”€â”€â”€ Testimonials: ornate cards with serif quote â”€â”€â”€ */
body.theme-gizmoglad .testimonial-card {
  border-radius: 26px;
  border-color: rgba(163, 230, 53, 0.2);
  background:
    radial-gradient(circle at top left, rgba(163, 230, 53, 0.06), transparent 55%),
    linear-gradient(170deg, rgba(45, 19, 78, 0.9), rgba(13, 5, 24, 0.96));
  padding: 32px 28px;
}
body.theme-gizmoglad .testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  font-style: italic;
  color: rgba(163, 230, 53, 0.3);
  top: 18px;
  right: 28px;
}
body.theme-gizmoglad .testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #fae8ff;
}
body.theme-gizmoglad .testimonial-stars { color: #a3e635; }
body.theme-gizmoglad .testimonial-author {
  font-family: var(--font);
  font-weight: 700;
  color: #ecfccb;
  font-size: 0.92rem;
}
body.theme-gizmoglad .testimonial-author span {
  font-family: var(--font);
  color: #e9d5ff;
  font-weight: 400;
  font-style: italic;
}

/* â”€â”€â”€ CTA band: ornate gold-bordered card â”€â”€â”€ */
body.theme-gizmoglad .cta-band {
  margin: 0 24px 110px;
  border-radius: 36px;
  border: 1px solid rgba(163, 230, 53, 0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(163, 230, 53, 0.28), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(217, 70, 239, 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(134, 25, 143, 0.55),
    inset 0 1px 0 rgba(163, 230, 53, 0.25),
    inset 0 0 60px rgba(163, 230, 53, 0.08);
}
body.theme-gizmoglad .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: GizmoGladMandalaSpin 90s linear infinite;
}
body.theme-gizmoglad .cta-band::after { display: none; }
body.theme-gizmoglad .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-gizmoglad .cta-band p {
  font-family: var(--font);
  color: #fae8ff;
}

/* â”€â”€â”€ Footer: centered traditional, ornate divider, Sanskrit blessing â”€â”€â”€ */
body.theme-gizmoglad .site-footer {
  border-top: 1px solid rgba(163, 230, 53, 0.18);
  padding: 80px 0 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(163, 230, 53, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(45, 19, 78, 1) 0%, #0c0414 100%);
  position: relative;
}

body.theme-gizmoglad .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-gizmoglad .footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 56px;
}

body.theme-gizmoglad .footer-grid h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: #a3e635;
  text-transform: none;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
body.theme-gizmoglad .footer-grid h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, #a3e635, transparent);
}

body.theme-gizmoglad .footer-grid a {
  font-family: var(--font);
  color: #e9d5ff;
  font-size: 0.94rem;
}
body.theme-gizmoglad .footer-grid a:hover {
  color: #d9f99d;
  padding-left: 4px;
}

body.theme-gizmoglad .footer-bottom {
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid rgba(163, 230, 53, 0.15);
  font-family: var(--font);
}

body.theme-gizmoglad .footer-bottom::before {
  content: 'Guidance for every seeker';
  display: block;
  font-family: var(--font-accent);
  color: #a3e635;
  font-size: 1rem;
  letter-spacing: 0.03em;
  opacity: 0.95;
}

body.theme-gizmoglad .footer-bottom > span {
  font-family: var(--font);
  color: #d8b4fe;
}

/* â”€â”€â”€ Page hero (interior pages) â”€â”€â”€ */
body.theme-gizmoglad .page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(163, 230, 53, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(45, 19, 78, 0.95) 0%, rgba(13, 5, 24, 0.6) 100%);
}
body.theme-gizmoglad .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.015em;
}

/* â”€â”€â”€ Forms â”€â”€â”€ */
body.theme-gizmoglad .form-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: #fae8ff;
}
body.theme-gizmoglad .form-control,
body.theme-gizmoglad .form-select {
  border-radius: 14px;
  background: rgba(45, 19, 78, 0.7);
  border-color: rgba(163, 230, 53, 0.22);
  padding: 14px 18px;
}
body.theme-gizmoglad .form-control:focus,
body.theme-gizmoglad .form-select:focus {
  border-color: rgba(163, 230, 53, 0.55);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.15);
}

/* Coin cards / pricing â€” ornate spiritual â”€ */
body.theme-gizmoglad .coin-package-card {
  border-radius: 24px;
  border-color: rgba(163, 230, 53, 0.22);
  background: linear-gradient(170deg, rgba(45, 19, 78, 0.92), rgba(13, 5, 24, 0.95));
  padding: 36px 26px;
}
body.theme-gizmoglad .coin-package-card.popular {
  border-color: rgba(163, 230, 53, 0.55);
  box-shadow: 0 0 40px rgba(163, 230, 53, 0.2);
}
body.theme-gizmoglad .coin-amount {
  font-family: var(--font-display);
  font-style: italic;
  color: #a3e635;
}

/* Headings everywhere */
body.theme-gizmoglad h1,
body.theme-gizmoglad h2,
body.theme-gizmoglad h3 {
  font-family: var(--font-display);
}

body.theme-gizmoglad p,
body.theme-gizmoglad .form-control,
body.theme-gizmoglad .form-select {
  font-family: var(--font);
}

/* Scrollbar */
body.theme-gizmoglad ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a3e635, #4d7c0f);
  border-radius: 12px;
}

/* Reveal anim â€” gentle float-up + scale (slower than IRFC) */
body.theme-gizmoglad .reveal {
  transform: translateY(34px) scale(0.985);
  transition-duration: 1s;
}
body.theme-gizmoglad .reveal.visible {
  transform: translateY(0) scale(1);
}

/* Mobile drawer */
body.theme-gizmoglad .mobile-drawer {
  background: rgba(45, 19, 78, 0.97);
}
body.theme-gizmoglad .mobile-drawer a {
  border-radius: 18px;
  border-color: rgba(163, 230, 53, 0.2);
  background: rgba(45, 19, 78, 0.75);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

/* Cart badge */
body.theme-gizmoglad .badge-cart {
  background: linear-gradient(135deg, #a3e635, #4d7c0f);
  color: #2e1065;
}

/* Chat / category badge */
body.theme-gizmoglad .badge-cat {
  font-family: var(--font-display);
  font-style: italic;
  background: rgba(163, 230, 53, 0.18);
  color: #d9f99d;
}

/* Responsive â€” keep centered hero on smaller screens */
@media (max-width: 992px) {
  body.theme-gizmoglad .hero-layout {
    text-align: center;
    grid-template-columns: 1fr;
  }
  body.theme-gizmoglad .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    text-align: left;
  }
}

@media (max-width: 576px) {
  body.theme-gizmoglad .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  body.theme-gizmoglad .cta-band { padding: 56px 28px; margin: 0 16px 72px; border-radius: 28px; }
  body.theme-gizmoglad .hero-content::before { font-size: 2.8rem; }
}

/* ─── Nav "Shop" dropdown — royal violet + amber, fully opaque, consistent items ─── */
body.theme-gizmoglad .dropdown-menu,
body.theme-gizmoglad .dropdown-menu-dark {
  background: linear-gradient(180deg, #581c87 0%, #1e0533 100%);
  border: 1px solid rgba(217, 70, 239, 0.35);
  border-radius: 22px;
  padding: 10px 0;
  box-shadow:
    0 18px 50px rgba(13, 5, 24, 0.6),
    0 0 0 1px rgba(232, 121, 249, 0.18),
    inset 0 1px 0 rgba(163, 230, 53, 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-gizmoglad .dropdown-menu .dropdown-item,
body.theme-gizmoglad .dropdown-menu-dark .dropdown-item,
body.theme-gizmoglad .nav-links .dropdown-menu .dropdown-item,
body.theme-gizmoglad .nav-links .dropdown-menu-dark .dropdown-item,
body.theme-gizmoglad .nav-links .dropdown-menu li > a,
body.theme-gizmoglad .nav-links .dropdown-menu-dark li > a {
  color: #fae8ff !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-gizmoglad .dropdown-menu .dropdown-item:hover,
body.theme-gizmoglad .dropdown-menu .dropdown-item:focus,
body.theme-gizmoglad .dropdown-menu-dark .dropdown-item:hover,
body.theme-gizmoglad .dropdown-menu-dark .dropdown-item:focus,
body.theme-gizmoglad .nav-links .dropdown-menu .dropdown-item:hover,
body.theme-gizmoglad .nav-links .dropdown-menu .dropdown-item:focus,
body.theme-gizmoglad .nav-links .dropdown-menu-dark .dropdown-item:hover,
body.theme-gizmoglad .nav-links .dropdown-menu-dark .dropdown-item:focus,
body.theme-gizmoglad .nav-links .dropdown-menu li > a:hover,
body.theme-gizmoglad .nav-links .dropdown-menu li > a:focus,
body.theme-gizmoglad .nav-links .dropdown-menu-dark li > a:hover,
body.theme-gizmoglad .nav-links .dropdown-menu-dark li > a:focus {
  background: linear-gradient(90deg, rgba(217, 70, 239, 0.16) 0%, rgba(217, 70, 239, 0.18) 100%) !important;
  color: #d9f99d !important;
  padding-left: 26px !important;
  opacity: 1 !important;
}

body.theme-gizmoglad .dropdown-menu .dropdown-item.active,
body.theme-gizmoglad .dropdown-menu .dropdown-item:active,
body.theme-gizmoglad .dropdown-menu-dark .dropdown-item.active,
body.theme-gizmoglad .dropdown-menu-dark .dropdown-item:active,
body.theme-gizmoglad .nav-links .dropdown-menu .dropdown-item.active,
body.theme-gizmoglad .nav-links .dropdown-menu-dark .dropdown-item.active {
  background: linear-gradient(90deg, rgba(217, 70, 239, 0.28) 0%, rgba(134, 25, 143, 0.22) 100%) !important;
  color: #d9f99d !important;
  opacity: 1 !important;
}

body.theme-gizmoglad .dropdown-menu .dropdown-divider,
body.theme-gizmoglad .dropdown-menu-dark .dropdown-divider {
  border-top: 1px solid rgba(217, 70, 239, 0.28);
  opacity: 1;
  margin: 8px 14px;
}

body.theme-gizmoglad .dropdown-toggle::after {
  border-top-color: #a3e635;
  vertical-align: 0.18em;
  margin-left: 0.4em;
}

body.theme-gizmoglad .nav-links .dropdown-item.reveal,
body.theme-gizmoglad .nav-links .dropdown-menu .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* --- Inner pages: store, chat, cart, auth, dashboard --- */
body.theme-gizmoglad .page-content {
  background: transparent;
}

body.theme-gizmoglad .glass-card,
body.theme-gizmoglad .auth-card,
body.theme-gizmoglad .login-panel,
body.theme-gizmoglad .register-card {
  border-radius: 24px;
  border: 1px solid rgba(163, 230, 53, 0.2);
  background: linear-gradient(165deg, rgba(46, 16, 101, 0.92), rgba(12, 4, 20, 0.96));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(217, 70, 239, 0.08);
}

body.theme-gizmoglad .store-sidebar {
  border-radius: 20px;
  border-color: rgba(163, 230, 53, 0.18);
  background: linear-gradient(180deg, rgba(46, 16, 101, 0.9), rgba(12, 4, 20, 0.95));
}

body.theme-gizmoglad .store-cat-link.active,
body.theme-gizmoglad .store-cat-link:hover {
  background: rgba(163, 230, 53, 0.12);
  color: #d9f99d;
  border-color: rgba(217, 70, 239, 0.25);
}

body.theme-gizmoglad .chat-box {
  border-radius: 22px;
  border: 1px solid rgba(163, 230, 53, 0.2);
  background: rgba(12, 4, 20, 0.85);
}

body.theme-gizmoglad .chat-msg.bot .chat-bubble {
  background: linear-gradient(135deg, rgba(46, 16, 101, 0.95), rgba(30, 5, 51, 0.98));
  border: 1px solid rgba(217, 70, 239, 0.2);
}

body.theme-gizmoglad .chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, #65a30d, #a3e635);
  color: #1e0533;
}

body.theme-gizmoglad .wallet-pill {
  border-radius: 999px;
  border: 1px solid rgba(163, 230, 53, 0.25);
  background: rgba(46, 16, 101, 0.7);
}

body.theme-gizmoglad .wallet-pill strong {
  color: #d9f99d;
}

body.theme-gizmoglad .cart-table,
body.theme-gizmoglad .order-card,
body.theme-gizmoglad .dashboard-card {
  border-radius: 20px;
  border-color: rgba(163, 230, 53, 0.18);
  background: linear-gradient(170deg, rgba(46, 16, 101, 0.88), rgba(12, 4, 20, 0.95));
}

body.theme-gizmoglad .table {
  --bs-table-bg: transparent;
  --bs-table-color: #fae8ff;
  --bs-table-border-color: rgba(163, 230, 53, 0.12);
}

body.theme-gizmoglad .alert-success {
  background: rgba(163, 230, 53, 0.15);
  border-color: rgba(163, 230, 53, 0.35);
  color: #ecfccb;
}

body.theme-gizmoglad .alert-warning {
  background: rgba(217, 70, 239, 0.12);
  border-color: rgba(232, 121, 249, 0.35);
  color: #fae8ff;
}

body.theme-gizmoglad .badge.bg-success {
  background: linear-gradient(135deg, #65a30d, #a3e635) !important;
  color: #1e0533 !important;
}

body.theme-gizmoglad .pagination .page-link {
  background: rgba(46, 16, 101, 0.8);
  border-color: rgba(163, 230, 53, 0.2);
  color: #e9d5ff;
}

body.theme-gizmoglad .pagination .page-link:hover,
body.theme-gizmoglad .pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #a3e635, #d946ef);
  border-color: transparent;
  color: #1e0533;
}

body.theme-gizmoglad .register-progress-fill {
  background: linear-gradient(90deg, #a3e635, #d946ef);
}

body.theme-gizmoglad .mobile-drawer {
  background: rgba(30, 5, 51, 0.98);
  border-left: 1px solid rgba(163, 230, 53, 0.2);
}
