/* ============================================
   LORENA - Human Design & Gesundheit
   Premium Spiritual Website with Advanced Effects
   UPGRADED DESIGN v2.0 - Mystical Luxury Edition
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors - Mystical & Warm - Enhanced Palette */
  --color-primary: #1a2f23;
  --color-primary-light: #2d4a3e;
  --color-primary-dark: #0f1c15;
  --color-secondary: #f8f5f0;
  --color-background: #fdfcfa;
  --color-accent: #c9a86c;
  --color-accent-light: #ddc291;
  --color-accent-dark: #a88b4a;
  --color-accent-glow: rgba(201, 168, 108, 0.4);
  --color-text: #1a1a1a;
  --color-text-light: #5a5a5a;
  --color-white: #ffffff;
  --color-border: rgba(26, 47, 35, 0.08);

  /* New mystical colors */
  --color-cosmic: #1e1b4b;
  --color-nebula: #312e81;
  --color-stardust: rgba(255, 255, 255, 0.03);

  /* Gradient Colors - Enhanced */
  --gradient-spiritual: linear-gradient(135deg, #1a2f23 0%, #2d4a3e 50%, #3d5a4e 100%);
  --gradient-gold: linear-gradient(135deg, #c9a86c 0%, #ddc291 50%, #c9a86c 100%);
  --gradient-gold-shimmer: linear-gradient(90deg, #c9a86c, #f0e6d3, #c9a86c, #ddc291, #c9a86c);
  --gradient-soft: linear-gradient(180deg, #fdfcfa 0%, #f8f5f0 100%);
  --gradient-aurora: linear-gradient(135deg,
    rgba(201, 168, 108, 0.1) 0%,
    rgba(45, 74, 62, 0.1) 50%,
    rgba(201, 168, 108, 0.05) 100%);
  --gradient-mystic: linear-gradient(135deg,
    rgba(26, 47, 35, 0.95) 0%,
    rgba(30, 27, 75, 0.9) 50%,
    rgba(26, 47, 35, 0.95) 100%);
  --gradient-celestial: radial-gradient(ellipse at 30% 0%, rgba(201, 168, 108, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(45, 74, 62, 0.2) 0%, transparent 50%);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 10rem;

  /* Transitions - More fluid */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 1s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows - Enhanced depth */
  --shadow-sm: 0 2px 10px rgba(26, 47, 35, 0.04);
  --shadow-md: 0 8px 30px rgba(26, 47, 35, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 47, 35, 0.12);
  --shadow-xl: 0 32px 80px rgba(26, 47, 35, 0.16);
  --shadow-glow: 0 0 60px rgba(201, 168, 108, 0.3);
  --shadow-glow-intense: 0 0 100px rgba(201, 168, 108, 0.5), 0 0 200px rgba(201, 168, 108, 0.2);
  --shadow-inner-glow: inset 0 0 60px rgba(201, 168, 108, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1400px;
  --container-padding: 2rem;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  font-weight: 300;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section--large {
  padding: var(--space-xxl) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--gradient-spiritual);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(26, 47, 35, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(26, 47, 35, 0.4);
  color: var(--color-white);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on gold button */
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: none;
}

.btn--gold:hover::after {
  animation: buttonShimmer 0.6s ease forwards;
}

@keyframes buttonShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn--gold:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-glow-intense);
  color: var(--color-primary);
}

.btn--large {
  padding: 1.5rem 3.5rem;
  font-size: 0.9rem;
}

.btn__icon {
  transition: transform var(--transition-base);
}

.btn:hover .btn__icon {
  transform: translateX(5px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav__logo span {
  color: var(--color-accent);
  font-style: italic;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-accent-dark);
}

.nav__link.active {
  color: var(--color-accent-dark);
  font-weight: 500;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.nav__cart:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.nav__cart:hover .nav__cart-icon {
  stroke: var(--color-white);
}

.nav__cart-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-base);
}

.nav__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.nav__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--color-primary);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section - ENHANCED ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-background);
  padding-top: 160px;
  padding-bottom: 50px;
}

/* Hero Grid Layout */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Image Styles */
.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(201, 168, 108, 0.2);
  max-width: 480px;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.hero__image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201, 168, 108, 0.4);
  border-radius: 28px;
  pointer-events: none;
}

.hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 108, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__image-wrapper {
    order: -1;
  }

  .hero__image {
    max-width: 300px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }
}

/* Noise texture overlay for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

/* Simple hero background gradient (static) */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(45, 74, 62, 0.06) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: rgba(201, 168, 108, 0.08);
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.2s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on badge */
.hero__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.2), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 0.4s;
  position: relative;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

/* Gold shimmer on emphasized text */
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  opacity: 0.6;
}

.hero__description {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 0.8s;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 1s;
  background: rgba(201, 168, 108, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 30px rgba(201, 168, 108, 0.1);
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 2rem 2.5rem;
  background: var(--color-background);
  transition: all var(--transition-base);
  position: relative;
}

.hero__stat::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 108, 0.3), transparent);
}

.hero__stat:first-child::before {
  display: none;
}

.hero__stat:hover {
  background: rgba(201, 168, 108, 0.05);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero__scroll-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--color-accent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

/* ---------- Marquee Section - ENHANCED ---------- */
.marquee-section {
  padding: 2.5rem 0;
  background: var(--gradient-spiritual);
  overflow: hidden;
  position: relative;
}

/* Top golden line */
.marquee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

/* Bottom golden line */
.marquee-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

.marquee {
  display: flex;
  animation: marquee 35s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-white);
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.marquee__item:hover {
  opacity: 1;
}

.marquee__dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(201, 168, 108, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(201, 168, 108, 0.5); }
  50% { box-shadow: 0 0 25px rgba(201, 168, 108, 0.8); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Section Styles ---------- */
.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(201, 168, 108, 0.1);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.section__title {
  margin-bottom: 1.5rem;
}

.section__description {
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ---------- About Preview / Split Section - ENHANCED ---------- */
.split-section {
  position: relative;
  overflow: hidden;
}

/* Sacred geometry seed of life background */
.split-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%231a2f23' stroke-width='0.3' opacity='0.06'%3E%3Ccircle cx='150' cy='150' r='50'/%3E%3Ccircle cx='150' cy='100' r='50'/%3E%3Ccircle cx='150' cy='200' r='50'/%3E%3Ccircle cx='193' cy='125' r='50'/%3E%3Ccircle cx='193' cy='175' r='50'/%3E%3Ccircle cx='107' cy='125' r='50'/%3E%3Ccircle cx='107' cy='175' r='50'/%3E%3Ccircle cx='150' cy='150' r='100'/%3E%3Ccircle cx='150' cy='150' r='140'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: seedRotate 180s linear infinite;
}

@keyframes seedRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.split-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  min-height: 100vh;
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.split-section__image {
  position: relative;
}

.split-section__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-section__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 47, 35, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.split-section__image-wrapper img,
.split-section__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.split-section__image-placeholder {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #e8e3db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-section__image-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.split-section__image-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: var(--gradient-gold);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(60px);
}

.split-section__content {
  max-width: 550px;
}

.split-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.split-section__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.split-section__title {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.split-section__title em {
  font-style: italic;
  color: var(--color-accent);
}

.split-section__text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.split-section__list {
  list-style: none;
  margin: 2rem 0;
}

.split-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.split-section__list-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.split-section__list-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}

.split-section__list-text {
  font-size: 1rem;
  color: var(--color-text);
}

.split-section__list-text strong {
  color: var(--color-primary);
}

/* ---------- Values / Features Section - ENHANCED with Sacred Geometry ---------- */
.features-section {
  background: var(--gradient-mystic);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Sacred Geometry Metatron's Cube Background */
.features-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.3' opacity='0.15'%3E%3Ccircle cx='250' cy='250' r='200'/%3E%3Ccircle cx='250' cy='250' r='160'/%3E%3Ccircle cx='250' cy='250' r='120'/%3E%3Ccircle cx='250' cy='250' r='80'/%3E%3Ccircle cx='250' cy='250' r='40'/%3E%3Ccircle cx='250' cy='50' r='40'/%3E%3Ccircle cx='250' cy='450' r='40'/%3E%3Ccircle cx='50' cy='250' r='40'/%3E%3Ccircle cx='450' cy='250' r='40'/%3E%3Ccircle cx='110' cy='110' r='40'/%3E%3Ccircle cx='390' cy='110' r='40'/%3E%3Ccircle cx='110' cy='390' r='40'/%3E%3Ccircle cx='390' cy='390' r='40'/%3E%3Cline x1='250' y1='50' x2='250' y2='450'/%3E%3Cline x1='50' y1='250' x2='450' y2='250'/%3E%3Cline x1='110' y1='110' x2='390' y2='390'/%3E%3Cline x1='390' y1='110' x2='110' y2='390'/%3E%3Cline x1='250' y1='50' x2='50' y2='250'/%3E%3Cline x1='250' y1='50' x2='450' y2='250'/%3E%3Cline x1='50' y1='250' x2='250' y2='450'/%3E%3Cline x1='450' y1='250' x2='250' y2='450'/%3E%3Cline x1='110' y1='110' x2='250' y2='50'/%3E%3Cline x1='390' y1='110' x2='250' y2='50'/%3E%3Cline x1='110' y1='390' x2='250' y2='450'/%3E%3Cline x1='390' y1='390' x2='250' y2='450'/%3E%3Cline x1='110' y1='110' x2='50' y2='250'/%3E%3Cline x1='110' y1='390' x2='50' y2='250'/%3E%3Cline x1='390' y1='110' x2='450' y2='250'/%3E%3Cline x1='390' y1='390' x2='450' y2='250'/%3E%3Cpolygon points='250,90 420,250 250,410 80,250'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: sacredPulse 20s ease-in-out infinite;
}

@keyframes sacredPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05) rotate(3deg); }
}

/* Floating particles */
.features-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(201, 168, 108, 0.4), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(201, 168, 108, 0.3), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 80%, rgba(201, 168, 108, 0.4), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 10% 60%, rgba(201, 168, 108, 0.3), transparent);
  pointer-events: none;
  animation: starsFloat 30s linear infinite;
}

@keyframes starsFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.features-section .section__badge {
  background: rgba(201, 168, 108, 0.2);
  border-color: rgba(201, 168, 108, 0.4);
  backdrop-filter: blur(10px);
}

.features-section .section__title {
  color: var(--color-white);
  text-shadow: 0 0 60px rgba(201, 168, 108, 0.3);
}

.features-section .section__description {
  color: rgba(255, 255, 255, 0.75);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-slow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Sacred geometry corner decorations */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold-shimmer);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.3'%3E%3Ccircle cx='50' cy='50' r='45'/%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='50' cy='50' r='15'/%3E%3Cpolygon points='50,5 95,50 50,95 5,50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0;
  transition: all var(--transition-slow);
  transform: rotate(-15deg) scale(0.8);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 108, 0.3);
  transform: translateY(-12px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(201, 168, 108, 0.15),
    var(--shadow-inner-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s linear infinite;
}

.feature-card:hover::after {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.feature-card__number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.4) 0%, rgba(201, 168, 108, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__number {
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.8) 0%, rgba(221, 194, 145, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 40px rgba(201, 168, 108, 0.5);
}

.feature-card__title {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__title {
  color: var(--color-accent-light);
}

.feature-card__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ---------- Products Section - ENHANCED ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

/* Sacred geometry corner accent */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0'%3E%3Ccircle cx='100' cy='0' r='80'/%3E%3Ccircle cx='100' cy='0' r='60'/%3E%3Ccircle cx='100' cy='0' r='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  transition: all var(--transition-slow);
  z-index: 1;
  pointer-events: none;
}

.product-card:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.3'%3E%3Ccircle cx='100' cy='0' r='80'/%3E%3Ccircle cx='100' cy='0' r='60'/%3E%3Ccircle cx='100' cy='0' r='40'/%3E%3C/g%3E%3C/svg%3E");
}

.product-card:hover {
  transform: translateY(-16px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(201, 168, 108, 0.1);
  border-color: rgba(201, 168, 108, 0.2);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-secondary);
}

.product-card__image img,
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* SVG product images - contain instead of cover */
.product-card__img[src$=".svg"] {
  object-fit: contain;
  padding: 1rem;
}

.product-card:hover .product-card__image img,
.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-gold);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.product-card__content {
  padding: 2rem;
}

.product-card__category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.product-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.product-card__title a {
  color: var(--color-primary);
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--color-accent);
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-card__price-current {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-primary);
}

.product-card__price-old {
  font-size: 1rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-card__actions {
  display: flex;
  gap: 0.75rem;
}

.product-card__btn {
  flex: 1;
}

/* ---------- Testimonials Section - ENHANCED ---------- */
.testimonials-section {
  position: relative;
  background: var(--gradient-soft);
  overflow: hidden;
}

/* Sacred geometry Sri Yantra inspired background */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.3' opacity='0.08'%3E%3Cpolygon points='200,40 360,300 40,300'/%3E%3Cpolygon points='200,360 40,100 360,100'/%3E%3Cpolygon points='200,80 320,280 80,280'/%3E%3Cpolygon points='200,320 80,120 320,120'/%3E%3Cpolygon points='200,120 280,260 120,260'/%3E%3Cpolygon points='200,280 120,140 280,140'/%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='200' cy='200' r='150'/%3E%3Ccircle cx='200' cy='200' r='120'/%3E%3Ccircle cx='200' cy='200' r='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: testimonialGeometry 120s linear infinite;
}

@keyframes testimonialGeometry {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Decorative quote marks */
.testimonials-section::after {
  content: '"';
  position: absolute;
  top: 10%;
  left: 10%;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: var(--color-accent);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.testimonials__slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  text-align: center;
  padding: 3rem;
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.testimonial__star {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.testimonial__text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-spiritual);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(201, 168, 108, 0.2);
  position: relative;
}

/* Sacred circle around avatar */
.testimonial__avatar::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 108, 0.3);
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.testimonial__name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.testimonial__role {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonials__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials__dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.testimonials__dot:hover {
  background: var(--color-accent);
}

/* ---------- Newsletter Section - ENHANCED with Sacred Geometry ---------- */
.newsletter-section {
  position: relative;
  background: var(--gradient-mystic);
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

/* Newsletter Background Image */
.newsletter-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.newsletter-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  filter: saturate(0.6);
}

.newsletter-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 74, 62, 0.85) 0%,
    rgba(45, 74, 62, 0.7) 50%,
    rgba(45, 74, 62, 0.9) 100%
  );
}

/* Vesica Piscis sacred geometry background */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.2'%3E%3Ccircle cx='140' cy='200' r='120'/%3E%3Ccircle cx='260' cy='200' r='120'/%3E%3Cellipse cx='200' cy='200' rx='60' ry='104'/%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Cline x1='200' y1='20' x2='200' y2='380'/%3E%3Cline x1='20' y1='200' x2='380' y2='200'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: vesicaRotate 90s linear infinite;
}

@keyframes vesicaRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Glowing orbs */
.newsletter-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(201, 168, 108, 0.25) 0%,
    rgba(201, 168, 108, 0.1) 30%,
    transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseEnhanced 8s ease-in-out infinite;
}

.newsletter__inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

/* Sacred geometry frame corners */
.newsletter__inner::before,
.newsletter__inner::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='1' opacity='0.4'%3E%3Cpath d='M5,50 Q5,5 50,5'/%3E%3Cpath d='M15,50 Q15,15 50,15'/%3E%3Ccircle cx='50' cy='5' r='3'/%3E%3Ccircle cx='5' cy='50' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  pointer-events: none;
}

.newsletter__inner::before {
  top: -1px;
  left: -1px;
}

.newsletter__inner::after {
  bottom: -1px;
  right: -1px;
  transform: rotate(180deg);
}

.newsletter__inner .section__badge {
  background: rgba(201, 168, 108, 0.15);
  border-color: rgba(201, 168, 108, 0.4);
  backdrop-filter: blur(10px);
}

.newsletter__inner .section__title {
  color: var(--color-white);
  text-shadow: 0 0 80px rgba(201, 168, 108, 0.4);
}

.newsletter__inner .section__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.newsletter__form {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.newsletter__input {
  flex: 1;
  padding: 1.5rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(201, 168, 108, 0.2);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter__note::before {
  content: '✧';
  color: var(--color-accent);
  font-size: 0.7rem;
}

.newsletter__note::after {
  content: '✧';
  color: var(--color-accent);
  font-size: 0.7rem;
}

/* ---------- Footer - ENHANCED ---------- */
.footer {
  background: var(--color-background);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--color-border);
  position: relative;
}

/* Sacred geometry subtle background */
.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg fill='none' stroke='%23c9a86c' stroke-width='0.3' opacity='0.05'%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='200' cy='200' r='150'/%3E%3Ccircle cx='200' cy='200' r='120'/%3E%3Cline x1='20' y1='200' x2='380' y2='200'/%3E%3Cline x1='110' y1='45' x2='110' y2='200'/%3E%3Cline x1='290' y1='45' x2='290' y2='200'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: var(--space-lg);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer__logo span {
  color: var(--color-accent);
  font-style: italic;
}

.footer__description {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: var(--color-text-light);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
}

.footer__social-link:hover svg {
  fill: var(--color-white);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  transition: fill var(--transition-base);
}

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.footer__legal a:hover {
  color: var(--color-accent);
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
  transition: all var(--transition-base);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--color-background);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-slower);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-primary);
}

.cart-drawer__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cart-drawer__close:hover {
  background: var(--color-primary);
  transform: rotate(90deg);
}

.cart-drawer__close:hover svg {
  stroke: var(--color-white);
}

.cart-drawer__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
  stroke-width: 1.5;
  transition: stroke var(--transition-base);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  opacity: 0.2;
}

.cart-empty__text {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cart-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__image {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  flex: 1;
}

.cart-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.cart-item__price {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-item__qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.cart-item__qty-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.cart-item__qty-value {
  font-weight: 500;
  min-width: 24px;
  text-align: center;
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.cart-item__remove:hover {
  opacity: 1;
}

.cart-item__remove svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text);
}

.cart-drawer__footer {
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-subtotal__label {
  font-size: 1rem;
  color: var(--color-text-light);
}

.cart-subtotal__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-primary);
}

.cart-drawer__checkout {
  width: 100%;
}

.cart-drawer__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

/* ---------- Page Headers ---------- */
.page-header {
  padding: calc(var(--space-xxl) + 80px) 0 var(--space-xl);
  background: var(--gradient-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(201, 168, 108, 0.1);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.page-header__title {
  margin-bottom: 1.5rem;
}

.page-header__description {
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.75s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Parallax Mouse Effect Classes ---------- */
.parallax-element {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---------- Glow Effect ---------- */
.glow-text {
  text-shadow: 0 0 40px var(--color-accent-glow);
}

/* ---------- Glass Effect ---------- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ---------- Success Message ---------- */
.success-message {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gradient-spiritual);
  color: var(--color-white);
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.success-message.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.success-message__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.success-message__icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
}

/* ---------- Premium Enhancements ---------- */

/* Enhanced Section Dividers */
.section--divider {
  position: relative;
}

.section--divider::after {
  content: '✧';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  z-index: 10;
  background: var(--color-background);
  padding: 0 1rem;
}

/* Bodygraph Section Enhanced Effects */
.bodygraph-section {
  background: linear-gradient(180deg,
    var(--color-background) 0%,
    rgba(201, 168, 108, 0.02) 50%,
    var(--color-background) 100%);
}

.bodygraph {
  position: relative;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.bodygraph__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center,
    rgba(201, 168, 108, 0.15) 0%,
    transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Enhanced Bodygraph Feature Items */
.bodygraph-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(201, 168, 108, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.bodygraph-feature:hover {
  background: rgba(201, 168, 108, 0.08);
  border-color: rgba(201, 168, 108, 0.15);
  transform: translateX(8px);
}

.bodygraph-feature__icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.bodygraph-feature:hover .bodygraph-feature__icon {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.1);
}

.bodygraph-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.bodygraph-feature span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.bodygraph-section__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

/* Enhanced Testimonials */
.testimonial {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 108, 0.1);
  box-shadow: var(--shadow-sm);
}

.testimonial.active {
  animation: fadeInScale 0.6s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Product Card Enhanced Glow */
.product-card {
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(201, 168, 108, 0.1) 50%,
    transparent 100%);
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.product-card:hover::after {
  opacity: 1;
}

/* Subtle Page Accent Line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 108, 0.4),
    transparent);
}

/* Enhanced Section Badge Glow */
.section__badge {
  position: relative;
  overflow: hidden;
}

.section__badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 108, 0.3),
    transparent);
  animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Split Section Title Enhancement */
.split-section__title {
  position: relative;
  display: inline-block;
}

.split-section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Footer Social Links Enhanced */
.footer__social-link {
  position: relative;
  overflow: hidden;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: 50%;
}

.footer__social-link:hover::before {
  opacity: 0.15;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ---------- Responsive Styles ---------- */
@media (max-width: 1200px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section__inner {
    gap: 5rem;
  }
}

@media (max-width: 992px) {
  :root {
    --container-padding: 1.5rem;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--color-background);
    transform: translateX(100%);
    transition: transform var(--transition-slower);
    box-shadow: var(--shadow-lg);
  }

  .nav__menu.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.5rem;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    max-width: 100%;
  }

  .hero__stat {
    padding: 1.5rem 1.5rem;
  }

  .split-section__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
    min-height: auto;
  }

  .split-section__content {
    max-width: 100%;
    text-align: center;
  }

  .split-section__eyebrow {
    justify-content: center;
  }

  .split-section__eyebrow::before {
    display: none;
  }

  .features__grid,
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .section--large {
    padding: var(--space-xl) 0;
  }

  .features__grid,
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .testimonial__text {
    font-size: 1.5rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1px;
    background: rgba(201, 168, 108, 0.15);
  }

  .hero__stat {
    padding: 1.5rem 2rem;
  }

  .hero__stat::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.3), transparent);
  }

  .marquee__item {
    font-size: 1rem;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .page-header {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 0.8rem;
  }

  .btn--large {
    padding: 1.25rem 2.5rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
  }

  .hero__scroll {
    display: none;
  }

  .nav__logo {
    font-size: 1.25rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-card__number {
    font-size: 3rem;
  }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Additional Page Styles ---------- */

/* Shop Filters */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Legal Pages */
.legal-content,
.agb-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2,
.agb-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li,
.agb-content p,
.agb-content li {
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol,
.agb-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li,
.agb-content li {
  margin-bottom: 0.5rem;
}

/* Product Detail */
.product-detail {
  padding: calc(var(--space-xxl) + 80px) 0 var(--space-xl);
}

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.product-gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-secondary);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main img[src$=".svg"],
.product-gallery__img[src$=".svg"] {
  object-fit: contain;
  padding: 2rem;
}

.product-info__category {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.product-info__title {
  margin-bottom: 1.5rem;
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-info__price-current {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-primary);
}

.product-info__price-old {
  font-size: 1.25rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-info__description {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.product-info__features {
  margin-bottom: 2.5rem;
}

.product-info__features-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.product-info__features-list {
  list-style: none;
}

.product-info__features-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.product-info__features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.product-info__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-info__add-to-cart {
  flex: 1;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-selector__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.quantity-selector__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.quantity-selector__value {
  width: 60px;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
}

.product-info__quantity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.product-info__quantity-label {
  font-weight: 500;
  color: var(--color-primary);
}

/* Contact Page */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact__info {
  padding: 3rem;
  background: var(--gradient-spiritual);
  border-radius: var(--radius-xl);
  color: var(--color-white);
}

.contact__info-title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.contact__info-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact__info-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact__info-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact__info-value {
  color: var(--color-white);
}

.contact__info-value a {
  color: var(--color-white);
}

.contact__info-value a:hover {
  color: var(--color-accent);
}

.contact__form-wrapper {
  padding: 3rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 1.125rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-background);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__submit {
  width: 100%;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.form__checkbox input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form__checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Checkout */
.checkout {
  padding: calc(var(--space-xxl) + 80px) 0 var(--space-xl);
}

.checkout__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.checkout__form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.checkout__section {
  margin-bottom: 3rem;
}

.checkout__section:last-child {
  margin-bottom: 0;
}

.checkout__section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.checkout__summary {
  background: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: sticky;
  top: 120px;
}

.checkout__summary-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.checkout__items {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.checkout__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkout__item:last-child {
  margin-bottom: 0;
}

.checkout__item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
}

.checkout__item-details {
  flex: 1;
}

.checkout__item-title {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.checkout__item-qty {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.checkout__item-price {
  font-weight: 600;
  color: var(--color-primary);
}

.checkout__totals {
  margin-bottom: 2rem;
}

.checkout__total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.checkout__total-row--final {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}

.checkout__submit {
  width: 100%;
  margin-bottom: 1rem;
}

.checkout__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.checkout__secure svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
}

/* Loading State */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive for product & checkout */
@media (max-width: 992px) {
  .product-detail__inner,
  .checkout__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .checkout__summary {
    position: relative;
    top: 0;
  }
}

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

  .contact__info,
  .contact__form-wrapper,
  .checkout__form,
  .checkout__summary {
    padding: 2rem;
  }

  .product-info__actions {
    flex-direction: column;
  }
}

/* ============================================
   BODYGRAPH SECTION - NEW DESIGN
   ============================================ */

.bodygraph-section {
  padding: var(--space-xxl) 0;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.bodygraph-section__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.bodygraph-section__sacred {
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}

.bodygraph-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Bodygraph Visual Container */
.bodygraph-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.bodygraph {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
}

.bodygraph__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle,
    rgba(201, 168, 108, 0.1) 0%,
    rgba(201, 168, 108, 0.03) 40%,
    transparent 70%);
  pointer-events: none;
}

.bodygraph__svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(201, 168, 108, 0.25));
  margin: 0 auto;
  display: block;
}

/* Channel Styles */
.bodygraph__channels line,
.bodygraph__channels path {
  transition: all 0.3s ease;
}

/* Gate Styles */
.bodygraph__gates circle {
  transition: all 0.3s ease;
}

/* Center Styles */
.bodygraph__center {
  transition: all 0.3s ease;
  cursor: pointer;
}

.bodygraph__center:hover,
.bodygraph__center--hover {
  filter: drop-shadow(0 0 15px rgba(201, 168, 108, 0.7))
          drop-shadow(0 0 30px rgba(201, 168, 108, 0.4));
}

.bodygraph__center:hover polygon,
.bodygraph__center:hover rect,
.bodygraph__center:hover path,
.bodygraph__center--hover polygon,
.bodygraph__center--hover rect,
.bodygraph__center--hover path {
  fill: rgba(201, 168, 108, 0.35) !important;
  stroke: url(#goldGradient) !important;
  stroke-width: 3;
}

/* Label Styles */
.bodygraph__labels {
  pointer-events: none;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.bodygraph:hover .bodygraph__labels {
  opacity: 1;
}


/* Legend */
.bodygraph__legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.bodygraph__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.bodygraph__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.bodygraph__legend-dot--defined {
  background: var(--gradient-gold);
  box-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

.bodygraph__legend-dot--undefined {
  background: transparent;
  border: 2px solid var(--color-primary-light);
}

/* Content Side */
.bodygraph-section__content {
  padding-left: var(--space-lg);
}

.bodygraph-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.bodygraph-section__title em {
  font-style: italic;
  color: var(--color-accent);
  position: relative;
}

.bodygraph-section__title em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  opacity: 0.5;
}

.bodygraph-section__text {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
  line-height: 1.8;
}

.bodygraph-section__text:last-of-type {
  margin-bottom: var(--space-md);
}

/* Features List */
.bodygraph-section__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(201, 168, 108, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 108, 0.1);
}

.bodygraph-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bodygraph-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bodygraph-feature div {
  display: flex;
  flex-direction: column;
}

.bodygraph-feature strong {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.125rem;
}

.bodygraph-feature span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 992px) {
  .bodygraph-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .bodygraph-section__content {
    padding-left: 0;
    text-align: center;
    order: 2;
  }

  .bodygraph-visual {
    order: 1;
  }

  .bodygraph {
    max-width: 340px;
  }

  .bodygraph-section__features {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .bodygraph {
    max-width: 240px;
    padding: 1rem;
  }

  .bodygraph__legend {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}

/* ============================================
   ASTRO CHART SECTION (LEGACY - keeping for compatibility)
   ============================================ */

.astro-section {
  padding: var(--space-xl) 0;
  background: var(--gradient-soft);
  overflow: hidden;
}

.astro-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.astro-section__content {
  padding-right: var(--space-lg);
}

.astro-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.astro-section__text {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.astro-section__text:last-of-type {
  margin-bottom: var(--space-md);
}

/* Astro Chart Container */
.astro-chart {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astro-chart__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center,
    rgba(201, 168, 108, 0.15) 0%,
    rgba(201, 168, 108, 0.05) 40%,
    transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Stars */
.astro-chart__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.astro-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Chart Rings */
.astro-chart__ring {
  position: absolute;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.astro-chart__ring--outer {
  inset: 0;
  animation: rotateClockwise 120s linear infinite;
}

.astro-chart__ring--middle {
  inset: 10%;
  animation: rotateCounterClockwise 90s linear infinite;
}

.astro-chart__ring--inner {
  inset: 22%;
  animation: rotateClockwise 60s linear infinite;
}

.astro-chart:hover .astro-chart__ring--outer {
  animation-play-state: paused;
  transform: scale(1.02);
}

.astro-chart:hover .astro-chart__ring--middle {
  animation-play-state: paused;
  transform: scale(1.03);
}

.astro-chart:hover .astro-chart__ring--inner {
  animation-play-state: paused;
  transform: scale(1.04);
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.astro-chart__svg {
  width: 100%;
  height: 100%;
}

/* Degree markers */
.degree-marker {
  stroke: var(--color-accent);
  stroke-width: 1;
  opacity: 0.3;
}

.degree-marker--major {
  stroke-width: 2;
  opacity: 0.6;
}

/* Zodiac symbols */
.zodiac-symbol {
  font-family: var(--font-heading);
  font-size: 14px;
  fill: var(--color-accent);
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.zodiac-symbol:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Gate numbers */
.gate-number {
  font-family: var(--font-body);
  font-size: 8px;
  fill: var(--color-primary);
  opacity: 0.5;
}

/* Center piece */
.astro-chart__center {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-spiritual);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 10;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.astro-chart:hover .astro-chart__center {
  transform: scale(1.1);
  box-shadow: 0 0 80px rgba(201, 168, 108, 0.5);
}

.astro-chart__center-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.3) 0%, transparent 70%);
  animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.astro-chart__center-symbol {
  font-size: 24px;
  color: var(--color-accent);
  z-index: 1;
  animation: symbolRotate 20s linear infinite;
}

@keyframes symbolRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating planets */
.astro-chart__planets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.astro-planet {
  position: absolute;
  font-size: 16px;
  color: var(--color-accent);
  opacity: 0.8;
  animation: floatPlanet var(--orbit-time, 30s) linear infinite;
  transform-origin: center center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.astro-planet:hover {
  opacity: 1;
  transform: scale(1.3) !important;
}

@keyframes floatPlanet {
  from { transform: rotate(var(--start-angle, 0deg)) translateX(var(--orbit-radius, 150px)) rotate(calc(-1 * var(--start-angle, 0deg))); }
  to { transform: rotate(calc(var(--start-angle, 0deg) + 360deg)) translateX(var(--orbit-radius, 150px)) rotate(calc(-1 * var(--start-angle, 0deg) - 360deg)); }
}

/* Tooltip */
.astro-chart__tooltip {
  position: absolute;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  z-index: 100;
}

.astro-chart__tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .astro-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .astro-section__content {
    padding-right: 0;
    text-align: center;
    order: 2;
  }

  .astro-chart {
    max-width: 400px;
    order: 1;
  }
}

@media (max-width: 480px) {
  .astro-chart {
    max-width: 300px;
  }

  .astro-chart__center {
    width: 40px;
    height: 40px;
  }

  .astro-chart__center-symbol {
    font-size: 18px;
  }
}
