/**
 * ════════════════════════════════════════════════════════════════════════════
 * RESERVAS V2 - ESTILOS PREMIUM HOTEL BOUTIQUE
 * ════════════════════════════════════════════════════════════════════════════
 * 
 * ARCHIVO: public/css/reservas_v2.css
 * VERSIÓN: 2.0 - DISEÑO PREMIUM / HOTEL DE LUJO
 * FECHA: 04/02/2026
 * DESARROLLADOR: Oscar Hernández - Horizon Labs
 * PROYECTO: Lodge Karrizo - Sistema de Reservas Online
 * 
 * ════════════════════════════════════════════════════════════════════════════
 * ESTRUCTURA DEL ARCHIVO:
 * ════════════════════════════════════════════════════════════════════════════
 * 
 * 1.  Variables CSS Premium
 * 2.  Reset y Base
 * 3.  Header Elegante
 * 4.  Hero Impactante
 * 5.  Buscador Premium
 * 6.  Cards de Habitación Boutique
 * 7.  Modal de Datos Cliente
 * 8.  Modal de Detalles Premium
 * 9.  Loading States
 * 10. Alertas Elegantes
 * 11. Responsive Tablet (min-width: 576px)
 * 12. Responsive Desktop (min-width: 992px)
 * 
 * ════════════════════════════════════════════════════════════════════════════
 * FILOSOFÍA DE DISEÑO:
 * ════════════════════════════════════════════════════════════════════════════
 * 
 * ✨ ESPACIADO GENEROSO - Más aire, menos apretado
 * 💎 ANIMACIONES SUAVES - Transiciones elegantes y naturales
 * 🎨 JERARQUÍA CLARA - Tipografía profesional con contraste
 * 🖼️ IMÁGENES GRANDES - Protagonismo visual
 * 💫 MICRO-INTERACCIONES - Detalles que hacen la diferencia
 * 
 * ════════════════════════════════════════════════════════════════════════════
 */


/* ════════════════════════════════════════════════════════════════════════════
   1. VARIABLES CSS PREMIUM
   ════════════════════════════════════════════════════════════════════════════ */

/* Fuente Google - Montserrat (elegante y profesional) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
    /* ── Colores Principales (Premium Adjustments) ─────────────────────────── */
    --primary-reservas: #8C4C42;
    --primary-reservas-dark: #6b3025;
    --primary-reservas-light: #a05a4a;
    --secondary-reservas: #F9D4B2;
    
    /* ── Colores de Estado ─────────────────────────────────────────────────── */
    --success-reservas: #00aa6c;
    --error-reservas: #dc3545;
    --warning-reservas: #f59e0b;
    --info-reservas: #3b82f6;
    
    /* ── Colores Neutros Premium ───────────────────────────────────────────── */
    --bg-reservas: #fdfbf7;
    --card-reservas: #ffffff;
    --border-reservas: #e9e9e9;
    --border-light: #f0f0f0;
    --text-dark: #1f2937;
    --text-medium: #374151;
    --text-light: #6c757d;
    --text-muted: #9ca3af;
    
    /* ── Tipografías Premium ───────────────────────────────────────────────── */
    --font-body-reservas: "Montserrat", sans-serif;
    --font-heading-reservas: "Montserrat", sans-serif;
    
    /* ── Sombras Elegantes ─────────────────────────────────────────────────── */
    --shadow-sm-reservas: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md-reservas: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg-reservas: 0 10px 30px rgba(0,0,0,0.10);
    --shadow-xl-reservas: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-premium: 0 25px 80px rgba(140, 76, 66, 0.15);
    
    /* ── Transiciones Suaves ───────────────────────────────────────────────── */
    --transition-reservas: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* ── Bordes Premium ────────────────────────────────────────────────────── */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}


/* ════════════════════════════════════════════════════════════════════════════
   2. RESET Y BASE
   ════════════════════════════════════════════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}

.reservas-page {
    background-color: var(--bg-reservas);
    font-family: var(--font-body-reservas);
    min-height: 100vh;
    overflow-x: hidden;
}

.reservas-page *,
.reservas-page *::before,
.reservas-page *::after {
    box-sizing: border-box;
}


/* ════════════════════════════════════════════════════════════════════════════
   3. HEADER ELEGANTE
   ════════════════════════════════════════════════════════════════════════════ */

.header-reservas {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-reservas);
    box-shadow: var(--shadow-sm-reservas);
    transition: var(--transition-reservas);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content-reservas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 1.5rem;
}

/* ── Logo ──────────────────────────────────────────────────────────────────── */

.logo-reservas {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #8d3d00 0%, #6b3025 100%);
    border: 2px solid var(--primary-reservas-dark);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    flex-shrink: 0;
    transition: var(--transition-reservas);
}

.logo-reservas:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md-reservas);
}

.logo-img-reservas {
    max-height: 50px;
    width: auto;
    transition: var(--transition-reservas);
}

/* ── Título del Header ─────────────────────────────────────────────────────── */

.header-title-reservas {
    text-align: center;
    flex-grow: 1;
    min-width: 0;
}

.header-title-reservas h1 {
    font-family: var(--font-heading-reservas);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-reservas);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.header-title-reservas p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    display: none; /* Oculto en móvil */
    font-weight: 400;
}

/* ── Botones de Acción ─────────────────────────────────────────────────────── */

.header-actions-reservas {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-header-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border-reservas);
    border-radius: var(--radius-md);
    color: var(--primary-reservas);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-reservas);
}

.btn-header-action:hover {
    background-color: var(--primary-reservas);
    color: white;
    border-color: var(--primary-reservas);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md-reservas);
}

.btn-header-action i {
    font-size: 1rem;
}

/* Ocultar texto en móvil */
.btn-header-action span {
    display: none;
}

.btn-policies {
    background-color: var(--secondary-reservas);
    color: var(--primary-reservas-dark);
    border-color: var(--secondary-reservas);
}

.btn-policies:hover {
    background-color: #e8c49b;
    border-color: #e8c49b;
    color: white;
}


/* ════════════════════════════════════════════════════════════════════════════
   4. HERO IMPACTANTE CON IMAGEN GRANDE
   ════════════════════════════════════════════════════════════════════════════ */

.hero-reservas {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-reservas) 0%, #5a2400 100%);
    color: white;
    overflow: hidden;
}

.hero-overlay-reservas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../assets/img/background/b25.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

/* Efecto parallax sutil */
.hero-reservas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-content-reservas {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-reservas {
    font-family: var(--font-heading-reservas);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle-reservas {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ── Stepper Visual Elegante ────────────────────────────────────────────────── */

.stepper-reservas {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    opacity: 0.5;
    transition: var(--transition-reservas);
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition-reservas);
}

.step-item.active .step-number {
    background: white;
    color: var(--primary-reservas);
    border-color: white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    max-width: 80px;
}


/* ════════════════════════════════════════════════════════════════════════════
   5. BUSCADOR PREMIUM
   ════════════════════════════════════════════════════════════════════════════ */

.search-section-reservas {
    padding: 4rem 0;
    background: var(--bg-reservas);
}

.search-box-reservas {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-premium);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.search-title-reservas {
    font-family: var(--font-heading-reservas);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.02em;
}

.search-title-reservas i {
    color: var(--primary-reservas);
    font-size: 1.5rem;
}

.search-form-reservas {
    width: 100%;
}

.search-grid-reservas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ── Campos de Búsqueda Premium ─────────────────────────────────────────────── */

.search-field-reservas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-field-reservas label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.search-field-reservas label i {
    color: var(--primary-reservas);
    font-size: 1rem;
}

.input-reservas {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-reservas);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body-reservas);
    transition: var(--transition-reservas);
    background: white;
    color: var(--text-dark);
    font-weight: 500;
}

.input-reservas:focus {
    outline: none;
    border-color: var(--primary-reservas);
    box-shadow: 0 0 0 3px rgba(140, 76, 66, 0.1);
    transform: translateY(-2px);
}

.input-reservas:hover {
    border-color: var(--primary-reservas-light);
}

/* ── Botón de Búsqueda Premium ──────────────────────────────────────────────── */

.btn-search-reservas {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-reservas) 0%, var(--primary-reservas-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-reservas);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg-reservas);
}

.btn-search-reservas:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-search-reservas:active {
    transform: translateY(-1px);
}

.btn-search-reservas i:last-child {
    transition: transform 0.3s ease;
}

.btn-search-reservas:hover i:last-child {
    transform: translateX(5px);
}


/* ════════════════════════════════════════════════════════════════════════════
   6. CARDS DE HABITACIÓN BOUTIQUE
   ════════════════════════════════════════════════════════════════════════════ */

.results-section-reservas {
    padding: 4rem 0;
    background: var(--bg-reservas);
}

/* ── Header de Resultados ───────────────────────────────────────────────────── */

.results-header-reservas {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header-reservas h3 {
    font-family: var(--font-heading-reservas);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.02em;
}

.results-header-reservas h3 i {
    color: var(--success-reservas);
    font-size: 1.75rem;
}

.results-count {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 400;
}

.results-count strong {
    color: var(--primary-reservas);
    font-weight: 700;
}

/* ── Grid de Habitaciones Premium ───────────────────────────────────────────── */

.rooms-grid-reservas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Room Card Boutique ─────────────────────────────────────────────────────── */

.room-card-reservas {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md-reservas);
    transition: var(--transition-slow);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.room-card-reservas:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-reservas-light);
}

/* ── Contenedor de Imagen con Galería ───────────────────────────────────────── */

.room-image-container-reservas {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #8d3d00 0%, #6b3025 100%);
}

/* Skeleton Loader Elegante */
.room-image-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0ebe5 0%, #e8e3dd 50%, #f0ebe5 100%);
    background-size: 200% 100%;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    animation: skeletonPulse 2s infinite;
}

@keyframes skeletonPulse {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: shimmerEffect 2.5s infinite;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.room-image-container-reservas.loaded .room-image-skeleton {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Imágenes Lazy Loading */
.room-img-lazy {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.room-img-lazy.visible {
    opacity: 1;
}

/* ── Badges Premium ─────────────────────────────────────────────────────────── */

.seasonal-badge-reservas {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, var(--warning-reservas) 0%, #ea580c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seasonal-badge-reservas i {
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.price-badge-reservas {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-reservas);
    line-height: 1;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Información de la Habitación ───────────────────────────────────────────── */

.room-info-reservas {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.room-header-reservas {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.room-name-reservas {
    font-family: var(--font-heading-reservas);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex: 1;
}

.room-number-reservas {
    background: var(--secondary-reservas);
    color: var(--primary-reservas-dark);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-description-reservas {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ── Amenidades Premium ─────────────────────────────────────────────────────── */

.room-amenities-reservas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.amenity-item i {
    color: var(--primary-reservas);
    font-size: 1rem;
}

.amenity-more {
    background: var(--border-light);
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ── Pricing Premium ────────────────────────────────────────────────────────── */

.room-pricing-reservas {
    padding: 1.25rem;
    background: var(--bg-reservas);
    border-radius: var(--radius-md);
    border: 2px dashed var(--border-reservas);
}

.total-price-reservas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.total-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
}

.total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-reservas);
    letter-spacing: -0.02em;
}

/* ── Botones de Acción Premium ──────────────────────────────────────────────── */

.room-actions-group-reservas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
}

.btn-details-room-reservas,
.btn-select-room-reservas {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-reservas);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-details-room-reservas {
    background: white;
    color: var(--primary-reservas);
    border: 2px solid var(--primary-reservas);
}

.btn-details-room-reservas:hover {
    background: var(--primary-reservas);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md-reservas);
}

.btn-select-room-reservas {
    background: linear-gradient(135deg, var(--primary-reservas) 0%, var(--primary-reservas-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md-reservas);
}

.btn-select-room-reservas:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}


/* ════════════════════════════════════════════════════════════════════════════
   7. MODAL DE DATOS CLIENTE (BOOKING MODAL)
   ════════════════════════════════════════════════════════════════════════════ */

.modal-reservas {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    overflow-y: auto;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-reservas.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-container {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl-reservas);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Botón Cerrar Premium ───────────────────────────────────────────────────── */

.booking-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-reservas);
    border: 2px solid var(--border-reservas);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-reservas);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-close-btn:hover {
    background: var(--error-reservas);
    color: white;
    border-color: var(--error-reservas);
    transform: rotate(90deg);
}

/* ── Header del Modal ───────────────────────────────────────────────────────── */

.booking-modal-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.booking-modal-header h3 {
    font-family: var(--font-heading-reservas);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: -0.02em;
}

.booking-modal-header h3 i {
    color: var(--primary-reservas);
}

.booking-modal-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
}

/* ── Body Scrolleable ───────────────────────────────────────────────────────── */

.booking-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* Tarjeta de Resumen Premium */
.booking-summary-card {
    background: linear-gradient(135deg, var(--bg-reservas) 0%, #f5f0ea 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-light);
}

.booking-summary-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-reservas);
}

.booking-summary-header i {
    color: var(--primary-reservas);
    font-size: 1.25rem;
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.booking-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-summary-item .item-icon {
    color: var(--primary-reservas);
    font-size: 1.1rem;
}

.booking-summary-item .item-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.booking-summary-item .item-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.booking-summary-item.highlight-item {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-reservas);
}

.booking-summary-item.highlight-item .item-value {
    color: var(--primary-reservas);
    font-size: 1.5rem;
}

/* ── Formulario Premium ─────────────────────────────────────────────────────── */

.booking-form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    letter-spacing: -0.02em;
}

.booking-form-section-title i {
    color: var(--primary-reservas);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.booking-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-form-field.full-width {
    grid-column: 1 / -1;
}

.booking-form-field label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-form-field label i {
    color: var(--primary-reservas);
}

.required-mark {
    color: var(--error-reservas);
    font-weight: 700;
}

.booking-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border-reservas);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body-reservas);
    transition: var(--transition-reservas);
    font-weight: 500;
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary-reservas);
    box-shadow: 0 0 0 3px rgba(140, 76, 66, 0.1);
}

.field-help {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Input con Validación (RUT) */
.input-with-validation {
    position: relative;
}

.validation-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
}

.validation-icon.valid {
    color: var(--success-reservas);
}

.validation-icon.invalid {
    color: var(--error-reservas);
}

/* Checkbox Premium */
.booking-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--bg-reservas);
    border-radius: var(--radius-md);
    transition: var(--transition-reservas);
}

.booking-checkbox-wrapper:hover {
    background: var(--border-light);
}

.booking-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.booking-checkbox-wrapper a {
    color: var(--primary-reservas);
    font-weight: 600;
    text-decoration: underline;
}

/* Info de Pago Premium */
.booking-payment-info {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--success-reservas);
    margin-top: 1rem;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--success-reservas);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-icon i {
    font-size: 1.5rem;
}

.payment-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.payment-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* ── Footer del Modal con Botones Premium ───────────────────────────────────── */

.booking-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--border-light);
    display: flex;
    gap: 1rem;
    background: var(--bg-reservas);
}

.btn-booking-secondary,
.btn-booking-primary {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-reservas);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-booking-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-reservas);
}

.btn-booking-secondary:hover {
    background: var(--error-reservas);
    color: white;
    border-color: var(--error-reservas);
    transform: translateY(-2px);
}

.btn-booking-primary {
    background: linear-gradient(135deg, var(--success-reservas) 0%, #008854 100%);
    color: white;
    box-shadow: var(--shadow-md-reservas);
}

.btn-booking-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-booking-primary i:last-child {
    transition: transform 0.3s ease;
}

.btn-booking-primary:hover i:last-child {
    transform: translateX(5px);
}


/* ════════════════════════════════════════════════════════════════════════════
   8. MODAL DE DETALLES PREMIUM
   ════════════════════════════════════════════════════════════════════════════ */

.details-modal-container {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 1200px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl-reservas);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* ── Botón Cerrar ───────────────────────────────────────────────────────────── */

.details-close-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-reservas);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg-reservas);
}

.details-close-btn:hover {
    background: var(--error-reservas);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* ── Layout Principal ───────────────────────────────────────────────────────── */

.details-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* ── Galería Inmersiva ──────────────────────────────────────────────────────── */

.details-gallery {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #8d3d00 0%, #6b3025 100%);
    overflow: hidden;
}

.details-gallery-splide,
.details-gallery-splide .splide__track,
.details-gallery-splide .splide__list {
    height: 100%;
    width: 100%;
}

.details-gallery-splide .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.details-gallery-splide .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Contador de Fotos Premium */
.gallery-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Thumbnails (solo desktop) */
.gallery-thumbs {
    display: none;
}

/* ── Contenido de Detalles ──────────────────────────────────────────────────── */

.details-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

/* Header */
.details-header {
    margin-bottom: 1.5rem;
}

.details-room-badge {
    display: inline-block;
    background: var(--secondary-reservas);
    color: var(--primary-reservas-dark);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.details-room-name {
    font-family: var(--font-heading-reservas);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Descripción */
.details-description {
    margin-bottom: 1.5rem;
}

.details-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Tarjeta de Reserva Compacta */
.details-booking-card {
    background: var(--bg-reservas);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-light);
}

.booking-card-header {
    background: linear-gradient(135deg, var(--primary-reservas) 0%, var(--primary-reservas-dark) 100%);
    color: white;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.booking-card-item {
    padding: 1rem;
    border-right: 1px solid var(--border-reservas);
    border-bottom: 1px solid var(--border-reservas);
}

.booking-card-item:nth-child(2n) {
    border-right: none;
}

.booking-card-item:nth-child(n+3) {
    border-bottom: none;
}

.booking-card-item .item-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.booking-card-item .item-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Amenidades */
.details-amenities {
    margin-bottom: 1.5rem;
}

.amenities-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenities-title i {
    color: var(--primary-reservas);
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.amenity-tag {
    background: white;
    border: 2px solid var(--border-light);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-reservas);
}

.amenity-tag:hover {
    border-color: var(--primary-reservas);
    background: var(--bg-reservas);
}

/* ── Footer con Precio y Botón Premium ──────────────────────────────────────── */

.details-footer {
    position: sticky;
    bottom: 0;
    padding: 1.5rem;
    background: white;
    border-top: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    z-index: 10;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-reservas);
    letter-spacing: -0.02em;
}

.price-hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: none;
}

.btn-reserve-main {
    flex: 1;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-reservas) 0%, var(--primary-reservas-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-reservas);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md-reservas);
}

.btn-reserve-main:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-reserve-main i {
    transition: transform 0.3s ease;
}

.btn-reserve-main:hover i {
    transform: translateX(5px);
}


/* ════════════════════════════════════════════════════════════════════════════
   9. ALERTAS ELEGANTES
   ════════════════════════════════════════════════════════════════════════════ */

.alert-reservas {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-reservas i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-reservas strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.alert-reservas p {
    margin: 0;
    line-height: 1.5;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid var(--error-reservas);
    color: #991b1b;
}

.alert-error i {
    color: var(--error-reservas);
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid var(--success-reservas);
    color: #065f46;
}

.alert-success i {
    color: var(--success-reservas);
}


/* ════════════════════════════════════════════════════════════════════════════
   10. NORMALIZACIÓN DE GALERÍAS SPLIDE
   ════════════════════════════════════════════════════════════════════════════ */

.mini-gallery-splide-reservas,
.mini-gallery-splide-reservas .splide__track,
.mini-gallery-splide-reservas .splide__list,
.mini-gallery-splide-reservas .splide__slide {
    height: 100%;
    width: 100%;
}

.mini-gallery-splide-reservas .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8d3d00 0%, #6b3025 100%);
}

.mini-gallery-splide-reservas .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.room-image-single-reservas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ════════════════════════════════════════════════════════════════════════════
   11. RESPONSIVE - TABLET (min-width: 576px)
   ════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 576px) {
    
    /* Header */
    .header-content-reservas {
        padding: 1.5rem 0;
    }
    
    .header-title-reservas h1 {
        font-size: 1.25rem;
    }
    
    .header-title-reservas p {
        display: block;
    }
    
    .btn-header-action span {
        display: inline;
    }
    
    /* Hero */
    .hero-reservas {
        min-height: 450px;
    }
    
    .hero-title-reservas {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-reservas {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-label {
        font-size: 1rem;
    }
    
    /* Buscador */
    .search-grid-reservas {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Cards */
    .rooms-grid-reservas {
        gap: 3rem;
    }
    
    .room-image-container-reservas {
        height: 320px;
    }
    
    /* Modal Booking */
    .booking-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Modal Detalles */
    .details-gallery {
        height: 400px;
    }
    
    .details-content {
        padding: 2.5rem 2rem;
    }
    
}


/* ════════════════════════════════════════════════════════════════════════════
   12. RESPONSIVE - DESKTOP (min-width: 992px)
   ════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 992px) {
    
    /* Header */
    .logo-img-reservas {
        max-height: 60px;
    }
    
    .header-title-reservas h1 {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero-reservas {
        min-height: 380px;  /* [06-02-2026] Reducido 24% para balance desktop */
    }
    
    .hero-title-reservas {
        font-size: 2.15rem;  /* [06-02-2026] Reducido de 3rem (48px) a 2.15rem (34px) */
    }
    
    .hero-subtitle-reservas {
        font-size: 1.15rem;
    }
    
    .stepper-reservas {
        gap: 2rem;
    }
    
    /* Buscador */
    .search-section-reservas {
        padding: 3.5rem 0;
    }
    
    .search-grid-reservas {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    /* Cards - Layout de 2 columnas en desktop */
    .rooms-grid-reservas {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .room-image-container-reservas {
        height: 280px;
    }
    
    .room-name-reservas {
        font-size: 1.5rem;
    }
    
    /* Modal Booking */
    .booking-modal-container {
        max-width: 800px;
    }
    
    /* Modal Detalles - Layout Side by Side */
    .details-modal-container {
        max-width: 1100px;
        max-height: 90vh;
    }
    
    .details-layout {
        flex-direction: row;
    }
    
    .details-gallery {
        width: 50%;
        height: auto;
        min-height: 480px;
    }
    
    .details-content {
        width: 50%;
        padding: 2.5rem 2rem;
    }
    
    .details-room-name {
        font-size: 1.75rem;
    }
    
    .details-description p {
        font-size: 1rem;
    }
    
    .booking-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .booking-card-item {
        border-right: 1px solid var(--border-reservas);
        border-bottom: none;
    }
    
    .booking-card-item:last-child {
        border-right: none;
    }
    
    .amenities-list {
        gap: 1rem;
    }
    
    .amenity-tag {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Thumbnails visibles en desktop */
    .gallery-thumbs {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        background: #111;
        overflow-x: auto;
    }
    
    .gallery-thumb-item {
        flex-shrink: 0;
        width: 80px;
        height: 60px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        cursor: pointer;
        opacity: 0.6;
        transition: var(--transition-reservas);
        border: 2px solid transparent;
    }
    
    .gallery-thumb-item:hover,
    .gallery-thumb-item.active {
        opacity: 1;
        border-color: var(--primary-reservas);
    }
    
    .gallery-thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Contador reposicionado */
    .gallery-counter {
        left: auto;
        right: 1.5rem;
    }
    
    /* Botón cerrar reposicionado */
    .details-close-btn {
        top: 2rem;
        right: 2rem;
    }
    
    /* Footer */
    .details-footer {
        padding: 2rem 2.5rem;
    }
    
    .price-value {
        font-size: 1.85rem;
    }
    
    .price-hint {
        display: block;
    }
    
    .btn-reserve-main {
        flex: none;
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
    
}

/**
 * ════════════════════════════════════════════════════════════════════════════
 * PARCHE COMPLETO - ARREGLOS CRÍTICOS MÓVIL + AUTO-SCROLL
 * ════════════════════════════════════════════════════════════════════════════
 * 
 * ARCHIVO: parche_completo_movil.css
 * FECHA: 04/02/2026
 * PROPÓSITO: Arreglar TODO lo que quedó mal en móvil
 * 
 * INSTRUCCIONES: 
 * 1. Copia TODO este contenido
 * 2. Pégalo AL FINAL de reservas_v2.css
 * 3. Guarda y refresca
 * 
 * ════════════════════════════════════════════════════════════════════════════
 */

/* ════════════════════════════════════════════════════════════════════════════
   FIX 1: CARDS DE RESULTADOS - BOTONES EN MÓVIL
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    /* Grid de rooms - espaciado correcto */
    .rooms-grid-reservas {
        gap: 2rem !important;
    }
    
    /* Card contenedor */
    .room-card-reservas {
        border-radius: var(--radius-lg) !important;
        overflow: hidden !important;
    }
    
    /* Imagen más compacta en móvil */
    .room-image-container-reservas {
        height: 240px !important;
    }
    
    /* Info section */
    .room-info-reservas {
        padding: 1.25rem !important;
        gap: 1rem !important;
    }
    
    /* Header de room */
    .room-header-reservas {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    
    .room-name-reservas {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .room-number-reservas {
        padding: 0.25rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Descripción */
    .room-description-reservas {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Amenidades más compactas */
    .room-amenities-reservas {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }
    
    .amenity-item {
        font-size: 0.85rem !important;
    }
    
    .amenity-item i {
        font-size: 0.9rem !important;
    }
    
    .amenity-more {
        padding: 0.25rem 0.625rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Pricing compacto */
    .room-pricing-reservas {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .total-price-reservas {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.375rem !important;
    }
    
    .total-label {
        font-size: 0.875rem !important;
    }
    
    .total-amount {
        font-size: 1.5rem !important;
    }
    
    /* ══════════════════════════════════════════════════════════════════════
       BOTONES ARREGLADOS - MÓVIL
       ══════════════════════════════════════════════════════════════════════ */
    
    .room-actions-group-reservas {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .btn-details-room-reservas,
    .btn-select-room-reservas {
        width: 100% !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: var(--radius-md) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        white-space: nowrap !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }
    
    .btn-details-room-reservas {
        background: white !important;
        color: var(--primary-reservas) !important;
        border: 2px solid var(--primary-reservas) !important;
        font-weight: 600 !important;
    }
    
    .btn-details-room-reservas:active {
        background: var(--bg-reservas) !important;
        transform: scale(0.98) !important;
    }
    
    .btn-select-room-reservas {
        background: linear-gradient(135deg, var(--primary-reservas) 0%, var(--primary-reservas-dark) 100%) !important;
        color: white !important;
        border: none !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 12px rgba(140, 76, 66, 0.25) !important;
    }
    
    .btn-select-room-reservas:active {
        transform: scale(0.98) !important;
        box-shadow: 0 2px 8px rgba(140, 76, 66, 0.2) !important;
    }
    
    /* Iconos en botones */
    .btn-details-room-reservas i,
    .btn-select-room-reservas i {
        font-size: 0.95rem !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIX 2: BUSCADOR - MÁS COMPACTO EN MÓVIL
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    .search-section-reservas {
        padding: 2.5rem 0 !important;
    }
    
    .search-box-reservas {
        padding: 1.75rem 1.25rem !important;
        border-radius: var(--radius-lg) !important;
    }
    
    .search-title-reservas {
        font-size: 1.35rem !important;
        margin-bottom: 1.5rem !important;
        gap: 0.75rem !important;
    }
    
    .search-title-reservas i {
        font-size: 1.25rem !important;
    }
    
    .search-grid-reservas {
        gap: 1.25rem !important;
    }
    
    .search-field-reservas label {
        font-size: 0.9rem !important;
    }
    
    .input-reservas {
        padding: 0.875rem 1rem !important;
        font-size: 16px !important; /* Previene zoom iOS */
    }
    
    .btn-search-reservas {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIX 3: HEADER RESULTADOS - MÁS COMPACTO
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    .results-header-reservas {
        margin-bottom: 2rem !important;
    }
    
    .results-header-reservas h3 {
        font-size: 1.5rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .results-header-reservas h3 i {
        font-size: 1.5rem !important;
    }
    
    .results-count {
        font-size: 1rem !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIX 4: MODAL DE RESERVA - MÓVIL
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    /* Modal Overlay */
    .modal-reservas {
        padding: 0 !important;
        align-items: flex-end !important;
    }
    
    /* Contenedor del Modal */
    .booking-modal-container {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 95vh !important;
        height: auto !important;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
        margin: 0 !important;
    }
    
    /* Header del Modal */
    .booking-modal-header {
        padding: 1.5rem 1rem 1rem !important;
        position: sticky !important;
        top: 0 !important;
        background: white !important;
        z-index: 10 !important;
        border-bottom: 2px solid var(--border-light) !important;
    }
    
    .booking-modal-header h3 {
        font-size: 1.25rem !important;
    }
    
    /* Body Scrolleable */
    .booking-modal-body {
        flex: 1 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1.25rem 1rem !important;
        padding-bottom: 100px !important; /* Espacio para el footer fijo */
    }
    
    /* Resumen más compacto */
    .booking-summary-card {
        margin-bottom: 1.5rem !important;
        padding: 1.25rem !important;
    }
    
    .booking-summary-header {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.875rem !important;
    }
    
    .booking-summary-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.875rem !important;
    }
    
    .booking-summary-item {
        gap: 0.375rem !important;
    }
    
    .booking-summary-item .item-label {
        font-size: 0.75rem !important;
    }
    
    .booking-summary-item .item-value {
        font-size: 0.95rem !important;
    }
    
    .booking-summary-item.highlight-item {
        grid-column: 1 / -1 !important;
        padding: 1rem !important;
    }
    
    .booking-summary-item.highlight-item .item-value {
        font-size: 1.35rem !important;
    }
    
    /* Formulario más compacto */
    .booking-form-container {
        gap: 1.5rem !important;
    }
    
    .booking-form-section {
        gap: 1.25rem !important;
    }
    
    .booking-form-section-title {
        font-size: 1.05rem !important;
        padding-bottom: 0.625rem !important;
    }
    
    .booking-form-grid {
        gap: 1rem !important;
    }
    
    .booking-input {
        padding: 0.75rem 1rem !important;
        font-size: 16px !important; /* Previene zoom en iOS */
    }
    
    /* Info de pago más compacta */
    .booking-payment-info {
        gap: 0.875rem !important;
        padding: 1rem !important;
    }
    
    .payment-icon {
        width: 44px !important;
        height: 44px !important;
    }
    
    .payment-icon i {
        font-size: 1.25rem !important;
    }
    
    .payment-text strong {
        font-size: 1rem !important;
    }
    
    .payment-text p {
        font-size: 0.875rem !important;
    }
    
    /* Footer FIJO en móvil */
    .booking-modal-footer {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 1rem !important;
        padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
        background: white !important;
        border-top: 2px solid var(--border-light) !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
        z-index: 100 !important;
        gap: 0.75rem !important;
    }
    
    /* Botones optimizados para móvil */
    .btn-booking-secondary {
        flex: 0 0 auto !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .btn-booking-secondary span {
        display: none !important;
    }
    
    .btn-booking-primary {
        flex: 1 !important;
        padding: 1rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Botón Cerrar optimizado para móvil */
    .booking-close-btn {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 40px !important;
        height: 40px !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
        z-index: 1000 !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIX 5: MODAL DE DETALLES - MÓVIL
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    /* Contenedor del Modal Detalles */
    .details-modal-container {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 100vh !important;
        height: 100vh !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
    
    /* Layout vertical en móvil */
    .details-layout {
        flex-direction: column !important;
        height: 100% !important;
    }
    
    /* Galería más pequeña en móvil */
    .details-gallery {
        width: 100% !important;
        height: 45vh !important;
        min-height: 280px !important;
        flex-shrink: 0 !important;
    }
    
    /* Contador de fotos */
    .gallery-counter {
        bottom: 1rem !important;
        left: 1rem !important;
        right: auto !important;
        padding: 0.5rem 0.875rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Thumbnails ocultos en móvil */
    .gallery-thumbs {
        display: none !important;
    }
    
    /* Contenido scrolleable */
    .details-content {
        flex: 1 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1.5rem 1rem !important;
        padding-bottom: 110px !important; /* Espacio para footer */
    }
    
    /* Header más compacto */
    .details-header {
        margin-bottom: 1.25rem !important;
    }
    
    .details-room-badge {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.875rem !important;
        margin-bottom: 0.625rem !important;
    }
    
    .details-room-name {
        font-size: 1.5rem !important;
    }
    
    /* Descripción */
    .details-description {
        margin-bottom: 1.25rem !important;
    }
    
    .details-description p {
        font-size: 0.95rem !important;
    }
    
    /* Tarjeta de reserva más compacta */
    .details-booking-card {
        margin-bottom: 1.25rem !important;
    }
    
    .booking-card-header {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .booking-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .booking-card-item {
        padding: 0.875rem !important;
    }
    
    .booking-card-item .item-label {
        font-size: 0.7rem !important;
    }
    
    .booking-card-item .item-value {
        font-size: 0.9rem !important;
    }
    
    /* Amenidades */
    .details-amenities {
        margin-bottom: 1.25rem !important;
    }
    
    .amenities-title {
        font-size: 1rem !important;
        margin-bottom: 0.875rem !important;
    }
    
    .amenities-list {
        gap: 0.625rem !important;
    }
    
    .amenity-tag {
        padding: 0.5rem 0.875rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Footer FIJO en móvil */
    .details-footer {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 1rem !important;
        padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
        background: white !important;
        border-top: 2px solid var(--border-light) !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
        z-index: 100 !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    /* Precio */
    .price-section {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .price-label {
        font-size: 0.75rem !important;
    }
    
    .price-value {
        font-size: 1.5rem !important;
    }
    
    .price-hint {
        display: none !important;
    }
    
    /* Botón reservar */
    .btn-reserve-main {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    /* Botón cerrar optimizado */
    .details-close-btn {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 15px rgba(0,0,0,0.2) !important;
        z-index: 1000 !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIX 6: PREVENIR ZOOM EN INPUTS (iOS)
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important; /* Mínimo 16px para prevenir zoom en iOS */
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIX 7: ALERTAS MÁS COMPACTAS EN MÓVIL
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    
    .alert-reservas {
        padding: 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .alert-reservas i {
        font-size: 1.25rem !important;
    }
    
    .alert-reservas strong {
        font-size: 1rem !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FIN DEL PARCHE COMPLETO
   ════════════════════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════════════════════
   FIN DE ESTILOS - RESERVAS V2 PREMIUM
   ════════════════════════════════════════════════════════════════════════════
   
   CHANGELOG:
   
   V2.0 (04/02/2026)
   - Diseño Premium Completo estilo Hotel Boutique
   - Espaciado generoso y animaciones elegantes
   - Hero impactante con imagen grande
   - Buscador refinado con mejor jerarquía
   - Cards con hover sofisticado y efectos premium
   - Micro-interacciones en botones y elementos interactivos
   - Tipografía profesional con pesos variados
   - Sistema de colores más sofisticado
   - Sombras y bordes redondeados premium
   - Transiciones suaves y naturales
   - Layout responsive impecable
   - Footer y badges elegantes
   
   ════════════════════════════════════════════════════════════════════════════ */