/* ==========================================================================
   AJIEO ENTERPRISE - Quantum-Immersive 3D Design System (styles.css)
   ========================================================================== */

/* Theme Configuration variables */
:root {
  /* Dark Luxury Theme Default */
  --bg-primary: #0B0B0B;
  --bg-secondary: #121212;
  --bg-glass: rgba(20, 20, 20, 0.45);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass-light: 1px solid rgba(255, 255, 255, 0.04);
  
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #777777;
  
  /* Brand Accent Highlights */
  --electric-blue: #00BFFF;
  --electric-blue-rgb: 0, 191, 255;
  --gold: #FFD700;
  --gold-rgb: 255, 215, 0;
  --accent-pink: #FF3366;
  --vedic-green: #39FF14;
  
  /* Fonts */
  --font-heading: 'Orbitron', sans-serif;
  --font-sub: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Glow/Shadow System */
  --glow-blue: 0 0 15px rgba(0, 191, 255, 0.35), 0 0 30px rgba(0, 191, 255, 0.15);
  --glow-gold: 0 0 15px rgba(255, 215, 0, 0.35), 0 0 30px rgba(255, 215, 0, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Transition Constants */
  --t-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Light Theme Variables Override */
body.light-theme {
  --bg-primary: #FAF5EE;
  --bg-secondary: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-hover: rgba(44, 37, 32, 0.04);
  --border-glass: 1px solid rgba(44, 37, 32, 0.08);
  --border-glass-light: 1px solid rgba(44, 37, 32, 0.04);
  
  --text-primary: #0A4B7C;
  --text-secondary: #2B5B84;
  --text-muted: #5C8AA6;
  
  --glow-blue: 0 0 15px rgba(0, 191, 255, 0.2), 0 0 25px rgba(0, 191, 255, 0.1);
  --glow-gold: 0 0 15px rgba(212, 175, 55, 0.2), 0 0 25px rgba(212, 175, 55, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(44, 37, 32, 0.05);
}

body.light-theme .banner-grid-overlay {
  background-image: linear-gradient(rgba(250, 245, 238, 0.45), rgba(250, 245, 238, 0.85)), url('assets/temple_bg.png') !important;
  opacity: 0.95 !important;
}

/* ==========================================================================
   Base CSS Resets & Setup
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom Scrollbar - Cyberpunk theme style */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-glass);
  border: 1px solid var(--electric-blue);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================================================================
   Premium Custom Interactive Cursor
   ========================================================================== */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--electric-blue);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-glow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--electric-blue);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Hover morph effects for custom cursor */
.custom-cursor.hovered {
  width: 20px;
  height: 20px;
  background-color: var(--gold);
}

.custom-cursor-glow.hovered {
  width: 50px;
  height: 50px;
  border-color: var(--gold);
  background-color: rgba(255, 215, 0, 0.1);
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-glow {
    display: none !important; /* Hide custom cursor on touch devices */
  }
}

/* ==========================================================================
   Global WebGL Background Canvas
   ========================================================================== */
#webgl-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* ==========================================================================
   Animated Preloader Screen
   ========================================================================== */
.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s var(--t-slow), visibility 0.6s;
}

.loader-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loader-logo-wrapper {
  margin-bottom: 2rem;
  position: relative;
}

.loader-logo {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.6));
  animation: logoPulse 2s infinite ease-in-out;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--electric-blue);
  margin-bottom: 1.5rem;
  text-shadow: var(--glow-blue);
}

.loader-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.loader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--electric-blue), var(--gold));
  box-shadow: var(--glow-blue);
  transition: width 0.1s ease;
}

.loader-percentage {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes logoPulse {
  0% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.6)); }
  50% { transform: scale(1.1) rotate(180deg); filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6)); }
  100% { transform: scale(1) rotate(360deg); filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.6)); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  border-bottom: var(--border-glass-light);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: var(--bg-glass);
  transition: height 0.3s var(--t-normal), background-color 0.3s;
}

#mainHeader.scrolled {
  height: 85px;
  background: rgba(11, 11, 11, 0.85);
  border-bottom: var(--border-glass);
}
body.light-theme #mainHeader.scrolled {
  background: rgba(255, 255, 255, 0.85);
}

.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-hexagon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--electric-blue);
  border-radius: 50%;
  padding: 2px;
  transition: all 0.3s ease;
}

#mainHeader.scrolled .logo-hexagon {
  width: 70px;
  height: 70px;
}

.logo-wrapper:hover .logo-hexagon {
  transform: rotate(180deg) scale(1.05);
  border-color: var(--gold);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
}

.logo-brand-info {
  display: flex;
  flex-direction: column;
}

.logo-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.1;
}

.logo-brand-sub {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--electric-blue);
}

.desktop-nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--gold));
  transition: width 0.3s var(--t-normal);
  box-shadow: var(--glow-blue);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass-light);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.nav-action-btn:hover {
  color: var(--electric-blue);
  border-color: var(--electric-blue);
  background: rgba(0, 191, 255, 0.05);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.nav-action-btn.highlighted {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

.nav-action-btn.highlighted:hover {
  background: var(--electric-blue);
  color: #000;
}

.action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-pink);
  color: white;
  font-size: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.6);
}

/* Hamburger mobile trigger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* Mobile Overlay Navigation Menu */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.5s var(--t-slow);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-menu {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 2.5rem 0;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.3s;
  display: inline-block;
}

.mobile-link:hover, .mobile-link.active {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
  transform: scale(1.08);
}

/* ==========================================
   Glassmorphic Utility Elements
   ========================================== */
.glassmorphic {
  background: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: var(--border-glass);
  box-shadow: var(--glass-shadow);
}

.glassmorphic:hover {
  background: var(--bg-glass-hover);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--t-normal);
}

.btn-electric {
  background-color: var(--electric-blue);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.25);
}

.btn-electric:hover {
  background-color: var(--gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.btn-electric .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-electric:hover .btn-glow {
  left: 150%;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
}

.btn.icon-only {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
}

.btn.full-width {
  width: 100%;
}

.btn.flex-grow {
  flex-grow: 1;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(0, 191, 255, 0.1);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
  padding: 0 1rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--electric-blue);
  margin-bottom: 0.75rem;
  text-shadow: var(--glow-blue);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* SPA Section Base Rules */
.page-content-wrapper {
  position: relative;
  width: 100%;
}

.page-section {
  display: none;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(20px);
  padding-top: 80px; /* Header spacing */
}

.page-section.active {
  display: block;
}

/* ==========================================================================
   PAGE 1: HOME PAGE IMPLEMENTATIONS
   ========================================================================== */

/* Fullscreen 3D Hero Section */
.hero-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-3d-scene-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11,11,11,0.2) 0%, rgba(11,11,11,0.92) 85%);
  pointer-events: none;
  z-index: 0;
}
body.light-theme .hero-glass-overlay {
  background: radial-gradient(circle at center, rgba(244,246,249,0.2) 0%, rgba(244,246,249,0.95) 85%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 850px;
  padding: 0 2rem;
  margin: 0 auto;
}

.hero-pre-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--electric-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.neon-line {
  width: 30px;
  height: 2px;
  background: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  line-height: 1.5;
  font-weight: 600;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-sub);
}

.badge-item i {
  color: var(--gold);
  font-size: 0.95rem;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass-light);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% -20%, rgba(0, 191, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--electric-blue);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-img-wrapper {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.showcase-card img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.showcase-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

.showcase-card-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.showcase-card-info p {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Scroll indicator animation */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 2px;
  z-index: 10;
}

.mouse-wheel {
  width: 22px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
  border-radius: 2px;
  animation: scrollWheelAnim 1.8s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% { top: 6px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@media (max-width: 992px) {
  .hero-content.split-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero-left .hero-pre-title {
    justify-content: center;
  }
  .hero-left .hero-ctas {
    justify-content: center;
  }
  .hero-trust-badges {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .badge-item {
    font-size: 0.75rem;
  }
}

/* Statistics section */
.stats-section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 5;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  display: inline-block;
  text-shadow: var(--glow-gold);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* Featured Carousel Section */
.carousel-section {
  padding: 6rem 2rem;
  overflow: hidden;
}

.carousel-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  cursor: grab;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Glassmorphic E-Commerce Cards */
.product-card {
  min-width: 320px;
  max-width: 350px;
  min-height: 500px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-glass);
  border: var(--border-glass);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--t-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--electric-blue);
  box-shadow: 0 12px 40px rgba(0, 191, 255, 0.15);
}

.product-img-wrapper {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 191, 255, 0.15);
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  text-shadow: var(--glow-blue);
  z-index: 2;
}

.product-wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.6);
  border: var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
}

.product-wishlist-btn:hover, .product-wishlist-btn.active {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
}

.product-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.6s var(--t-normal);
}

.product-card:hover .product-img {
  transform: scale(1.1) rotate(2deg);
}

.product-quick-view {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  color: var(--electric-blue);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: bottom 0.3s var(--t-normal), color 0.3s;
  z-index: 2;
}

.product-card:hover .product-quick-view {
  bottom: 0;
}

.product-quick-view:hover {
  color: var(--gold);
}

.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  height: 62px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-price del {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 400;
}

.add-to-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-glass);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.add-to-cart-btn:hover {
  background: var(--electric-blue);
  color: #000;
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.add-to-cart-btn.whatsapp-action-btn:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.45);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.carousel-arrow:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--electric-blue);
  box-shadow: var(--glow-blue);
  width: 24px;
  border-radius: 4px;
}

/* Categories section with 3D Tilt Cards */
.categories-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  perspective: 1000px;
}

.category-card {
  height: 350px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.1s ease, border-color 0.3s;
  background: var(--bg-glass);
  border: var(--border-glass);
  box-shadow: var(--glass-shadow);
}

.category-card .card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  z-index: 2;
  transform: translateZ(20px);
  transform-style: preserve-3d;
  justify-content: flex-end;
  background: transparent;
}

.category-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--t-slow);
  z-index: -1;
  opacity: 0.35;
}

.category-card:hover .card-bg {
  transform: scale(1.15);
}

.category-card:hover {
  border-color: var(--electric-blue);
}

.category-card .card-icon {
  font-size: 2.5rem;
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
  margin-bottom: auto;
  transform: translateZ(40px);
}

.category-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  transform: translateZ(30px);
}

.category-card .card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  transform: translateZ(20px);
}

.category-card .card-link {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateZ(35px);
  transition: color 0.3s;
}

.category-card .card-link:hover {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

/* Simulated dynamic card glow */
.card-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.category-card:hover .card-glow {
  opacity: 1;
}

@media (max-width: 991px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 2rem;
  background-color: rgba(255, 255, 255, 0.01);
}

.testimonials-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-node-card {
  min-width: 100%;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: 8px;
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: var(--glow-gold);
}

.testimonial-text {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--electric-blue);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  box-shadow: var(--glow-blue);
}

.testimonial-info {
  text-align: left;
}

.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.testimonial-arrow:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

.testimonial-indicators {
  display: flex;
  gap: 6px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--electric-blue);
  width: 18px;
  border-radius: 3px;
}

/* ==========================================================================
   PAGE 2: SHOP PAGE IMPLEMENTATIONS
   ========================================================================== */
.shop-banner {
  width: 100%;
  height: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  border-bottom: var(--border-glass-light);
}

.banner-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(11,11,11,0.5), rgba(11,11,11,0.9)), url('assets/temple_bg.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
}

.shop-banner-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.shop-banner-subtitle {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.shop-main-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

@media (max-width: 991px) {
  .shop-main-layout {
    grid-template-columns: 1fr;
  }
}

/* Filter Sidebar styles */
.shop-sidebar {
  border-radius: 8px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-block {
  margin-bottom: 2.25rem;
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 1.25rem;
}

.search-input-wrapper {
  width: 100%;
  position: relative;
}

#shopSearchInput {
  width: 100%;
  padding: 0.8rem 1rem;
  padding-right: 2.5rem;
  border-radius: 4px;
  border: var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: all 0.3s;
}

#shopSearchInput:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.15);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.filter-checkbox-label:hover {
  color: var(--text-primary);
}

/* Custom Checkbox Design */
.filter-checkbox-label input {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.01);
}

.filter-checkbox-label input:checked + .custom-checkbox {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.filter-checkbox-label input:checked + .custom-checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Price range slider styles */
.price-slider-wrapper {
  margin-top: 10px;
}

#priceRange {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

#priceRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: var(--glow-blue);
  cursor: pointer;
  transition: transform 0.2s;
}

#priceRange::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Shop Grid Wrapper */
.shop-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grid-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-sub);
}

.sort-select-wrapper {
  display: flex;
  align-items: center;
}

.sort-select {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  border: var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.sort-select:hover {
  border-color: var(--electric-blue);
}

/* Product list grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* ==========================================================================
   PAGE 3: PRODUCT DETAILS PAGE & 3D VIEWER
   ========================================================================== */
.details-nav-back {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem 0;
}

.back-link {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

.details-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* 3D WebGL Canvas Panel */
.details-3d-panel {
  border-radius: 8px;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .details-3d-panel {
    position: relative;
    top: 0;
    height: 400px;
  }
}

.viewer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: var(--border-glass-light);
  z-index: 10;
}

.viewer-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

.viewer-controls {
  display: flex;
  gap: 8px;
}

.viewer-ctrl-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.01);
}

.viewer-ctrl-btn:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

.canvas-3d-wrapper {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

#product-3d-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.viewer-instructions {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-family: var(--font-sub);
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 11, 11, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  border: var(--border-glass-light);
  pointer-events: none;
}

/* Ordering panel */
.details-content-panel {
  border-radius: 8px;
  padding: 3rem;
}

@media (max-width: 576px) {
  .details-content-panel {
    padding: 1.5rem;
  }
}

.details-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.details-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.details-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.details-stars {
  color: var(--gold);
  font-size: 0.95rem;
  text-shadow: var(--glow-gold);
}

.details-reviews-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.details-price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.details-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.details-original-price {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.details-discount-badge {
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid var(--accent-pink);
  color: var(--accent-pink);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.15);
}

.details-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
}

.details-options-block {
  margin-bottom: 2.25rem;
}

.options-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}

.option-pill {
  border-radius: 4px;
  border: var(--border-glass);
  background: rgba(255, 255, 255, 0.01);
  padding: 1.25rem 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s var(--t-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.option-pill:hover {
  background: var(--bg-glass-hover);
  border-color: var(--electric-blue);
}

.option-pill.active {
  border-color: var(--electric-blue);
  background: rgba(0, 191, 255, 0.05);
  box-shadow: var(--glow-blue);
}

.pill-check {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.option-pill.active .pill-check {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

.pill-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
}

.pill-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
}

/* Color select options */
.color-options-row {
  display: flex;
  gap: 15px;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
  border: 2px solid transparent;
}

.color-dot:hover {
  transform: scale(1.15);
}

.color-dot.active {
  border-color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* Purchase configuration */
.details-purchase-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 3rem;
}

@media (max-width: 576px) {
  .details-purchase-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.details-qty-selector {
  display: flex;
  align-items: center;
  border: var(--border-glass);
  border-radius: 4px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.qty-btn {
  width: 46px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.qty-btn:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.qty-number {
  min-width: 40px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Guarantees */
.details-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.guarantee-item i {
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.guarantee-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   PAGE 4: ABOUT US
   ========================================================================== */
.about-header-banner, .contact-header-banner {
  width: 100%;
  height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  border-bottom: var(--border-glass-light);
}

.about-title, .contact-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle, .contact-subtitle {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 650px;
}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

.story-text-card {
  border-radius: 8px;
  padding: 3rem;
}

.story-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-text-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-text-card p:last-child {
  margin-bottom: 0;
}

.story-visual-card {
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.mandala-container {
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mandala-svg {
  width: 100%;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.4));
  animation: logoPulse 25s infinite linear;
}

/* Timeline animations triggered by GSAP */
.timeline-main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 2px;
}

.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 6rem;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--electric-blue) 0%, var(--gold) 50%, var(--electric-blue) 100%);
  box-shadow: var(--glow-blue);
}

.timeline-node {
  position: relative;
  width: 50%;
  padding: 2rem;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.timeline-node.left {
  left: 0;
  text-align: right;
  padding-right: 4rem;
}

.timeline-node.right {
  left: 50%;
  text-align: left;
  padding-left: 4rem;
}

.timeline-badge {
  position: absolute;
  top: 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  background: var(--electric-blue);
  box-shadow: var(--glow-blue);
  width: 60px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-node.left .timeline-badge {
  right: -30px;
}

.timeline-node.right .timeline-badge {
  left: -30px;
  background-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.timeline-panel {
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.timeline-node:hover .timeline-panel {
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.panel-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
  .timeline-node {
    width: 100%;
    text-align: left !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }
  .timeline-node.right {
    left: 0;
  }
  .timeline-node.left .timeline-badge, .timeline-node.right .timeline-badge {
    left: -10px;
  }
}

/* Vision / Mission grid cards */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

.vision-card, .mission-card {
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.vision-card .card-icon, .mission-card .card-icon {
  font-size: 2.25rem;
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
  margin-bottom: 1.5rem;
}

.grid-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.vision-card p, .mission-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   PAGE 5: CONTACT PAGE IMPLEMENTATIONS
   ========================================================================== */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-panel {
  border-radius: 8px;
  padding: 3rem;
}

.contact-panel-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.contact-form-row {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .contact-form-row {
    flex-direction: column;
    gap: 0;
  }
}

.contact-form-group {
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.contact-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 4px;
  border: var(--border-glass);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.contact-input:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.2);
}

.contact-input.textarea {
  min-height: 150px;
  resize: vertical;
}

/* Map details block */
.contact-details-panel {
  border-radius: 8px;
  padding: 3rem;
}

.neon-map-wrapper {
  width: 100%;
  border-radius: 4px;
  border: var(--border-glass);
  background: rgba(11, 11, 11, 0.6);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.neon-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.neon-pulsing-dot {
  animation: mapDotPulse 2s infinite ease-in-out;
}

@keyframes mapDotPulse {
  0% { transform: scale(1); opacity: 1; transform-origin: 235px 85px; }
  50% { transform: scale(1.3); opacity: 0.8; transform-origin: 235px 85px; }
  100% { transform: scale(1); opacity: 1; transform-origin: 235px 85px; }
}

.neon-pulsing-ring {
  animation: mapRingPulse 2s infinite linear;
}

@keyframes mapRingPulse {
  0% { transform: scale(0.6); opacity: 1; transform-origin: 235px 85px; }
  100% { transform: scale(2.2); opacity: 0; transform-origin: 235px 85px; }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
  margin-top: 3px;
}

.info-content h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-socials-wrapper h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.social-links-row {
  display: flex;
  gap: 1rem;
}

.social-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s;
}

.social-circle-btn:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

/* ==========================================================================
   Shopping Cart / Wishlist Drawers Layouts
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  border-left: var(--border-glass);
  border-top: none;
  border-bottom: none;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.electric-text {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

.cart-close-btn {
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: var(--accent-pink);
}

/* Cart Items Container */
.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Single Cart item entry */
.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.01);
  border: var(--border-glass-light);
  padding: 5px;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--font-heading);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: var(--border-glass-light);
  border-radius: 2px;
  width: fit-content;
  overflow: hidden;
  height: 28px;
}

.cart-item-qty .qty-btn {
  width: 24px;
  height: 100%;
  font-size: 0.85rem;
}

.cart-item-qty span {
  min-width: 25px;
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-heading);
}

.cart-item-remove {
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--accent-pink);
}

.cart-empty-message {
  text-align: center;
  margin: auto 0;
  color: var(--text-muted);
}

.cart-empty-message i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.05);
}

.cart-empty-message p {
  font-size: 0.9rem;
  font-family: var(--font-sub);
}

/* Footer Drawer Summary details */
.cart-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cart-summary-line.total {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
  margin-top: 5px;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: var(--electric-blue);
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.2);
}

.checkout-btn:hover {
  background-color: var(--gold);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}

/* ==========================================================================
   Checkout and Receipt Overlay Modals
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.checkout-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 8px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.checkout-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.checkout-close-btn {
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.checkout-close-btn:hover {
  color: var(--accent-pink);
}

.checkout-modal-body {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .checkout-modal-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.checkout-billing-form h4, .checkout-order-summary h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  border: var(--border-glass);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.form-input:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.15);
}

/* Custom radio selects */
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin: 5px 0;
}

.radio-label input {
  display: none;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.3s;
}

.radio-label input:checked + .custom-radio {
  border-color: var(--electric-blue);
  background-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
}

.radio-label input:checked + .custom-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkout-place-order-btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: var(--gold);
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.checkout-place-order-btn:hover {
  background-color: var(--electric-blue);
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.25);
}

.checkout-place-order-btn:disabled {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border-color: transparent;
  cursor: not-allowed;
  box-shadow: none;
}

/* Order Summary */
.checkout-summary-box {
  border-radius: 4px;
  border: var(--border-glass-light);
  background: rgba(255, 255, 255, 0.01);
  padding: 1.5rem;
}

.checkout-items-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-item-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Order History Account modal specific styling */
.avatar-glow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--electric-blue);
  box-shadow: var(--glow-blue);
  margin-right: 20px;
}

.account-profile-summary {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.profile-details h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.user-tier-badge {
  font-size: 0.65rem;
  font-family: var(--font-heading);
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 2px;
}

.account-body {
  grid-template-columns: 1fr;
}

.orders-history-block h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.empty-orders {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.account-order-card {
  padding: 1.25rem;
  border: var(--border-glass-light);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.01);
  margin-bottom: 1rem;
}

.acc-order-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-family: var(--font-sub);
}

.acc-order-items {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Success Receipt Overlay */
.receipt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.receipt-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.receipt-modal {
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  padding: 3.5rem;
  text-align: center;
}

.receipt-success-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--vedic-green);
  color: var(--vedic-green);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.25);
}

.receipt-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.receipt-modal p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.receipt-box {
  background: rgba(255, 255, 255, 0.01);
  border: var(--border-glass-light);
  border-radius: 4px;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.receipt-row.total {
  border-top: 1px dashed rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: 5px;
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* ==========================================================================
   Footer Component Layout
   ========================================================================== */
footer {
  width: 100%;
  background-color: #050505;
  border-top: var(--border-glass-light);
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 5;
}
body.light-theme footer {
  background-color: #EFEAE2;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-column h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}
body.light-theme .footer-column h3 {
  color: #121212;
  text-shadow: none;
}

.footer-about p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-quote-box {
  border-left: 2px solid var(--gold);
  padding-left: 15px;
}

.footer-quote-box p {
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 0;
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--electric-blue);
}

.footer-seal-logo {
  max-width: 70px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0,191,255,0.4));
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-payment-icons {
  display: flex;
  gap: 12px;
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Button */
.whatsapp-float-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
}

.whatsapp-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
  transform: scale(1.15) rotate(15deg);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.whatsapp-float-widget:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 60px;
}

/* ==========================================================================
   Light Theme Overlay Modals Styles Overrides
   ========================================================================== */
body.light-theme .checkout-modal,
body.light-theme .receipt-modal {
  background: var(--bg-secondary) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

body.light-theme .checkout-modal-header,
body.light-theme .checkout-modal-footer,
body.light-theme .acc-order-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .checkout-modal-header h3,
body.light-theme .checkout-modal-body h4,
body.light-theme .receipt-modal h3,
body.light-theme .orders-history-block h4,
body.light-theme .profile-details h4 {
  color: var(--text-primary) !important;
}

body.light-theme .checkout-close-btn {
  color: var(--text-muted) !important;
}

body.light-theme .checkout-close-btn:hover {
  color: var(--accent-pink) !important;
}

body.light-theme .account-order-card,
body.light-theme .receipt-box {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .receipt-row.total {
  border-top: 1px dashed rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .form-input {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

body.light-theme .checkout-order-summary,
body.light-theme .checkout-billing-form {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .summary-line {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .user-tier-badge {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #c5a019 !important;
  border-color: #c5a019 !important;
}

body.light-theme .footer-quote-box p {
  color: var(--text-secondary) !important;
}
