/* ==========================================
   AI VEŠTIAREŇ / ASTRO WEB - LUXURY GOLD THEME
   Matching Reference Design 1:1
   ========================================== */

:root {
  --bg-dark: #08070b;
  --bg-card: rgba(16, 13, 24, 0.85);
  --bg-card-hover: rgba(26, 21, 38, 0.95);
  --gold-primary: #d4af37;
  --gold-light: #f7e8a4;
  --gold-dark: #996515;
  --gold-gradient: linear-gradient(135deg, #fcefa6 0%, #d4af37 50%, #996515 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f7e8a4 50%, #d4af37 100%);
  --gold-card-bg: linear-gradient(180deg, #fcefa6 0%, #e6ca65 50%, #c49a45 100%);
  --gold-card-hover: linear-gradient(180deg, #ffffff 0%, #fcefa6 50%, #d4af37 100%);
  --gold-border: 1px solid rgba(212, 175, 55, 0.35);
  --gold-border-glow: 1px solid rgba(247, 232, 164, 0.7);
  --text-main: #f5efdf;
  --text-gold: #e0c987;
  --text-muted: #a399b2;
  --font-heading: 'Cinzel', 'Marcellus', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

section, [id] {
  scroll-margin-top: 105px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Background Starfield & Nebula Glow */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 20%, rgba(30, 20, 50, 0.5) 0%, rgba(8, 7, 11, 1) 80%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 800 800"><g fill="%23d4af37" opacity="0.35"><circle cx="100" cy="150" r="1.5"/><circle cx="350" cy="80" r="1"/><circle cx="650" cy="220" r="2"/><circle cx="200" cy="500" r="1"/><circle cx="550" cy="680" r="1.8"/><circle cx="720" cy="450" r="1.2"/></g></svg>');
  z-index: -2;
  pointer-events: none;
}

.nebula-bg {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(138, 43, 226, 0.05) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Shared twinkling star elements — injected by stars.js */
#stars-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  animation: starTwinkle var(--star-dur, 4s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}
@keyframes starTwinkle {
  0%,100% { opacity: 0.12; transform: scale(1); }
  50%      { opacity: 0.75; transform: scale(1.5); }
}


/* LINKS & UTILITIES */
a {
  color: var(--text-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #fff;
}

.hidden {
  display: none !important;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 7, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links a:hover {
  color: var(--gold-light);
}

.btn-gold-nav {
  padding: 8px 20px;
  background: var(--gold-gradient);
  color: #08070b;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.btn-gold-nav:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  color: #000;
}

/* HERO SECTION (1:1 Replica matching 13-inch Laptop Screenshot) */
.hero-section {
  padding: 110px 40px 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 98vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  justify-items: center;
  width: 100%;
}
.hero-left {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Zodiac Wheel Ring Centered directly behind the Title */
.zodiac-wheel-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%);
  width: 580px;
  height: 580px;
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}
.zodiac-wheel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
}
.rotating {
  animation: spinWheel 140s linear infinite;
}
@keyframes spinWheel {
  100% { transform: rotate(360deg); }
}

.hero-title-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff9d9 0%, #f7e8a4 45%, #d4af37 80%, #996515 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.9));
}
.hero-title span {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: #d4c7b8;
  line-height: 1.6;
  margin: 0 auto 30px auto;
  max-width: 420px;
  text-align: center;
  font-weight: 400;
}

.btn-gold-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 38px;
  background: linear-gradient(180deg, #f8e9a0 0%, #e2c255 40%, #c49a10 100%);
  color: #1a0f00;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,230,100,0.4);
  box-shadow: 0 4px 18px rgba(180, 140, 10, 0.4), inset 0 1px 0 rgba(255,255,220,0.6);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-gold-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
}
.btn-gold-hero:hover::before {
  left: 160%;
}
.btn-gold-hero:hover {
  background: linear-gradient(180deg, #fffbe0 0%, #f5d050 40%, #d4a800 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.7), inset 0 1px 0 rgba(255,255,220,0.8);
  color: #0d0800;
}
.btn-card-icon {
  display: flex;
  align-items: center;
  line-height: 1;
}
.btn-card-icon svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* HERO RIGHT: MASSIVE TAROT CARD & FANNED DECK (Matching 13" Screenshot 1:1) */
.hero-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-stack-hero-container {
  position: relative;
  width: 480px;
  height: 680px;
  flex-shrink: 0;
}

.deck-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: url('../images/tarot_card_back.webp') center/cover no-repeat, #0d0b14;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 40px rgba(0,0,0,0.95);
  transform-origin: left bottom;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.deck-card-2 { transform: translate(25px, 0px) rotate(3.5deg); z-index: 8; opacity: 0.95; }
.deck-card-3 { transform: translate(50px, 0px) rotate(7deg); z-index: 6; opacity: 0.9; }
.deck-card-4 { transform: translate(75px, 0px) rotate(10.5deg); z-index: 4; opacity: 0.8; }
.deck-card-5 { transform: translate(100px, 0px) rotate(14deg); z-index: 2; opacity: 0.65; }

.main-hero-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 2.5px solid #d4af37;
  background: #0d0b14;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.35), 0 25px 60px rgba(0, 0, 0, 0.95);
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.main-hero-card:hover {
  transform: scale(1.02) rotate(0.5deg);
}
.hero-teller-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-inner-gold-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1.5px solid rgba(212, 175, 55, 0.7);
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.2);
}


/* ZODIAC SECTION (Matching Image 1 1:1) */
.zodiac-section {
  max-width: 1200px;
  margin: 80px auto 60px auto;
  padding: 0 24px;
  text-align: center;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f7e8a4 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ZODIAC SLIDER */
.zodiac-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.zodiac-slider-arrow {
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #d4af37;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;   /* needed for z-index to stack above card glow */
  z-index: 3;
}
.zodiac-slider-arrow:hover {
  background: rgba(212, 175, 55, 0.35);
  border-color: #d4af37;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}
.zodiac-slider-arrow.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.zodiac-grid-container {
  flex: 1;
  overflow: hidden;
  /* Extend container leftward under the arrow so the first card's glow isn't clipped.
     margin-left:-56px pushes left boundary under the 42px arrow + 14px gap.
     padding-left:70px (56+14) keeps the inner grid at the same visual position. */
  margin: 0 14px 0 -56px;
  padding: 42px 0 42px 70px;
}
.zodiac-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.zodiac-grid:active {
  cursor: grabbing;
}
.zodiac-card {
  background: linear-gradient(180deg, #f7e7b6 0%, #e6ce8e 50%, #cca554 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  min-height: 175px;
  width: 148px;
  min-width: 148px;
  padding: 24px 12px 18px 12px;
  cursor: pointer;
  transition: filter 0.25s ease, box-shadow 0.25s ease, outline 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
.zodiac-card:hover {
  filter: brightness(1.18);
  box-shadow: 0 0 25px rgba(247, 232, 164, 0.6), 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 #ffffff;
}
.zodiac-card.selected {
  outline: 3px solid #ffffff;
  box-shadow: 0 0 35px 4px rgba(255, 245, 200, 0.8), 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 #ffffff;
  filter: brightness(1.22);
}
.zodiac-svg-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zodiac-svg-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
.zodiac-svg-icon svg {
  width: 100%;
  height: 100%;
  fill: #000000;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}
.zodiac-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
}



/* ONBOARDING & CARD SELECTION SECTION */
.quiz-section {
  max-width: 1100px;
  margin: 60px auto 100px auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}

/* PHASE 1: SELECT CARDS FAN (1:1 with reference image) */
.select-cards-stage {
  transition: opacity 0.45s ease, transform 0.45s ease;
  width: 100%;
}
.select-cards-stage.fade-out {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  pointer-events: none;
}

.tarot-select-fan {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  height: 380px;
  margin: 35px 0 25px 0;
  position: relative;
  z-index: 2;
}

.tarot-big-card {
  width: 165px;
  height: 275px;
  margin: 0 -22px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  perspective: 1200px;
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.6s ease, filter 0.6s ease, z-index 0s;
}

/* Sheen highlight layer on card hover */
.tarot-big-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(125deg, transparent 30%, rgba(247, 232, 164, 0.18) 50%, transparent 70%);
  background-size: 200% 200%;
  background-position: -100% -100%;
  pointer-events: none;
  z-index: 15;
  transition: background-position 1.2s ease;
  border-radius: 16px;
}

.tarot-big-card:hover::after {
  background-position: 100% 100%;
}

.tarot-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1.35s cubic-bezier(0.34, 1.25, 0.64, 1), border-color 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
  border-radius: 16px;
  border: 2px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95), inset 0 0 15px rgba(212, 175, 55, 0.3);
}

.tarot-big-card.flipped .tarot-card-inner {
  transform: rotateY(180deg);
  border-color: #f7e8a4;
  box-shadow: 0 0 45px rgba(247, 232, 164, 0.85), 0 25px 60px rgba(0, 0, 0, 0.95);
}

.tarot-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  background: #0d0b14;
}

.tarot-card-face.face-back {
  transform: rotateY(0deg);
}

.tarot-card-face.face-front {
  transform: rotateY(180deg);
  border: 1px solid rgba(247, 232, 164, 0.7);
}

.tarot-card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-front-name {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 7, 11, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.9);
  color: #f7e8a4;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 10px rgba(212, 175, 55, 0.3);
  z-index: 10;
}

.card-inner-gold-frame {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.15);
}

/* 3D Arc Positioning — each stores its base transform in a CSS var for hover use */
.card-pos-1 { --card-base-transform: rotateY(26deg) rotateZ(-9deg) translateY(18px) translateZ(-80px);  transform: var(--card-base-transform); z-index: 1; opacity: 0.72; }
.card-pos-2 { --card-base-transform: rotateY(17deg) rotateZ(-5deg) translateY(10px) translateZ(-45px);   transform: var(--card-base-transform); z-index: 2; opacity: 0.84; }
.card-pos-3 { --card-base-transform: rotateY(8deg) rotateZ(-2deg) translateY(4px) translateZ(-15px);     transform: var(--card-base-transform); z-index: 3; opacity: 0.93; }
.card-pos-4 { --card-base-transform: rotateY(0deg) rotateZ(0deg) translateY(-12px) translateZ(60px) scale(1.06); transform: var(--card-base-transform); z-index: 6; opacity: 1; border-color: #f7e8a4; }
.card-pos-5 { --card-base-transform: rotateY(-8deg) rotateZ(2deg) translateY(4px) translateZ(-15px);     transform: var(--card-base-transform); z-index: 3; opacity: 0.93; }
.card-pos-6 { --card-base-transform: rotateY(-17deg) rotateZ(5deg) translateY(10px) translateZ(-45px);   transform: var(--card-base-transform); z-index: 2; opacity: 0.84; }
.card-pos-7 { --card-base-transform: rotateY(-26deg) rotateZ(9deg) translateY(18px) translateZ(-80px);  transform: var(--card-base-transform); z-index: 1; opacity: 0.72; }

/* Smooth hover physics — gentle lift only, no z-index change */
.tarot-big-card:hover {
  transform: var(--card-base-transform, translateY(0)) translateY(-20px) !important;
  opacity: 1 !important;
  filter: brightness(1.1);
}
.tarot-big-card:hover .tarot-card-inner {
  border-color: rgba(247, 232, 164, 0.9);
  box-shadow: 0 0 30px rgba(247, 232, 164, 0.6), 0 20px 45px rgba(0, 0, 0, 0.95);
}

/* Card Selection Flip Animation */
.tarot-big-card.card-selected-anim {
  transform: translateY(-55px) translateZ(160px) scale(1.25) !important;
  z-index: 50 !important;
  opacity: 1 !important;
}
.tarot-big-card.card-selected-anim .tarot-card-inner {
  border-color: #ffffff;
  box-shadow: 0 0 60px rgba(247, 232, 164, 0.95), 0 0 100px rgba(212, 175, 55, 0.6), 0 30px 60px rgba(0, 0, 0, 1);
}

.select-card-btn-container {
  margin-top: 15px;
}

/* PHASE 2: QUIZ WIZARD CONTAINER */
.quiz-wizard-container {
  max-width: 900px;
  margin: 0 auto;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.quiz-wizard-container.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.quiz-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--text-gold);
  margin-bottom: 24px;
}

/* QUIZ WIZARD CARD */
.quiz-wizard-card {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 24px;
  padding: 48px 36px 36px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
  position: relative;
  backdrop-filter: blur(16px);
}

.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 16%;
  background: var(--gold-gradient);
  border-radius: 10px;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}
.progress-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Micro-feedback popup box */
.micro-feedback-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: slideStep 0.4s ease;
}
@keyframes slideStep {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}
.input-gold {
  width: 100%;
  padding: 16px 20px;
  background: rgba(8, 7, 11, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.input-gold:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* CUSTOM GOLD CHECKBOX */
.gdpr-check-wrapper {
  margin: 14px 0;
}
.checkbox-gold-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.checkbox-gold-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-gold-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 5px;
  background: rgba(8, 7, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 1px;
  position: relative;
}
.checkbox-gold-box::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: 2px solid #d4af37;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s ease;
  position: absolute;
  top: 2px;
  left: 6px;
}
.checkbox-gold-input:checked ~ .checkbox-gold-box {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.checkbox-gold-input:checked ~ .checkbox-gold-box::after {
  transform: rotate(45deg) scale(1);
}
.checkbox-gold-label:hover .checkbox-gold-box {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}
.checkbox-gold-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-gold-text a {
  color: var(--gold-light);
  text-decoration: underline;
}


/* CUSTOM DATE TRIGGER FIELD */
.custom-date-trigger {
  width: 100%;
  padding: 16px 20px;
  background: rgba(8, 7, 11, 0.85);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.custom-date-trigger:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  background: rgba(18, 14, 25, 0.9);
}
.date-display-placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
}
.gold-cal-icon {
  color: var(--gold-light);
  font-size: 1.2rem;
}

/* CUSTOM BIRTHDAY PICKER MODAL (Dark theme matching reference screenshot 1:1) */
.date-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.date-modal-overlay.hidden {
  display: none;
  opacity: 0;
}
.date-modal-card {
  background: #14121a;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  width: 100%;
  max-width: 360px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.15);
  text-align: center;
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.date-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}
.date-modal-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.date-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.date-modal-close:hover {
  color: #ffffff;
}

/* Column Control Buttons & Labels */
.wheel-picker-controls-top {
  display: flex;
  justify-content: space-around;
  margin-bottom: 8px;
}
.col-control-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.col-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-gold);
  text-transform: uppercase;
}
.wheel-arrow-btn {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  border-radius: 6px;
  width: 44px;
  height: 28px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel-arrow-btn:hover {
  background: rgba(212, 175, 55, 0.35);
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  color: #ffffff;
}

.wheel-picker-controls-bottom {
  display: flex;
  justify-content: space-around;
  margin: 8px 0 20px 0;
}

/* 3-Column Wheel Picker (Matching screenshot) */
.wheel-picker-wrapper {
  position: relative;
  height: 180px;
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wheel-highlight-bar {
  position: absolute;
  top: 68px;
  left: 6px;
  right: 6px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border-top: 1.5px solid rgba(212, 175, 55, 0.6);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.6);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.wheel-column {
  flex: 1;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
}
.wheel-column::-webkit-scrollbar {
  display: none;
}

.wheel-track {
  padding: 68px 0;
}

.wheel-item {
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.3);
  scroll-snap-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
}
.wheel-item.selected {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.btn-date-submit {
  width: 100%;
  padding: 14px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}
.btn-date-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.zodiac-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 20px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 24px;
}

/* Option Grids */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.option-btn {
  padding: 16px 20px;
  background: rgba(8, 7, 11, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.option-btn:hover, .option-btn.selected {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-step-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.btn-gold-step {
  padding: 14px 32px;
  background: var(--gold-gradient);
  color: #08070b;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}
.btn-gold-step:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.btn-secondary-step {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary-step:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline-fallback {
  padding: 14px 20px;
  background: transparent;
  color: var(--text-gold);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.btn-outline-fallback:hover {
  border-color: var(--gold-light);
  color: #fff;
  background: rgba(212, 175, 55, 0.1);
}

/* FREE TEASER CONTAINER */
.teaser-container {
  padding: 10px 0 20px 0;
}
.teaser-header {
  margin-bottom: 24px;
}
.teaser-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.teaser-text-box {
  background: rgba(12, 10, 18, 0.95);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 30px;
}
.teaser-personal-intro {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
}
.gold-quote {
  font-size: 1.6rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 4px;
}
.teaser-personal-intro p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-gold);
  margin: 0;
  font-style: italic;
}

/* Feature Breakdown List */
.teaser-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.teaser-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.teaser-feature-item.unlocked {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
}
.teaser-feature-item.locked {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
}
.feature-icon-check {
  color: #d4af37;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-icon-lock {
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.blur-overlay {
  margin-top: 15px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(20, 16, 30, 0.9) 100%);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.teaser-cta-box {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(16, 13, 24, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 30px;
}
.price-tag-big {
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-light);
}
.price-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 10px;
}
.btn-gold-cta {
  width: 100%;
  padding: 18px 24px;
  background: var(--gold-gradient);
  color: #08070b;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}
.btn-gold-cta:hover {
  background: var(--gold-gradient-hover);
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.8);
}
.guarantee-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* WHO AM I SECTION */
.who-am-i-section {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 24px;
}
.who-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
/* Left column: name + bio + quote, centred vertically */
.who-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Right column: photo fills full height */
.who-right {
  display: flex;
  flex-direction: column;
}
.who-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f7e8a4 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.who-text {
  font-size: 0.95rem;
  color: var(--text-gold);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Pani Astral Quote Card */
.astral-quote-card {
  margin-top: 24px;
  padding: 22px 26px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.08);
  position: relative;
  transition: box-shadow 0.4s ease;
}
.astral-quote-card:hover {
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.18);
}

.who-image-box {
  width: 100%;
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* LOWER HERO SECTION */
.lower-hero-section {
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}
.lower-hero-container {
  max-width: 800px;
  margin: 0 auto;
}
.lower-zodiac-wheel {
  width: 220px;
  height: 220px;
  margin: 0 auto 30px auto;
}
.lower-wheel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}
.lower-hero-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f7e8a4 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  letter-spacing: 4px;
}
.lower-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-gold);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px auto;
  opacity: 0.88;
}

/* FAQ SECTION */
.faq-section {
  max-width: 900px;
  margin: 60px auto 100px auto;
  padding: 0 24px;
}
.faq-subtitle {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  margin-top: -8px;
  line-height: 1.6;
}
.faq-item {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-gold);
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
}

/* MODALS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 3, 6, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  background: #0f0d16;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 24px;
  padding: 36px;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 40px rgba(212, 175, 55, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}
.modal-close:hover { color: #fff; }

/* CHECKOUT SPECIFIC COMPLIANT STYLES */
.checkout-header {
  text-align: center;
  margin-bottom: 24px;
}
.checkout-header h2 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.5rem;
}
.checkout-summary-box {
  background: rgba(8, 7, 11, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* MANDATORY UNCHECKED SUB CHECKBOX (EU LAW) */
.subscription-optin-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 14px;
  margin: 14px 0;
}
.sub-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.sub-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-primary);
  margin-top: 2px;
}
.sub-checkbox-text {
  font-size: 0.85rem;
  color: var(--gold-light);
  line-height: 1.4;
}

.sub-breakdown-box {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-gold);
}
.breakdown-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.sub-legal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.3;
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 12px;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.pay-method-btn {
  flex: 1;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
}
.pay-method-btn.active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-light);
  color: #fff;
}

.btn-gold-pay {
  width: 100%;
  padding: 16px;
  background: var(--gold-gradient);
  color: #08070b;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 16px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.btn-gold-pay:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
}

.disclaimer-mini {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* READING MODAL STYLES */
.reading-card {
  max-width: 700px;
}
.reading-header {
  text-align: center;
  margin-bottom: 24px;
}
.reading-symbol {
  font-size: 2.5rem;
}
.reading-header h2 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.8rem;
}
.sub-status-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid #2ecc71;
  border-radius: 20px;
  color: #2ecc71;
  font-size: 0.8rem;
}
.reading-body {
  background: rgba(8, 7, 11, 0.7);
  border: var(--gold-border);
  border-radius: 16px;
  padding: 28px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-gold);
  line-height: 1.8;
  white-space: pre-line;
  margin-bottom: 24px;
}
.mandatory-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* GDPR MODAL */
.gdpr-tab-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.gdpr-tab-btn {
  flex: 1;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
}
.gdpr-tab-btn.active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-light);
  color: #fff;
}
.gdpr-tab-content { display: none; }
.gdpr-tab-content.active { display: block; }
.gdpr-result-msg { margin-top: 14px; font-size: 0.9rem; color: var(--gold-light); }
.btn-danger-step {
  width: 100%;
  padding: 14px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* PREMIUM FOOTER */
.footer {
  background: #040306;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 65px 24px 40px 24px;
}
.footer-container {
  max-width: 1150px;
  margin: 0 auto;
}
.footer-brand-header {
  text-align: center;
  margin-bottom: 45px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.footer-zodiac {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px auto;
  opacity: 0.88;
}
.footer-zodiac-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 1rem;
  color: var(--text-gold);
  font-style: italic;
  opacity: 0.85;
}

/* Footer 4-Column Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
  text-align: left;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col-text {
  font-size: 0.9rem;
  color: var(--text-gold);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-col-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 10px;
}
.footer-nav-list a {
  color: var(--text-gold);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-nav-list a i {
  font-size: 0.7rem;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}
.footer-nav-list a:hover {
  color: #ffffff;
}
.footer-nav-list a:hover i {
  transform: translateX(3px);
}
.footer-social-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  color: #f7e8a4;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-social-pill:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #f7e8a4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.footer-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(247, 232, 164, 0.08);
  border: 1px solid rgba(247, 232, 164, 0.4);
  border-radius: 12px;
  color: #f7e8a4;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Footer Bottom Legal Bar */
.footer-bottom-bar {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.footer-legal-links {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-legal-links a {
  color: var(--text-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal-links a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE STYLES (kontakt.html)
   ───────────────────────────────────────────────────────────────────────────── */
.contact-main-section {
  max-width: 1150px;
  margin: 110px auto 70px auto;
  padding: 0 24px;
}
.contact-hero-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}
.contact-page-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f7e8a4 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.contact-page-subtitle {
  font-size: 1.05rem;
  color: var(--text-gold);
  line-height: 1.7;
  opacity: 0.9;
}

/* 2-Column Contact Grid Layout (matching reference screenshot structure) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* Left Column: Contact Info Card */
.contact-info-card {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon-box.gold-icon {
  background: rgba(247, 232, 164, 0.18);
  border-color: #f7e8a4;
  color: #ffffff;
}
.contact-info-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.contact-info-value:hover {
  color: var(--gold-light);
}
.social-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  color: #f7e8a4;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.social-pill-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #f7e8a4;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Contact Accordion FAQ Container */
.contact-faq-container {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}
.contact-faq-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(8, 7, 11, 0.4);
  transition: border-color 0.3s ease;
}
.contact-faq-item.active {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.05);
}
.contact-faq-question {
  padding: 16px 20px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #f7e8a4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.contact-faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 400;
  margin-left: 12px;
}
.contact-faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 0.88rem;
  color: var(--text-gold);
  line-height: 1.6;
  display: none;
}
.contact-faq-item.active .contact-faq-answer {
  display: block;
}

/* Right Column: Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 110px;
}

/* Form Status Message Box */
.contact-status-box {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-status-box.success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.6);
  color: #2ecc71;
}
.contact-status-box.error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.6);
  color: #e74c3c;
}
.contact-status-box.hidden {
  display: none;
}

/* ==========================================================================
   MOBILE & RESPONSIVE ENGINE OPTIMIZATIONS (No Overflow, 1-Line Buttons, Mobile Nav)
   ========================================================================== */

/* Prevent horizontal overflow scrolling across all devices */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100%;
  position: relative;
}

header, section, footer, main {
  box-sizing: border-box !important;
}

/* Ensure all buttons fit nicely on a single line */
button,
.btn-gold-hero,
.btn-gold-step,
.btn-gold-cta,
.btn-gold-pay-main,
.btn-secondary-step,
.btn-gold-nav,
.option-btn,
.teaser-badge,
.summary-badge-tag {
  white-space: nowrap !important;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-btn {
  display: none;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  background: rgba(212, 175, 55, 0.25);
  color: #fff;
  border-color: var(--gold-light);
}

@media (max-width: 850px) {
  .mobile-menu-btn {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    background: rgba(10, 5, 20, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.98) !important;
    padding: 20px 16px !important;
    gap: 10px !important;
    align-items: stretch !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 14px 16px !important;
    text-align: center !important;
    color: #f7e8a4 !important;
    background: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 1100px) {
  .hero-title { font-size: 3.5rem; }
  .card-stack-hero-container { width: 380px; height: 540px; }
  .zodiac-wheel-wrapper { width: 440px; height: 440px; }
}

@media (max-width: 900px) {
  .hero-section { padding: 90px 16px 50px 16px; min-height: auto; width: 100%; overflow: hidden; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; width: 100%; }
  .hero-left { align-items: center; text-align: center; width: 100%; overflow: visible; min-height: 360px; }
  .hero-subtitle { text-align: center; max-width: 500px; margin-left: auto; margin-right: auto; }
  /* Zodiac ring: smaller size on mobile, centered behind title — stays within hero */
  .zodiac-wheel-wrapper {
    width: 290px;
    height: 290px;
    max-width: 88vw;
    transform: translate(-50%, -50%);
  }
  .hero-title { font-size: 2.8rem; line-height: 1.15; }
  .card-stack-hero-container { width: 280px; height: 400px; margin: 0 auto; max-width: 85vw; }
  .deck-card-2 { transform: translate(12px, 0) rotate(2.5deg); }
  .deck-card-3 { transform: translate(24px, 0) rotate(5deg); }
  .deck-card-4 { transform: translate(36px, 0) rotate(7.5deg); }
  .deck-card-5 { transform: translate(48px, 0) rotate(10deg); }
  .who-container { grid-template-columns: 1fr; gap: 30px; }
  .option-grid { grid-template-columns: 1fr; }
  .zodiac-slider-arrow { width: 34px; height: 34px; min-width: 34px; }
  .tarot-select-fan { height: 310px; width: 100%; max-width: 100vw; overflow: hidden; }
  .tarot-big-card { width: 125px; height: 210px; margin: 0 -18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
}

@media (max-width: 600px) {
  .hero-section { padding: 80px 12px 40px 12px; }
  .hero-title { font-size: 2.1rem; letter-spacing: 0.5px; }
  .hero-subtitle { font-size: 0.92rem; padding: 0 10px; }
  .btn-gold-hero { font-size: 0.9rem; padding: 14px 20px; width: 100%; max-width: 320px; justify-content: center; }
  .card-stack-hero-container { width: 230px; height: 330px; }
  .zodiac-wheel-wrapper {
    width: 250px;
    height: 250px;
    max-width: 85vw;
    transform: translate(-50%, -50%);
  }
  
  .zodiac-section { padding: 0 12px; margin: 50px auto 40px auto; overflow: hidden; }
  .section-title { font-size: 1.35rem; }
  .section-subtext { font-size: 0.85rem; }
  
  .zodiac-grid-container { margin: 0; padding: 12px 0; -webkit-mask-image: none; mask-image: none; width: 100%; overflow: hidden; }
  .zodiac-grid { gap: 8px; }
  .zodiac-card {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    min-width: calc((100% - 16px) / 3);
    min-height: 135px;
    padding: 12px 4px 10px 4px;
    border-radius: 14px;
  }
  .zodiac-svg-icon { width: 42px; height: 42px; }
  .zodiac-name { font-size: 0.72rem; letter-spacing: 0.5px; }
  .zodiac-slider-arrow { width: 30px; height: 30px; min-width: 30px; font-size: 0.85rem; }
  
  .quiz-section { padding: 0 12px; overflow: hidden; }
  .quiz-container { padding: 20px 14px; border-radius: 16px; width: 100%; max-width: 100%; overflow: hidden; }
  .tarot-select-fan { height: 240px; margin: 20px 0; width: 100%; overflow: hidden; }
  .tarot-big-card { width: 88px; height: 146px; margin: 0 -14px; border-width: 1.5px; }
  
  .option-btn { font-size: 0.9rem; padding: 14px 16px; }

  /* Quiz buttons: stack vertically on mobile so text is fully readable */
  .btn-step-row {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  /* Primary action on top, Späť at bottom */
  .btn-gold-step {
    order: 1 !important;
    font-size: 0.92rem !important;
    padding: 14px 20px !important;
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .btn-outline-fallback {
    order: 2 !important;
    font-size: 0.88rem !important;
    padding: 12px 18px !important;
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .btn-secondary-step {
    order: 3 !important;
    font-size: 0.85rem !important;
    padding: 11px 18px !important;
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    color: rgba(255,255,255,0.55) !important;
    border-color: rgba(255,255,255,0.12) !important;
  }
  
  .teaser-container { padding: 20px 14px; }
  .price-tag-big .price-amount { font-size: 2.2rem; }
  .btn-gold-cta { font-size: 0.88rem; padding: 14px 16px; width: 100%; text-align: center; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .checkout-main-section { margin: 75px auto 30px auto; padding: 0 12px; }
  .checkout-card { padding: 20px 16px; border-radius: 16px; }
  .form-row-2col { grid-template-columns: 1fr; gap: 12px; }
  .quick-pay-row { grid-template-columns: 1fr; }
  .btn-gold-pay-main { font-size: 0.95rem; padding: 16px 14px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.8rem; }
  .card-stack-hero-container { width: 210px; height: 300px; }
  .btn-gold-hero { font-size: 0.85rem; padding: 12px 16px; }
  .btn-gold-cta, .btn-gold-pay-main { font-size: 0.82rem; padding: 13px 12px; }
  
  .zodiac-grid { gap: 10px; }
  .zodiac-card {
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
    min-width: calc((100% - 10px) / 2);
    min-height: 145px;
    padding: 14px 8px 12px 8px;
    border-radius: 16px;
  }
  .zodiac-svg-icon { width: 48px; height: 48px; }
  .zodiac-name { font-size: 0.78rem; letter-spacing: 0.8px; }
}



/* STANDALONE CHECKOUT PAGE (2-COLUMN MATCHING REFERENCE SCREENSHOT) */
.checkout-page-body {
  background: #09070f;
  color: #fff;
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.checkout-navbar {
  background: rgba(12, 10, 18, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 16px 24px;
}
.checkout-nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-security-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.checkout-main-section {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 105px auto 50px auto;
  padding: 0 20px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.checkout-card {
  background: rgba(14, 12, 20, 0.95);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Order Summary Column */
.summary-badge-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.summary-product-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.summary-product-thumb {
  width: 70px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-light);
  flex-shrink: 0;
}
.summary-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-tag-gold {
  font-size: 0.7rem;
  background: var(--gold-gradient);
  color: #08070b;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-gold);
  margin: 6px 0 4px 0;
}
.product-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.summary-price-breakdown {
  background: rgba(8, 7, 11, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-main);
}
.summary-row-price { font-weight: 700; color: #fff; white-space: nowrap; padding-left: 12px; }
.summary-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 14px 0;
}
.total-row {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0;
}
.total-price-tag {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-light);
}

.summary-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.trust-icon { color: var(--gold-light); font-size: 1rem; }

/* Payment Form Column */
.checkout-steps-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  background: rgba(8, 7, 11, 0.7);
  padding: 6px;
  border-radius: 12px;
}
.tab-item {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
}
.tab-item.active {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.tab-num {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  margin-right: 6px;
}

.social-proof-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.user-avatars { display: flex; }
.avatar-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #08070b;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  border: 2px solid #09070f;
}
.social-proof-banner p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}
.form-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

/* Order Bump Box */
.order-bump-box {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(14, 12, 20, 0.9) 100%);
  border: 2px dashed rgba(212, 175, 55, 0.6);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.bump-checkbox-label {
  display: flex;
  gap: 14px;
  cursor: pointer;
  align-items: flex-start;
}
.bump-checkbox-input { display: none; }
.bump-checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold-light);
  border-radius: 6px;
  background: rgba(8, 7, 11, 0.8);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.bump-checkbox-custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 12px;
  border: 2px solid #d4af37;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
  position: absolute;
  top: 2px;
  left: 7px;
}
.bump-checkbox-input:checked ~ .bump-checkbox-custom {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.bump-checkbox-input:checked ~ .bump-checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}
.bump-tag {
  font-size: 0.68rem;
  background: #e74c3c;
  color: #fff;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}
.bump-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.bump-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Card Inputs */
.payment-method-box { margin-bottom: 20px; }
.quick-pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.quick-pay-btn {
  padding: 12px;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.quick-pay-btn:hover { opacity: 0.9; }

.card-inputs-wrapper {
  background: rgba(8, 7, 11, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 14px;
}
.card-input-field {
  position: relative;
  margin-bottom: 10px;
}
.card-input-field:last-child { margin-bottom: 0; }
.card-input-field input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  background: rgba(18, 15, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}
.card-input-field input:focus { border-color: var(--gold-light); }
.input-icon-card {
  position: absolute;
  left: 12px;
  top: 14px;
  color: var(--text-muted);
}
.card-brands-icons {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  gap: 6px;
  font-size: 1.2rem;
  color: var(--text-muted);
}
.card-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card-row-split .card-input-field input { padding-left: 14px; }

.sub-check-wrapper { margin-bottom: 20px; }

.btn-gold-pay-main {
  width: 100%;
  padding: 18px 24px;
  background: var(--gold-gradient);
  color: #08070b;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}
.btn-gold-pay-main:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.8);
}
.pay-micro-guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Addon Unlocked Box in Reading */
.addon-unlocked-box {
  margin-top: 24px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-light);
  border-radius: 14px;
}
.addon-unlocked-box h4 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .checkout-main-section {
    margin: 85px auto 40px auto;
    padding: 0 16px;
  }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row-2col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHO-AM-I ABOUT SECTION: mobile quote reorder (text → photo → quote)
   ========================================================================== */

/* Desktop: show quote inside .who-left, hide the mobile duplicate */
.who-quote-mobile { display: none; }
.who-quote-desktop { display: block; }

@media (max-width: 900px) {
  /* Stack: who-left (text) on top, who-right (photo) in middle */
  .who-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px;
  }
  .who-left { order: 1; }
  .who-right { order: 2; }

  /* Hide the desktop quote inside who-left */
  .who-quote-desktop { display: none !important; }

  /* Show the mobile quote BELOW the photo */
  .who-quote-mobile {
    display: block !important;
    order: 3;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   HERO: extra breathing room from navbar on mobile
   ========================================================================== */
@media (max-width: 850px) {
  .hero-section {
    padding-top: 110px !important;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding-top: 100px !important;
  }
}

/* ==========================================================================
   TAROT FAN: fix overflow & clipping on mobile
   ========================================================================== */
@media (max-width: 600px) {
  .tarot-select-fan {
    height: 220px !important;
    width: 100% !important;
    overflow: visible !important;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .tarot-big-card {
    width: 82px !important;
    height: 138px !important;
    margin: 0 -16px !important;
  }

  /* Make flipped card stay within bounds */
  .tarot-big-card.flipped {
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 100;
    width: 110px !important;
    height: 185px !important;
  }

  .quiz-section {
    overflow: visible !important;
  }

  .quiz-container {
    overflow: visible !important;
  }
}

@media (max-width: 380px) {
  .tarot-big-card {
    width: 72px !important;
    height: 122px !important;
    margin: 0 -14px !important;
  }
  .tarot-big-card.flipped {
    width: 96px !important;
    height: 162px !important;
  }
}

