/* =========================================================
   MYSTIC ROSE — Complete Design System
   Psychic Healing Tarot & Spiritual Readings
   ========================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

/* ---- CSS Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --space:       #06040e;
  --deep:        #0e0820;
  --card:        #160f35;
  --card-hover:  #1e1548;
  --violet:      #2a1a6e;
  --gold:        #d4af37;
  --gold-light:  #f0cc60;
  --gold-dim:    rgba(212, 175, 55, 0.4);
  --gold-glow:   rgba(212, 175, 55, 0.15);
  --rose:        #c9789a;
  --rose-light:  #e8a0bc;
  --teal:        #5cc8c8;
  --teal-dim:    rgba(92, 200, 200, 0.3);
  --cream:       #f0e6d3;
  --cream-dim:   rgba(240, 230, 211, 0.55);
  --muted:       rgba(240, 230, 211, 0.35);
  --border:      rgba(212, 175, 55, 0.18);
  --border-soft: rgba(240, 230, 211, 0.08);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Cinzel', serif;
  --font-body:    'Raleway', sans-serif;

  /* Spacing */
  --gap:    2rem;
  --radius: 12px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Base ---- */
/* ── FULL-PAGE NIGHT SKY CANVAS (homepage) ── */
#nightsky {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── FULL-PAGE VIDEO BACKGROUND (all other pages) ── */
.page-video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.page-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease;
}
.page-video-bg video.fading { opacity: 0; }
.page-video-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(4,3,12,0.72) 0%,
    rgba(14,8,32,0.68) 50%,
    rgba(4,3,12,0.78) 100%
  );
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  background-color: transparent;
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { font-size: 1rem; line-height: 1.75; color: var(--cream-dim); }

.label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

em, i { font-style: italic; }

.text-gold     { color: var(--gold); }
.text-rose     { color: var(--rose); }
.text-teal     { color: var(--teal); }
.text-cream    { color: var(--cream); }
.text-muted    { color: var(--muted); }
.text-center   { text-align: center; }
.text-italic   { font-style: italic; }
.text-display  { font-family: var(--font-display); }

/* ---- Layout ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; }

.section-pad    { padding: 5rem 0; }
.section-pad-lg { padding: 7rem 0; }
.section-dark   { background-color: rgba(6,4,14,0.82); }
.section-deep   { background-color: rgba(14,8,32,0.80); }

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header .label {
  display: block;
  margin-bottom: 0.75rem;
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.divider-gold.left { margin: 1.5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8942a);
  color: var(--space);
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose), #a05a78);
  color: white;
  box-shadow: 0 4px 24px rgba(201, 120, 154, 0.3);
}

.btn-rose:hover {
  box-shadow: 0 6px 32px rgba(201, 120, 154, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(240, 230, 211, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
}

.btn-ghost:hover {
  background: rgba(240, 230, 211, 0.1);
  color: var(--cream);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.62rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.72rem;
}

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.08);
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.06), transparent 70%);
  pointer-events: none;
}

.glass {
  background: rgba(22, 15, 53, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

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

.nav.scrolled {
  background: rgba(6, 4, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: rotate(15deg) scale(1.08);
}

.nav-logo-symbol { display: none; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: color 0.3s;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

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

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  opacity: 0;
  pointer-events: none;
  background: rgba(14, 8, 32, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  min-width: 180px;
  /* delay hiding by 250ms so cursor can travel from link to menu */
  transition: opacity 0.2s var(--ease) 250ms, transform 0.2s var(--ease) 250ms;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0ms;
}

/* extend hover zone upward so moving cursor down doesn't leave the element */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -10px;
  right: -10px;
  height: 16px;
}

.nav-dropdown-menu a {
  display: block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: var(--gold-glow);
}

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

.nav-cart {
  position: relative;
  font-size: 1.1rem;
  padding: 0.4rem;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.nav-cart:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--rose);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.nav-mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--cream);
  padding: 0.3rem;
}

/* Mobile Nav */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 4, 14, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 0.75rem 1.5rem;
  }
  .nav-link::after { display: none; }
  .nav-mobile-toggle { display: block; z-index: 1001; }
  .nav-cta { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent; /* sky canvas shows through */
}

.hero-canvas { display: none; } /* replaced by fixed NightSky canvas */

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Very light gradient just to improve text contrast at bottom */
  background: linear-gradient(to bottom, transparent 55%, rgba(6,4,14,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 100vh;
}

.hero-text .label { margin-bottom: 1.2rem; display: block; }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.hero-name em {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  margin: 1.5rem 0 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero-photo-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: rotateSlow 30s linear infinite;
}

.hero-photo-ring::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.8rem;
}

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

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(212,175,55,0.1);
  position: relative;
  z-index: 1;
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, var(--deep) 0%, var(--violet) 50%, var(--deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212,175,55,0.1), transparent 70%);
}

.hero-photo-placeholder span {
  font-size: 4rem;
  opacity: 0.5;
}

.hero-photo-placeholder p {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  padding: 0 2rem;
  opacity: 0.7;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Floating mystical orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-20px) scale(1.05); }
  66%       { transform: translateY(10px) scale(0.95); }
}

/* ---- Mystic Quote Bar ---- */
.quote-bar {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(14,8,32,0.78), rgba(42,26,110,0.32), rgba(14,8,32,0.78));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.quote-text .gold-word { color: var(--gold); }

.quote-author {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 1.5rem;
  display: block;
}

/* ---- About Preview ---- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-img {
  position: relative;
}

.about-preview-img img,
.about-preview-img .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-preview-img .img-placeholder {
  background: linear-gradient(160deg, var(--card), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.5;
}

.about-preview-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), #9a7020);
  color: var(--space);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(212,175,55,0.3);
  font-family: var(--font-display);
}

.about-preview-badge .big { font-size: 2.5rem; font-weight: 300; display: block; line-height: 1; }
.about-preview-badge .small { font-size: 0.7rem; font-family: var(--font-label); letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }

/* ---- Services / Readings ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.07);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--cream-dim);
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.service-includes {
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.service-includes li {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.service-card.featured {
  background: linear-gradient(160deg, var(--card), rgba(42,26,110,0.6));
  border-color: rgba(212,175,55,0.35);
}

.service-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--space);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-weight: 600;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, rgba(14,8,32,0.86), rgba(42,26,110,0.42), rgba(14,8,32,0.86));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
}

/* ---- Shop / Products ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.3);
}

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--deep), var(--card));
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

.badge-new      { background: var(--teal-dim); color: var(--teal); border: 1px solid var(--teal-dim); }
.badge-hot      { background: rgba(201,120,154,0.2); color: var(--rose); border: 1px solid rgba(201,120,154,0.3); }
.badge-signed   { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--border); }

.product-add {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--space);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.product-card:hover .product-add {
  opacity: 1;
  transform: scale(1);
}

.product-add:hover {
  background: var(--gold-light);
  transform: scale(1.1) !important;
}

.product-info {
  padding: 1.2rem;
}

.product-category {
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
}

.product-stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Cart Badge on nav */
.cart-count {
  background: var(--rose);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: super;
  font-family: var(--font-body);
}

/* ---- Cart Page ---- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(14,8,32,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cart-item-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }
.cart-item-price { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 1rem;
  transition: all 0.2s;
}

.qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.qty-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  min-width: 1.5rem;
  text-align: center;
}

.cart-remove {
  color: var(--muted);
  font-size: 1.1rem;
  padding: 0.3rem;
  transition: color 0.2s;
}

.cart-remove:hover { color: var(--rose); }

.cart-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.cart-summary h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.summary-total {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-category {
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  transition: color 0.3s;
}

.blog-card:hover .blog-title { color: var(--gold); }

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.blog-card:hover .blog-read-more { gap: 0.8rem; }

/* Blog Post Page */
.blog-post-hero {
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.blog-post-content h2, .blog-post-content h3 {
  margin: 2.5rem 0 1rem;
  color: var(--cream);
}

.blog-post-content p { margin-bottom: 1.2rem; color: var(--cream-dim); }
.blog-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

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

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.review-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-style: italic;
  user-select: none;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
  font-family: var(--font-display);
  font-weight: 400;
}

.review-name {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

.review-location {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.review-tag {
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  color: var(--gold);
  margin-top: 0.25rem;
  display: inline-block;
}

/* Rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3rem;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.rating-bars { flex: 1; }

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.rating-bar-track {
  flex: 1;
  height: 4px;
  background: var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

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

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: rgba(14,8,32,0.72);
  cursor: pointer;
}

.video-thumb iframe,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--deep), var(--violet));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.3s;
}

.video-card:hover .video-play-btn {
  background: var(--gold);
  color: var(--space);
  transform: scale(1.1);
}

.video-live-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rose);
  color: white;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.video-live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: blink 1.5s ease-in-out infinite;
}

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

.video-views {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: white;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.video-info { padding: 1.2rem; }

.video-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.video-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
}

/* Featured video embed */
.featured-video {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.featured-video iframe { width: 100%; height: 100%; border: none; }

/* ---- AI Chat ---- */
.chat-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.chat-window {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 70vh;
}

.chat-header {
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, var(--deep), rgba(42,26,110,0.5));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  display: inline-block;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.msg {
  display: flex;
  gap: 0.75rem;
  max-width: 85%;
  animation: msgSlide 0.4s var(--ease-out);
}

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

.msg.user { align-self: flex-end; flex-direction: row-reverse; }

.msg-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg.oracle .msg-avatar { background: linear-gradient(135deg, var(--violet), var(--rose)); }
.msg.user .msg-avatar { background: linear-gradient(135deg, var(--card), var(--violet)); border: 1px solid var(--border); }

.msg-bubble {
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.msg.oracle .msg-bubble {
  background: rgba(14,8,32,0.72);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--cream-dim);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}

.msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--violet), rgba(42,26,110,0.8));
  border: 1px solid rgba(212,175,55,0.2);
  border-bottom-right-radius: 4px;
  color: var(--cream);
  font-family: var(--font-body);
}

.msg-typing .msg-bubble {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.9rem 1.2rem;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.chat-input-area {
  padding: 1rem 1.2rem;
  background: rgba(14,8,32,0.72);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.chat-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: none;
  max-height: 120px;
  transition: border-color 0.3s;
  outline: none;
}

.chat-input:focus { border-color: rgba(212,175,55,0.5); }
.chat-input::placeholder { color: var(--muted); }

.chat-send {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), #9a7020);
  border-radius: 50%;
  color: var(--space);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 1px;
}

.chat-send:hover { transform: scale(1.08); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.chat-suggestions {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.chat-suggestions h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.suggestion-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(14,8,32,0.72);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.suggestion-btn:hover {
  background: var(--gold-glow);
  border-color: var(--border);
  color: var(--cream);
  transform: translateX(4px);
}

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, rgba(14,8,32,0.86), rgba(42,26,110,0.50), rgba(14,8,32,0.86));
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 2rem auto 0;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 0.9rem 1.3rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input:focus { border-color: rgba(212,175,55,0.5); }
.newsletter-input::placeholder { color: var(--muted); }

.newsletter-btn {
  background: linear-gradient(135deg, var(--gold), #9a7020);
  color: var(--space);
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all 0.3s;
  white-space: nowrap;
  font-weight: 600;
}

.newsletter-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* ---- Testimonial Slider ---- */
.testimonial-section {
  padding: 5rem 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(42,26,110,0.22) 0%, transparent 70%), rgba(14,8,32,0.80);
}

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.6s var(--ease);
}

.testimonial-slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-line { width: 40px; height: 1px; background: var(--gold); }

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

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.testi-dot.active { width: 24px; background: var(--gold); }

/* ---- Moon Phase Widget ---- */
.moon-widget {
  text-align: center;
  padding: 2rem;
}

.moon-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212,175,55,0.4)); }
  50% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.7)); }
}

/* ---- TikTok Social Proof ---- */
.tiktok-banner {
  background: linear-gradient(135deg, rgba(22,15,53,0.8), rgba(42,26,110,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tiktok-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.tiktok-desc { font-size: 0.9rem; color: var(--cream-dim); max-width: 300px; }

/* ---- Booking Form ---- */
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(14,8,32,0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus { border-color: rgba(212,175,55,0.5); }
.form-input::placeholder { color: var(--muted); }

.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; }

textarea.form-input { resize: vertical; min-height: 100px; }

/* ---- Footer ---- */
.footer {
  background: rgba(4,3,12,0.95);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo-star {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.5s;
  border-radius: 50%;
}
.footer-logo:hover .footer-logo-star {
  opacity: 1;
  transform: rotate(12deg) scale(1.05);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  transition: all 0.3s;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--border);
  background: var(--gold-glow);
}

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

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-newsletter {
  display: flex;
  margin-top: 0.75rem;
}

.footer-newsletter input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 0.6rem 0.9rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
}

.footer-newsletter input::placeholder { color: var(--muted); }

.footer-newsletter button {
  background: var(--gold);
  color: var(--space);
  padding: 0 0.9rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.3s;
}

.footer-newsletter button:hover { background: var(--gold-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.6;
}

/* ---- Page Banner ---- */
.page-banner {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,26,110,0.4), transparent 70%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}

.page-banner-content { position: relative; z-index: 1; }

/* ---- Zodiac Wheel Decoration ---- */
.zodiac-decoration {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  margin: 1.5rem 0;
  opacity: 0.4;
  letter-spacing: 0.3em;
}

/* ---- About Page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-stack {
  position: relative;
}

.about-photo-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.about-photo-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  z-index: 1;
  pointer-events: none;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.value-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }

.value-title {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.value-desc { font-size: 0.8rem; color: var(--cream-dim); line-height: 1.5; }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.65s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.75s; }

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

/* Sparkle elements */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparklePop 1s ease-out forwards;
}

@keyframes sparklePop {
  0%   { opacity: 1; transform: scale(0) rotate(0deg); }
  50%  { opacity: 1; transform: scale(1) rotate(180deg); }
  100% { opacity: 0; transform: scale(0.5) rotate(360deg); }
}

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.hidden { display: none !important; }

.glow-gold {
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

.border-gold {
  border: 1px solid var(--border);
}

.tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: var(--card);
}

.tag-gold { color: var(--gold); border-color: rgba(212,175,55,0.3); background: var(--gold-glow); }
.tag-rose { color: var(--rose); border-color: rgba(201,120,154,0.3); background: rgba(201,120,154,0.08); }
.tag-teal { color: var(--teal); border-color: rgba(92,200,200,0.3); background: rgba(92,200,200,0.08); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-top: 7rem; }
  .hero-photo-wrap { width: 280px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-badge { right: 1rem; bottom: -15px; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .chat-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .tiktok-banner { flex-direction: column; text-align: center; }
  .rating-summary { flex-direction: column; gap: 2rem; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .section-pad { padding: 3.5rem 0; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item .cart-item-actions { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: var(--radius); border-right: 1px solid var(--border); }
  .newsletter-btn { border-radius: var(--radius); padding: 0.8rem; }
}

/* ---- Toast notifications ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--cream);
  font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  max-width: 300px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(92,200,200,0.4); }
.toast.error { border-color: rgba(201,120,154,0.4); }

.toast-icon { display: inline-block; margin-right: 0.5rem; }

/* ---- Loading Shimmer ---- */
.shimmer {
  background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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