/*!
Theme Name: Magical Alley
Theme URI: https://magicalalley.com
Description: Dark luxury spiritual e-commerce theme with custom booking system
Author: Magical Alley
Author URI: https://magicalalley.com
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: magical-alley
Domain Path: /languages
Requires at least: 5.9
Requires PHP: 7.4
*/

:root {
  --primary: #9d4edd;
  --primary-light: #c77dff;
  --accent-cyan: #00d9ff;
  --accent-gold: #ffd60a;
  --accent-pink: #ff006e;
  --bg-dark: transparent;
  --surface: transparent;
  --text-primary: #4F4638;
  --text-secondary: #6F6A52;
  --text-muted: #6b7280;
  --space-navy: #7B735E;
  --space-purple: #D4B06A;
  --glow-soft: 0 0 20px rgba(196, 169, 107, 0.25);
  --glow-cyan: 0 0 25px rgba(200, 169, 107, 0.3);
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --color-background-primary: #ffffff;
  --color-background-secondary: #f3f4f6;
  --color-border-tertiary: rgba(0, 0, 0, 0.1);
}


/* Magical Text Effects */
.magical-text {
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 900;
    letter-spacing: 4px;
    font-family: 'Oswald', 'Arial Black', sans-serif;
    color: #ffffff;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    -webkit-text-fill-color: transparent;
    position: relative;
    line-height: 1.2;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(107, 142, 35, 0.2);
    animation: textGlowPulse 3s ease-in-out infinite;
}

/* Individual word hover effects */
.text-word {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.text-word:hover {
    animation: wobble-zoom 0.5s ease-in-out;
}

/* Wobble + Zoom animation */
@keyframes wobble-zoom {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.15) rotate(-3deg);
    }
    50% {
        transform: scale(1.2) rotate(3deg);
    }
    75% {
        transform: scale(1.15) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}



.hero-tagline {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Fix hero section background to not hide logo */
.hero {
    position: relative;
    z-index: 1;
    background-attachment: scroll;
}

/* Logo styling fix */
.site-header .logo {
    position: relative;
    z-index: 10;
    background: rgba(10, 14, 27, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.site-header .logo-img {
    height: 24px;
    width: 24px;
    display: block;
    object-fit: contain;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  background: none;
  z-index: -2;
  pointer-events: none;
}

#nebula-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }

a { color: var(--accent-cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #556B2F 0%, #6B8E23 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(85, 107, 47, 0.5), inset 0 0 20px rgba(107, 142, 35, 0.3);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(107, 142, 35, 0.8), inset 0 0 20px rgba(107, 142, 35, 0.4);
  transform: translateY(-2px) scale(1.05);
  animation: glow-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(107, 142, 35, 0.5), inset 0 0 20px rgba(107, 142, 35, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(107, 142, 35, 0.8), inset 0 0 20px rgba(107, 142, 35, 0.4);
  }
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

.btn-secondary:hover {
  background: rgba(200, 169, 107, 0.1);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, #556B2F 0%, #6B8E23 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(85, 107, 47, 0.5), inset 0 0 20px rgba(107, 142, 35, 0.3);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.btn-accent:hover {
  box-shadow: 0 0 40px rgba(107, 142, 35, 0.8), inset 0 0 20px rgba(107, 142, 35, 0.4);
  transform: translateY(-2px) scale(1.05);
  animation: glow-pulse 1.5s ease-in-out infinite;
}

/* Glowing Magical Effect */
.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 115, 94, 0.3), transparent);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glitter 1.5s ease-in-out infinite;
}

@keyframes glitter {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.glow-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200, 169, 107, 0.2), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(123, 115, 94, 0.2), transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(200, 169, 107, 0.2), transparent 50%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.glow-btn:hover {
  animation: pulse-glow 0.6s ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(123, 115, 94, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(123, 115, 94, 0.8);
  }
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: linear-gradient(135deg, #3a4d1f 0%, #556B2F 50%, #4a5e2f 100%);
  border: 2px solid rgba(107, 142, 35, 0.6);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  box-shadow: 
    inset 0 0 20px rgba(107, 142, 35, 0.2),
    0 0 25px rgba(107, 142, 35, 0.3);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 140, 0, 0.08) 0deg,
    rgba(255, 69, 0, 0.06) 30deg,
    rgba(255, 165, 0, 0.07) 60deg,
    transparent 90deg
  );
  animation: fireRotate 12s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(107, 142, 35, 0.9);
  box-shadow: 
    0 0 40px rgba(107, 142, 35, 0.6),
    0 0 60px rgba(255, 215, 0, 0.2),
    inset 0 0 30px rgba(107, 142, 35, 0.3);
  transform: translateY(-8px);
}

/* Card Text Styling - White */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.card p, .card span, .card a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.product-card {
  background: linear-gradient(135deg, #3a4d1f 0%, #556B2F 50%, #2d3d18 100%);
  border: 2px solid rgba(107, 142, 35, 0.6);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 
    inset 0 0 20px rgba(255, 140, 0, 0.1),
    0 0 25px rgba(85, 107, 47, 0.3);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 140, 0, 0.1) 0deg,
    rgba(255, 69, 0, 0.08) 30deg,
    rgba(255, 165, 0, 0.09) 60deg,
    transparent 90deg
  );
  animation: fireRotate 10s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 100, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.06) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
  animation: fireFlicker 2.5s ease-in-out infinite;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--space-purple), var(--space-navy));
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.product-title { font-size: 1.1rem; font-weight: 600; color: #f0d960; text-shadow: 0 0 8px rgba(255, 140, 0, 0.2); }
.product-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); flex: 1; }
.product-price { font-size: 1.5rem; font-weight: 700; color: #ffd700; text-shadow: 0 0 10px rgba(255, 140, 0, 0.3); }

.product-card:hover {
  box-shadow: 
    0 0 40px rgba(255, 100, 0, 0.6),
    0 0 80px rgba(255, 140, 0, 0.4),
    0 0 120px rgba(255, 165, 0, 0.2),
    inset 0 0 30px rgba(85, 107, 47, 0.4);
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-8px) scale(1.02);
}

.section { padding: 4rem 0; }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
  color: #6B8E23;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 
    0 0 20px rgba(107, 142, 35, 0.6),
    0 0 40px rgba(107, 142, 35, 0.3),
    0 0 60px rgba(255, 215, 0, 0.15);
  animation: titleGlowPulse 3s ease-in-out infinite;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #556B2F, #6B8E23, #556B2F);
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(107, 142, 35, 0.6);
  animation: underlineGlowPulse 2.5s ease-in-out infinite;
}

@keyframes titleGlowPulse {
  0%, 100% { 
    text-shadow: 
      0 0 20px rgba(107, 142, 35, 0.6),
      0 0 40px rgba(107, 142, 35, 0.3),
      0 0 60px rgba(255, 215, 0, 0.15);
  }
  50% { 
    text-shadow: 
      0 0 30px rgba(107, 142, 35, 0.8),
      0 0 60px rgba(107, 142, 35, 0.5),
      0 0 80px rgba(255, 215, 0, 0.25);
  }
}

@keyframes underlineGlowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(107, 142, 35, 0.6); }
  50% { box-shadow: 0 0 35px rgba(107, 142, 35, 0.8), 0 0 50px rgba(255, 215, 0, 0.2); }
}

/* Marquee Top Section */
.marquee-top {
  width: 100%;
  background: linear-gradient(90deg, rgba(30, 50, 30, 0.95) 0%, rgba(40, 70, 35, 0.93) 50%, rgba(30, 50, 30, 0.95) 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  will-change: auto;
  transform: translateZ(0);
}

.marquee-bottom {
  width: 100%;
  background: linear-gradient(90deg, rgba(30, 50, 30, 0.95) 0%, rgba(40, 70, 35, 0.93) 50%, rgba(30, 50, 30, 0.95) 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
  box-shadow: 
    0 -4px 15px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.marquee-content {
  display: inline-block;
  padding-left: 0;
  animation: marquee 80s linear infinite;
  white-space: nowrap;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(255, 165, 0, 0.3);
  will-change: transform;
  backface-visibility: hidden;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

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

.marquee-content:hover {
  animation-play-state: paused;
}

.nav-shortcut {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 140;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-primary);
  border: 2px solid var(--accent-cyan);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(123, 115, 94, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.nav-shortcut:hover {
  box-shadow: 0 0 40px rgba(123, 115, 94, 0.8);
  transform: scale(1.05);
}

.nav-shortcut:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .nav-shortcut {
    bottom: 20px;
    right: 20px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .hero-subtitle {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: 1px;
    margin-bottom: 2rem;
  }

  .magical-text {
    font-size: clamp(1.8rem, 8vw, 3rem);
    color: var(--text-primary);
    letter-spacing: 2px;
  }

  .hero-content::before {
    width: 300px;
    height: 200px;
    filter: blur(30px);
  }

  /* Mobile Header Search & Actions */
  .header-content {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .header-search {
    flex: 1 100%;
    order: 3;
    max-width: none;
    margin: 0.5rem 0;
  }

  .search-form {
    width: 100%;
  }

  .header-actions {
    gap: 1rem;
  }

  .search-input {
    font-size: 0.8rem;
  }

  .search-btn {
    font-size: 0.9rem;
  }
}

.site-header {
  position: sticky;
  top: 52px;
  z-index: 100;
  background: rgba(10, 15, 20, 0.4);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  padding: 0.8rem 0;
  width: 100%;
  left: 0;
  right: 0;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-header .container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 100;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.1) 0%, rgba(123, 115, 94, 0.1) 100%);
  border: 1px solid rgba(255, 214, 10, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  position: relative;
}

.logo:hover {
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.2) 0%, rgba(123, 115, 94, 0.2) 100%);
  border-color: rgba(255, 214, 10, 0.5);
  box-shadow: 0 0 15px rgba(200, 169, 107, 0.3), 0 0 30px rgba(123, 115, 94, 0.2);
}

.logo-img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 4px rgba(255, 214, 10, 0.3));
  transition: filter 0.3s ease;
}

.site-nav {
  flex: 0;
  display: flex;
  justify-content: center;
  width: auto;
  max-width: none;
}

.site-nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

.site-nav a {
  position: relative;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  border-radius: 2px;
}

.site-nav a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.site-nav a:hover::after { width: 100%; }

/* Dropdown Menu Styles */
.menu-item-with-children {
  position: relative;
}

.menu-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.menu-dropdown-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  margin-top: 2px;
  display: inline-block;
}

.menu-item-with-children:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 115%;
  left: -15px;
  background: linear-gradient(135deg, #3a4d1f 0%, #556B2F 100%);
  border: 2px solid rgba(107, 142, 35, 0.8);
  border-radius: 0.8rem;
  padding: 1rem 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 
    0 15px 40px rgba(85, 107, 47, 0.5),
    0 0 30px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: none;
}

.menu-item-with-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.sub-menu li {
  list-style: none;
  display: none;
}

.sub-menu a {
  display: block;
  padding: 0.85rem 1.8rem;
  color: #ffffff;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  border-left: 3px solid transparent;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sub-menu a:hover {
  background: rgba(255, 215, 0, 0.2);
  border-left-color: #ffd700;
  color: #ffd700;
  padding-left: 2rem;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.account-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  color: #ffffff;
}

/* Social Logo in Header */
.social-logo {
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 214, 10, 0.1);
}

.social-logo:hover {
    background: rgba(255, 214, 10, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 214, 10, 0.4);
}

@media (max-width: 768px) {
    .social-logo {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}


.account-icon:hover {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
  color: #ffd700;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.25rem;
  color: #ffffff;
  transition: all 0.3s;
}
.cart-icon:hover {
  transform: scale(1.2) rotate(-10deg);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
  color: #ffd700;
}

/* Search Bar Styles */
.header-search {
  flex: 1;
  max-width: 350px;
  margin: 0 1rem;
  display: flex;
  align-items: center;
}

.search-form {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  background: rgba(123, 115, 94, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  background: rgba(123, 115, 94, 0.15);
  border-color: rgba(200, 169, 107, 0.6);
  box-shadow: 0 0 15px rgba(200, 169, 107, 0.2);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  padding: 0.5rem 0;
}

.search-input::placeholder {
  color: rgba(79, 70, 56, 0.5);
}

.search-btn {
  background: transparent;
  border: none;
  color: var(--accent-cyan);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: var(--accent-gold);
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 214, 10, 0.4));
}

.icon-search::before {
  content: '🔍';
  font-size: inherit;
}

/* Header Actions (Account + Cart) */
.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
}

.icon-user::before {
  content: '👤';
  font-size: inherit;
}

.icon-cart::before {
  content: '🛒';
  font-size: inherit;
}

.icon-menu::before {
  content: '☰';
  font-size: inherit;
  font-weight: bold;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 
    0 0 12px rgba(255, 71, 87, 0.7),
    0 0 20px rgba(255, 107, 107, 0.4);
  border: 2px solid #ffffff;
  animation: cartPulse 2s ease-in-out infinite;
}

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

.menu-toggle { display: none; background: none; border: none; color: #ffffff; font-size: 1.5rem; cursor: pointer; z-index: 160; position: relative; transition: all 0.3s; }

@media (max-width: 768px) {
  .menu-toggle { display: block; position: relative; z-index: 300; color: #ffffff; }
  
  .site-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #3a4d1f 0%, #556B2F 50%, #4a5e2f 100%);
    z-index: 150;
    transition: left 0.3s ease;
    padding-top: 100px;
    overflow-y: auto;
  }
  
  .site-nav.active {
    left: 0;
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    display: flex;
    position: static;
    background: transparent;
    padding: 1.5rem;
    border-top: none;
  }
  
  .site-nav a {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    display: block;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: #ffffff;
  }
  
  .site-nav a:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

/* Glowing Light Behind Text Effect */
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.3) 0%, rgba(123, 115, 94, 0.2) 40%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse-bg 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes glow-pulse-bg {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero h1 {
  color: #ffffff;
  font-weight: 900;
  font-size: clamp(3rem, 12vw, 6rem);
  letter-spacing: 4px;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  -webkit-text-fill-color: transparent;
  background: transparent;
  text-shadow: 
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 60px rgba(107, 142, 35, 0.2);
  margin-bottom: 2rem;
  animation: textGlowPulse 3s ease-in-out infinite;
}

@keyframes textGlowPulse {
  0%, 100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(107, 142, 35, 0.2); }
  50% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.6), 0 0 80px rgba(107, 142, 35, 0.3); }
}

.hero-subtitle {
  font-family: 'Tangerine', 'Dancing Script', 'Allura', 'Satisfy', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  font-style: italic;
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(107, 142, 35, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.4);
  animation: gentle-sway 4s ease-in-out infinite;
}

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

/* Hero CTA Button Styling */
.hero-cta .btn {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #556B2F 0%, #6B8E23 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 0 25px rgba(85, 107, 47, 0.5), inset 0 0 20px rgba(107, 142, 35, 0.3) !important;
  animation: glow-pulse 2.5s ease-in-out infinite !important;
}

.hero-cta .btn-primary:hover {
  box-shadow: 0 0 40px rgba(107, 142, 35, 0.8), inset 0 0 20px rgba(107, 142, 35, 0.4) !important;
  transform: translateY(-3px) scale(1.05) !important;
}

.hero-cta .btn-secondary {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffd700 !important;
  color: #ffd700 !important;
  transform: translateY(-3px) !important;
}

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

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.float-delayed { animation: float 8s ease-in-out infinite 2s; }

.glow-text {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(200, 169, 107, 0.8);
}

.site-footer {
  background: rgba(5, 8, 16, 0.95);
  border-top: 1px solid rgba(123, 115, 94, 0.2);
  padding: 0;
  margin-top: 4rem;
}

/* Contact Bar Below Header */
.contact-bar {
  background: linear-gradient(90deg, rgba(123, 115, 94, 0.1) 0%, rgba(200, 169, 107, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 214, 10, 0.2);
  padding: 0.8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* Social Links Bar - Logo Only - Full Width */
.social-links-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  flex-wrap: nowrap;
  border-top: 2px solid rgba(255, 214, 10, 0.3);
  border-bottom: 2px solid rgba(255, 214, 10, 0.3);
  background: linear-gradient(90deg, rgba(123, 115, 94, 0.05) 0%, rgba(200, 169, 107, 0.05) 100%);
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.social-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.2);
  transition: all 0.3s ease;
  padding: 0;
  text-decoration: none;
  font-size: 1.2rem;
}

.social-logo-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.social-logo-link span {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-logo-link:hover {
  background: rgba(200, 169, 107, 0.2);
  border-color: rgba(200, 169, 107, 0.5);
  box-shadow: 0 0 15px rgba(200, 169, 107, 0.3);
  transform: translateY(-2px);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.85rem;
  white-space: nowrap;
}

.contact-link img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.contact-link:hover {
  color: var(--accent-gold);
}

.separator {
  color: var(--accent-gold);
  opacity: 0.5;
  margin: 0 0.3rem;
}

/* Footer Content Grid */
.container {
  padding: 4rem 2rem 2rem;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section a {
  color: var(--text-secondary);
  transition: color 0.3s;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.footer-divider {
  border-top: 1px solid rgba(123, 115, 94, 0.2);
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .contact-bar {
    font-size: 0.75rem;
    gap: 0.3rem;
  }
  
  .contact-link {
    font-size: 0.75rem;
  }
  
  .separator {
    margin: 0 0.2rem;
  }
}

/* Booking Calendar Styles */
.booking-calendar-wrapper {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(123, 115, 94, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin: 2rem 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(123, 115, 94, 0.3);
  border-radius: 6px;
  background: var(--color-background-primary);
  color: #333;
  font-family: inherit;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 115, 94, 0.1);
}

/* WooCommerce Overrides */
.woocommerce-result-count,
.woocommerce-catalog-ordering { color: var(--text-secondary); }

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .hero { min-height: 70vh; padding: 3rem 1.5rem; }
  .grid-3, .product-grid { grid-template-columns: 1fr; }
  .header-content { flex-wrap: wrap; }
  .site-nav { flex: 1 1 100%; }
}

/* ============================================ */
/* READINGS SERVICES PAGE STYLES */
/* ============================================ */

.readings-services-main {
    background: transparent;
    color: var(--text-primary);
}

.readings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.readings-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(123, 115, 94, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(123, 115, 94, 0.3);
}

.readings-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.readings-hero p {
    font-size: 1.3rem;
    color: rgba(79, 70, 56, 0.8);

/* ============================================ */
/* READINGS SERVICES - FLIP CARDS */
/* ============================================ */

.readings-services-main {
    background: transparent;
    color: var(--text-primary);
}

.readings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.readings-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(123, 115, 94, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(123, 115, 94, 0.3);
}

.readings-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.readings-hero p {
    font-size: 1.3rem;
    color: rgba(79, 70, 56, 0.8);
}

/* Grid Layout */
.readings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Flip Card Wrapper */
.card-flip-wrapper {
    perspective: 1000px;
    height: 400px;
}

.card-flip-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip-wrapper:hover .card-flip-content {
    transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    padding: 2rem;
    box-sizing: border-box;
    border: 1px solid rgba(123, 115, 94, 0.3);
    backdrop-filter: blur(10px);
}

/* Front of Card */
.card-flip-front {
    background: linear-gradient(135deg, #3a4d1f 0%, #556B2F 50%, #4a5e2f 100%);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 2px solid rgba(107, 142, 35, 0.6);
    box-shadow: 
      inset 0 0 20px rgba(107, 142, 35, 0.2),
      0 0 25px rgba(107, 142, 35, 0.3);
}

.card-flip-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-conic-gradient(
      from 0deg at 50% 50%,
      rgba(255, 140, 0, 0.08) 0deg,
      rgba(255, 69, 0, 0.06) 30deg,
      rgba(255, 165, 0, 0.07) 60deg,
      transparent 90deg
    );
    pointer-events: none;
    border-radius: 12px;
    animation: fireRotateSmall 12s linear infinite;
}

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

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.card-flip-front .reading-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(123, 115, 94, 0.6));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-flip-front h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(107, 142, 35, 0.4);
}

.card-flip-front p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.card-flip-front .price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff006e;
    background: rgba(255, 0, 110, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 110, 0.4);
    position: relative;
    z-index: 2;
}

/* Back of Card */
.card-flip-back {
    background: linear-gradient(135deg, #3a4d1f 0%, #556B2F 50%, #4a5e2f 100%);
    border: 2px solid rgba(107, 142, 35, 0.6);
    transform: rotateY(180deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: cardGlowPulse 2.5s ease-in-out infinite;
    box-shadow: 
      inset 0 0 20px rgba(107, 142, 35, 0.2),
      0 0 25px rgba(107, 142, 35, 0.3);
}

@keyframes cardGlowPulse {
    0%, 100% { box-shadow: inset 0 0 20px rgba(107, 142, 35, 0.2), 0 0 25px rgba(107, 142, 35, 0.3); }
    50% { box-shadow: inset 0 0 30px rgba(107, 142, 35, 0.3), 0 0 40px rgba(107, 142, 35, 0.5); }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(123, 115, 94, 0.3);
        border-color: rgba(123, 115, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(123, 115, 94, 0.6);
        border-color: rgba(123, 115, 94, 0.7);
    }
}

.card-flip-back::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    animation: sparkle-dance 2s ease-in-out infinite;
}

.card-flip-back::after {
    content: '✨';
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 2rem;
    animation: sparkle-dance 2.5s ease-in-out infinite;
}

@keyframes sparkle-dance {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0); }
    50% { opacity: 1; transform: scale(1) rotate(10deg); }
}

.card-flip-back h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(107, 142, 35, 0.4);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

.benefits-list span {
    font-size: 0.85rem;
    color: #ffffff;
    background: rgba(107, 142, 35, 0.25);
    padding: 0.6rem;
    border-radius: 6px;
    border-left: 3px solid #6B8E23;
    position: relative;
    z-index: 2;
}

.card-flip-back .duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.card-flip-back .use-case {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.flip-book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #556B2F, #6B8E23);
    color: #ffffff;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(85, 107, 47, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.flip-book-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(85, 107, 47, 0.8);
    border-color: #6B8E23;
    background: linear-gradient(135deg, #6B8E23, #556B2F);
}

/* Booking Section */
.readings-booking {
    background: rgba(123, 115, 94, 0.1);
    border: 1px solid rgba(123, 115, 94, 0.3);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.readings-booking h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.booking-form-wrapper {
    background: rgba(26, 31, 58, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(123, 115, 94, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(123, 115, 94, 0.3);
    border-radius: 8px;
    background: rgba(42, 26, 74, 0.8);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(79, 70, 56, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9d4edd;
    background: rgba(42, 26, 74, 1);
    box-shadow: 0 0 0 3px rgba(123, 115, 94, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(123, 115, 94, 0.3);
}

/* Info Section */
.readings-info {
    background: rgba(123, 115, 94, 0.1);
    border: 1px solid rgba(123, 115, 94, 0.3);
    border-radius: 15px;
    padding: 3rem;
}

.readings-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    background: rgba(26, 31, 58, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(123, 115, 94, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: rgba(79, 70, 56, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .readings-container {
        padding: 2rem 1rem;
    }

    .readings-hero h1 {
        font-size: 2rem;
    }

    .readings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-flip-wrapper {
        height: 350px;
    }

    .card-flip-front,
    .card-flip-back {
        padding: 1.5rem;
    }

    .reading-icon {
        font-size: 3rem !important;
    }
}

/* ============================================ */

/* ============================================ */
/* HEALING SERVICES - EXACT SAME AS READINGS */
/* ============================================ */

.healing-services-main {
    background: transparent;
    color: var(--text-primary);
}

.healing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.healing-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(123, 115, 94, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(123, 115, 94, 0.3);
}

.healing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.healing-hero p {
    font-size: 1.3rem;
    color: rgba(79, 70, 56, 0.8);
}

.healing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.healing-grid .card-flip-wrapper {
    background-color: transparent;
    width: 100%;
    perspective: none;
    cursor: pointer;
}

.healing-grid .card-flip-content {
    position: relative;
    width: 100%;
    text-align: center;
    height: auto;
}

.healing-grid .card-flip-wrapper:hover .card-flip-content {
    /* No transform - just toggle display */
}

.healing-grid .card-flip-front,
.healing-grid .card-flip-back {
    position: relative;
    width: 100%;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(123, 115, 94, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    box-sizing: border-box;
    min-height: 420px;
    transition: all 0.3s ease;
}

/* ALWAYS show front */
.healing-grid .card-flip-front {
    display: flex !important;
    background: rgba(26, 31, 58, 0.8);
    position: relative;
    overflow: hidden;
}

/* ALWAYS hide back - no hover flip */
.healing-grid .card-flip-back {
    display: none !important;
}

.healing-grid .card-flip-wrapper:hover .card-flip-front {
    display: flex !important;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(123, 115, 94, 0.3);
}

.healing-grid .card-flip-wrapper:hover .card-flip-back {
    display: none !important;
}

.healing-grid .card-flip-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(123, 115, 94, 0.2), transparent 70%);
    pointer-events: none;
    animation: magical-glow 4s ease-in-out infinite;
}

@keyframes magical-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.healing-grid .card-flip-front .healing-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(123, 115, 94, 0.5));
    animation: floating 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.healing-grid .card-flip-front h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.healing-grid .card-flip-front p {
    font-size: 0.9rem;
    color: rgba(79, 70, 56, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.healing-grid .card-flip-front .price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff006e;
    background: rgba(255, 0, 110, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.healing-grid .card-flip-back {
    background: linear-gradient(135deg, rgba(123, 115, 94, 0.2), rgba(255, 0, 110, 0.1));
    border: 2px solid rgba(123, 115, 94, 0.5);
    transform: rotateY(180deg);
    position: relative;
    overflow: hidden;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(123, 115, 94, 0.3);
        box-shadow: 0 0 10px rgba(123, 115, 94, 0.2);
    }
    50% {
        border-color: rgba(123, 115, 94, 0.7);
        box-shadow: 0 0 30px rgba(123, 115, 94, 0.5);
    }
}

.healing-grid .card-flip-back::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.healing-grid .card-flip-back::after {
    content: '✨';
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 1.5rem;
    animation: sparkle 2.5s ease-in-out infinite;
}

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

.healing-grid .card-flip-back h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(123, 115, 94, 0.5);
}

.healing-grid .benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
    width: 100%;
}

.healing-grid .benefits-list span {
    font-size: 0.85rem;
    color: #86efac;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    border-left: 2px solid #22c55e;
}

.healing-grid .card-flip-back .duration {
    font-size: 0.85rem;
    color: rgba(79, 70, 56, 0.8);
    margin: 0.5rem 0;
}

.healing-grid .card-flip-back .use-case {
    font-size: 0.8rem;
    color: rgba(79, 70, 56, 0.6);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.healing-grid .flip-book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 0, 110, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.healing-grid .flip-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(123, 115, 94, 0.5);
    border-color: #ff006e;
}

.healing-booking {
    background: rgba(123, 115, 94, 0.1);
    border: 1px solid rgba(123, 115, 94, 0.3);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.healing-booking h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.healing-info {
    background: rgba(123, 115, 94, 0.1);
    border: 1px solid rgba(123, 115, 94, 0.3);
    border-radius: 15px;
    padding: 3rem;
}

.healing-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.healing-calendar {
    background: rgba(42, 26, 74, 0.6);
    border-radius: 10px;
    padding: 1rem;
}

.healing-calendar p {
    color: rgba(79, 70, 56, 0.7);
    text-align: center;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .healing-grid .card-flip-wrapper {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .healing-container {
        padding: 2rem 1rem;
    }

    .healing-hero {
        padding: 2rem 1rem;
    }

    .healing-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .healing-hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .healing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        perspective: none !important;
    }

    .healing-grid .card-flip-wrapper {
        height: auto !important;
        min-height: auto !important;
        margin: 0 !important;
        perspective: none !important;
        background: transparent !important;
    }

    .healing-grid .card-flip-content {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        transition: none !important;
        transform: none !important;
        transform-style: initial !important;
        perspective: none !important;
    }

    .healing-grid .card-flip-wrapper:hover .card-flip-content {
        transform: none !important;
    }

    .healing-grid .card-flip-front,
    .healing-grid .card-flip-back {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        border-radius: 12px;
        border: 1px solid rgba(123, 115, 94, 0.3);
        backdrop-filter: blur(10px);
        padding: 1.5rem !important;
        box-sizing: border-box;
        background: rgba(26, 31, 58, 0.8) !important;
        text-align: left;
        margin: 0 !important;
    }

    .healing-grid .card-flip-front {
        border-bottom: none;
    }

    .healing-grid .card-flip-front::before {
        display: none !important;
    }

    .healing-grid .card-flip-front .healing-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .healing-grid .card-flip-front h3 {
        font-size: 1.1rem;
        margin: 0.5rem 0;
        line-height: 1.3;
        text-align: center;
        color: var(--accent-gold);
    }

    .healing-grid .card-flip-front p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0.8rem 0;
        color: var(--text-secondary);
    }

    .healing-grid .card-flip-front .price {
        font-size: 1.1rem;
        color: var(--accent-gold);
        margin: 0.5rem 0 0.8rem 0;
        display: block;
        text-align: center;
        font-weight: 700;
    }

    .healing-grid .card-flip-back {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        background: rgba(123, 115, 94, 0.15) !important;
        border: 1px solid rgba(200, 169, 107, 0.3) !important;
        border-top: 2px solid rgba(200, 169, 107, 0.5) !important;
        margin-top: 0 !important;
        text-align: left;
    }

    .healing-grid .card-flip-back::before,
    .healing-grid .card-flip-back::after {
        display: none !important;
    }

    .healing-grid .card-flip-back h4 {
        font-size: 1rem;
        color: var(--accent-gold);
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .healing-grid .benefits-list {
        text-align: left;
        margin-bottom: 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .healing-grid .benefits-list span {
        font-size: 0.85rem;
        color: var(--accent-cyan);
    }

    .healing-grid .card-flip-back .duration {
        font-size: 0.8rem;
        color: var(--accent-cyan);
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }

    .healing-grid .card-flip-back .use-case {
        font-size: 0.8rem;
        color: var(--text-secondary);
        display: block;
        margin: 0.5rem 0 1rem 0;
        text-align: center;
    }

    .healing-grid .flip-book-btn {
        width: 100% !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.85rem !important;
        margin-top: auto !important;
        background: linear-gradient(135deg, var(--accent-gold) 0%, #ffb700 100%) !important;
        color: #000 !important;
        border: none !important;
        border-radius: 0.5rem;
        cursor: pointer;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .healing-grid .card-flip-wrapper:hover .card-flip-back {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .healing-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .healing-grid .card-flip-front,
    .healing-grid .card-flip-back {
        padding: 1.2rem !important;
    }

    .healing-grid .card-flip-front .healing-icon {
        font-size: 2rem;
    }

    .healing-grid .card-flip-front h3 {
        font-size: 1rem;
    }

    .healing-grid .card-flip-front p {
        font-size: 0.8rem;
    }

    .healing-grid .card-flip-back h4 {
        font-size: 0.95rem;
    }

    .healing-grid .benefits-list span {
        font-size: 0.8rem;
    }

    .healing-grid .flip-book-btn {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.8rem !important;
    }

@media (max-width: 480px) {
    .healing-container {
        padding: 1.5rem 0.8rem;
    }

    .healing-hero {
        padding: 1.5rem 0.8rem;
    }

    .healing-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .healing-hero p {
        font-size: 0.9rem;
    }

    .healing-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .healing-grid .card-flip-front {
        padding: 1.2rem !important;
    }

    .healing-grid .card-flip-front .healing-icon {
        font-size: 2rem;
    }

    .healing-grid .card-flip-front h3 {
        font-size: 1rem;
    }

    .healing-grid .card-flip-front p {
        font-size: 0.8rem;
    }

    .healing-grid .card-flip-back {
        padding: 1.2rem !important;
    }

    .healing-grid .benefits-list span {
        font-size: 0.8rem;
    }

    .healing-grid .flip-book-btn {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.social-links a:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(200, 169, 107, 0.5));
}


/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(255, 214, 10, 0.4);
}

@media (max-width: 768px) {
    .footer-contact {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .footer-contact a {
        font-size: 0.85rem;
    }
}

/* ============================================ */
/* SERVICE CARD CART & BUY BUTTONS */
/* ============================================ */

.service-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.btn-add-cart {
    background: rgba(123, 115, 94, 0.3);
    border: 1px solid var(--accent-purple);
    color: var(--accent-cyan);
}

.btn-add-cart:hover {
    background: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(123, 115, 94, 0.4);
}

.btn-buy-now {
    background: linear-gradient(135deg, #556B2F, #6B8E23);
    color: #ffffff;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(85, 107, 47, 0.4);
}

/* Notification Toast */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(123, 115, 94, 0.2) 0%, rgba(200, 169, 107, 0.1) 100%);
    border: 2px solid rgba(255, 214, 10, 0.4);
    border-radius: 0.5rem;
    color: var(--accent-gold);
    z-index: 1000;
    animation: slideInNotification 0.3s ease;
    box-shadow: 0 10px 30px rgba(123, 115, 94, 0.2);
    max-width: 400px;
    word-wrap: break-word;
}

.notification-success {
    border-color: #00ff88;
    color: #00ff88;
}

.notification-error {
    border-color: #ff4444;
    color: #ff4444;
}

.notification-warning {
    border-color: var(--accent-gold);
}

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

@media (max-width: 768px) {
    .service-card-actions {
        flex-direction: column;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ============================================ */
/* CART NOTIFICATIONS & BUTTONS */
/* ============================================ */

.service-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart {
    background: rgba(123, 115, 94, 0.4);
    border: 2px solid var(--accent-purple);
    color: var(--accent-cyan);
}

.btn-add-cart:hover {
    background: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 0 25px rgba(123, 115, 94, 0.5);
    transform: translateY(-2px);
}

.btn-buy-now {
    background: linear-gradient(135deg, #556B2F, #6B8E23);
    color: #ffffff;
    border: none;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(85, 107, 47, 0.5);
}

/* Cart Notification Toast */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(123, 115, 94, 0.3) 0%, rgba(200, 169, 107, 0.2) 100%);
    border: 2px solid rgba(255, 214, 10, 0.5);
    border-radius: 0.6rem;
    color: var(--accent-gold);
    z-index: 1001;
    max-width: 350px;
    word-wrap: break-word;
    box-shadow: 0 10px 40px rgba(123, 115, 94, 0.3);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-notification.notification-success {
    border-color: #00ff88;
    color: #00ff88;
}

.cart-notification.notification-error {
    border-color: #ff4444;
    color: #ff4444;
}

.cart-notification.notification-warning {
    border-color: var(--accent-gold);
}

@media (max-width: 768px) {
    .service-card-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-add-cart,
    .btn-buy-now {
        width: 100%;
    }
    
    .cart-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ============================================ */
/* MOBILE FIRST BASE IMPROVEMENTS */
/* ============================================ */

/* Ensure proper viewport behavior */
html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Video responsiveness */
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Table responsiveness */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

/* Touch-friendly button sizing */
button,
input[type="button"],
input[type="submit"],
a.btn {
    min-height: 44px;
    padding: 0.8rem 1.5rem;
}

/* Form field improvements for mobile */
input,
select,
textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: inherit;
    width: 100%;
}

/* Flexible grid fallback */
.grid,
.grid-2,
.grid-3 {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Sticky header mobile improvements */
@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 52px;
        z-index: 100;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .social-links-bar {
        gap: 1rem;
        padding: 1.2rem 0.8rem;
    }

    .social-logo-link {
        width: 28px;
        height: 28px;
    }

    .social-logo-link img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .social-links-bar {
        gap: 0.8rem;
        padding: 1rem 0.5rem;
    }

    .social-logo-link {
        width: 26px;
        height: 26px;
        border-radius: 4px;
        gap: 0;
    }

    .social-logo-link img {
        width: 14px;
        height: 14px;
    }

    .social-logo-link span {
        font-size: 1rem;
    }
}

/* Ensure footer doesn't overflow */
.site-footer {
    overflow-x: hidden;
}

/* ====== MAGICAL MOTION GRAPHICS ANIMATIONS ====== */

/* Magical Shimmer Animation */
@keyframes magical-shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Glow Pulse Animation */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(200, 169, 107, 0.3), inset 0 0 10px rgba(200, 169, 107, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(200, 169, 107, 0.8), inset 0 0 20px rgba(200, 169, 107, 0.3);
    }
}

/* Border Glow Animation */
@keyframes border-glow {
    0%, 100% {
        border-color: rgba(123, 115, 94, 0.3);
        box-shadow: 0 0 5px rgba(123, 115, 94, 0.2);
    }
    50% {
        border-color: rgba(200, 169, 107, 0.8);
        box-shadow: 0 0 20px rgba(200, 169, 107, 0.6), 0 0 40px rgba(123, 115, 94, 0.4);
    }
}

/* Floating Up Animation */
@keyframes float-up {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Gentle Sway Animation */
@keyframes gentle-sway {
    0%, 100% {
        transform: rotateZ(0deg) translateY(0px);
    }
    25% {
        transform: rotateZ(1deg) translateY(-5px);
    }
    75% {
        transform: rotateZ(-1deg) translateY(-5px);
    }
}

/* Magical Rotate Animation */
@keyframes magical-rotate {
    0%, 100% {
        transform: rotateZ(0deg);
    }
    50% {
        transform: rotateZ(3deg);
    }
}

/* Shimmer Line Animation */
@keyframes shimmer-line {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Particle Glow Animation */
@keyframes particle-glow {
    0%, 100% {
        box-shadow: 0 0 0px rgba(255, 214, 10, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 214, 10, 0.9), 0 0 30px rgba(200, 169, 107, 0.5);
    }
}

/* Star Burst Animation */
@keyframes star-burst {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.5) rotate(180deg);
    }
}

/* ====== APPLY ANIMATIONS TO CARDS ====== */

/* Service Cards Animation - Exclude healing-grid which has its own styling */
.service-card,
.product-card,
.reading-card {
    animation: border-glow 3s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

/* Card flip wrapper - Only non-healing ones */
.card-flip-wrapper:not(.healing-grid .card-flip-wrapper) {
    animation: border-glow 3s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover,
.product-card:hover,
.reading-card:hover {
    animation: glow-pulse 1.5s ease-in-out infinite;
}

/* Icon/Emoji Animation in Cards - Exclude healing-grid icons which have their own */
.service-icon,
.reading-icon,
.product-card div > div:first-child {
    animation: float-up 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(200, 169, 107, 0.4));
}

/* Card Title Animation - Exclude healing-grid titles which have their own */
.service-card h3,
.product-card h3,
.reading-card h3 {
    animation: gentle-sway 3s ease-in-out infinite;
    position: relative;
}

/* Price Tag Animation - Exclude healing-grid which has its own */
.price,
.product-card .price {
    animation: particle-glow 2s ease-in-out infinite;
    position: relative;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* Button Animation */
.btn-add-cart,
.btn-buy-now,
.explore-btn,
.book-btn,
.flip-book-btn,
.btn-primary,
button[type="submit"],
.cta-button,
.service-btn {
    animation: border-glow 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Button Hover Animation */
.btn-add-cart:hover,
.btn-buy-now:hover,
.explore-btn:hover,
.book-btn:hover,
.flip-book-btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover,
.service-btn:hover {
    animation: glow-pulse 1.5s ease-in-out infinite;
    transform: translateY(-3px);
}

/* Button Shimmer Effect */
.btn-add-cart::before,
.btn-buy-now::before,
.explore-btn::before,
.book-btn::before,
.flip-book-btn::before,
.btn-primary::before,
button[type="submit"]::before,
.cta-button::before,
.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 115, 94, 0.15), transparent);
    animation: shimmer-line 2s infinite;
    pointer-events: none;
}

/* Card Back Sparkle */
.card-flip-back,
.benefits-section {
    animation: pulse-border 2s ease-in-out infinite;
    position: relative;
}

/* Magical Stars Around Cards - Exclude healing-grid */
.service-card::before,
.product-card::before,
.reading-card::before {
    content: '✨';
    position: absolute;
    font-size: 1.2rem;
    animation: star-burst 3s ease-in-out infinite;
    top: -20px;
    right: 20px;
    pointer-events: none;
}

.service-card::after,
.product-card::after,
.reading-card::after {
    content: '⭐';
    position: absolute;
    font-size: 1rem;
    animation: star-burst 3.5s ease-in-out infinite;
    bottom: -15px;
    left: 15px;
    pointer-events: none;
}

/* Healing grid has its own styling, don't override */
.healing-grid .card-flip-wrapper::before {
    display: none !important;
}

.healing-grid .card-flip-wrapper::after {
    display: none !important;
}

/* Duration & Benefits Text Animation */
.duration,
.benefits-list span,
.use-case {
    animation: gentle-sway 4s ease-in-out infinite;
    position: relative;
}

/* Mobile Animation Reduction - Performance */
@media (max-width: 768px) {
    .service-card,
    .card-flip-wrapper,
    .product-card,
    .reading-card {
        animation: border-glow 4s ease-in-out infinite;
    }

    .service-icon,
    .healing-icon,
    .reading-icon {
        animation: float-up 3s ease-in-out infinite;
    }

    .btn-add-cart,
    .btn-buy-now,
    .explore-btn,
    .book-btn {
        animation: border-glow 3s ease-in-out infinite;
    }

    /* Reduce star animations on mobile */
    .service-card::before,
    .card-flip-wrapper::before {
        display: none;
    }

    .service-card::after,
    .card-flip-wrapper::after {
        display: none;
    }

    /* Healing Grid Mobile Fixes */
    .healing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .healing-grid .card-flip-wrapper {
        min-height: auto;
    }

    .healing-grid .card-flip-content {
        min-height: auto;
    }

    .healing-grid .card-flip-front,
    .healing-grid .card-flip-back {
        min-height: 420px;
        padding: 1.5rem;
        position: relative !important;
    }

    .healing-grid .card-flip-front h3 {
        font-size: 1.2rem;
    }

    .healing-grid .card-flip-front p {
        font-size: 0.85rem;
    }

    .healing-grid .benefits-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .healing-grid .card-flip-back h4 {
        font-size: 1.1rem;
    }

    .flip-book-btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .healing-hero h1 {
        font-size: 2rem;
    }

    .healing-hero p {
        font-size: 1rem;
    }
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .healing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .healing-grid .card-flip-wrapper {
        min-height: auto;
    }

    .healing-grid .card-flip-content {
        min-height: auto;
    }

    .healing-grid .card-flip-front,
    .healing-grid .card-flip-back {
        min-height: 400px;
        padding: 1.5rem;
        position: relative !important;
    }

    .healing-hero h1 {
        font-size: 2.5rem;
    }
}


/* ===============================================
   TAROT CARD READING SECTION
   =============================================== */

.tarot-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(123, 115, 94, 0.08) 0%, rgba(200, 169, 107, 0.08) 100%);
    border-top: 2px solid rgba(255, 214, 10, 0.2);
    border-bottom: 2px solid rgba(255, 214, 10, 0.2);
    position: relative;
    overflow: hidden;
}

.tarot-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tarot-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.tarot-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Form Styling */
.tarot-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.6);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(200, 169, 107, 0.3);
}

.tarot-step {
    margin-bottom: 3rem;
}

.tarot-step-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-family: Georgia, serif;
}

.tarot-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tarot-textarea {
    padding: 1.2rem;
    border: 2px solid rgba(200, 169, 107, 0.4);
    border-radius: 0.8rem;
    background: rgba(242, 237, 228, 0.4);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    min-height: 100px;
    resize: vertical;
    transition: all 0.3s ease;
}

.tarot-textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(242, 237, 228, 0.7);
    box-shadow: 0 0 20px rgba(200, 169, 107, 0.3);
}

.tarot-textarea::placeholder {
    color: rgba(160, 169, 201, 0.5);
}

.char-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
}

.tarot-btn-primary {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #556B2F 0%, #6B8E23 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(85, 107, 47, 0.5);
}

.tarot-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(85, 107, 47, 0.8);
}

.tarot-btn-primary:active {
    transform: translateY(0);
}

.tarot-btn-secondary {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tarot-btn-secondary:hover {
    background: rgba(200, 169, 107, 0.1);
    box-shadow: 0 0 15px rgba(200, 169, 107, 0.4);
}

/* Card Grid */
.tarot-instruction {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.tarot-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tarot-card-wrapper {
    text-align: center;
    cursor: pointer;
}

.tarot-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tarot-card-back {
    width: 160px;
    height: 240px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 
        0 15px 50px rgba(123, 115, 94, 0.4),
        0 0 20px rgba(200, 169, 107, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: card-hover-pulse 3s ease-in-out infinite;
}

.tarot-card-back:hover {
    transform: scale(1.08) rotateY(5deg);
    box-shadow: 
        0 20px 60px rgba(200, 169, 107, 0.5),
        0 0 30px rgba(255, 214, 10, 0.4);
}

@keyframes card-hover-pulse {
    0%, 100% {
        box-shadow: 
            0 15px 50px rgba(123, 115, 94, 0.4),
            0 0 20px rgba(200, 169, 107, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(123, 115, 94, 0.6),
            0 0 30px rgba(200, 169, 107, 0.4);
    }
}

.tarot-card-label {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
}

.tarot-card-meaning {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Results Section */
.tarot-results-container {
    max-width: 900px;
    margin: 0 auto;
}

.tarot-result-title {
    font-size: 2rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-family: Georgia, serif;
}

.tarot-cards-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(242, 237, 228, 0.5);
    border-radius: 1rem;
    border: 1px solid rgba(255, 214, 10, 0.15);
}

.result-card {
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.1) 0%, rgba(123, 115, 94, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 0.8rem;
    border: 2px solid rgba(255, 214, 10, 0.2);
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

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

.result-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-family: Georgia, serif;
}

.result-card-meaning {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.tarot-interpretation-box {
    background: linear-gradient(135deg, rgba(123, 115, 94, 0.15) 0%, rgba(123, 115, 94, 0.15) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--accent-gold);
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(255, 214, 10, 0.2);
}

.interpretation-heading {
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

#interpretation-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.8;
    text-align: center;
}

.tarot-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .tarot-section {
        padding: 3rem 1.5rem;
    }

    .tarot-title {
        font-size: 2rem;
    }

    .tarot-form-wrapper {
        padding: 1.5rem;
    }

    .tarot-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tarot-card-back {
        width: 140px;
        height: 210px;
    }

    .tarot-cards-display {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .tarot-interpretation-box {
        padding: 1.5rem;
    }

    .tarot-cta-buttons {
        flex-direction: column;
    }

    .tarot-btn-primary,
    .tarot-btn-secondary {
        width: 100%;
    }
}

/* Enhanced Meditation Background Visibility */
#meditation-bg-container {
    will-change: transform;
    backface-visibility: hidden;
}

#meditation-bg-container canvas {
    display: block;
}

.site-header,
.site-main,
.marquee-top {
    position: relative;
    z-index: 10;
}

/* Ensure content visibility over meditation background */
.site-main > * {
    position: relative;
    z-index: 10;
}

/* Section backgrounds with semi-transparent dark overlay for readability */
.hero-section,
.services-section,
.readings-section,
.healing-section,
.tarot-section,
.spellwork-section {
    background: rgba(10, 17, 24, 0.75) !important;
    backdrop-filter: blur(2px);
    position: relative;
}

/* Cards and content blocks */
.card,
.flip-card,
.service-card,
.product-card,
.course-card {
    background: rgba(15, 31, 46, 0.85) !important;
    backdrop-filter: blur(3px);
}

/* Enhanced text contrast */
h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

p, span, a {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
