/* ==========================================================================
   LAS TUNAS TICKET - MASTER LUXURY STYLESHEET (AUDITED & OPTIMIZED)
   Plataforma Oficial de Entradas · Club Campestre Las Tunas - Cieneguilla
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700;800&display=swap');

:root {
  /* Brand Core Palette */
  --c-burgundy-950: #22060A;
  --c-burgundy-900: #380C12;
  --c-burgundy-800: #55141D;
  --c-burgundy-700: #722F37;
  --c-burgundy-600: #933C47;
  --c-burgundy-500: #B74D5B;

  --c-gold-100: #FFF9E6;
  --c-gold-300: #FEE78A;
  --c-gold-500: #F5C518;
  --c-gold-600: #E5A812;
  --c-gold-700: #B87B07;
  --c-gold-grad: linear-gradient(135deg, #FFFFFF 0%, #FFF3A8 25%, #F5C518 60%, #FFD700 85%, #FFF8D6 100%);

  --c-dark-950: #08090B;
  --c-dark-900: #0E1013;
  --c-dark-850: #15181D;
  --c-dark-800: #1D2128;
  --c-dark-700: #292F38;

  --c-white: #FFFFFF;
  --c-ivory: #FAF9F6;
  --c-gray-100: #F3F4F6;
  --c-gray-200: #E5E7EB;
  --c-gray-400: #9CA3AF;
  --c-gray-500: #6B7280;
  --c-gray-700: #374151;

  --c-success: #10B981;
  --c-danger: #EF4444;
  --c-warning: #F59E0B;
  --c-info: #3B82F6;

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevation & Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 22px 45px -10px rgba(114, 47, 55, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  font-family: var(--font-sans);
  background-color: var(--c-dark-950);
  color: var(--c-dark-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  line-height: 1.6;
  background: var(--c-ivory);
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

button {
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--c-dark-950);
}
::-webkit-scrollbar-thumb {
  background: var(--c-burgundy-700);
  border-radius: 10px;
  border: 2px solid var(--c-dark-950);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold-500);
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utilities */
.text-gold { color: var(--c-gold-500); }
.text-gold-grad {
  background: var(--c-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-burgundy { color: var(--c-burgundy-700); }
.font-serif { font-family: var(--font-serif); }

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.75s ease;
  z-index: -1;
}

.btn:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-gold {
  background: var(--c-gold-grad);
  color: #111;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-burgundy {
  background: linear-gradient(135deg, var(--c-burgundy-700) 0%, var(--c-burgundy-900) 100%);
  color: #FFF;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.45);
}

.btn-burgundy:hover {
  box-shadow: 0 12px 35px rgba(114, 47, 55, 0.65);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
}

.btn-glass:hover {
  background: #FFF;
  color: var(--c-dark-950);
  border-color: #FFF;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGoldGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.65); }
}

@keyframes radarPing {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-item.revealed,
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-600);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--c-dark-900);
}

.section-title span {
  color: var(--c-burgundy-700);
}

.section-desc {
  font-size: 1.15rem;
  color: var(--c-gray-500);
  line-height: 1.6;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.35s ease;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.85) 0%, rgba(8, 9, 11, 0.3) 70%, transparent 100%);
}

.site-header.scrolled {
  background: rgba(14, 16, 19, 0.94);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease-smooth);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 56px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(-2deg);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-logo-text .brand-text-main {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.35rem;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.brand-logo-text .brand-text-gold {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #D4AF37;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFF1B0 0%, #D4AF37 50%, #AA8010 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-item-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold-grad);
  transition: width 0.3s var(--ease-smooth);
}

.nav-item-link:hover {
  color: #FFF;
}

.nav-item-link:hover::after {
  width: 100%;
}

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

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--c-gold-500);
  border-radius: 4px;
}

/* ==========================================================================
   MOBILE DRAWER (CORRECTED & POSITIONED OFF-CANVAS)
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0E1013;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  transition: right 0.35s var(--ease-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.drawer-close {
  color: #FFF;
  font-size: 2rem;
  background: none;
  cursor: pointer;
  line-height: 1;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  padding: 0.4rem 0;
}

.drawer-nav a:hover {
  color: var(--c-gold-300);
  padding-left: 6px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark-950);
  overflow: hidden;
  padding: 5.5rem 0 3.5rem;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-bg video, .hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: contrast(1.08) saturate(1.18) brightness(1.04);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(ellipse at 50% 42%, rgba(10, 12, 16, 0.24) 0%, rgba(8, 9, 11, 0.52) 58%, rgba(8, 9, 11, 0.88) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.58) 0%, rgba(8, 9, 11, 0.12) 32%, rgba(8, 9, 11, 0.18) 65%, rgba(8, 9, 11, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  color: #FFF;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.4rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-full);
  color: var(--c-gold-100);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: pulseGoldGlow 3s infinite;
}

.hero-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  position: relative;
}

.hero-pill-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #10B981;
  animation: radarPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.hero-title .hero-brand-highlight {
  display: inline-block;
  white-space: nowrap;
  color: #FFC72C !important;
  -webkit-text-fill-color: #FFC72C !important;
  text-shadow: 
    0 0 15px rgba(255, 199, 44, 0.95),
    0 0 35px rgba(255, 152, 0, 0.85),
    0 0 65px rgba(245, 124, 0, 0.7),
    0 4px 15px rgba(0, 0, 0, 0.98) !important;
  font-weight: 900;
  letter-spacing: 0.02em;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 780px;
  margin: 0 auto 1.8rem;
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Amenities & Experience Showcase */
.hero-amenities-banner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.amenities-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--c-gold-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.amenities-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--c-gold-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-gold-400);
  animation: pulseGold 2s infinite ease-in-out;
}

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

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: rgba(10, 12, 16, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1.35rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin: 0 auto;
}

.trust-stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.trust-stat-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--c-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.trust-stat-box:hover .stat-icon-wrap {
  transform: scale(1.08) rotate(3deg);
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--c-gold-400);
}

.stat-info h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.stat-info p {
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

@media (max-width: 820px) {
  .trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}

/* Audio Ambience Trigger */
.audio-ambience-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 30;
  background: rgba(14, 16, 19, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(10px);
  color: var(--c-gold-300);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.audio-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audio-btn-icon svg {
  display: block;
}

.audio-ambience-btn:hover {
  background: var(--c-burgundy-700);
  color: #FFF;
  transform: scale(1.05);
}

/* ==========================================================================
   COUNTDOWN & REAL-TIME URGENCY BANNER
   ========================================================================== */
.countdown-urgency-bar {
  background: linear-gradient(135deg, #180509 0%, #380b13 40%, #1e050a 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.45);
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  padding: 1.6rem 0;
  color: #FFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), inset 0 0 60px rgba(212, 175, 55, 0.08);
}

.countdown-urgency-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: shineTravel 8s infinite linear;
}

@keyframes shineTravel {
  0% { transform: translateX(0); }
  50% { transform: translateX(200%); }
  100% { transform: translateX(0); }
}

.countdown-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.countdown-callout {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
}

.countdown-text-block {
  min-width: 0;
  flex: 1 1 auto;
}

/* Pastilla de Fecha de Gran Festividad */
.festivity-date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(114, 47, 55, 0.45));
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.95rem 0.55rem;
  min-width: 90px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45), 0 0 15px rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.festivity-badge-tag {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--c-gold-300);
  margin-bottom: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.festivity-date-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: #FFF;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.festivity-date-month {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-gold-400);
}

.festivity-status-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 10px #FF3B30;
  animation: radarPing 1.6s infinite;
}

.festivity-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-gold-400);
  text-transform: uppercase;
}

.countdown-callout h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.countdown-callout p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.countdown-action-side {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.countdown-clocks {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.time-divider {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--c-gold-500);
  animation: pulseGold 1.5s infinite;
}

.time-cube {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(12, 14, 18, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  min-width: 54px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.time-cube:hover {
  transform: translateY(-2px);
  border-color: var(--c-gold-300);
}

.time-cube .digits {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-gold-300);
  line-height: 1;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.time-cube .unit {
  font-size: 0.62rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.festivity-quick-buy {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  animation: floatSlow 4s ease-in-out infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .countdown-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .countdown-callout {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.85rem;
  }
  .festivity-date-pill {
    margin: 0 auto;
  }
  .countdown-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .festivity-status-line {
    justify-content: center;
    width: 100%;
  }
  .countdown-callout h3 {
    text-align: center;
  }
  .countdown-callout p {
    text-align: center;
    margin: 0 auto;
  }
  .countdown-action-side {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   CARTELERA & PRÓXIMOS EVENTOS (CARDS & FILTERS)
   ========================================================================== */
.section-events-showcase {
  padding: 6.5rem 0;
  background: radial-gradient(circle at 50% 0%, #1A0D12 0%, #0E1013 65%, #08090B 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.section-events-showcase .section-title {
  color: #FFF;
}

.section-events-showcase .section-title span {
  background: var(--c-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-events-showcase .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.events-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.65rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.filter-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--c-gold-300);
  transform: translateY(-2px);
}

.filter-pill.active {
  background: linear-gradient(135deg, var(--c-burgundy-700) 0%, var(--c-burgundy-900) 100%);
  color: #FFF;
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.events-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  justify-content: center;
  gap: 2.5rem;
}

.event-master-card {
  background: linear-gradient(180deg, #181B22 0%, #101217 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  max-width: 420px;
  width: 100%;
}

.event-master-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.25);
  border-color: var(--c-gold-500);
}

.card-poster-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0B0D10;
}

.card-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.event-master-card:hover .card-poster-img {
  transform: scale(1.06);
}

.card-badge-status {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.status-selling {
  background: rgba(16, 185, 129, 0.92);
  color: #FFF;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.status-special {
  background: var(--c-gold-grad);
  color: #111;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.status-reprogrammed {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.45);
}

.status-ended {
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45);
}

/* Estado de tarjeta finalizada con botón desactivado elegante */
.event-master-card.event-is-ended .card-poster-img {
  filter: grayscale(0.25) contrast(0.95);
}

.event-master-card.event-is-ended .btn-disabled {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
}

.card-date-floating {
  position: absolute;
  bottom: 1.15rem;
  right: 1.15rem;
  background: rgba(8, 9, 11, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(12px);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--c-gold-300);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card-body-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-genre {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-gold-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.card-heading {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.card-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.card-spec-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.card-spec-row svg {
  color: var(--c-gold-500);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.card-footer-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.35rem;
  gap: 1rem;
}

.price-display {
  display: flex;
  flex-direction: column;
}

.price-display .prefix {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-display .val {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-gold-300);
}

/* ==========================================================================
   INTERACTIVE 3D ARENA & SEATING ZONE ENGINE
   ========================================================================== */
.section-seating-engine {
  padding: 7rem 0;
  background: radial-gradient(circle at center, #181B22 0%, #0E1013 70%, #08090B 100%);
  color: #FFF;
}

.engine-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.arena-svg-stage {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.arena-svg-stage svg {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.arena-interactive-svg {
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
}

.zone-ring-slice {
  cursor: pointer;
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease;
  opacity: 0.88;
}

.zone-ring-slice:hover {
  opacity: 1;
  filter: brightness(1.22) drop-shadow(0 0 16px rgba(212, 175, 55, 0.7));
}

.zone-ring-slice.active {
  opacity: 1;
  stroke: #FFFFFF !important;
  stroke-width: 3.5px !important;
  filter: brightness(1.3) drop-shadow(0 0 22px rgba(212, 175, 55, 0.95));
}

.zone-badge-group {
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.zone-badge-group:hover {
  filter: brightness(1.25) drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.zone-badge-group rect {
  transition: all 0.3s ease;
}

.zone-badge-group.active rect {
  fill: #181C26 !important;
  stroke: #FFFFFF !important;
  stroke-width: 3px !important;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.75)) !important;
}

.zone-badge-group.active text {
  fill: #FFFFFF !important;
}

.zone-selectors-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.zone-interactive-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.zone-interactive-item:hover, .zone-interactive-item.active {
  background: rgba(114, 47, 55, 0.35);
  border-color: var(--c-gold-500);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  transform: translateX(8px);
}

.zone-item-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.zone-swatch-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  flex-shrink: 0;
}

.zone-meta-texts h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
}

.zone-meta-texts p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.zone-item-price {
  text-align: right;
}

.zone-item-price .cost {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-gold-300);
}

.zone-item-price .status {
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 700;
}

.calculator-action-panel {
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.95) 0%, rgba(13, 15, 21, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.sim-attendees-wrap {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.sim-attendee-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sim-attendee-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seat-qty-counter {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.4rem;
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.counter-circle-btn:hover {
  background: var(--c-gold-500);
  border-color: var(--c-gold-400);
  color: #111;
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.counter-circle-btn:active {
  transform: scale(0.94);
}

.counter-digit {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  min-width: 32px;
  text-align: center;
  color: #FFF;
}

.sim-subtotal-side {
  text-align: right;
  min-width: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sim-subtotal-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sim-subtotal-val {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0.15rem 0 0.35rem;
}

.sim-free-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   EXPERIENCIAS & CLUB CAMPESTRE
   ========================================================================== */
/* ==========================================================================
   EXPERIENCIAS & CLUB CAMPESTRE (MINIMALISTA BLANCO MODERNO)
   ========================================================================== */
.section-experiences-grid {
  padding: 6.5rem 0;
  background: #FFFFFF;
}

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

.exp-box-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.exp-box-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.2);
  border-color: rgba(114, 47, 55, 0.3);
}

.exp-img-viewport {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #F3F4F6;
}

.exp-img-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-box-card:hover .exp-img-viewport img {
  transform: scale(1.06);
}

.exp-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.exp-category-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  color: #722F37;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.exp-box-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.55rem;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.exp-box-card:hover h3 {
  color: #722F37;
}

.exp-box-card p {
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.exp-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.exp-tag-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4B5563;
  background: #F3F4F6;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.exp-tag-pill.highlight {
  background: rgba(114, 47, 55, 0.08);
  color: #722F37;
  font-weight: 700;
}

.exp-clean-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #722F37;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.exp-clean-link:hover {
  color: #D4AF37;
  background: rgba(114, 47, 55, 0.05);
  transform: translateX(3px);
}

.exp-clean-link svg {
  transition: transform 0.25s ease;
}

.exp-clean-link:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   GALLERY (MOSAIC & LIGHTBOX)
   ========================================================================== */
.section-photo-gallery {
  padding: 7rem 0;
  background: var(--c-dark-900);
  color: #FFF;
}

.gallery-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
}

.mosaic-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.mosaic-tile.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-tile.span-2x1 {
  grid-column: span 2;
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.mosaic-tile:hover img {
  transform: scale(1.1);
}

.mosaic-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 9, 11, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mosaic-tile:hover .mosaic-hover-overlay {
  opacity: 1;
}

.mosaic-caption h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
}

.mosaic-caption p {
  font-size: 0.85rem;
  color: var(--c-gold-300);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: blur(16px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 2rem;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-frame img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-close-cross {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #FFF;
  font-size: 2.5rem;
  background: none;
  cursor: pointer;
}

/* ==========================================================================
   FAQ & REVIEWS ACCORDION (MODERNO & ELEGANTE)
   ========================================================================== */
.section-faq-testimonials {
  padding: 6.5rem 0;
  background: #FFFFFF;
}

.faq-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.acc-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.acc-card:hover {
  border-color: rgba(114, 47, 55, 0.25);
  transform: translateY(-2px);
}

.acc-card.open {
  border-color: rgba(114, 47, 55, 0.35);
  border-left: 4px solid #722F37;
  box-shadow: 0 10px 25px -5px rgba(114, 47, 55, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.acc-header-btn {
  width: 100%;
  padding: 1.15rem 1.35rem;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  transition: background-color 0.2s ease;
}

.acc-header-btn:hover {
  background: #FAFAFA;
}

.acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.acc-num {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 800;
  color: #722F37;
  background: rgba(114, 47, 55, 0.06);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.acc-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.acc-card.open .acc-icon-circle {
  background: #722F37;
  color: #FFFFFF;
  transform: rotate(180deg);
}

.acc-body-content {
  padding: 0 1.35rem 1.25rem 3.25rem;
  background: #FFFFFF;
  color: #4B5563;
  font-size: 0.93rem;
  line-height: 1.65;
  display: none;
}

.acc-card.open .acc-body-content {
  display: block;
}

.acc-body-content strong {
  color: #111827;
}

/* Testimonials Stack */
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.quote-bubble-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-bubble-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.quote-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quote-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.rating-score-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: #B45309;
  margin-left: 0.4rem;
}

.verified-buyer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #047857;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.quote-bubble-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 1.15rem;
}

.author-meta-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
}

.author-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #722F37, #4A151C);
  border: 2px solid #D4AF37;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(114, 47, 55, 0.2);
  flex-shrink: 0;
}

.author-details h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.15rem;
}

.author-details span {
  font-size: 0.78rem;
  color: #6B7280;
  font-weight: 500;
}

/* ==========================================================================
   LOCATION & CONTACT (MODERNO & BENTO CARD)
   ========================================================================== */
/* ==========================================================================
   LOCATION & CONTACT (PANORAMIC LUXURY FLOATING CARD)
   ========================================================================== */
.section-location-guide {
  padding: 7.5rem 0 8.5rem 0;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.82) 0%, rgba(12, 15, 24, 0.90) 100%),
              url('../pscinas.jpg') center/cover no-repeat fixed;
  background-color: #0B0E14;
  position: relative;
  overflow: hidden;
}

.section-location-guide::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(114, 47, 55, 0.08) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.section-location-guide .container {
  position: relative;
  z-index: 2;
}

.section-location-guide .luxury-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #FCD34D;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.section-location-guide .section-title {
  color: #FFFFFF !important;
}

.section-location-guide .section-title span {
  background: linear-gradient(135deg, #FFE29F 0%, #D4AF37 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-location-guide .section-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 620px;
}

.location-portal-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 26px;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.65), 0 0 45px rgba(212, 175, 55, 0.18);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  position: relative;
}

.location-portal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 95px -10px rgba(0, 0, 0, 0.75), 0 0 60px rgba(212, 175, 55, 0.28);
  border-color: rgba(212, 175, 55, 0.65);
}

.location-info-side {
  padding: 3.5rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
}

.location-venue-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #722F37;
  background: rgba(114, 47, 55, 0.07);
  border: 1px solid rgba(114, 47, 55, 0.18);
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.location-venue-pill svg {
  color: #D4AF37;
}

.location-portal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.location-portal-subtitle {
  font-size: 0.92rem;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 1.85rem;
}

.contact-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 0;
}

.contact-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFDF9;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #722F37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-spec-item:hover .contact-spec-icon {
  background: linear-gradient(135deg, #722F37, #8B3A44);
  color: #FFFFFF;
  border-color: #722F37;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px rgba(114, 47, 55, 0.25);
}

.contact-spec-details h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.2rem;
}

.contact-spec-details p, .contact-spec-details a {
  font-size: 0.88rem;
  color: #4B5563;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-spec-details a {
  color: #722F37;
  font-weight: 600;
}

.contact-spec-details a:hover {
  color: #8B3A44;
  text-decoration: underline;
}

.location-actions-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.location-actions-row .btn-burgundy {
  background: linear-gradient(135deg, #722F37 0%, #8B3A44 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 6px 18px rgba(114, 47, 55, 0.28);
  font-weight: 600;
  color: #FFFFFF !important;
}

.location-actions-row .btn-burgundy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(114, 47, 55, 0.4);
}

.location-actions-row .btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  color: #111827;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
  border-radius: 12px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.location-actions-row .btn-whatsapp-outline:hover {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}

.location-actions-row .btn-whatsapp-outline:hover svg path {
  stroke: #FFFFFF;
}

.location-map-side {
  min-height: 460px;
  background: #F3F4F6;
  position: relative;
  overflow: hidden;
}

.map-floating-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.map-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 18, 27, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.map-tag-pill .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseGreenDot 2s infinite ease-in-out;
}

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

.map-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #111827;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.32rem 0.75rem;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  width: fit-content;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.location-map-side iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 992px) {
  .location-portal-card {
    grid-template-columns: 1fr;
  }
  .location-info-side {
    padding: 2.75rem 2rem;
  }
  .location-map-side {
    min-height: 340px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-master-footer {
  background: var(--c-dark-950);
  color: #FFF;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-main-grid {
  padding: 6rem 0 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

.footer-desc-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  max-width: 380px;
}

.social-circle-buttons {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.social-round-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-round-btn:hover {
  background: var(--c-gold-500);
  color: #111;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-nav-col h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-nav-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--c-gold-500);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.footer-links-list a:hover {
  color: var(--c-gold-300);
  padding-left: 6px;
}

.footer-sub-bar {
  background: #040507;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-sub-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   LIVE SOCIAL PROOF NOTIFICATION
   ========================================================================== */
.live-sales-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
  background: rgba(14, 16, 19, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(14px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 360px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s var(--ease-spring);
  pointer-events: none;
}

.live-sales-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sales-avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-gold-grad);
  color: #111;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sales-text-info h6 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFF;
}

.sales-text-info p {
  font-size: 0.75rem;
  color: var(--c-gold-100);
}

.sales-text-info .time-ago {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   CHECKOUT MODAL & E-TICKET QR ENGINE
   ========================================================================== */
.checkout-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(14px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 1.5rem;
}

.checkout-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-card {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 1080px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 35px rgba(212, 175, 55, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  color: #0F172A;
  box-sizing: border-box;
}

.checkout-modal-card::-webkit-scrollbar {
  width: 6px;
}

.checkout-modal-card::-webkit-scrollbar-track {
  background: #F8FAFC;
}

.checkout-modal-card::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.checkout-modal-card::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

.modal-header-banner {
  background: linear-gradient(135deg, #7B1113 0%, #580B0D 50%, #2A0406 100%);
  border-bottom: 2px solid #D4AF37;
  color: #FFF;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.modal-header-titles {
  display: flex;
  flex-direction: column;
}

.modal-brand-tag {
  font-size: 0.72rem;
  color: #FDE68A;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.modal-main-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin: 2px 0 0 0;
}

.modal-close-trigger {
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-trigger:hover {
  color: #000;
  border-color: #FFD700;
  background: #FFD700;
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.modal-body-area {
  padding: 1.25rem 1.5rem;
  background: #F8FAFC;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Minimalist Luxury Step Tracker */
.modal-step-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.step-node {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.step-num-pill {
  font-size: 0.75rem;
  font-weight: 900;
  color: #64748B;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: var(--font-mono, monospace);
  transition: all 0.3s ease;
}

.step-node-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748B;
  transition: all 0.3s ease;
}

.step-node.active .step-num-pill {
  background: #722F37;
  color: #FFFFFF;
  border-color: #722F37;
  box-shadow: 0 2px 8px rgba(114, 47, 55, 0.3);
}

.step-node.active .step-node-title {
  color: #722F37;
  font-weight: 800;
}

.step-node.done .step-num-pill {
  background: #10B981;
  color: #FFF;
  border-color: #10B981;
}

.step-node.done .step-node-title {
  color: #065F46;
}

.step-divider-line {
  flex: 1;
  height: 1.5px;
  background: #E2E8F0;
  margin: 0 0.85rem;
}

.checkout-pane-stage {
  display: none;
}

.checkout-pane-stage.active {
  display: block;
}

#checkoutStep2 {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.step2-luxury-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step2-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid #F1F5F9;
  padding-bottom: 1rem;
  margin-bottom: 0.95rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.step2-title-block {
  display: flex;
  flex-direction: column;
}

.step2-kicker {
  font-size: 0.68rem;
  font-weight: 900;
  color: #D4AF37;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step2-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 2px 0 0 0;
}

.step2-ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #047857;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 4px 9px;
  border-radius: 6px;
}

.step2-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.step2-fields-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-field-group {
  display: flex;
  flex-direction: column;
}

.form-field-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #1E293B;
  letter-spacing: 0.01em;
}

.form-field-label svg {
  color: #722F37;
  flex-shrink: 0;
}

.input-with-icon-wrap {
  position: relative;
  width: 100%;
}

.form-text-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
}

.form-text-input:focus {
  outline: none;
  border-color: #D4AF37;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-text-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

/* Phone input with flag badge */
.phone-prefix-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.phone-prefix-wrap:focus-within {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.phone-prefix-badge {
  font-size: 0.82rem;
  font-weight: 800;
  color: #334155;
  background: #F8FAFC;
  padding: 0.85rem 0.85rem;
  border-right: 1.5px solid #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
  flex-shrink: 0;
}

.phone-input {
  border: none !important;
  box-shadow: none !important;
  padding: 0.85rem 0.95rem !important;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

/* Validation States */
.form-text-input.input-valid, .phone-prefix-wrap.input-valid {
  border-color: #10B981 !important;
  background: #F0FDF4 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}

.form-text-input.input-invalid, .phone-prefix-wrap.input-invalid {
  border-color: #EF4444 !important;
  background: #FEF2F2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Helper Text & Errors */
.field-hint {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.4;
}

.field-error {
  font-size: 0.75rem;
  color: #DC2626;
  font-weight: 700;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Action Navigation Bar */
.step-nav-action-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid #F1F5F9;
  width: 100%;
}

.btn-step-back {
  flex: 1;
  background: #FFFFFF !important;
  color: #334155 !important;
  border: 1.5px solid #CBD5E1 !important;
  padding: 0.9rem 1.25rem !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-step-back:hover {
  background: #F8FAFC !important;
  border-color: #94A3B8 !important;
  color: #0F172A !important;
  transform: translateY(-1px);
}

.btn-step-next {
  flex: 1.6;
  background: linear-gradient(135deg, #722F37 0%, #8B1E2D 50%, #54111C 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  padding: 0.9rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 10px !important;
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.35) !important;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-step-next:hover {
  background: linear-gradient(135deg, #8B1E2D 0%, #A32638 50%, #722F37 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(114, 47, 55, 0.45) !important;
}
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.field-error.visible {
  opacity: 1;
  transform: translateY(0);
  min-height: 1.1rem;
}

.field-error::before {
  content: '✕';
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Valid icon shown in hint when input is valid */
.field-hint.hint-valid {
  color: #34D399;
}

.field-hint.hint-valid::before {
  content: '✓';
  color: #34D399;
  font-weight: 900;
}

/* Stepper de cantidad (+/-) */
.qty-stepper-control {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--c-gold-300);
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--c-gold-grad);
  color: #0E1013;
}

.qty-number-input {
  border: none !important;
  background: transparent !important;
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFF !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Resumen Compacto de Compra */
.checkout-compact-summary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.35rem;
}

.summary-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-meta-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.summary-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

.summary-total-wrap {
  text-align: right;
}

.summary-label-sm {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.summary-amount-gold {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-gold-300);
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.summary-footer-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.55rem;
  line-height: 1.35;
}

.pay-options-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.pay-tile-choice {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  color: #FFF;
  transition: all 0.25s ease;
}

.pay-tile-choice:hover, .pay-tile-choice.selected {
  border-color: var(--c-gold-400);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.pay-tile-choice .emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.35rem;
}

.pay-tile-choice .label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-gold-100);
}

/* ==========================================================================
   REACT BITS INSPIRED 3D LANYARD TICKET CREDENTIAL EXPERIENCE
   ========================================================================== */
.lanyard-experience-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
  user-select: none;
}

/* Lanyard Textile Strap */
.lanyard-strap-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.lanyard-ribbon {
  width: 38px;
  height: 95px;
  background: repeating-linear-gradient(
    45deg,
    #722F37,
    #722F37 8px,
    #55141D 8px,
    #55141D 16px
  );
  border-left: 2px solid #D4AF37;
  border-right: 2px solid #D4AF37;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.lanyard-ribbon-text {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #FFF1B0;
  white-space: nowrap;
  opacity: 0.85;
}

/* Metallic Hook & Clasp */
.lanyard-metallic-clip {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: -2px;
}

.lanyard-clasp-ring {
  width: 24px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFFFFF 0%, #D1D5DB 40%, #6B7280 80%, #374151 100%);
  border: 1px solid #9CA3AF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.lanyard-clasp-hook {
  width: 14px;
  height: 24px;
  background: linear-gradient(135deg, #F3F4F6 0%, #9CA3AF 50%, #4B5563 100%);
  border-radius: 3px 3px 7px 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  position: relative;
}

.lanyard-clasp-hook::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  height: 6px;
  background: #111;
  border-radius: 2px;
}

/* Card Container & Physics Pivot */
.lanyard-card-container {
  width: 100%;
  max-width: 380px;
  transform-origin: 50% -35px;
  cursor: grab;
  margin-top: -6px;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.lanyard-card-container:active {
  cursor: grabbing;
}

.lanyard-card-inner {
  position: relative;
  transform-style: preserve-3d;
}

/* Badge Slot Hole */
.lanyard-slot-hole {
  width: 44px;
  height: 9px;
  border-radius: 6px;
  background: #090B0E;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.9);
}

/* ==========================================================================
   VERTICAL PASS BADGE (BLACK EDITION: NEGRO OBSIDIANA & ORO PURO)
   ========================================================================== */
.vip-lanyard-badge-card {
  background: #08090C;
  border-radius: 28px;
  border: 2px solid #D4AF37;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.35);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header Area (Obsidian Carbon with Gold Accent) */
.badge-top-header {
  background: linear-gradient(135deg, #14171F 0%, #1A1E27 50%, #0D0F14 100%);
  padding: 2.2rem 1.6rem 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 2px solid #D4AF37;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.badge-title-group {
  display: flex;
  flex-direction: column;
}

.badge-sub-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.badge-main-type {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFF6D1 0%, #E2C055 50%, #B88E1F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}

.badge-circular-monogram {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #08090C;
  border: 1.8px solid #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(212, 175, 55, 0.4);
  overflow: hidden;
  padding: 4px;
}

.badge-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

/* Dark Body Area (Obsidian Black) */
.badge-dark-body {
  background: #08090C;
  padding: 1.8rem 1.6rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Pure Gold vertical line accent on the left */
.badge-side-accent {
  position: absolute;
  top: 1.5rem;
  bottom: 4.5rem;
  left: 1.1rem;
  width: 3px;
  background: linear-gradient(180deg, #D4AF37 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

/* Center QR Code Container with Glowing Gold Aura */
.badge-qr-wrapper {
  position: relative;
  margin: 0.5rem 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-qr-glow {
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, rgba(212, 175, 55, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.badge-qr-box {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 28px rgba(212, 175, 55, 0.35);
  border: 3px solid #D4AF37;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-qr-box canvas {
  width: 175px !important;
  height: 175px !important;
  display: block;
}

/* Holder Info Section */
.badge-holder-section {
  text-align: center;
  width: 100%;
  margin-bottom: 1.4rem;
}

.badge-holder-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #D4AF37;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.badge-holder-name {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.badge-meta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge-meta-tag {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFF2CC;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

/* Perforation Divider */
.badge-perforation-line {
  width: 100%;
  border-top: 1.5px dashed rgba(212, 175, 55, 0.35);
  margin-bottom: 1.2rem;
}

/* Barcode Section */
.badge-barcode-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-barcode-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  height: 38px;
  width: 82%;
  margin-bottom: 0.5rem;
}

.badge-barcode-bars span {
  display: inline-block;
  height: 100%;
  background: #64748B;
  border-radius: 1px;
}

.badge-barcode-bars span:nth-child(even) { width: 3px; }
.badge-barcode-bars span:nth-child(odd) { width: 1.5px; }
.badge-barcode-bars span:nth-child(3n) { width: 4.5px; background: #D4AF37; }
.badge-barcode-bars span:nth-child(5n) { width: 2px; }

.badge-barcode-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #D4AF37;
  text-transform: uppercase;
}

.lanyard-holographic-foil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(212, 175, 55, 0.22) 50%,
    rgba(255, 255, 255, 0.05) 65%,
    transparent 100%
  );
  opacity: 0.75;
  pointer-events: none;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   3D FLIP PASS ARCHITECTURE (FRONT: VIP PASS / BACK: NIUBIZ VOUCHER)
   Standard CSS card-flip technique:
   - Container holds both faces stacked via position:absolute
   - transform-style:preserve-3d passes the 3D context to children
   - backface-visibility:hidden hides each face when rotated >90deg away
   - Flipped state simply rotates the CONTAINER 180deg
   ========================================================================== */
.lanyard-3d-flipper {
  position: relative;
  width: 100%;
  cursor: pointer;
  /* perspective must be on the direct parent of the preserve-3d element */
  perspective: 1000px;
  /* Set a min-height so the absolute back face doesn't collapse the container */
  /* JS will mirror the front height; CSS fallback: */
  min-height: 520px;
}

/* The inner rotating wrapper — this is what actually spins */
.lanyard-flipper-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform: rotateY(0deg);
}

.lanyard-3d-flipper.flipped .lanyard-flipper-inner {
  transform: rotateY(180deg);
}

/* Both faces share these properties */
.lanyard-face {
  width: 100%;
  border-radius: 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.lanyard-face-front {
  position: relative; /* front is in normal flow to give the flipper its height */
  z-index: 2;
}

.lanyard-face-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Back face is pre-rotated 180deg so that when the container also rotates 180deg
     the two rotations cancel out and the back is readable */
  transform: rotateY(180deg);
  z-index: 1;
}

@keyframes flipCardEnter {
  0% {
    transform: rotateY(90deg) scale(0.96);
    opacity: 0.3;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

.lanyard-flip-cue-tag,
.lanyard-flip-cue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #FFF2CC;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-top: 0.65rem;
  cursor: pointer;
  pointer-events: none; /* Dejar pasar el clic directamente a la tarjeta 3D */
  user-select: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

/* Back Face Specific Elements */
.lanyard-back-badge {
  border-color: #D4AF37;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.95), 0 0 30px rgba(52, 211, 153, 0.2);
  min-height: 520px;
}

.lanyard-back-stripe {
  width: calc(100% + 3.2rem);
  margin-left: -1.6rem;
  margin-top: -1.8rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, #111827 0%, #1F2937 50%, #111827 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  text-align: center;
  font-size: 0.62rem;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: #94A3B8;
}

.lanyard-voucher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 0.9rem;
}

.lanyard-vcell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  text-align: left;
}

.lanyard-vcell.full-width {
  grid-column: span 2;
}

.lanyard-vcell .lv-lbl {
  font-size: 0.66rem;
  color: #94A3B8;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lanyard-vcell .lv-val {
  font-size: 0.82rem;
  color: #F8FAFC;
  display: block;
  font-weight: 700;
}

.lanyard-vcell .lv-val.lv-gold {
  color: #FFD700;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.lanyard-vcell .lv-val.lv-emerald {
  color: #34D399;
  font-size: 1rem;
  font-weight: 900;
}

.lanyard-vcell .lv-val.lv-amber {
  color: #FBBF24;
  font-family: var(--font-mono);
}

.lanyard-back-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  width: 100%;
  font-size: 0.66rem;
  color: #A7F3D0;
  font-weight: 600;
}

.lanyard-hint-badge {
  font-size: 0.72rem;
  color: #D4AF37;
  margin: 0.85rem auto 0.5rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  text-align: center;
  max-width: fit-content;
}

/* Action Buttons Bar below Pass */
.ticket-actions-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.ticket-actions-bar .btn-ticket-action {
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.ticket-actions-bar .btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B88E1F 100%);
  color: #000000 !important;
  border: 1.5px solid #FFD700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.ticket-actions-bar .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.5);
}

.ticket-actions-bar .btn-glass {
  background: #F8FAFC !important;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ticket-actions-bar .btn-glass svg {
  color: #722F37;
}

.ticket-actions-bar .btn-glass:hover {
  background: #FFFFFF !important;
  border-color: #D4AF37 !important;
  color: #722F37 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.ticket-actions-bar .btn-ticket-close {
  background: #F1F5F9 !important;
  color: #475569 !important;
  border: 1.5px solid #CBD5E1 !important;
}

.ticket-actions-bar .btn-ticket-close:hover {
  background: #E2E8F0 !important;
  color: #0F172A !important;
  transform: translateY(-2px);
}

/* Floating WhatsApp Direct Button */
.whatsapp-direct-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: all 0.3s var(--ease-spring);
}

.whatsapp-direct-bubble:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: #111315;
  color: #FFF;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: floatSlow 0.3s ease;
  pointer-events: auto;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
/* ==========================================================================
   BUNGALOWS & HOSPEDAJE CAMPESTRE
   ========================================================================== */
.section-bungalows {
  padding: 7rem 0;
  background: radial-gradient(circle at 50% 0%, #171114 0%, #0E1013 70%, #08090B 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.section-bungalows .section-title {
  color: #FFF;
}

.section-bungalows .section-title span {
  background: var(--c-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-bungalows .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.bungalows-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.bungalow-master-card {
  background: linear-gradient(180deg, #1A1D24 0%, #121419 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.4s ease;
}

.bungalow-master-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold-500);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.18), 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.bungalow-master-card.featured-bungalow {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.15);
  position: relative;
}

.bungalow-img-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0B0D10;
}

.bungalow-img-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.bungalow-master-card:hover .bungalow-img-stage img {
  transform: scale(1.08);
}

.bungalow-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(14, 16, 19, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.bungalow-tag-badge.gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(160, 118, 18, 0.95));
  color: #111;
  font-weight: 900;
  border-color: #FFE694;
}

.bungalow-body-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bungalow-type-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-400);
  margin-bottom: 0.5rem;
}

.bungalow-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.bungalow-short-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.bungalow-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.bungalow-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.bungalow-perks-list .perk-icon {
  font-size: 1.1rem;
}

.bungalow-footer-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.bungalow-price-block {
  display: flex;
  flex-direction: column;
}

.bungalow-price-block .price-prefix {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bungalow-price-block .price-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-gold-300);
  line-height: 1.1;
}

.bungalow-price-block .price-val small {
  font-size: 0.95rem;
}

/* Lodging Banner Perks */
.lodging-perks-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  backdrop-filter: blur(10px);
}

.perk-feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.perk-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--c-gold-300);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.25rem;
}

.perk-feature-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* ==========================================================================
   RECREACIÓN, PISCINAS, GRANJA & JUEGOS
   ========================================================================== */
.section-recreation {
  padding: 7rem 0;
  background: #FDFBF7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.attractions-master-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.attraction-card-v2 {
  background: #FFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-spring);
}

.attraction-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(114, 47, 55, 0.3);
}

.attraction-img-top {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.attraction-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.attraction-card-v2:hover .attraction-img-top img {
  transform: scale(1.08);
}

.attraction-badge-float {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(14, 16, 19, 0.88);
  backdrop-filter: blur(8px);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.attraction-badge-float.gold {
  background: rgba(114, 47, 55, 0.92);
  border-color: var(--c-gold-500);
  color: var(--c-gold-300);
}

.attraction-card-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.attraction-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-dark-900);
  margin-bottom: 0.75rem;
}

.attraction-card-body p {
  font-size: 0.92rem;
  color: var(--c-gray-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.attraction-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  border-top: 1px solid var(--c-gray-200);
  padding-top: 1.25rem;
}

.attraction-bullet-list li {
  font-size: 0.86rem;
  color: var(--c-gray-700);
  line-height: 1.45;
  position: relative;
  padding-left: 1.25rem;
}

.attraction-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-burgundy-700);
  font-size: 1.3rem;
  line-height: 1;
}

.attraction-bullet-list strong {
  color: var(--c-dark-900);
}

/* Full Day Pricing Card */
.fullday-pricing-card {
  background: linear-gradient(135deg, #1C090E 0%, #2D0F16 50%, #15181D 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.fullday-pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fullday-pill-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-gold-400);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.fullday-info-left h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.85rem;
}

.fullday-info-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fullday-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.fullday-tags span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-gold-300);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.fullday-action-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.fullday-price-tag {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}

.adult-price, .kid-price {
  display: flex;
  flex-direction: column;
}

.adult-price .cat, .kid-price .cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.adult-price .num, .kid-price .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-gold-300);
  line-height: 1;
}

.adult-price .num small, .kid-price .num small {
  font-size: 1.1rem;
}

.price-sep {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
}

/* (Responsive styles consolidated in Master Responsive Architecture section) */

/* ==========================================================================
   TICKET ACTIONS BAR (SCREEN DISPLAY)
   ========================================================================== */
.ticket-actions-bar {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn-ticket-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.btn-ticket-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
}

/* ==========================================================================
   OFFICIAL PRINTABLE E-TICKET STYLES & PRINT ENGINE (A4 LUXURY EDITION)
   ========================================================================== */
.official-print-document {
  display: none !important;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 6mm 6mm;
  }

  html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
    font-size: 10pt;
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-width: 100% !important;
    position: static !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide entire interactive page structure when printing Claim */
  body.print-mode-claim > *:not(#printClaimDocument) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  body.print-mode-claim #printClaimDocument {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
    box-sizing: border-box !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    page-break-inside: avoid !important;
  }

  body.print-mode-claim #printClaimDocument * {
    visibility: visible !important;
    box-sizing: border-box !important;
  }

  /* Hide entire interactive page structure when printing Ticket */
  body:not(.print-mode-claim) > *:not(#printTicketDocument) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Reveal and format print document container in standard document flow */
  body:not(.print-mode-claim) #printTicketDocument.official-print-document {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
    box-sizing: border-box !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    page-break-inside: avoid !important;
  }

  body:not(.print-mode-claim) #printTicketDocument * {
    visibility: visible !important;
    box-sizing: border-box !important;
  }

  .print-doc-container {
    border: 2px solid #0F172A !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    position: relative !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
  }

  /* ═══════════════════════════════════════════════════════════════════════
     HOJA DE RECLAMACIÓN INDECOPI PRINT STYLES (A4 READY)
     ═══════════════════════════════════════════════════════════════════════ */
  .print-claim-container {
    border: 2px solid #7B1113 !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    background: #FFFFFF !important;
    page-break-inside: avoid !important;
  }

  .print-claim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .print-claim-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .print-claim-company {
    font-family: Georgia, serif !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    color: #7B1113 !important;
    margin: 0 0 2px 0 !important;
  }

  .print-claim-sub {
    font-size: 0.68rem !important;
    color: #475569 !important;
    margin: 0 0 2px 0 !important;
  }

  .print-claim-law {
    font-size: 0.64rem !important;
    color: #0F172A !important;
    font-weight: 700 !important;
    margin: 0 !important;
  }

  .print-claim-code-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .print-claim-type-badge {
    background: #7B1113 !important;
    color: #FFFFFF !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    letter-spacing: 0.05em !important;
  }

  .print-claim-num {
    font-family: monospace !important;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    color: #0F172A !important;
    margin: 3px 0 !important;
  }

  .print-claim-meta {
    font-size: 0.68rem !important;
    color: #64748B !important;
  }

  .print-claim-divider {
    height: 2px;
    background: #D4AF37 !important;
    margin: 10px 0 12px 0 !important;
  }

  .print-claim-section {
    margin-bottom: 10px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    overflow: hidden;
  }

  .print-sec-heading {
    background: #F1F5F9 !important;
    color: #0F172A !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    padding: 4px 8px !important;
    border-bottom: 1px solid #CBD5E1 !important;
    letter-spacing: 0.04em !important;
  }

  .print-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.74rem;
  }

  .print-table td {
    padding: 5px 8px;
    border-bottom: 1px solid #F1F5F9;
    color: #1E293B;
  }

  .print-table tr:last-child td {
    border-bottom: none;
  }

  .print-table td strong {
    color: #0F172A;
  }

  .print-claim-type-row {
    padding: 6px 8px;
    background: #FFFFFF;
    font-size: 0.74rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F1F5F9;
  }

  .print-pill {
    background: #7B1113 !important;
    color: #FFFFFF !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    margin-left: 6px;
  }

  .print-box-block {
    padding: 6px 8px;
    font-size: 0.74rem;
    color: #1E293B;
  }

  .print-box-block strong {
    display: block;
    color: #0F172A;
    font-size: 0.7rem;
    margin-bottom: 2px;
  }

  .print-box-block p {
    margin: 0;
    padding: 4px 6px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-size: 0.74rem;
    line-height: 1.35;
    white-space: pre-line;
  }

  .print-legal-box {
    padding: 6px 8px;
    font-size: 0.68rem;
    color: #334155;
    line-height: 1.35;
    background: #F8FAFC;
  }

  .print-legal-box p {
    margin: 0 0 3px 0;
  }

  .print-legal-box p:last-child {
    margin: 0;
  }

  .print-claim-signatures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .print-sig-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sig-line {
    width: 80%;
    border-top: 1px solid #0F172A;
    margin-bottom: 4px;
  }

  .print-sig-col strong {
    font-size: 0.72rem;
    color: #0F172A;
  }

  .print-sig-col span {
    font-size: 0.62rem;
    color: #64748B;
  }

  .print-claim-footnote {
    text-align: center;
    font-size: 0.58rem;
    color: #94A3B8;
    border-top: 1px dashed #CBD5E1;
    padding-top: 5px;
    margin-top: 5px;
  }

  /* Header */
  .print-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
  }

  .print-brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .print-logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #0F172A !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D4AF37;
    flex-shrink: 0;
    overflow: hidden;
    padding: 3px;
  }

  .print-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .print-brand-text h2 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0F172A;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .print-brand-text p {
    font-size: 0.72rem;
    color: #64748B;
    margin: 0;
    white-space: nowrap;
  }

  .print-ticket-badge-box {
    text-align: right;
    white-space: nowrap;
  }

  .print-badge-type {
    display: inline-block;
    background: #0F172A !important;
    color: #D4AF37 !important;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 16px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .print-badge-code {
    display: block;
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: 0.08em;
  }

  .print-gold-bar {
    height: 3.5px;
    background: linear-gradient(90deg, #D4AF37 0%, #0F172A 100%) !important;
    margin-bottom: 12px;
    border-radius: 2px;
  }

  /* Event Showcase */
  .print-event-showcase {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
  }

  .print-event-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
  }

  .print-kicker {
    font-size: 0.65rem;
    font-weight: 800;
    color: #991B1B;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .print-ticket-tag-pill {
    font-size: 0.68rem;
    font-weight: 800;
    color: #B45309;
    background: #FEF3C7;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #FCD34D;
  }

  .print-event-heading {
    font-size: 1.22rem;
    font-weight: 900;
    color: #0F172A;
    margin: 0 0 8px 0;
    line-height: 1.15;
  }

  .print-quick-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    padding: 6px 10px;
  }

  .print-info-pill {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
  }

  .pill-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    color: #64748B;
    margin-bottom: 1px;
    text-transform: uppercase;
  }

  .print-info-pill strong {
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Grid Layout */
  .print-doc-main-grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
  }

  .print-main-info-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .print-card-box {
    background: #FFFFFF;
    border: 1.2px solid #CBD5E1;
    border-radius: 8px;
    padding: 8px 12px;
  }

  .print-card-title {
    font-size: 0.68rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 5px 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px dashed #CBD5E1;
    padding-bottom: 3px;
  }

  .print-data-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .print-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    padding: 2px 0;
    border-bottom: 1px dotted #F1F5F9;
  }

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

  .row-label {
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .row-value {
    color: #0F172A;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: right;
  }

  .row-value.gold-text {
    color: #B45309;
    font-weight: 800;
  }

  .row-value.status-approved {
    color: #059669;
    font-weight: 800;
  }

  .print-card-payment .total-row {
    background: #0F172A !important;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 4px 8px;
    margin-top: 3px;
  }

  .print-card-payment .total-row .row-label {
    color: #E2E8F0;
    font-weight: 800;
  }

  .print-card-payment .total-row .total-val {
    color: #FDE047 !important;
    font-size: 0.88rem;
    font-weight: 900;
  }

  /* Right Security Column */
  .print-security-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    background: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
  }

  .print-qr-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .print-qr-badge-header {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0F172A;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .print-qr-image-wrapper {
    background: #FFFFFF;
    padding: 5px;
    border: 2px solid #0F172A;
    border-radius: 6px;
    margin-bottom: 4px;
    display: inline-block;
  }

  .print-qr-image-wrapper img {
    width: 120px !important;
    height: 120px !important;
    display: block;
  }

  .print-qr-scan-hint {
    font-size: 0.6rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 2px;
    white-space: nowrap;
  }

  .print-qr-security-code span {
    font-family: monospace;
    font-size: 0.62rem;
    font-weight: 700;
    color: #0F172A;
    background: #E2E8F0;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    display: inline-block;
    white-space: nowrap;
  }

  .print-security-seal {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    padding: 4px 8px;
    width: 100%;
    justify-content: center;
  }

  .seal-icon {
    font-size: 0.95rem;
  }

  .seal-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .seal-text strong {
    font-size: 0.62rem;
    color: #0F172A;
    letter-spacing: 0.04em;
  }

  .seal-text span {
    font-size: 0.55rem;
    color: #64748B;
  }

  /* Barcode lines */
  .print-barcode-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .print-barcode-lines {
    display: flex;
    gap: 2px;
    height: 20px;
    align-items: center;
    justify-content: center;
    width: 90%;
  }

  .print-barcode-lines span {
    display: inline-block;
    height: 100%;
    background: #0F172A !important;
  }

  .print-barcode-lines span:nth-child(odd) { width: 1.5px; }
  .print-barcode-lines span:nth-child(even) { width: 2.5px; }
  .print-barcode-lines span:nth-child(3n) { width: 3.5px; }
  .print-barcode-lines span:nth-child(5n) { width: 1.5px; }

  .print-barcode-text {
    font-family: monospace;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: #475569;
  }

  /* Perforation */
  .print-perforation-divider {
    border-top: 1.5px dashed #CBD5E1;
    margin: 8px 0;
    text-align: center;
    position: relative;
  }

  .print-perforation-divider span {
    position: relative;
    top: -8px;
    background: #FFFFFF;
    padding: 0 10px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Terms Footer */
  .print-doc-footer {
    padding-top: 2px;
    position: relative;
    z-index: 1;
  }

  .print-terms-title {
    font-size: 0.64rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 4px 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .print-terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 12px;
    font-size: 0.6rem;
    color: #475569;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .term-item strong {
    color: #0F172A;
  }

  .print-legal-bar {
    text-align: center;
    font-size: 0.55rem;
    color: #94A3B8;
    border-top: 1px solid #E2E8F0;
    padding-top: 4px;
  }
}

/* ==========================================================================
   NUEVO LAYOUT LUXURY EN 2 COLUMNAS PARA CHECKOUT STEP 1
   ========================================================================== */

/* 2-Column Split Grid */
.checkout-step1-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.checkout-options-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   ULTRA-CLEAN LUXURY CHECKOUT ENGINE (STEP 1 - LUMINOUS LUXURY EDITION)
   ========================================================================== */

.clean-section-group {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.clean-section-group:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.95rem;
}

.gold-indicator-bar {
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #D4AF37 0%, #B8860B 100%);
  display: inline-block;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.clean-section-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 1. Segmented Experience Selector (Luminous Champagne & Wine Tabs) */
.segmented-mode-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.mode-tab-btn {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.mode-tab-badge {
  position: absolute;
  top: -9px;
  right: 8px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-size: 0.56rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
}

.mode-tab-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mode-icon-gem {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #722F37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mode-tab-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.mode-tab-text small {
  display: block;
  font-size: 0.68rem;
  color: #64748B;
  margin-top: 1px;
}

.mode-tab-btn:hover {
  background: #F8FAFC;
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.mode-tab-btn.active {
  background: linear-gradient(145deg, #FFFDF7 0%, #FEF9E8 100%);
  border-color: #D4AF37;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.22), 0 0 0 1px #D4AF37;
}

.mode-tab-btn.active .mode-icon-gem {
  background: #722F37;
  border-color: #54111C;
  color: #FFD700;
  box-shadow: 0 2px 8px rgba(114, 47, 55, 0.25);
}

.mode-tab-btn.active .mode-tab-text strong {
  color: #722F37;
}

/* 2. Elegant Form Fields & Dropdowns */
.clean-field-box {
  display: flex;
  flex-direction: column;
}

.clean-field-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.45rem;
}

.clean-field-label svg {
  color: #722F37;
}

.select-glass-wrap {
  position: relative;
}

.clean-select-input {
  appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 2.2rem 0.75rem 0.95rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23722F37' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.clean-select-input:hover {
  border-color: #D4AF37;
  background-color: #FAFAFA;
}

.clean-select-input:focus {
  outline: none;
  border-color: #D4AF37;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* 3. Attendees Luxury Grid */
.attendees-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.attendee-pill-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 0.5rem;
  min-width: 0;
  box-sizing: border-box;
}

.attendee-pill-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.att-profile-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.att-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.08) 0%, rgba(212, 175, 55, 0.12) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #722F37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.att-avatar-circle.child-avatar {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.12) 100%);
  border-color: rgba(16, 185, 129, 0.3);
  color: #059669;
}

.att-details-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.att-title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
}

.att-main-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.att-discount-badge {
  font-size: 0.58rem;
  font-weight: 900;
  color: #047857;
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  padding: 1px 5px;
  border-radius: 4px;
  white-space: nowrap;
}

.att-price-amount {
  font-size: 0.82rem;
  font-weight: 800;
  color: #722F37;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.att-price-amount.child-price {
  color: #047857;
}

/* Stepper Modern Luxury Widget */
.att-stepper-widget {
  display: inline-flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.stepper-action-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #1E293B;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.stepper-action-btn:hover {
  background: #722F37;
  border-color: #722F37;
  color: #FFFFFF;
  transform: scale(1.05);
}

.stepper-action-btn:active {
  transform: scale(0.95);
}

.stepper-val-input {
  width: 28px;
  text-align: center;
  background: transparent;
  border: none;
  color: #0F172A;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0;
  font-family: var(--font-mono, monospace);
}

.free-infant-pill {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: #065F46;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 0.6rem 0.95rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.infant-check-icon {
  color: #10B981;
  flex-shrink: 0;
}

/* 4. Optional Add-ons */
.addons-clean-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-clean-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.addon-clean-card.active {
  border-color: #D4AF37;
  background: #FFFDF7;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.addon-clean-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.addon-check-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  user-select: none;
  flex: 1;
}

.addon-check-label input[type="checkbox"] {
  display: none;
}

.addon-toggle-switch {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid #CBD5E1;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.addon-check-label input[type="checkbox"]:checked + .addon-toggle-switch {
  background: #722F37;
  border-color: #722F37;
  box-shadow: 0 0 8px rgba(114, 47, 55, 0.4);
}

.addon-check-label input[type="checkbox"]:checked + .addon-toggle-switch::after {
  content: '✓';
  color: #FFD700;
  font-size: 0.85rem;
  font-weight: 900;
}

.addon-vector-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #722F37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-clean-card.active .addon-vector-icon {
  background: #722F37;
  border-color: #722F37;
  color: #FFD700;
}

.addon-text-group strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
}

.addon-text-group small {
  display: block;
  font-size: 0.7rem;
  color: #64748B;
  margin-top: 2px;
}

.addon-price-pill {
  font-size: 0.76rem;
  font-weight: 800;
  color: #92400E;
  background: #FFFBEB;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid #FDE68A;
  white-space: nowrap;
}

.addon-expanded-row {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.addon-prompt-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

/* ==========================================================================
   OFFICIAL VIP TICKET PASS RECEIPT (RIGHT SIDEBAR - LUMINOUS MASTERPIECE)
   ========================================================================== */
.checkout-summary-sidebar {
  position: sticky;
  top: 0;
}

.ticket-receipt-card {
  background: #FFFFFF;
  border: 1.5px solid #D4AF37;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), 0 0 20px rgba(212, 175, 55, 0.12);
}

.receipt-header {
  background: linear-gradient(135deg, #722F37 0%, #54111C 50%, #2A070D 100%);
  padding: 1.25rem 1.35rem;
  border-bottom: 2px solid #D4AF37;
}

.receipt-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.receipt-gold-seal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFD700;
  color: #000;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  flex-shrink: 0;
}

.receipt-sub {
  font-size: 0.64rem;
  color: #FFD700;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
}

.receipt-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
}

.receipt-mode-pill {
  margin-top: 0.75rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: #FFF;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
}

.receipt-body {
  padding: 1.25rem 1.35rem;
  background: #FFFFFF;
}

.receipt-lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #334155;
}

.receipt-row.addon-row {
  color: #722F37;
  font-weight: 600;
}

.row-val {
  color: #0F172A;
  font-weight: 800;
}

.receipt-divider {
  height: 1.5px;
  background: #E2E8F0;
  margin: 1rem 0;
}

.receipt-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1.5px solid #F59E0B;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
  box-sizing: border-box;
}

.total-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.total-caption {
  font-size: 0.78rem;
  font-weight: 900;
  color: #92400E;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}

.total-notes {
  font-size: 0.68rem;
  color: #B45309;
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}

.total-amount-display {
  font-size: 1.55rem;
  font-weight: 900;
  color: #722F37;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.btn-checkout-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  font-weight: 900;
  padding: 0.95rem 1.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #722F37 0%, #8B1E2D 50%, #54111C 100%);
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
  width: 100%;
}

.btn-checkout-gold:hover {
  background: linear-gradient(135deg, #8B1E2D 0%, #A32638 50%, #722F37 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(114, 47, 55, 0.45);
}

.btn-checkout-gold:active {
  transform: translateY(0);
}

.receipt-security-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E2E8F0;
  font-size: 0.68rem;
  color: #64748B;
  font-weight: 600;
}

/* Responsive Master Breakpoints */
@media (max-width: 860px) {
  .checkout-step1-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .checkout-summary-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .segmented-mode-nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .attendees-clean-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   LIBRO DE RECLAMACIONES VIRTUAL - ESTILO TAURINO DE LUJO (LEY N° 29571)
   ========================================================================== */

/* Footer Trigger Button */
.btn-libro-reclamaciones-trigger {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  background: linear-gradient(135deg, rgba(120, 24, 40, 0.35) 0%, rgba(15, 20, 32, 0.85) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  color: #FFF;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 15px rgba(212, 175, 55, 0.12);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.btn-libro-reclamaciones-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: 0.5s;
}

.btn-libro-reclamaciones-trigger:hover::before {
  left: 100%;
}

.btn-libro-reclamaciones-trigger:hover {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(139, 30, 45, 0.6) 0%, rgba(20, 28, 50, 0.98) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(114, 47, 55, 0.45), 0 0 25px rgba(212, 175, 55, 0.3);
}

.libro-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F3D078 0%, #D4AF37 50%, #997510 100%);
  color: #0F131D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.45);
}

.libro-text-info {
  flex: 1;
}

.libro-sub-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #E6CA65;
  text-transform: uppercase;
}

.libro-main-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  margin-top: 1px;
}

.libro-arrow {
  font-size: 1.2rem;
  color: #E6CA65;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.btn-libro-reclamaciones-trigger:hover .libro-arrow {
  transform: translate(3px, -3px);
  color: #FFD700;
}

/* Claims Modal Backdrop & Card - Luminous Executive Ivory & Royal Burgundy Theme */
.claims-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 5500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.claims-modal-card {
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  margin: auto;
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  border-radius: 20px;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.5), 0 0 45px rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  color: #0F172A;
  box-sizing: border-box;
  animation: claimsModalSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes claimsModalSlide {
  from { opacity: 0; transform: translateY(25px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Torero Luxury Header Banner */
.claims-header-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.85rem;
  background: linear-gradient(135deg, #7B1113 0%, #580B0D 50%, #2A0406 100%);
  border-bottom: 2.5px solid #D4AF37;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.claims-brand-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.claims-emblem-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0D111A;
  border: 2px solid #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
  flex-shrink: 0;
}

.claims-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.claims-kicker-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.claims-kicker-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #FDE68A;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.claims-kicker-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.claims-heading {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.claims-legal-info {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  line-height: 1.35;
}

.claims-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.claims-close-btn:hover {
  background: #D90429;
  border-color: #D90429;
  transform: rotate(90deg) scale(1.05);
}

/* Modal Body Area */
.claims-body-area {
  padding: 1.6rem 1.85rem;
  background: #F8FAFC;
  overflow-y: auto;
  max-height: calc(92vh - 120px);
}

.claims-body-area::-webkit-scrollbar {
  width: 6px;
}

.claims-body-area::-webkit-scrollbar-track {
  background: #F1F5F9;
}

.claims-body-area::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.claims-body-area::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

.claims-form-section {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.claims-form-section:focus-within {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.12);
}

.claims-section-title {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #E2E8F0;
}

.claims-section-title .sec-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
  margin-top: 1px;
}

.sec-title-text h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.15rem 0;
  letter-spacing: -0.01em;
}

.sec-title-text p {
  font-size: 0.76rem;
  color: #64748B;
  margin: 0;
  line-height: 1.35;
}

/* Inputs & Grids */
.claims-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.claims-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.claims-input-wrap {
  margin-bottom: 0.95rem;
}

.claims-input-wrap label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.req-star {
  color: #DC2626;
  font-weight: 800;
  margin-left: 2px;
}

.claims-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.claims-field::placeholder {
  color: #94A3B8;
  font-size: 0.88rem;
}

.claims-field:hover {
  border-color: #94A3B8;
}

.claims-field:focus {
  border-color: #D4AF37;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25), 0 2px 8px rgba(0, 0, 0, 0.06);
}

select.claims-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237B1113' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.75rem;
  cursor: pointer;
}

.claims-field option {
  background: #FFFFFF;
  color: #0F172A;
  padding: 8px 12px;
}

.claims-textarea {
  resize: vertical;
  min-height: 85px;
  line-height: 1.5;
}

/* Reclamo vs Queja Selector Cards */
.claims-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.claim-type-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.claim-type-card:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.claim-type-card.active {
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF9F0 100%);
  border-color: #D4AF37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.claim-type-card input[type="radio"] {
  display: none;
}

.claim-type-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
}

.claim-type-card.active .claim-type-indicator {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.15);
}

.radio-custom-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s;
}

.claim-type-card.active .radio-custom-dot {
  background: #D4AF37;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.claim-type-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.type-pill {
  font-size: 0.66rem;
  font-weight: 800;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.06em;
}

.type-pill.reclamo {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}

.type-pill.queja {
  background: #FFFBEB;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.claim-type-info strong {
  font-size: 0.92rem;
  color: #0F172A;
}

.claim-type-info p {
  font-size: 0.78rem;
  color: #475569;
  margin: 0;
  line-height: 1.45;
}

/* Custom Checkbox */
.claims-checkbox-wrap {
  margin-top: 0.65rem;
}

.claims-custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: #334155;
  cursor: pointer;
  user-select: none;
}

.claims-custom-checkbox input {
  accent-color: #7B1113;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.checkbox-label-text small {
  color: #64748B;
}

.claims-guardian-box {
  background: #FFFBEB;
  border: 1.5px dashed #FCD34D;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.85rem;
}

/* Legal Notice Box */
.claims-legal-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  margin-top: 1.25rem;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.08);
}

.notice-icon-seal {
  color: #059669;
  flex-shrink: 0;
  margin-top: 1px;
}

.notice-text .notice-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #065F46;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.notice-text p {
  font-size: 0.8rem;
  color: #047857;
  line-height: 1.45;
  margin: 0;
}

/* Action Bar */
.claims-actions-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E2E8F0;
}

.btn-claims-cancel {
  padding: 0.9rem 1.6rem;
  background: #F1F5F9;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  color: #475569;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-claims-cancel:hover {
  background: #E2E8F0;
  color: #0F172A;
  border-color: #94A3B8;
}

.btn-claims-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, #7B1113 0%, #580B0D 100%);
  border: 1.5px solid #D4AF37;
  border-radius: 12px;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.96rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(123, 17, 19, 0.35);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-claims-submit:hover {
  background: linear-gradient(135deg, #911518 0%, #6E0E10 100%);
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 17, 19, 0.5);
}

.btn-claims-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Receipt View */
.claims-receipt-container {
  padding: 0.5rem 0;
}

.claims-receipt-container {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.receipt-badge-success {
  text-align: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.success-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFF;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
}

.receipt-badge-success h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: #0F172A;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.receipt-badge-success p {
  font-size: 0.88rem;
  color: #64748B;
}

.receipt-official-card {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  color: #0F172A;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

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

.receipt-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.receipt-logo {
  height: 48px;
}

.receipt-brand h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0;
  color: #0F172A;
  font-weight: 800;
}

.receipt-brand p {
  font-size: 0.72rem;
  color: #7B1113;
  margin: 2px 0 0 0;
  font-weight: 700;
}

.receipt-code-box {
  text-align: right;
}

.receipt-type-pill {
  font-size: 0.68rem;
  font-weight: 900;
  background: #7B1113;
  color: #FDE68A;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #D4AF37;
  letter-spacing: 0.06em;
}

.receipt-code-num {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 1.35rem;
  color: #0F172A;
  font-weight: 900;
  margin-top: 4px;
}

.receipt-gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 1.15rem 0;
}

.receipt-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.receipt-col h5, .receipt-details-box h5 {
  font-size: 0.76rem;
  color: #7B1113;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  border-bottom: 1.5px solid #E2E8F0;
  padding-bottom: 0.35rem;
  text-transform: uppercase;
  font-weight: 800;
}

.receipt-col p {
  font-size: 0.84rem;
  color: #334155;
  margin: 0.4rem 0;
}

.receipt-col p strong {
  color: #0F172A;
}

.receipt-text-block {
  font-size: 0.86rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.85rem;
  color: #1E293B;
  line-height: 1.5;
  white-space: pre-line;
}

.status-pill-open {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.receipt-footer-legal {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px dashed #CBD5E1;
  font-size: 0.74rem;
  color: #64748B;
  text-align: center;
  line-height: 1.45;
}

.receipt-actions-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.85rem;
  width: 100%;
  flex-wrap: wrap;
}

.btn-claims-print-action {
  background: linear-gradient(135deg, #FFDF00 0%, #D4AF37 50%, #AA7C11 100%) !important;
  color: #0A0A0A !important;
  font-weight: 800 !important;
  padding: 0.9rem 1.85rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  font-size: 0.95rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-claims-print-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55) !important;
}

.btn-claims-close-action {
  background: #F1F5F9 !important;
  color: #334155 !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.75rem !important;
  border-radius: 9999px !important;
  border: 1.5px solid #CBD5E1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  font-size: 0.92rem !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.btn-claims-close-action:hover {
  background: #E2E8F0 !important;
  color: #0F172A !important;
  border-color: #94A3B8 !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   MASTER RESPONSIVE ARCHITECTURE (MOBILE, TABLET, LAPTOP, DESKTOP)
   ========================================================================== */

/* ─── 1. LARGE SCREENS & DESKTOPS (<= 1200px) ────────────────────────────── */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  
  .footer-main-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }

  .engine-grid-layout {
    gap: 2.5rem;
  }

  .fullday-pricing-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }
}

/* ─── 2. TABLETS & SMALL LAPTOPS (<= 991px) ──────────────────────────────── */
@media (max-width: 991px) {
  /* Navigation Bar */
  .nav-links-desktop {
    display: none !important;
  }
  
  .mobile-nav-toggle {
    display: flex !important;
  }
  
  .nav-actions .btn-sm {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    padding: 6.5rem 0 3.5rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 5.5vw, 3.2rem);
  }

  .hero-title .hero-brand-highlight {
    white-space: normal !important;
  }

  .trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  .trust-stat-box {
    padding: 0.25rem 0;
  }

  /* Urgency Bar & Countdown */
  .countdown-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
    width: 100%;
  }

  .countdown-callout {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.85rem;
    width: 100%;
  }

  .festivity-date-pill {
    margin: 0 auto;
  }

  .countdown-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .festivity-status-line {
    justify-content: center;
    width: 100%;
  }

  .countdown-callout h3 {
    text-align: center;
  }

  .countdown-callout p {
    text-align: center;
    margin: 0 auto;
  }

  .countdown-action-side {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1.25rem;
  }

  .countdown-clocks {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .festivity-quick-buy {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Seating Simulator */
  .engine-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .arena-svg-stage {
    padding: 2rem 1.25rem;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  /* Experiences Grid */
  .club-exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  /* Bungalows */
  .bungalows-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .lodging-perks-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  /* Attractions Full Day */
  .fullday-pricing-card {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2rem !important;
  }

  .fullday-action-right {
    width: 100%;
    box-sizing: border-box;
  }

  /* Facility Gallery */
  .gallery-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ & Testimonials Split Layout */
  .faq-split-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  /* Location / Contact */
  .location-portal-card {
    grid-template-columns: 1fr;
  }

  .location-info-side {
    padding: 2.75rem 2rem;
  }

  .location-map-side {
    min-height: 350px;
  }

  /* Footer */
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4.5rem 0 3rem;
  }

  /* Modal Step 1 Layout */
  .checkout-step1-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkout-summary-sidebar {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ─── 3. PHONES & COMPACT TABLETS (<= 768px) ─────────────────────────────── */
@media (max-width: 768px) {
  /* Global Spacing */
  .section-events-showcase,
  .section-seating-engine,
  .section-experiences-grid,
  .section-bungalows,
  .section-recreation,
  .section-photo-gallery,
  .section-facility-gallery,
  .section-faq-testimonials,
  .section-faq-accordion,
  .section-location-guide {
    padding: 3.5rem 0 !important;
  }

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

  .section-title {
    font-size: clamp(1.65rem, 5vw, 2.2rem) !important;
    word-break: break-word;
  }

  .section-desc {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  /* Filter Pills Horizontal Scroll */
  .events-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.85rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    gap: 0.6rem;
    scrollbar-width: none;
  }

  .events-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.5rem 1.15rem;
  }

  /* Event Cards */
  .events-cards-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
  }

  .event-master-card {
    max-width: 100%;
    width: 100%;
  }

  /* Experiences / Club */
  .club-exp-grid,
  .bungalows-cards-grid,
  .attractions-master-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  /* Full Day Recreation Card */
  .fullday-pricing-card {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.6rem 1.25rem !important;
    border-radius: var(--radius-lg);
  }

  .fullday-info-left h3 {
    font-size: 1.6rem !important;
  }

  .fullday-info-left p {
    font-size: 0.92rem !important;
    margin-bottom: 1.15rem !important;
  }

  .fullday-tags {
    gap: 0.5rem !important;
  }

  .fullday-action-right {
    padding: 1.35rem 1rem !important;
  }

  .fullday-price-tag {
    flex-direction: row !important;
    justify-content: space-around !important;
  }

  /* Gallery */
  .gallery-mosaic-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 220px !important;
  }

  .mosaic-tile.span-2x2,
  .mosaic-tile.span-2x1 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* FAQ & Testimonials */
  .faq-split-layout {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }

  .acc-header-btn {
    padding: 1.1rem 1.25rem !important;
    font-size: 0.95rem !important;
  }

  .acc-body-content {
    padding: 0 1.25rem 1.25rem !important;
    font-size: 0.9rem !important;
  }

  .quote-bubble-card {
    padding: 1.5rem 1.25rem !important;
  }

  /* Seating Simulator */
  .arena-svg-stage {
    padding: 1.25rem 0.5rem !important;
    border-radius: var(--radius-lg);
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .arena-svg-stage svg {
    max-width: 100% !important;
    height: auto !important;
  }

  .zone-interactive-item {
    padding: 1rem 1.15rem;
  }

  .zone-meta-texts h4 {
    font-size: 1rem;
  }

  .zone-item-price .cost {
    font-size: 1.2rem;
  }

  /* Calculator Panel */
  .calculator-action-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .sim-attendees-wrap {
    justify-content: space-around;
    width: 100%;
    gap: 1rem;
  }

  .sim-subtotal-side {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  /* ─── CHECKOUT & CLAIMS MODAL FULLSCREEN APP VIEW ON MOBILE ─── */
  .checkout-modal-backdrop,
  .claims-modal-backdrop {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    border-radius: 0 !important;
  }

  .checkout-modal-card,
  .claims-modal-card {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
  }

  .modal-header-banner,
  .claims-header-banner {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    padding: 0.85rem 1.15rem !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
  }

  .modal-header-banner h3 {
    font-size: 1.1rem;
  }

  .claims-heading {
    font-size: 1.05rem !important;
  }

  .claims-emblem-circle {
    width: 38px !important;
    height: 38px !important;
  }

  .claims-legal-info {
    font-size: 0.62rem !important;
  }

  .modal-body-area,
  .claims-body-area {
    padding: 1rem 1rem 3.5rem 1rem !important;
    flex-grow: 1 !important;
    max-height: none !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }

  /* Step 1: Modalities & Layout */
  .checkout-step1-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
  }

  .access-mode-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .access-mode-btn {
    width: 100% !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0.85rem 1rem !important;
    text-align: left !important;
    gap: 0.85rem !important;
  }

  .mode-icon-wrap {
    margin: 0 !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
  }

  .mode-texts {
    flex-grow: 1 !important;
  }

  .mode-texts strong {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
  }

  .mode-texts span {
    font-size: 0.75rem !important;
    margin: 0 !important;
  }

  .mode-access-badge {
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .form-row-2col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .attendee-steppers-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .attendee-card {
    padding: 0.85rem 1rem !important;
  }

  .addon-expanded-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }

  .small-stepper {
    transform: none !important;
  }

  .checkout-summary-sidebar {
    position: static !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
  }

  /* Step 2: Buyer Form */
  #checkoutStep2 {
    max-width: 100% !important;
    width: 100% !important;
  }

  .form-field-group {
    margin-bottom: 1.15rem !important;
  }

  .form-text-input {
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
  }

  .field-hint {
    font-size: 0.76rem !important;
    line-height: 1.35 !important;
  }

  .step-nav-action-bar {
    flex-direction: column-reverse !important;
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
  }

  .btn-step-next {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    flex: none !important;
  }

  .btn-step-back {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 0.92rem !important;
    flex: none !important;
  }

  /* Claims Modal Form & Receipt Details */
  .claims-form-section {
    padding: 1.15rem 0.95rem !important;
    margin-bottom: 0.85rem !important;
    border-radius: 14px !important;
  }

  .claims-grid-3col,
  .claims-grid-2col,
  .claims-type-selector,
  .receipt-data-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .claims-actions-bar {
    flex-direction: column-reverse !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .btn-claims-cancel,
  .btn-claims-submit {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .receipt-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .receipt-code-box {
    text-align: left;
  }

  .receipt-actions-bar {
    flex-direction: column;
    width: 100%;
  }

  .receipt-actions-bar .btn {
    width: 100%;
  }

  /* Step 4: Lanyard Card Mobile Fitting */
  .lanyard-experience-stage {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin-bottom: 1rem !important;
  }

  .lanyard-card-container {
    width: 100% !important;
    max-width: 295px !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .vip-lanyard-badge-card {
    width: 100% !important;
    max-width: 295px !important;
    margin: 0 auto !important;
    border-radius: 20px !important;
  }

  .badge-top-header {
    padding: 1.4rem 1rem 0.8rem 1rem !important;
  }

  .badge-dark-body {
    padding: 1.1rem 0.85rem 0.85rem 0.85rem !important;
  }

  .badge-holder-name {
    font-size: 1.05rem !important;
  }

  .badge-qr-box {
    padding: 0.75rem !important;
    border-radius: 16px !important;
  }

  .badge-qr-box canvas {
    width: 130px !important;
    height: 130px !important;
  }

  .ticket-actions-bar {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 295px !important;
    margin: 1rem auto 0 auto !important;
    gap: 0.65rem !important;
  }

  .btn-ticket-action {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.92rem !important;
    padding: 0.85rem !important;
  }

  /* Footer */
  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 3.5rem 0 2rem !important;
  }

  .footer-sub-flex {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ─── 4. EXTRA SMALL PHONES & COMPACT SCREENS (<= 480px) ─────────────────── */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Brand Logo in Header */
  .brand-logo-img {
    height: 35px;
  }

  .brand-logo-text .brand-text-main {
    font-size: 1.12rem;
  }

  .brand-logo-text .brand-text-gold {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  /* Hero Section (Clearance for 75px fixed header) */
  .hero-section {
    padding: 6.5rem 0 2.5rem !important;
  }

  .hero-pill-badge {
    font-size: 0.68rem !important;
    padding: 0.35rem 0.8rem !important;
    letter-spacing: 0.05em !important;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem !important;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7.2vw, 2.1rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    max-width: 95% !important;
    margin: 0 auto 1.35rem auto !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1.75rem auto !important;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
  }

  .audio-ambience-btn {
    display: inline-flex !important;
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    padding: 0 !important;
    border-radius: 50% !important;
    align-items: center;
    justify-content: center;
    background: rgba(14, 16, 19, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    z-index: 40;
  }

  .audio-ambience-btn .audio-btn-text {
    display: none !important;
  }

  .audio-ambience-btn .audio-btn-icon svg {
    width: 14px;
    height: 14px;
    margin: 0 !important;
    display: block;
  }

  /* Amenities & Experience Showcase */
  .hero-amenities-banner {
    margin-top: 1rem;
    width: 100%;
  }

  .amenities-badge {
    font-size: 0.68rem !important;
    padding: 0.35rem 0.85rem !important;
    margin-bottom: 0.85rem !important;
  }

  .trust-stats-grid {
    padding: 1rem 1.15rem !important;
    gap: 0.85rem !important;
    width: 100%;
    box-sizing: border-box;
  }

  .stat-icon-wrap {
    width: 42px !important;
    height: 42px !important;
  }

  .stat-info h4 {
    font-size: 0.98rem !important;
  }

  .stat-info p {
    font-size: 0.78rem !important;
  }

  /* Countdown Clocks & Festivity Urgency */
  .countdown-callout {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .festivity-date-pill {
    padding: 0.45rem 1rem !important;
    margin: 0 auto 0.6rem auto !important;
  }

  .festivity-date-num {
    font-size: 1.45rem !important;
  }

  .countdown-text-block {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .festivity-status-line {
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto 0.25rem auto !important;
  }

  .festivity-kicker {
    font-size: 0.68rem !important;
    text-align: center !important;
  }

  .countdown-callout h3 {
    font-size: clamp(1.15rem, 5vw, 1.35rem) !important;
    text-align: center !important;
    margin: 0 auto 0.35rem auto !important;
  }

  .countdown-callout p {
    font-size: 0.8rem !important;
    text-align: center !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }

  .countdown-clocks {
    gap: 0.3rem !important;
    margin: 0 auto !important;
  }

  .time-cube {
    width: 48px !important;
    height: 48px !important;
  }

  .time-cube .digits {
    font-size: 1.15rem !important;
  }

  .time-cube .unit {
    font-size: 0.52rem !important;
  }

  .time-divider {
    font-size: 1rem !important;
  }

  /* Location Card */
  .location-info-side {
    padding: 2.25rem 1.25rem !important;
  }

  .location-map-side {
    min-height: 280px !important;
  }

  /* Modal Step Wizard */
  .modal-step-flow {
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }

  .modal-step-flow::before {
    left: 6%;
    right: 6%;
    top: 13px;
  }

  .step-node-title {
    display: none;
  }

  .step-node-bubble {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  /* Addons & Pricing */
  .addon-tile {
    padding: 0.75rem 0.85rem;
  }

  .addon-tile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .addon-cost-badge {
    align-self: flex-start;
  }

  /* Toast & Notification: Hidden on small mobile screens to prevent overlap */
  .live-sales-notification {
    display: none !important;
  }

  .toast {
    max-width: 90vw;
    font-size: 0.85rem;
  }

  /* Floating WhatsApp Direct Button */
  .whatsapp-direct-bubble {
    width: 50px !important;
    height: 50px !important;
    bottom: 1rem !important;
    right: 1rem !important;
  }

  .whatsapp-direct-bubble svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* ==========================================================================
   DYNAMIC SITE BANNER ALERT (ADMIN CONTROLLED)
   ========================================================================== */
body.has-site-banner {
  padding-top: 48px;
}
body.has-site-banner .site-header {
  top: 48px;
}
.site-banner-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #7B1113 0%, #4A080A 50%, #200304 100%);
  border-bottom: 2px solid #D4AF37;
  color: #FFFFFF;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  z-index: 1005;
  animation: bannerSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  body.has-site-banner {
    padding-top: 68px;
  }
  body.has-site-banner .site-header {
    top: 68px;
  }
}

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

.banner-alert-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.banner-badge {
  background: #FFD700;
  color: #000;
  font-weight: 900;
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
  font-weight: 600;
  color: #FFF4D0;
  margin: 0;
  font-size: 0.88rem;
}

.banner-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.banner-date {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFF;
}

.banner-price {
  color: #FFD700;
  font-weight: 800;
}

/* ==========================================================================
   PRÓXIMAMENTE (COMING SOON) BADGES & INTERACTIVE OVERLAYS
   ========================================================================== */
.badge-coming-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  z-index: 5;
  pointer-events: none;
}

.addon-clean-card.addon-coming-soon {
  opacity: 0.72;
  border: 1.5px dashed rgba(212, 175, 55, 0.45);
  background: rgba(15, 23, 42, 0.5);
  cursor: pointer;
  position: relative;
}

.addon-clean-card.addon-coming-soon:hover {
  opacity: 0.9;
  border-color: #D4AF37;
}

/* ==========================================================================
   SERVICE NOTICE MODAL ("PRÓXIMAMENTE" INSTITUCIONAL)
   ========================================================================== */
.service-notice-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.service-notice-card {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  padding: 2.25rem 2rem;
  text-align: center;
  color: #0F172A;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.25);
  animation: claimsModalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.notice-gold-seal {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B1113, #3F0708);
  border: 2px solid #D4AF37;
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem auto;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.notice-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  color: #7B1113;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

.notice-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #0F172A;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.notice-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 0.85rem auto 1.15rem auto;
  width: 80%;
}

.notice-message {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 1.35rem;
}

.notice-status-pill {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.notice-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   COMICA SHOWCASE CONTAINER (SIMULATOR ALTERNATIVE)
   ========================================================================== */
.comica-showcase-container {
  max-width: 1120px;
  margin: 0 auto;
  animation: fadeInComica 0.4s ease-out;
}

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

.comica-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.25rem;
  background: rgba(18, 24, 38, 0.85);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.comica-poster-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.comica-poster-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.comica-poster-card:hover img {
  transform: scale(1.04);
}

.comica-poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.6) 50%, rgba(11, 14, 20, 0.95) 100%);
  pointer-events: none;
}

.comica-poster-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
}

.comica-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.comica-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(217, 119, 6, 0.9);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.comica-badge-tag.green {
  background: rgba(16, 185, 129, 0.9);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.comica-poster-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.comica-poster-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.comica-poster-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comica-tickets-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comica-tickets-head h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #FFF;
  margin-bottom: 0.35rem;
}

.comica-tickets-head p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.comica-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.comica-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light, #FDE68A);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
}

.comica-price-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.comica-price-box {
  background: rgba(14, 18, 28, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.15rem;
  text-align: center;
  transition: all 0.25s;
}

.comica-price-box:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.comica-price-box .rate-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light, #FDE68A);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.comica-price-box .rate-amount {
  font-size: 1.65rem;
  font-weight: 900;
  color: #FFF;
  font-family: var(--font-title);
  margin-bottom: 0.25rem;
}

.comica-price-box .rate-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}

.comica-counter-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.25rem 0.5rem;
}

.comica-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.15);
  color: #FFF;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.comica-counter-btn:hover {
  background: #D4AF37;
  color: #000;
}

.comica-counter-digit {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFF;
  min-width: 24px;
  text-align: center;
}

.comica-summary-bar {
  background: rgba(14, 18, 28, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.comica-total-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.comica-total-amount {
  font-size: 1.55rem;
  font-weight: 900;
  color: #FFD700;
  font-family: var(--font-title);
}

.comica-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.comica-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 860px) {
  .comica-showcase-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .comica-poster-card {
    min-height: 320px;
  }
  .comica-features-list,
  .comica-price-options-grid {
    grid-template-columns: 1fr;
  }
}

/* --- DUAL MODE TAB SELECTOR BAR (DOBLE FUNCIÓN) --- */
.dual-mode-tab-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.dual-mode-tab-btn {
  background: rgba(18, 22, 34, 0.85);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  color: #94A3B8;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.dual-mode-tab-btn:hover {
  border-color: #D4AF37;
  color: #FFF;
  transform: translateY(-2px);
}

.dual-mode-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(123, 17, 19, 0.4));
  border-color: #FFD700;
  color: #FFD700;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.dual-mode-tab-btn .tab-emoji {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.dual-mode-tab-btn.active .tab-emoji {
  transform: scale(1.18);
}

