/* --- ESTILOS BASE Y TIPOGRAFÍA --- */
body {
    font-family: 'Open Sans', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; 
    color: #333;
}

h1, h2, .hero-title, .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
}

/* --- UTILIDADES --- */
.sr-only { 
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


/* --- HEADER Y NAVEGACIÓN --- */
.main-header {
    background-color: transparent; 
    padding: 20px 40px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    position: absolute; 
    width: calc(100% - 80px); 
    z-index: 10; 
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 28px; 
    margin-right: 10px;
    color: #fff; 
}

.logo h1 {
    margin: 0;
    color: #fff; 
    font-size: 28px;
    font-weight: 700; 
}

.auth-buttons a {
    margin-left: 20px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px; 
    transition: all 0.3s ease; 
    font-weight: 600;
    font-size: 15px;
}

.btn-owner {
    color: white;
    background-color: rgba(255, 255, 255, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-owner:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.btn-owner-register {
    background-color: rgba(255, 255, 255, 0.3); 
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-owner-register:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* --- SECCIÓN PRINCIPAL HERO Y BUSCADOR --- */
.hero-search {
    text-align: center;
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #ee9ae5 0%, #5961f9 100%); 
    color: white;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    min-height: 500px; 
}

.hero-title {
    font-size: 48px; 
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

.search-form {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: 100%;
    max-width: 500px; 
    background-color: rgba(255, 255, 255, 0.95); 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-input {
    width: calc(100% - 30px); 
    padding: 18px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 17px;
    margin-bottom: 20px; 
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #5961f9; 
}

.btn {
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    display: inline-block; 
}

.btn-search {
    background-image: linear-gradient(45deg, #ffc107 0%, #ff8c00 100%); 
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%; 
    max-width: 300px; 
}

.btn-search:hover {
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50; 
    color: white;
    position: relative; 
    width: 100%;
    box-sizing: border-box; 
}


/* --- ESTILOS ESPECÍFICOS PARA LOGIN/REGISTRO --- */

.login-body {
    background: linear-gradient(135deg, #ee9ae5 0%, #5961f9 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    justify-content: center; 
    align-items: center;
    overflow-y: auto; 
}

.login-body .main-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box; 
    background: transparent; 
}

.login-body footer {
    position: absolute; 
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    box-sizing: border-box;
}

.login-container {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    padding: 80px 20px; 
    box-sizing: border-box;
    z-index: 5; 
}

.login-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; 
    text-align: center;
    box-sizing: border-box;
}

.login-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: calc(100% - 24px); 
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9; 
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: #5961f9;
    box-shadow: 0 0 0 3px rgba(89, 97, 249, 0.2);
}

.btn-login-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #ff7e5f; 
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-login-submit:hover {
    background-color: #ff6a42; 
    transform: translateY(-1px);
}

.login-links {
    margin-top: 30px;
}

.login-links a {
    display: block; 
    color: #ff7e5f; 
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.login-links a:hover {
    color: #ff6a42;
    text-decoration: underline;
}

/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE REGISTRO --- */

.registration-card {
    max-width: 700px; 
}

.register-form .form-row {
    display: flex;
    gap: 20px; 
    margin-bottom: 20px;
}

.register-form .half-width {
    flex: 1; 
}

.register-form .form-group {
    text-align: left;
    margin-bottom: 0; 
}

.register-form input {
    width: calc(100% - 24px); 
}

/* Estilos para mensajes de error */
.form-message {
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
}

.error-message {
    background-color: #ffe0e0;
    color: #cc0000;
    border: 1px solid #cc0000;
}

.input-error-text {
    display: block;
    color: #cc0000;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 400;
}

/* Media Query para hacer el formulario de registro en una sola columna en móviles */
@media (max-width: 768px) {
    .register-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .register-form .form-group {
        margin-bottom: 20px;
    }
}

/* Pequeño ajuste para móviles (General) */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 15px 20px;
        width: calc(100% - 40px);
    }

    .auth-buttons {
        margin-top: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .search-form {
        padding: 20px;
    }

    .search-input, .btn-search {
        font-size: 16px;
        padding: 15px;
    }
}
/* --- ESTILOS ESPECÍFICOS PARA EL FORMULARIO DE ALTA DE SALA --- */

.room-form-card {
    max-width: 900px; /* Hacemos la tarjeta más ancha para la tabla */
    text-align: left;
}

.room-form-card h2, .room-form-card .login-subtitle {
    text-align: center;
}

.room-form .form-section {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #fcfcfc;
}

.room-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #5961f9;
    border-bottom: 2px solid #5961f9;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.room-form textarea {
    width: calc(100% - 24px); 
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    outline: none;
    resize: vertical; /* Permite redimensionar verticalmente */
}

/* Estilos para Checkboxes (Características) */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-group label {
    font-weight: 400; /* Menos negrita que los labels de input */
    color: #333;
}

/* Estilos de Botones de Imagen */
.photos-section {
    text-align: center;
}

.photo-row {
    display: flex;
    gap: 15px;
    justify-content: space-around;
}

.photo-row .form-group {
    flex: 1;
}

.btn-image {
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-image:hover {
    background-color: #e0e0e0;
}

.hidden-input {
    display: none; /* Oculta el input de tipo file */
}

/* --- ESTILOS DE LA TABLA DE PRECIOS --- */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.pricing-table th {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #333;
}

.pricing-table td:first-child {
    background-color: #f9f9f9;
    font-weight: 600;
    text-align: left;
}

.pricing-table input[type="number"] {
    width: calc(100% - 10px);
    padding: 6px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
}

/* Botones de acción al final del formulario */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 30px;
}

.btn-cancel {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-cancel:hover {
    background-color: #b3b3b3;
}
/* --- ESTILOS PARA DASHBOARD DE PROPIETARIO --- */

.dashboard-body {
    background-color: #f4f7f9;
    min-height: 100vh;
    padding-top: 80px; /* Espacio para el header fijo */
}

.header-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50; /* Fondo oscuro para el dashboard */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 20;
    padding: 15px 40px;
}

.header-dashboard .logo h1, 
.header-dashboard .logo-icon {
    color: white; 
}

.header-dashboard .btn-owner {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.welcome-text {
    color: #e0e0e0;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 600;
}

.dashboard-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.dashboard-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.dashboard-header h2 {
    font-size: 32px;
    color: #333;
}

.dashboard-subtitle {
    color: #666;
    margin-top: -10px;
}

.btn-new-room {
    display: inline-block;
    background-color: #28a745; 
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.btn-new-room:hover {
    background-color: #1e7e34;
}

/* --- LISTA Y TARJETAS DE SALAS --- */

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #5961f9;
}

.room-card-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.room-card-item p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.room-actions {
    display: flex;
    gap: 10px;
}

.btn-update {
    background-color: #ffc107;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-update:hover {
    background-color: #e0a800;
}

/* Ocultar la tarjeta de ejemplo */
.example-card {
    opacity: 0.5;
    border-left: 5px solid #ccc;
}
/* Estilos para la nueva tabla de precios */
.pricing-container {
    display: grid;
    gap: 30px;
}

.pricing-group {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.pricing-group h4 {
    margin-top: 0;
    color: #4CAF50; /* O el color principal que uses */
}

.price-fieldset {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.price-fieldset legend {
    font-weight: bold;
    color: #333;
    padding: 0 10px;
}

.form-row .third-width,
.form-row .half-width {
    display: inline-block;
    padding: 0 5px;
}

.form-row .third-width {
    width: calc(33.33% - 10px);
}

.form-row .half-width {
    width: calc(50% - 10px);
}

/* Asegurar que los inputs de tiempo/número son legibles */
.price-fieldset input[type="time"],
.price-fieldset input[type="number"],
.price-fieldset input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}
/* ========================================================= */
/* 1. LAYOUT PRINCIPAL (Corrige el posicionamiento general) */
/* ========================================================= */

.results-layout {
    display: flex; /* Muestra los filtros y resultados en columnas */
    gap: 25px;
    margin-top: 30px; /* **IMPORTANTE**: Empuja el contenido principal hacia abajo */
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. BARRA LATERAL (Filtros) */
.filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding: 15px;
    border-radius: 8px;
    background-color: #f7f9fc; 
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

/* ========================================================= */
/* 3. LÓGICA DEL COLAPSADO */
/* ========================================================= */

.filter-panel {
    /* Claves para el colapsado */
    max-height: 0; 
    overflow: hidden; /* Oculta el contenido al colapsar */
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; /* Animación */
    padding: 0 10px; /* Padding reducido por defecto */
}

.filter-panel.open {
    max-height: 1000px; /* Suficiente altura para que se muestre */
    padding-top: 15px;
    padding-bottom: 15px;
}

.filter-actions {
    padding: 15px 0 0; 
    border-top: 1px solid #ddd;
    margin-top: 15px;
}

/* ========================================================= */
/* 4. ESTILO DE LA LISTA DE RESULTADOS */
/* ========================================================= */

.results-list {
    flex-grow: 1; /* Permite que la lista ocupe el espacio restante */
}

.room-cards-list { 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-card-list-item {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.2s;
}

.room-card-list-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.room-card-list-item .room-image {
    width: 250px;
    height: 200px;
    object-fit: cover;
}

.room-card-list-item .room-info {
    padding: 15px 20px;
    flex-grow: 1;
}

.room-card-list-item .room-info .room-price {
    font-size: 1.2em;
    color: #e67e22;
    font-weight: 600;
    margin: 10px 0;
}

.room-card-list-item .btn-detail {
    float: right;
    margin-top: -10px; 
}
/* Nuevo layout de ancho completo */
.results-layout-full-width {
    margin-top: 30px; 
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* El contenedor principal de resultados debe ocupar todo el espacio */
.results-list-full {
    width: 100%;
}
/* Asegura que el header tenga un fondo y una altura que lo separe */
.main-header {
    background-color: #2c3e50; /* Color de fondo oscuro (ejemplo) */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box; 
}
.results-layout-full-width {
    /* Mantenemos el centrado y el ancho máximo */
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    
    /* **CLAVE**: Asegura un margen superior grande para evitar la interferencia */
    margin-top: 50px; /* Aumenta este valor si es necesario, 50px es un buen punto de partida */
}

/* Y si el título en sí mismo está muy pegado a la izquierda: */
.results-list-full {
    padding-left: 20px; /* Añade un poco de espacio a la izquierda si el título está pegado al borde */
}
/* --- Ajuste para los Radio Buttons en Detalle --- */
.booking-form .radio-group {
    display: flex;
    gap: 15px; /* Espacio entre los grupos de radio/label */
    margin-top: 5px;
    margin-bottom: 15px;
}

/* Opcional: Alinear verticalmente las etiquetas si es necesario */
.booking-form .radio-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
/* ========================================================= */
/* --- AÑADIDO: ESTILOS ESPECÍFICOS DE ROOM_DETAIL --- */
/* (Pegar esto al final de su style.css original) */
/* ========================================================= */

/* Sobrescribir botones genéricos si es necesario */
.btn-login-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-owner-register:hover {
    background-color: #4a51d4;
}

/* Contenedor principal de la página de detalle */
.results-layout-full-width {
    padding: 30px 0;
}

.room-detail-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-header {
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.detail-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #333;
    margin: 5px 0 10px 0;
}

.location-text {
    font-size: 16px;
    color: #999;
    font-weight: 600;
}

.detail-content-wrapper {
    display: flex;
    gap: 40px;
}

.detail-main-info {
    flex: 3;
}

/* --- CARRUSEL (GALERÍA) --- */
.photo-gallery {
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 20px;
    font-size: 16px;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-button.prev {
    left: 15px;
}

.carousel-button.next {
    right: 15px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 3px solid transparent;
    transition: border 0.2s, opacity 0.2s;
    opacity: 0.7;
}

.thumbnail-img.active {
    border-color: #5961f9;
    opacity: 1;
}

/* --- Descripción y Amenidades --- */
.detail-description h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #5961f9;
}

.detail-description h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-top: 30px;
    color: #333;
}

.amenities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.amenities-list li {
    background-color: #f7f9fc;
    padding: 10px;
    border-left: 3px solid #ff7e5f;
    border-radius: 4px;
    font-size: 15px;
}


/* --- PANEL DE RESERVA (ASIDE) --- */
.booking-panel {
    flex: 2;
    background-color: #f7f9fc;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.price-summary {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.price-summary .price-label {
    font-size: 14px;
    color: #666;
}

.price-summary .base-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #ff7e5f;
    margin: 5px 0 0 0;
    font-weight: 700;
}

.booking-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.booking-form .form-row {
    display: flex;
    gap: 10px;
}

.booking-form .half-width {
    flex: 1;
}

.current-rate {
    font-weight: 600;
    font-size: 14px;
    color: #5961f9;
    margin-top: 10px;
}

.time-constraint {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.calculation-result {
    padding: 15px;
    background-color: #e6ffe6;
    border: 1px solid #28a745;
    border-radius: 6px;
    margin-top: 20px;
}

.final-price-text strong {
    font-size: 24px;
    color: #28a745;
}

.calculation-breakdown {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.calculation-result .error-message {
    background-color: #ffe0e0; 
    color: #cc0000;
    border: 1px solid #cc0000;
    padding: 10px;
    border-radius: 4px;
}

.contact-info {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-btn {
    background-color: #ccc;
    color: #333 !important;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #b3b3b3;
}

/* --- TABLA DE TARIFAS DETALLADA --- */
.price-schedule-details {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.price-schedule-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #5961f9;
}

.price-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 15px;
}

.price-schedule-table th, .price-schedule-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.price-schedule-table th {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #333;
}

.price-schedule-table td:first-child {
    text-align: left;
}

.full-day-row {
    background-color: #fcf8e3; 
    font-weight: 600;
}

/* --- Media Queries (Móvil) --- */
@media (max-width: 992px) {
    .detail-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .booking-panel {
        position: static; 
        top: auto;
    }

    .carousel-container {
        height: 300px;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
}