/*
 * Novilunio - Celestial Sanctuary Design System
 * A cosmic, spiritual aesthetic for personal astrology services
 * Target: Women 25-35, Mobile-first
 */

/* ========== IMPORTS & VARIABLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Primary Colors */
  --midnight: #0d0d1a;
  --midnight-soft: #1a1a2e;
  --indigo-deep: #1e1e3f;
  --indigo-light: #2d2d5a;

  /* Accent Colors */
  --rose-gold: #d4a574;
  --rose-gold-light: #e8c9a8;
  --rose-gold-dark: #b8865c;
  --champagne: #f5e6d3;

  /* Soft Colors */
  --lavender: #b8a9c9;
  --lavender-soft: #d4c9e0;
  --pearl: #f5f0e8;
  --pearl-warm: #faf7f2;

  /* Cosmic Colors */
  --star-bright: #fff8e7;
  --star-glow: rgba(255, 248, 231, 0.8);
  --moon-glow: rgba(212, 165, 116, 0.3);
  --nebula-purple: rgba(138, 100, 170, 0.2);
  --nebula-pink: rgba(200, 150, 180, 0.15);

  /* Utility Colors */
  --text-primary: #f5f0e8;
  --text-secondary: #b8a9c9;
  --text-muted: #7a7a9a;
  --success: #7dd3a8;
  --success-soft: rgba(125, 211, 168, 0.2);
  --error: #e8a0a0;
  --error-soft: rgba(232, 160, 160, 0.2);
  --info: #a0c4e8;
  --info-soft: rgba(160, 196, 232, 0.2);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

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

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(212, 165, 116, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========== BASE STYLES ========== */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Cosmic Background with Stars */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 20%, var(--nebula-purple) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, var(--nebula-pink) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--indigo-deep) 0%, var(--midnight) 100%);
  z-index: -2;
}

/* Animated Stars Layer */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, var(--star-bright), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--star-glow), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--star-bright), transparent),
    radial-gradient(2px 2px at 130px 80px, var(--star-glow), transparent),
    radial-gradient(1px 1px at 160px 120px, var(--star-bright), transparent),
    radial-gradient(2px 2px at 200px 50px, var(--star-glow), transparent),
    radial-gradient(1px 1px at 250px 160px, var(--star-bright), transparent),
    radial-gradient(2px 2px at 300px 100px, var(--star-glow), transparent),
    radial-gradient(1px 1px at 350px 200px, var(--star-bright), transparent),
    radial-gradient(2px 2px at 400px 60px, var(--star-glow), transparent),
    radial-gradient(1px 1px at 450px 180px, var(--star-bright), transparent),
    radial-gradient(2px 2px at 500px 120px, var(--star-glow), transparent);
  background-repeat: repeat;
  background-size: 550px 250px;
  animation: twinkle 8s ease-in-out infinite;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  margin: 0 0 var(--space-md) 0;
}

a {
  color: var(--rose-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--rose-gold-light);
}

/* Ensure button links don't inherit link hover color */
a.btn-primary,
a.btn-select,
a.btn-submit,
a.btn-siguiente,
a.btn-payment,
a.btn-confirmar,
a.btn-payment-video,
a.btn-primary:hover,
a.btn-select:hover,
a.btn-submit:hover,
a.btn-siguiente:hover,
a.btn-payment:hover,
a.btn-confirmar:hover,
a.btn-payment-video:hover {
  color: var(--midnight);
}

/* ========== FLASH MESSAGES ========== */
.flash {
  padding: var(--space-md) var(--space-lg);
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.flash-success {
  background: var(--success-soft);
  color: var(--success);
  border-bottom: 1px solid rgba(125, 211, 168, 0.3);
}

.flash-notice {
  background: var(--info-soft);
  color: var(--info);
  border-bottom: 1px solid rgba(160, 196, 232, 0.3);
}

.flash-error, .flash-alert {
  background: var(--error-soft);
  color: var(--error);
  border-bottom: 1px solid rgba(232, 160, 160, 0.3);
}

/* ========== CONTAINERS ========== */
.services-container,
.form-container,
.urgency-container,
.confirmation-container,
.questions-container,
.scheduling-container,
.video-confirmation-container,
.success-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  min-height: 100vh;
}

/* ========== INTRODUCTION PAGE ========== */
.introduction-container {
  min-height: 100vh;
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Moon Decoration */
.introduction-container::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, var(--champagne) 0%, var(--rose-gold) 50%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 60px var(--moon-glow), 0 0 100px var(--moon-glow);
  animation: moonGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes moonGlow {
  0%, 100% {
    box-shadow: 0 0 60px var(--moon-glow), 0 0 100px var(--moon-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 80px var(--moon-glow), 0 0 140px var(--moon-glow);
    transform: scale(1.05);
  }
}

.hero-section {
  text-align: center;
  margin-bottom: var(--space-3xl);
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  color: var(--rose-gold);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.15em;
  text-shadow: 0 0 40px var(--moon-glow);
  animation: fadeInUp 1s ease;
}

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

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--lavender);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.bio-section {
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 165, 116, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  animation: fadeInUp 1s ease 0.4s backwards;
  position: relative;
  overflow: hidden;
}

/* Decorative corner elements */
.bio-section::before,
.bio-section::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  pointer-events: none;
}

.bio-section::before {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.bio-section::after {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

.bio-content p {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.bio-content p:last-child {
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  animation: fadeInUp 1s ease 0.6s backwards;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-select,
.btn-submit,
.btn-siguiente,
.btn-payment,
.btn-confirmar,
.btn-payment-video {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  color: var(--midnight);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover,
.btn-select:hover,
.btn-submit:hover,
.btn-siguiente:hover,
.btn-payment:hover,
.btn-confirmar:hover:not(:disabled),
.btn-payment-video:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold) 100%);
}

.btn-secondary,
.btn-questions-link {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--rose-gold);
  text-decoration: none;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.btn-secondary:hover,
.btn-questions-link:hover {
  background: rgba(212, 165, 116, 0.1);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
  transform: translateY(-2px);
}

.btn-confirmar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: linear-gradient(135deg, #666 0%, #444 100%);
  box-shadow: none;
}

/* ========== HEADER STYLES ========== */
.header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding: var(--space-md);
}

.title,
.form-title,
.urgency-title,
.confirmation-title,
.questions-title,
.scheduling-title,
.video-confirmation-title,
.success-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--rose-gold);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: 0.1em;
  text-shadow: 0 0 30px var(--moon-glow);
}

.subtitle,
.form-subtitle,
.urgency-subtitle,
.confirmation-subtitle,
.questions-subtitle,
.scheduling-subtitle,
.video-confirmation-subtitle,
.success-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lavender);
  margin: 0;
  font-style: italic;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
}

.service-card {
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Constellation pattern overlay */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 10%, rgba(212, 165, 116, 0.3), transparent),
    radial-gradient(1px 1px at 30% 40%, rgba(212, 165, 116, 0.2), transparent),
    radial-gradient(1px 1px at 50% 20%, rgba(212, 165, 116, 0.3), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(212, 165, 116, 0.2), transparent),
    radial-gradient(1px 1px at 90% 30%, rgba(212, 165, 116, 0.3), transparent);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 116, 0.4);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 0.8;
}

.card-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose-gold);
  margin: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.card-body {
  margin-bottom: var(--space-lg);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) 0;
}

.star {
  color: var(--rose-gold);
  font-size: 1rem;
  margin-right: var(--space-md);
  flex-shrink: 0;
  text-shadow: 0 0 10px var(--moon-glow);
}

.feature-text {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.card-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.price-container {
  text-align: center;
}

.price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin: 0;
  text-shadow: 0 0 20px var(--moon-glow);
}

/* ========== FORM STYLES ========== */
.form-header,
.urgency-header,
.confirmation-header,
.questions-header,
.scheduling-header,
.video-confirmation-header,
.success-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.form-card,
.confirmation-card,
.video-confirmation-card,
.questions-section,
.success-card,
.order-status-card {
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.birth-form,
.urgency-form,
.scheduling-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose-gold);
  margin: var(--space-sm) 0 0 0;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-size: 0.9rem;
  color: var(--lavender);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.question-input {
  padding: var(--space-md);
  background: rgba(13, 13, 26, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.question-input:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.15);
  background: rgba(13, 13, 26, 0.8);
}

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

.form-input[type="date"],
.form-input[type="time"] {
  color-scheme: dark;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: calc(-1 * var(--space-xs));
}

.form-actions,
.urgency-actions,
.scheduling-actions {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

/* ========== URGENCY SELECTION ========== */
.urgency-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.urgency-card {
  position: relative;
}

.urgency-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.urgency-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
  border: 2px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* Decorative top accent */
.urgency-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.urgency-label:hover {
  border-color: rgba(212, 165, 116, 0.4);
  box-shadow: 0 8px 32px rgba(212, 165, 116, 0.15);
  transform: translateY(-5px);
}

.urgency-label:hover::before {
  opacity: 0.5;
}

.urgency-radio:checked + .urgency-label {
  border-color: var(--rose-gold);
  background: linear-gradient(135deg, rgba(45, 45, 90, 0.95) 0%, rgba(35, 35, 70, 0.98) 100%);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.25);
  transform: translateY(-5px);
}

.urgency-radio:checked + .urgency-label::before {
  opacity: 1;
  height: 4px;
  background: var(--rose-gold);
}

/* Selection indicator */
.urgency-radio:checked + .urgency-label::after {
  content: '✓';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 28px;
  height: 28px;
  background: var(--rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  font-weight: bold;
  font-size: 14px;
}

.urgency-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.urgency-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}

.urgency-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.urgency-option-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-gold);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.urgency-delivery-time {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}

.urgency-description {
  font-size: 0.9rem;
  color: var(--lavender);
  margin: 0;
  line-height: 1.5;
  max-width: 200px;
}

.urgency-price-section {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  width: 100%;
}

.urgency-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin: 0;
  text-shadow: 0 0 20px var(--moon-glow);
}

.urgency-price-note {
  font-size: 0.85rem;
  color: var(--lavender);
  margin-top: var(--space-xs);
}

/* Urgency level accents */
.urgency-card:nth-child(1) .urgency-label {
  border-color: rgba(125, 211, 168, 0.2);
}

.urgency-card:nth-child(1) .urgency-radio:checked + .urgency-label {
  border-color: #7dd3a8;
}

.urgency-card:nth-child(1) .urgency-radio:checked + .urgency-label::before,
.urgency-card:nth-child(1) .urgency-radio:checked + .urgency-label::after {
  background: #7dd3a8;
}

.urgency-card:nth-child(2) .urgency-label {
  border-color: rgba(160, 196, 232, 0.2);
}

.urgency-card:nth-child(2) .urgency-radio:checked + .urgency-label {
  border-color: #a0c4e8;
}

.urgency-card:nth-child(2) .urgency-radio:checked + .urgency-label::before,
.urgency-card:nth-child(2) .urgency-radio:checked + .urgency-label::after {
  background: #a0c4e8;
}

.urgency-card:nth-child(3) .urgency-label {
  border-color: rgba(232, 160, 160, 0.2);
}

.urgency-card:nth-child(3) .urgency-radio:checked + .urgency-label {
  border-color: #e8a0a0;
}

.urgency-card:nth-child(3) .urgency-radio:checked + .urgency-label::before,
.urgency-card:nth-child(3) .urgency-radio:checked + .urgency-label::after {
  background: #e8a0a0;
}

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

  .urgency-label {
    min-height: auto;
    padding: var(--space-xl);
  }
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation-card,
.video-confirmation-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.delivery-info,
.appointment-info,
.session-info,
.questions-info,
.questions-info-video {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.delivery-message {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin: 0;
  text-align: center;
}

.delivery-date {
  color: var(--rose-gold);
  font-size: 1.2rem;
  display: block;
  margin-top: var(--space-sm);
  text-shadow: 0 0 15px var(--moon-glow);
}

.questions-text,
.questions-text-video {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.questions-text strong {
  color: var(--rose-gold);
}

.questions-link-container {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.payment-section,
.payment-section-video {
  display: flex;
  justify-content: center;
  padding-top: var(--space-md);
}

/* Appointment Details */
.info-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-lg) 0;
  text-align: center;
}

.appointment-details {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212, 165, 116, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.detail-icon {
  font-size: 1.3rem;
}

.detail-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Session Features */
.session-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0 0 var(--space-lg) 0;
  text-align: center;
}

.session-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.session-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(212, 165, 116, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.feature-icon {
  color: var(--rose-gold);
  font-size: 1rem;
}

/* Payment Notice */
.payment-notice {
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.payment-notice-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.7;
}

.payment-notice-text strong {
  color: var(--rose-gold);
}

.inline-link {
  color: var(--rose-gold);
  text-decoration: underline;
  transition: all var(--transition-fast);
}

.inline-link:hover {
  color: var(--rose-gold-light);
  text-shadow: 0 0 10px var(--moon-glow);
}

/* ========== PRICE SUMMARY & COUPON ========== */
.price-summary {
  padding: var(--space-xl);
  background: rgba(212, 165, 116, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-md);
}

.price-summary-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-lg) 0;
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.price-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.total-row {
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(212, 165, 116, 0.3);
  border-bottom: none;
}

.total-row .price-label {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.total-row .price-value {
  font-size: 1.2rem;
  color: var(--rose-gold);
}

.discount-row .price-value {
  color: var(--success);
}

.strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
}

.new-total {
  color: var(--rose-gold);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Coupon Section */
.coupon-section {
  padding: var(--space-lg);
  background: rgba(30, 30, 63, 0.4);
  border: 1px dashed rgba(212, 165, 116, 0.3);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.coupon-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  display: block;
}

.coupon-input-group {
  display: flex;
  gap: var(--space-sm);
}

.coupon-input {
  flex: 1;
  padding: var(--space-md);
  background: rgba(13, 13, 26, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.coupon-input::placeholder {
  text-transform: none;
  color: var(--text-muted);
}

.coupon-input:focus {
  border-color: var(--rose-gold);
  outline: none;
}

.coupon-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-coupon {
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: 1px solid var(--rose-gold);
  border-radius: var(--radius-sm);
  color: var(--rose-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-coupon:hover {
  background: rgba(212, 165, 116, 0.1);
}

.btn-coupon:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.coupon-result {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  text-align: center;
}

.coupon-result.success {
  background: var(--success-soft);
  border: 1px solid rgba(125, 211, 168, 0.3);
}

.coupon-result.success .coupon-message {
  color: var(--success);
}

.coupon-result.error {
  background: var(--error-soft);
  border: 1px solid rgba(232, 160, 160, 0.3);
}

.coupon-result.error .coupon-message {
  color: var(--error);
}

.coupon-message {
  font-size: 0.9rem;
  font-weight: 500;
}

.coupon-applied {
  font-family: 'Courier New', monospace;
  background: rgba(212, 165, 116, 0.15);
  color: var(--rose-gold);
  padding: 2px 8px;
  border-radius: 4px;
}

.discount-value {
  color: var(--success);
}

.hidden {
  display: none !important;
}

/* ========== QUESTIONS PAGE ========== */
.questions-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.questions-section {
  position: relative;
}

.allowed-section {
  border-color: rgba(125, 211, 168, 0.3);
}

.not-allowed-section {
  border-color: rgba(232, 160, 160, 0.3);
}

.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.check-icon {
  background: var(--success-soft);
  color: var(--success);
}

.cross-icon {
  background: var(--error-soft);
  color: var(--error);
}

.section-description {
  font-size: 0.95rem;
  color: var(--lavender);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
}

.questions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.question-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(212, 165, 116, 0.05);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.question-item:hover {
  background: rgba(212, 165, 116, 0.1);
  transform: translateX(5px);
}

.question-item.not-allowed {
  background: rgba(232, 160, 160, 0.05);
}

.question-item.not-allowed:hover {
  background: rgba(232, 160, 160, 0.1);
}

.question-item .bullet {
  color: var(--rose-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.question-item.not-allowed .bullet {
  color: var(--error);
}

.questions-footer {
  margin-top: var(--space-xl);
  text-align: center;
  padding: var(--space-lg);
  background: rgba(212, 165, 116, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-note {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--rose-gold);
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}

/* Questions Form */
.question-input {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

.questions-help {
  margin-top: var(--space-lg);
  text-align: center;
  color: var(--lavender);
}

.questions-help p {
  margin: 0;
}

.questions-help-top {
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.questions-help-top p {
  color: var(--text-secondary);
  margin: 0 0 var(--space-md) 0;
  font-size: 0.95rem;
}

/* Questions Summary on Confirmation Page */
.your-questions-summary {
  padding: var(--space-lg);
  background: rgba(30, 30, 63, 0.4);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.summary-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-md) 0;
}

.question-preview {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.question-preview:last-child {
  border-bottom: none;
}

.question-preview .question-number {
  color: var(--rose-gold);
  font-weight: 600;
  min-width: 20px;
}

.question-preview .question-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== SCHEDULING PAGE ========== */
.scheduling-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.dates-section,
.times-section {
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.section-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-lg) 0;
  text-align: center;
  font-weight: 400;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: var(--space-md);
}

.date-card {
  position: relative;
}

.date-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.date-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) var(--space-sm);
  background: rgba(13, 13, 26, 0.5);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 90px;
  justify-content: center;
}

.date-label:hover {
  border-color: rgba(212, 165, 116, 0.5);
  background: rgba(30, 30, 63, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
}

.date-radio:checked + .date-label {
  border-color: var(--rose-gold);
  background: rgba(212, 165, 116, 0.15);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.25);
}

.date-weekday {
  font-size: 0.75rem;
  color: var(--lavender);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin-bottom: var(--space-xs);
}

.date-month {
  font-size: 0.8rem;
  color: var(--text-primary);
  text-transform: uppercase;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: var(--space-md);
}

.time-card {
  position: relative;
}

.time-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.time-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(13, 13, 26, 0.5);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 55px;
}

.time-label:hover {
  border-color: rgba(212, 165, 116, 0.5);
  background: rgba(30, 30, 63, 0.6);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
}

.time-radio:checked + .time-label {
  border-color: var(--rose-gold);
  background: rgba(212, 165, 116, 0.15);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.25);
}

.time-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--rose-gold);
}

/* Booked time slot styling */
.time-card.booked .time-label {
  background: rgba(100, 100, 100, 0.2);
  border-color: rgba(100, 100, 100, 0.3);
  cursor: not-allowed;
  opacity: 0.5;
}

.time-card.booked .time-label:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(100, 100, 100, 0.3);
  background: rgba(100, 100, 100, 0.2);
}

.time-card.booked .time-value {
  color: var(--text-muted);
}

.time-card.booked .time-label {
  flex-direction: column;
}

.time-card.booked .time-label::after {
  content: "No disponible";
  display: block;
  font-size: 0.7rem;
  color: var(--error);
  margin-top: 4px;
}

/* ========== SUCCESS PAGE ========== */
.success-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

.success-card {
  margin-bottom: var(--space-xl);
}

.success-card .success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  color: var(--success);
}

.success-card .success-icon svg {
  width: 70px;
  height: 70px;
}

.order-details {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.details-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-lg) 0;
  text-align: center;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.total-row {
  border-top: 2px solid rgba(212, 165, 116, 0.2);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
}

.detail-label {
  color: var(--lavender);
  font-size: 0.95rem;
}

.detail-value {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}

.detail-value.order-number {
  color: var(--rose-gold);
  font-family: monospace;
  letter-spacing: 1px;
}

.detail-value.total-amount {
  color: var(--rose-gold);
  font-size: 1.2rem;
}

.credentials-section {
  background: rgba(212, 165, 116, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.2);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.credentials-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-sm) 0;
}

.credentials-info {
  color: var(--lavender);
  margin: 0 0 var(--space-lg) 0;
}

.credential-box {
  background: rgba(13, 13, 26, 0.4);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.credential-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.credential-item:first-child {
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-sm);
}

.credential-label {
  display: block;
  font-size: 0.85rem;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credential-value {
  font-size: 1.1rem;
  color: var(--rose-gold);
  font-weight: 600;
}

.credential-value.password {
  background: rgba(212, 165, 116, 0.15);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-family: monospace;
  letter-spacing: 2px;
}

.credentials-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--error-soft);
  border: 1px solid rgba(232, 160, 160, 0.3);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 0.9rem;
}

.credentials-warning svg {
  flex-shrink: 0;
}

.success-message {
  text-align: center;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.next-steps {
  margin-bottom: var(--space-xl);
}

.steps-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-md) 0;
}

.steps-list {
  margin: 0;
  padding-left: var(--space-lg);
  color: var(--text-primary);
  line-height: 2;
}

.steps-list li {
  padding: var(--space-xs) 0;
}

.action-buttons,
.success-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Cancel Page */
.cancel-card {
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(232, 160, 160, 0.3);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  text-align: center;
}

.cancel-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  color: var(--error);
}

.cancel-icon svg {
  width: 70px;
  height: 70px;
}

.order-info {
  margin-bottom: var(--space-xl);
}

.order-info p {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 var(--space-sm) 0;
}

/* ========== ORDER STATUS PAGE ========== */
.status-indicator {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.status-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
}

.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.step-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.status-step.pending .step-icon {
  background: rgba(100, 100, 100, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

.status-step.completed .step-icon {
  background: var(--success-soft);
  border: 2px solid var(--success);
  color: var(--success);
}

.step-label {
  font-size: 0.8rem;
  color: var(--lavender);
}

.status-step.completed .step-label {
  color: var(--success);
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}

.status-badge.status-pending_payment {
  background: rgba(212, 165, 116, 0.2);
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
}

.status-badge.status-paid {
  background: var(--success-soft);
  color: var(--success);
  border: 1px solid var(--success);
}

.status-badge.status-in_progress {
  background: var(--info-soft);
  color: var(--info);
  border: 1px solid var(--info);
}

.status-badge.status-completed {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  border: 1px solid #a855f7;
}

/* Order Sections */
.birth-info-section,
.questions-section-status,
.delivery-notes-section {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.question-item-status {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(212, 165, 116, 0.05);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.question-number {
  color: var(--rose-gold);
  font-weight: 600;
}

.question-text {
  color: var(--text-primary);
  flex: 1;
}

.delivery-notes {
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

/* Form Footer */
.form-footer {
  margin-top: var(--space-lg);
  text-align: center;
}

.form-footer-text {
  color: var(--lavender);
  margin: 0;
}

/* Status Colors */
.status-paid {
  color: var(--success);
  font-weight: 600;
}

.status-pending {
  color: var(--rose-gold);
  font-weight: 600;
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.coming-soon-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose-gold);
  margin: 0 0 var(--space-md) 0;
}

.coming-soon-hint {
  color: var(--lavender);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }

  body::after {
    background-size: 300px 150px;
  }

  .introduction-container::before {
    width: 50px;
    height: 50px;
    top: 5%;
    right: 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: var(--space-xl);
  }

  .form-card,
  .confirmation-card,
  .video-confirmation-card,
  .questions-section,
  .success-card,
  .order-status-card,
  .cancel-card {
    padding: var(--space-xl);
  }

  .urgency-label {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
  }

  .urgency-info {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .urgency-radio:checked + .urgency-label::before {
    left: var(--space-lg);
    top: var(--space-lg);
    transform: none;
  }

  .urgency-radio:checked + .urgency-label .urgency-info {
    margin-left: 0;
    margin-top: var(--space-xl);
  }

  .dates-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  }

  .times-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }

  .appointment-details {
    flex-direction: column;
    gap: var(--space-md);
  }

  .status-steps {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .status-step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-md);
  }

  .step-icon {
    margin-bottom: 0;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .credential-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .action-buttons,
  .success-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-select,
  .btn-submit,
  .btn-siguiente,
  .btn-payment,
  .btn-confirmar,
  .btn-payment-video,
  .btn-secondary,
  .btn-questions-link {
    width: 100%;
    text-align: center;
  }

  .bio-section::before,
  .bio-section::after {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    letter-spacing: 0.08em;
  }

  .bio-section {
    padding: var(--space-lg);
  }

  .dates-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ========== ADMIN PANEL STYLES ========== */
/* Note: Admin styles are in the admin layout, but we add supporting styles here */

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 2px;
}

/* Selection styling */
::selection {
  background: rgba(212, 165, 116, 0.3);
  color: var(--text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--indigo-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose-gold-dark);
}
