/*!
Theme Name: Magical Alley
Theme URI: https://magicalalley.com
Description: Light luxury spiritual e-commerce theme — a serene sanctuary in warm ivory, champagne gold, and sage
Author: Magical Alley
Author URI: https://magicalalley.com
Version: 2.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
*/

/* ============================================
   DESIGN TOKENS — LUXURY LIGHT PALETTE
   ============================================ */
:root {
  /* Core backgrounds */
  --ivory:          #F8F5EE;
  --warm-cream:     #F4EFE6;
  --sand:           #E7DDCE;
  --light-stone:    #D9D2C5;
  --warm-white:     #FFFDF8;

  /* Greens */
  --soft-sage:      #A9B09B;
  --olive-mist:     #7B806B;

  /* Gold accents */
  --champagne:      #C6A15B;
  --antique-gold:   #B58A45;
  --soft-bronze:    #A97B50;

  /* Text */
  --deep-olive:     #3E4337;
  --charcoal-brown: #4A4035;
  --text-muted:     #8A7E6E;

  /* Functional aliases */
  --primary:        var(--champagne);
  --primary-light:  #D4B675;
  --accent-gold:    var(--champagne);
  --accent-cyan:    var(--soft-sage);
  --accent-pink:    var(--soft-bronze);
  --accent-bronze:  var(--soft-bronze);
  --bg-dark:        var(--ivory);
  --surface:        var(--warm-cream);
  --text-primary:   var(--deep-olive);
  --text-secondary: var(--charcoal-brown);
  --space-navy:     var(--sand);
  --space-purple:   var(--light-stone);
  --color-background-primary: var(--warm-cream);
  --color-background-secondary: var(--ivory);
  --color-border-tertiary: rgba(198, 161, 91, 0.25);

  --glow-soft: 0 4px 20px rgba(198, 161, 91, 0.18);
  --glow-cyan: 0 4px 24px rgba(169, 176, 155, 0.2);

  --border-radius-md: 0.625rem;
  --border-radius-lg: 1rem;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(62, 67, 55, 0.08), 0 1px 4px rgba(62, 67, 55, 0.04);
  --shadow-hover: 0 8px 32px rgba(62, 67, 55, 0.12), 0 2px 8px rgba(198, 161, 91, 0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--ivory);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 248, 225, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(232, 224, 208, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, #FFFDF8 0%, #F8F5EE 45%, #F4EFE6 100%);
  z-index: -2;
  pointer-events: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--deep-olive);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); margin-bottom: 1rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.75rem; }

p { font-size: 1rem; color: var(--charcoal-brown); margin-bottom: 1rem; line-height: 1.75; }

a { color: var(--antique-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--soft-bronze); }

img { max-width: 100%; height: auto; display: block; }
video, iframe { max-width: 100%; height: auto; }
table { width: 100%; border-collapse: collapse; }

/* ============================================
   MAGICAL TEXT EFFECT
   ============================================ */
.magical-text {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 700;
  letter-spacing: 4px;
  font-family: 'Cinzel', serif;
  color: var(--deep-olive);
  position: relative;
  line-height: 1.2;
}

.text-word {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

@keyframes wobble-zoom {
  0%   { transform: scale(1) rotate(0deg) translateY(0); }
  25%  { transform: scale(1.12) rotate(-2deg) translateY(-4px); }
  50%  { transform: scale(1.15) rotate(2deg) translateY(0); }
  75%  { transform: scale(1.12) rotate(-1deg) translateY(-3px); }
  100% { transform: scale(1) rotate(0deg) translateY(0); }
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--olive-mist);
  margin-top: 1.5rem;
  letter-spacing: 4px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.hero {
  position: relative;
  z-index: 1;
  background-attachment: scroll;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border: 1.5px solid var(--champagne);
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(198, 161, 91, 0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.12) 0%, rgba(198, 161, 91, 0.06) 100%);
  color: var(--antique-gold);
  box-shadow: 0 2px 12px rgba(198, 161, 91, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.22) 0%, rgba(198, 161, 91, 0.12) 100%);
  box-shadow: 0 6px 24px rgba(198, 161, 91, 0.25);
  transform: translateY(-2px);
  color: var(--antique-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--olive-mist);
  border-color: var(--soft-sage);
}

.btn-secondary:hover {
  background: rgba(169, 176, 155, 0.1);
  transform: translateY(-2px);
  color: var(--olive-mist);
}

.btn-accent {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  color: var(--warm-white);
  border-color: var(--antique-gold);
}

.btn-accent:hover {
  box-shadow: 0 6px 24px rgba(198, 161, 91, 0.35);
  transform: translateY(-2px);
  color: var(--warm-white);
}

.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(198, 161, 91, 0.2), transparent);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glitter 2s ease-in-out infinite;
}

@keyframes glitter {
  0%   { width: 0; height: 0; opacity: 0.8; }
  100% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.6; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 2px 12px rgba(198, 161, 91, 0.15); }
  50%       { box-shadow: 0 4px 24px rgba(198, 161, 91, 0.3); }
}

/* ============================================
   LAYOUT
   ============================================ */
.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)); }

.section { padding: 5rem 0; }

.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1.25rem;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  border-radius: 9999px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.card:hover {
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(198, 161, 91, 0.18);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand), var(--light-stone));
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-title { font-size: 1.05rem; font-weight: 600; color: var(--deep-olive); }
.product-desc  { font-size: 0.875rem; color: var(--text-muted); flex: 1; }
.product-price { font-size: 1.4rem; font-weight: 700; color: var(--antique-gold); }

.product-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(198, 161, 91, 0.35);
  transform: translateY(-4px);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-top {
  width: 100%;
  background: rgba(248, 245, 238, 0.95);
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
  padding: 0.6rem 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
  box-shadow: 0 1px 8px rgba(62, 67, 55, 0.06);
  will-change: auto;
  transform: translateZ(0);
}

.marquee-bottom {
  width: 100%;
  background: rgba(248, 245, 238, 0.95);
  border-top: 1px solid rgba(198, 161, 91, 0.25);
  padding: 0.6rem 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
}

.marquee-content {
  display: inline-block;
  padding-left: 0;
  animation: marquee 80s linear infinite;
  white-space: nowrap;
  color: var(--antique-gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  will-change: transform;
  backface-visibility: hidden;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

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

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 36px;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.2);
  padding: 0.875rem 0;
  width: 100%;
  box-shadow: 0 1px 12px rgba(62, 67, 55, 0.06);
}

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

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

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.12) 0%, rgba(169, 176, 155, 0.08) 100%);
  border: 1px solid rgba(198, 161, 91, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  position: relative;
  flex-shrink: 0;
}

.logo:hover {
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.2) 0%, rgba(169, 176, 155, 0.15) 100%);
  border-color: rgba(198, 161, 91, 0.5);
  box-shadow: 0 2px 12px rgba(198, 161, 91, 0.2);
}

.logo-img {
  height: 24px; width: 24px;
  object-fit: contain;
  display: block;
  filter: none;
  transition: filter 0.3s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.site-nav a {
  position: relative;
  color: var(--charcoal-brown);
  font-size: 0.82rem;
  transition: color 0.3s ease;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--champagne), var(--antique-gold));
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--antique-gold);
}

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

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

.menu-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--charcoal-brown);
  transition: color 0.3s ease;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-dropdown-toggle:hover { color: var(--antique-gold); }

.dropdown-arrow {
  font-size: 0.55rem;
  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: -12px;
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 0;
  min-width: 210px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 12px 40px rgba(62, 67, 55, 0.12), 0 2px 8px rgba(198, 161, 91, 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.75rem 1.5rem;
  color: var(--charcoal-brown);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  border-left: 2px solid transparent;
  font-weight: 500;
}

.sub-menu a:hover {
  background: rgba(198, 161, 91, 0.08);
  border-left-color: var(--champagne);
  color: var(--antique-gold);
  padding-left: 1.75rem;
}

/* Header Actions */
.account-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  color: var(--charcoal-brown);
}

.account-icon:hover {
  transform: scale(1.15);
  color: var(--antique-gold);
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--charcoal-brown);
  transition: all 0.3s;
}

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

.header-search {
  flex: 1;
  max-width: 320px;
  margin: 0 1rem;
  display: flex;
  align-items: center;
}

.search-form {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  background: rgba(248, 245, 238, 0.8);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 25px;
  padding: 0.45rem 1rem;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  background: rgba(255, 253, 248, 0.95);
  border-color: rgba(198, 161, 91, 0.5);
  box-shadow: 0 2px 12px rgba(198, 161, 91, 0.12);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--charcoal-brown);
  font-size: 0.875rem;
  outline: none;
  padding: 0.4rem 0;
}

.search-input::placeholder { color: var(--text-muted); }

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

.search-btn:hover { color: var(--champagne); transform: scale(1.1); }

.icon-search::before  { content: '🔍'; font-size: inherit; }
.icon-user::before    { content: '👤'; font-size: inherit; }
.icon-cart::before    { content: '🛒'; font-size: inherit; }
.icon-menu::before    { content: '☰'; font-size: inherit; font-weight: bold; }

.header-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  right: 2rem;
}

.cart-count {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--soft-bronze);
  color: var(--warm-white);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal-brown);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 160;
  position: relative;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; position: relative; z-index: 300; }

  .site-nav {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--warm-cream) 60%, var(--sand) 100%);
    z-index: 150;
    transition: left 0.35s ease;
    padding-top: 100px;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(62, 67, 55, 0.12);
  }

  .site-nav.active { left: 0; }

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    display: flex;
    position: static;
    background: transparent;
    padding: 1.25rem;
    border-top: none;
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    display: block;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
  }

  .site-nav a:hover {
    background: rgba(198, 161, 91, 0.08);
    color: var(--antique-gold);
  }

  .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; }
}

/* ============================================
   HERO
   ============================================ */
.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: 820px;
  animation: fadeInUp 1s ease-out;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255, 248, 210, 0.5) 0%, rgba(198, 161, 91, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse-bg 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

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

.hero h1 {
  color: var(--deep-olive);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--antique-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  font-style: italic;
  animation: gentle-sway 5s ease-in-out infinite;
}

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

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

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

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

.glow-text { color: var(--antique-gold); }

/* ============================================
   TAROT HERO (front-page specific)
   ============================================ */
.tarot-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.tarot-hero::before { display: none; }
.tarot-hero::after  { display: none; }
.tarot-particles    { display: none; }
.tarot-particle     { display: none; }

.tarot-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 3rem 2rem;
}

.tarot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tarot-brand-icon {
  font-size: 2rem;
  color: var(--champagne);
  opacity: 0.85;
}

.tarot-brand-text {
  font-family: 'Cormorant Garamond', 'Cinzel', serif;
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  color: var(--antique-gold);
  font-weight: 600;
}

.tarot-tagline {
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--olive-mist);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
}

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

/* ============================================
   CONTACT BAR
   ============================================ */
.contact-bar {
  background: rgba(248, 245, 238, 0.9);
  border-bottom: 1px solid rgba(198, 161, 91, 0.2);
  padding: 0.65rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--olive-mist);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.82rem;
  white-space: nowrap;
}

.contact-link img { width: 1rem; height: 1rem; object-fit: contain; }
.contact-link:hover { color: var(--antique-gold); }

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

/* ============================================
   SOCIAL LINKS BAR
   ============================================ */
.social-links-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
  flex-wrap: nowrap;
  border-top: 1px solid rgba(198, 161, 91, 0.2);
  border-bottom: 1px solid rgba(198, 161, 91, 0.2);
  background: rgba(248, 245, 238, 0.6);
  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(198, 161, 91, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.2);
  transition: all 0.3s ease;
  padding: 0;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-logo-link img { width: 16px; height: 16px; object-fit: contain; display: block; }
.social-logo-link span { font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }

.social-logo-link:hover {
  background: rgba(198, 161, 91, 0.18);
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: 0 2px 10px rgba(198, 161, 91, 0.2);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: rgba(244, 239, 230, 0.98);
  border-top: 1px solid rgba(198, 161, 91, 0.25);
  padding: 0;
  margin-top: 4rem;
  overflow-x: hidden;
}

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

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

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--antique-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

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

.footer-section a:hover { color: var(--antique-gold); }

.footer-divider {
  border-top: 1px solid rgba(198, 161, 91, 0.15);
  padding: 1.75rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.footer-contact a:hover { color: var(--antique-gold); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-links a {
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  color: var(--text-muted);
}

.social-links a:hover {
  transform: scale(1.15);
  color: var(--antique-gold);
}

@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; }
  .footer-contact { gap: 0.5rem; margin-bottom: 1rem; }
  .footer-contact a { font-size: 0.85rem; }
  .social-links-bar { gap: 1rem; padding: 1rem 0.8rem; }
  .social-logo-link { width: 28px; height: 28px; }
  .social-logo-link img { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  .social-links-bar { gap: 0.75rem; padding: 0.875rem 0.5rem; }
  .social-logo-link { width: 26px; height: 26px; border-radius: 4px; }
  .social-logo-link img { width: 13px; height: 13px; }
  .social-logo-link span { font-size: 0.95rem; }
}

/* ============================================
   NAV SHORTCUT (scroll-to-top)
   ============================================ */
.nav-shortcut {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 140;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 253, 248, 0.95);
  color: var(--antique-gold);
  border: 1.5px solid rgba(198, 161, 91, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(198, 161, 91, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.nav-shortcut:hover {
  box-shadow: 0 6px 24px rgba(198, 161, 91, 0.3);
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .nav-shortcut { bottom: 20px; right: 20px; padding: 0.65rem 0.9rem; font-size: 0.82rem; }
  .hero-subtitle { font-size: clamp(1.6rem, 5vw, 2.5rem); letter-spacing: 1px; }
  .magical-text { font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: 2px; }
  .hero-content::before { width: 280px; height: 180px; filter: blur(30px); }
  .site-header { top: 36px; }
}

/* ============================================
   READINGS SERVICES PAGE
   ============================================ */
.readings-services-main {
  background: linear-gradient(160deg, var(--ivory) 0%, var(--warm-cream) 100%);
  color: var(--text-primary);
}

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

.readings-hero {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 253, 248, 0.7);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(198, 161, 91, 0.2);
  box-shadow: var(--shadow-card);
}

.readings-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-olive);
}

.readings-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

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

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

.card-flip-content {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  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: var(--border-radius-lg);
  padding: 2rem;
  box-sizing: border-box;
  border: 1px solid rgba(198, 161, 91, 0.22);
  backdrop-filter: blur(12px);
}

.card-flip-front {
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-card);
}

.card-flip-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 248, 220, 0.5), transparent 65%);
  pointer-events: none;
  border-radius: var(--border-radius-lg);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

.card-flip-front .reading-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(198, 161, 91, 0.3));
  animation: float 3.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.card-flip-front h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--deep-olive);
  position: relative;
  z-index: 2;
}

.card-flip-front p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.card-flip-front .price {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--antique-gold);
  background: rgba(198, 161, 91, 0.1);
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(198, 161, 91, 0.3);
  position: relative;
  z-index: 2;
}

/* Card Back */
.card-flip-back {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(244, 239, 230, 0.95));
  border: 1.5px solid rgba(198, 161, 91, 0.3);
  transform: rotateY(180deg);
  box-shadow: var(--shadow-hover);
  animation: none;
}

.card-flip-back::before { content: none; }
.card-flip-back::after  { content: none; }

.card-flip-back h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--deep-olive);
}

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

.benefits-list span {
  font-size: 0.82rem;
  color: var(--olive-mist);
  background: rgba(169, 176, 155, 0.12);
  padding: 0.5rem;
  border-radius: 6px;
  border-left: 2px solid var(--soft-sage);
}

.card-flip-back .duration {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.card-flip-back .use-case {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.flip-book-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  color: var(--warm-white);
  padding: 0.75rem 2.25rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

.flip-book-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(198, 161, 91, 0.3);
  color: var(--warm-white);
}

/* Booking Section */
.readings-booking {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-card);
}

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

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

.booking-form-wrapper {
  background: rgba(255, 253, 248, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(198, 161, 91, 0.18);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--deep-olive);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: var(--border-radius-md);
  background: rgba(255, 253, 248, 0.9);
  color: var(--charcoal-brown);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.12);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  color: var(--warm-white);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  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 8px 24px rgba(198, 161, 91, 0.25);
}

/* Info Section */
.readings-info {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

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

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

.step {
  text-align: center;
  background: rgba(255, 253, 248, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(198, 161, 91, 0.18);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.step h4 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--deep-olive); }
.step p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

@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: 360px; }
  .card-flip-front, .card-flip-back { padding: 1.5rem; }
  .reading-icon       { font-size: 3rem !important; }
}

/* ============================================
   HEALING SERVICES PAGE
   ============================================ */
.healing-services-main {
  background: linear-gradient(160deg, var(--ivory) 0%, var(--warm-cream) 100%);
  color: var(--text-primary);
}

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

.healing-hero {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 253, 248, 0.7);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(198, 161, 91, 0.2);
  box-shadow: var(--shadow-card);
}

.healing-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-olive);
}

.healing-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.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 */ }

.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: var(--border-radius-lg);
  border: 1px solid rgba(198, 161, 91, 0.22);
  backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  min-height: 420px;
  transition: all 0.3s ease;
}

.healing-grid .card-flip-front {
  display: flex !important;
  background: rgba(255, 253, 248, 0.9) !important;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.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: var(--shadow-hover);
  border-color: rgba(198, 161, 91, 0.38);
}

.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(ellipse at 30% 20%, rgba(255, 248, 220, 0.45), transparent 65%);
  pointer-events: none;
  animation: magical-glow 5s ease-in-out infinite;
}

@keyframes magical-glow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

.healing-grid .card-flip-front .healing-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(198, 161, 91, 0.25));
  animation: floating 3.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

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

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

.healing-grid .card-flip-front p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.healing-grid .card-flip-front .price {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--antique-gold);
  background: rgba(198, 161, 91, 0.1);
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(198, 161, 91, 0.28);
}

.healing-grid .card-flip-back {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(244, 239, 230, 0.95)) !important;
  border: 1.5px solid rgba(198, 161, 91, 0.3) !important;
  transform: none;
  position: relative;
  overflow: hidden;
  animation: none !important;
}

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

.healing-grid .card-flip-back h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--deep-olive);
}

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

.healing-grid .benefits-list span {
  font-size: 0.82rem;
  color: var(--olive-mist);
  background: rgba(169, 176, 155, 0.12);
  padding: 0.45rem;
  border-radius: 6px;
  border-left: 2px solid var(--soft-sage);
}

.healing-grid .card-flip-back .duration {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.4rem 0;
}

.healing-grid .card-flip-back .use-case {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.45;
}

.healing-grid .flip-book-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  color: var(--warm-white);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  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 6px 20px rgba(198, 161, 91, 0.3);
  color: var(--warm-white);
}

.healing-booking {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-card);
}

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

.healing-info {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

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

.healing-calendar {
  background: rgba(248, 245, 238, 0.6);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  border: 1px solid rgba(198, 161, 91, 0.15);
}

.healing-calendar p {
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 0;
}

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

@media (max-width: 768px) {
  .healing-container { padding: 2rem 1rem; }
  .healing-hero { padding: 2rem 1rem; }
  .healing-hero h1 { font-size: 1.8rem; }
  .healing-hero p  { font-size: 0.95rem; }

  .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;
    perspective: none !important;
    background: transparent !important;
  }

  .healing-grid .card-flip-content {
    position: static !important;
    height: auto !important;
    transition: none !important;
    transform: 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;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem !important;
    box-sizing: border-box;
    background: rgba(255, 253, 248, 0.92) !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; text-align: center; }

  .healing-grid .card-flip-front h3 {
    font-size: 1.1rem;
    text-align: center;
    color: var(--deep-olive);
  }

  .healing-grid .card-flip-front p {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

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

  .healing-grid .card-flip-back {
    position: static !important;
    display: flex !important;
    background: rgba(244, 239, 230, 0.9) !important;
    border: 1px solid rgba(198, 161, 91, 0.25) !important;
    border-top: 2px solid rgba(198, 161, 91, 0.4) !important;
    margin-top: 0 !important;
    text-align: left;
  }

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

  .healing-grid .benefits-list {
    flex-direction: column;
    gap: 0.4rem;
  }

  .healing-grid .benefits-list span { font-size: 0.82rem; color: var(--olive-mist); }
  .healing-grid .card-flip-back .duration  { font-size: 0.8rem; text-align: center; }
  .healing-grid .card-flip-back .use-case  { font-size: 0.8rem; 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;
    border-radius: var(--border-radius-md);
    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.78rem; }
  .healing-grid .flip-book-btn { padding: 0.7rem 0.8rem !important; font-size: 0.8rem !important; }

  .healing-container { padding: 1.5rem 0.8rem; }
  .healing-hero { padding: 1.5rem 0.8rem; }
  .healing-hero h1 { font-size: 1.5rem; }
  .healing-hero p  { font-size: 0.875rem; }
}

/* ============================================
   SERVICE CARD CART & BUY BUTTONS
   ============================================ */
.service-card-actions {
  display: flex;
  gap: 0.875rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.btn-add-cart,
.btn-buy-now {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
}

.btn-add-cart {
  background: rgba(169, 176, 155, 0.15);
  border: 1px solid var(--soft-sage);
  color: var(--olive-mist);
}

.btn-add-cart:hover {
  background: rgba(169, 176, 155, 0.25);
  color: var(--deep-olive);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(169, 176, 155, 0.2);
}

.btn-buy-now {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  color: var(--warm-white);
  border: none;
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 161, 91, 0.28);
  color: var(--warm-white);
}

/* Notification Toast */
.notification {
  position: fixed;
  top: 80px; right: 20px;
  padding: 1rem 1.5rem;
  background: rgba(255, 253, 248, 0.97);
  border: 1.5px solid rgba(198, 161, 91, 0.4);
  border-radius: var(--border-radius-md);
  color: var(--antique-gold);
  z-index: 1000;
  animation: slideInNotification 0.3s ease;
  box-shadow: var(--shadow-hover);
  max-width: 400px;
  word-wrap: break-word;
}

.notification-success { border-color: var(--soft-sage); color: var(--olive-mist); }
.notification-error   { border-color: #c0392b; color: #c0392b; }
.notification-warning { border-color: var(--champagne); }

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

/* Cart Notification Toast */
.cart-notification {
  position: fixed;
  top: 100px; right: 20px;
  padding: 1rem 1.5rem;
  background: rgba(255, 253, 248, 0.97);
  border: 1.5px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--border-radius-md);
  color: var(--antique-gold);
  z-index: 1001;
  max-width: 350px;
  word-wrap: break-word;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.cart-notification.show { opacity: 1; transform: translateX(0); }
.cart-notification.notification-success { border-color: var(--soft-sage); color: var(--olive-mist); }
.cart-notification.notification-error   { border-color: #c0392b; color: #c0392b; }
.cart-notification.notification-warning { border-color: var(--champagne); }

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

/* ============================================
   BOOKING CALENDAR
   ============================================ */
.booking-calendar-wrapper {
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin: 2rem 0;
  box-shadow: var(--shadow-card);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: var(--border-radius-md);
  background: rgba(255, 253, 248, 0.9);
  color: var(--charcoal-brown);
  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(--champagne);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.1);
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce-result-count,
.woocommerce-catalog-ordering { color: var(--text-muted); }

/* ============================================
   RESPONSIVE BASE
   ============================================ */
*, *:before, *:after { box-sizing: inherit; }

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

input, select, textarea {
  font-size: 16px; /* Prevents iOS zoom */
  font-family: inherit;
  width: 100%;
}

.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)); }

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

  .site-header { top: 36px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes magical-shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position:  1000px 0; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(198, 161, 91, 0.15); }
  50%       { box-shadow: 0 4px 20px rgba(198, 161, 91, 0.28); }
}

@keyframes border-glow {
  0%, 100% {
    border-color: rgba(198, 161, 91, 0.2);
    box-shadow: 0 2px 8px rgba(62, 67, 55, 0.05);
  }
  50% {
    border-color: rgba(198, 161, 91, 0.38);
    box-shadow: 0 4px 16px rgba(198, 161, 91, 0.15);
  }
}

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

@keyframes gentle-sway {
  0%, 100% { transform: rotateZ(0deg) translateY(0px) scale(1); }
  25%       { transform: rotateZ(1.5deg) translateY(-6px) scale(1.01); }
  50%       { transform: rotateZ(0deg) translateY(-8px) scale(1.02); }
  75%       { transform: rotateZ(-1.5deg) translateY(-6px) scale(1.01); }
}

@keyframes shimmer-line {
  0%   { left: -100%; opacity: 0; }
  50%  { opacity: 0.5; }
  100% { left: 100%; opacity: 0; }
}

@keyframes particle-glow {
  0%, 100% { box-shadow: 0 0 0px rgba(198, 161, 91, 0.3); }
  50%       { box-shadow: 0 0 10px rgba(198, 161, 91, 0.5), 0 0 20px rgba(198, 161, 91, 0.2); }
}

@keyframes star-burst {
  0%   { opacity: 0; transform: scale(0) rotate(0deg); }
  50%  { opacity: 0.6; }
  100% { opacity: 0; transform: scale(1.3) rotate(180deg); }
}

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

/* Apply animations to cards — light touches */
.service-card,
.product-card,
.reading-card {
  animation: border-glow 4s ease-in-out infinite;
  position: relative;
  transition: all 0.35s ease;
}

.card-flip-wrapper:not(.healing-grid .card-flip-wrapper) {
  animation: border-glow 4s ease-in-out infinite;
  position: relative;
  transition: all 0.35s ease;
}

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

.service-icon,
.reading-icon,
.product-card div > div:first-child {
  animation: float-up 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(198, 161, 91, 0.25));
}

.service-card h3,
.product-card h3,
.reading-card h3 {
  animation: gentle-sway 4.5s ease-in-out infinite;
  position: relative;
}

.price,
.product-card .price {
  animation: particle-glow 3s ease-in-out infinite;
  position: relative;
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
}

.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 3.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.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 2s ease-in-out infinite;
  transform: translateY(-2px);
}

/* Shimmer sweep on buttons */
.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(255, 255, 255, 0.18), transparent);
  animation: shimmer-line 2.5s infinite;
  pointer-events: none;
}

/* Card stars — subtle */
.service-card::before,
.product-card::before,
.reading-card::before {
  content: '✦';
  position: absolute;
  font-size: 0.9rem;
  color: rgba(198, 161, 91, 0.4);
  animation: star-burst 4s ease-in-out infinite;
  top: -14px; right: 16px;
  pointer-events: none;
}

.service-card::after,
.product-card::after,
.reading-card::after {
  content: '✦';
  position: absolute;
  font-size: 0.75rem;
  color: rgba(198, 161, 91, 0.3);
  animation: star-burst 5s ease-in-out infinite;
  bottom: -12px; left: 14px;
  pointer-events: none;
}

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

.duration, .benefits-list span, .use-case {
  animation: gentle-sway 6s ease-in-out infinite;
  position: relative;
}

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

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

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

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

  .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: 380px;
    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.4rem; }
  .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; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .healing-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .healing-grid .card-flip-front, .healing-grid .card-flip-back { min-height: 380px; padding: 1.5rem; }
  .healing-hero h1 { font-size: 2.5rem; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .magical-text, .hero-subtitle, .float, .float-delayed,
  .service-card, .product-card, .reading-card, .card-flip-wrapper,
  .card-flip-content, .healing-icon, .reading-icon, .service-icon,
  .service-card h3, .product-card h3, .reading-card h3,
  .price, .btn-add-cart, .btn-buy-now, .explore-btn, .book-btn,
  .flip-book-btn, .btn-primary, button[type="submit"], .tarot-hero *,
  .healing-grid .card-flip-front .healing-icon,
  .duration, .benefits-list span, .use-case,
  .card-flip-front::before, .healing-grid .card-flip-front::before {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   TAROT SECTION (front-page interactive)
   ============================================ */
.tarot-section {
  padding: 5rem 2rem;
  background: rgba(255, 253, 248, 0.6);
  border-top: 1px solid rgba(198, 161, 91, 0.18);
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  position: relative;
  overflow: hidden;
}

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

.tarot-title {
  font-size: 2.5rem;
  color: var(--deep-olive);
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}

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

.tarot-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 253, 248, 0.9);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(198, 161, 91, 0.22);
  box-shadow: var(--shadow-card);
}

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

.tarot-step-title {
  font-size: 1.4rem;
  color: var(--deep-olive);
  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: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: var(--border-radius-md);
  background: rgba(255, 253, 248, 0.95);
  color: var(--charcoal-brown);
  font-size: 1rem;
  font-family: inherit;
  min-height: 100px;
  resize: vertical;
  transition: all 0.3s ease;
}

.tarot-textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.1);
}

.tarot-textarea::placeholder { color: var(--text-muted); }

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

.tarot-btn-primary {
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--antique-gold) 100%);
  color: var(--warm-white);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(198, 161, 91, 0.2);
}

.tarot-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 161, 91, 0.3);
}

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

.tarot-btn-secondary {
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--olive-mist);
  border: 1.5px solid var(--soft-sage);
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tarot-btn-secondary:hover {
  background: rgba(169, 176, 155, 0.1);
  box-shadow: 0 2px 10px rgba(169, 176, 155, 0.2);
}

.tarot-instruction { text-align: center; color: var(--text-muted); 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, rgba(198, 161, 91, 0.15) 0%, rgba(169, 176, 155, 0.15) 100%);
  border: 2px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: card-hover-pulse 4s ease-in-out infinite;
}

.tarot-card-back:hover {
  transform: scale(1.06) rotateY(4deg);
  box-shadow: var(--shadow-hover);
  border-color: rgba(198, 161, 91, 0.55);
}

@keyframes card-hover-pulse {
  0%, 100% { box-shadow: var(--shadow-card); border-color: rgba(198, 161, 91, 0.3); }
  50%       { box-shadow: var(--shadow-hover); border-color: rgba(198, 161, 91, 0.45); }
}

.tarot-card-label  { font-size: 1.1rem; color: var(--antique-gold); font-weight: 700; letter-spacing: 2px; }
.tarot-card-meaning { font-size: 0.875rem; color: var(--text-muted); font-style: italic; }

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

.tarot-result-title {
  font-size: 2rem;
  color: var(--deep-olive);
  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(255, 253, 248, 0.8);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(198, 161, 91, 0.18);
  box-shadow: var(--shadow-card);
}

.result-card {
  background: rgba(255, 253, 248, 0.9);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(198, 161, 91, 0.2);
  text-align: center;
  animation: fadeInUp 0.6s ease;
  box-shadow: var(--shadow-card);
}

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

.result-card-meaning {
  font-size: 0.9rem;
  color: var(--charcoal-brown);
  line-height: 1.65;
  font-style: italic;
}

.tarot-interpretation-box {
  background: rgba(255, 253, 248, 0.92);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1.5px solid rgba(198, 161, 91, 0.28);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-hover);
}

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

#interpretation-text {
  font-size: 1rem;
  color: var(--charcoal-brown);
  line-height: 1.85;
  text-align: center;
}

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

@media (max-width: 768px) {
  .tarot-section { padding: 3rem 1.25rem; }
  .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.25rem; }
  .tarot-interpretation-box { padding: 1.25rem; }
  .tarot-cta-buttons { flex-direction: column; }
  .tarot-btn-primary, .tarot-btn-secondary { width: 100%; }
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.ornamental-corners { position: relative; }

.ornamental-corners::before,
.ornamental-corners::after {
  content: '';
  position: absolute;
  width: 70px; height: 70px;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,0 Q10,0 10,10 L10,30 Q10,40 20,40 L40,40 Q50,40 50,50' stroke='%23C6A15B' fill='none' stroke-width='1.5'/%3E%3Cpath d='M5,5 L15,15 M5,15 L15,5' stroke='%23C6A15B' stroke-width='1'/%3E%3Ccircle cx='25' cy='25' r='3' fill='none' stroke='%23C6A15B' stroke-width='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.ornamental-corners::before { top: 0; left: 0; }
.ornamental-corners::after  { bottom: 0; right: 0; transform: rotate(180deg); }

.vintage-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 3rem auto;
  max-width: 500px;
}

.vintage-divider::before,
.vintage-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 161, 91, 0.5), transparent);
}

.vintage-divider-icon { font-size: 1.25rem; color: var(--champagne); opacity: 0.75; }

.lotus-ornament { text-align: center; margin: 2rem auto; }

.lotus-ornament svg {
  width: 55px; height: 55px;
  fill: var(--champagne);
  opacity: 0.6;
  filter: drop-shadow(0 2px 6px rgba(198, 161, 91, 0.25));
}

.vintage-frame {
  position: relative;
  padding: 3rem 2rem;
  border: 1.5px solid rgba(198, 161, 91, 0.25);
  border-radius: var(--border-radius-md);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: var(--shadow-card);
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(198, 161, 91, 0.15);
  pointer-events: none;
  border-radius: 4px;
}

/* ============================================
   GENERAL GRID / SECTION UTILITIES
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero { min-height: 75vh; padding: 3rem 1.25rem; }
  .grid-3, .product-grid { grid-template-columns: 1fr; }
}
