/* ============================
   CONTENEDOR GENERAL
============================= */
.yanay-room-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

/* ============================
   TÍTULO Y DESCRIPCIÓN
============================= */
.yanay-room-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.yanay-room-excerpt {
    font-size: 1.15rem;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px auto;
}

/* =======================================
   GALERÍA — GRID 3x3
======================================= */
.yanay-room-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 35px 0 45px 0;
}

.yanay-gallery-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.yanay-room-gallery img,
.yanay-gallery-img,
.yanay-force {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* FIGURE FIX */
.yanay-room-gallery figure {
    width: 100% !important;
    height: 260px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .yanay-room-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .yanay-room-gallery {
        grid-template-columns: 1fr;
    }

    .yanay-room-gallery img {
        height: 220px !important;
    }
}

/* ============================
   SERVICIOS
============================= */
.yanay-room-services {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.yanay-room-services h2 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 25px;
}

/* GRID DE SERVICIOS */
.yanay-servicios-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 25px;
    list-style: none;
    padding: 0;
}

.yanay-servicios-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

.yanay-servicios-lista li i {
    font-size: 1.3rem;
    color: var(--verde-yanay);
}

/* RESPONSIVE DE SERVICIOS */
@media(max-width: 650px) {
    .yanay-servicios-lista {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 450px) {
    .yanay-servicios-lista {
        grid-template-columns: 1fr;
    }
}

/* ============================
   SLIDER — AJUSTE HABITACIÓN
============================= */
body.single-mphb_room_type .slider {
    margin-bottom: 20px !important;
    height: 45vh !important;
}

body.single-mphb_room_type .slider h1 {
    top: 55% !important;
    font-size: 38px !important;
}


/* ============================
   BUSCADOR INTERNO
============================= */
.buscador-habitacion {
    position: relative;
    margin-top: -120px;
    margin-bottom: 40px;
    z-index: 50;
}

/* ============================
   BOTONES + / –
============================= */
.yanay-number-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: 1px solid rgba(74,108,61,0.25) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    height: 46px !important;
    width: 160px !important;
}

.yanay-number-btn {
    background: #f3f6f4 !important;
    color: #3b4d36 !important;
    width: 42px !important;
    height: 100% !important;
    border: none !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.yanay-number-btn:hover {
    background: var(--verde-yanay) !important;
    color: #fff !important;
}

.yanay-number-input {
    width: 40px !important;
    border: none !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    background: transparent !important;
    outline: none !important;
}

/* ============================
   ALINEACIÓN DE CAMPOS
============================= */
.mphb-booking-form .mphb-adults-wrapper,
.mphb-booking-form .mphb-children-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.mphb-booking-form .mphb-adults-wrapper label,
.mphb-booking-form .mphb-children-wrapper label {
    text-align: center !important;
    margin-bottom: 6px !important;
}




/* ==========================================================
   CALENDARIO — IGUAL AL DEL HOME
========================================================== */

.mphb-datepick-popup {
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(74,108,61,0.25) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18) !important;
}

/* HEADER VERDE */
.datepick-month-header {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    background: var(--verde-yanay) !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    height: 40px !important;
    box-sizing: border-box !important;
}

/* SELECT SIN FLECHA */
.datepick-month-header select {
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    appearance: none !important;
}

/* FLECHA CUSTOM */
.datepick-month-header:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    position: relative;
    margin-left: 6px;
}
/* ==========================================================
   CALENDARIO SINGLE — ESTILO YANAY 2025
========================================================== */

/* CONTENEDOR */
.mphb-datepick-popup {
    background: #ffffff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    border: 1px solid rgba(74,108,61,0.22) !important;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18) !important;
    padding: 0 !important;
}

/* ==========================================================
   NAV SUPERIOR — ANTERIOR / HOY / SIGUIENTE
========================================================== */
.mphb-datepick-popup .datepick-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: var(--verde-oscuro) !important;
    padding: 10px 14px !important;
    border-radius: 0 !important;
}

.mphb-datepick-popup .datepick-nav a {
    background: rgba(255,255,255,0.18) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: .25s ease;
}

.mphb-datepick-popup .datepick-nav a:hover {
    background: rgba(255,255,255,0.28) !important;
}

/* ==========================================================
   HEADER MES — TODO HORIZONTAL
========================================================== */
.datepick-month-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--verde-yanay) !important;
    padding: 10px 12px !important;
    height: 42px !important;
    border-radius: 0 !important;
    gap: 10px !important;
    width: 100% !important;
}

/* SELECT — TEXTO BLANCO Y SIN CAJA */
.datepick-month-header select {
    background: transparent !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    outline: none !important;
    appearance: none !important;
    padding-right: 20px !important;
    cursor: pointer !important;
}

/* FLECHA BLANCA PERSONALIZADA */
.datepick-month-header {
    position: relative !important;
}

.datepick-month-header:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 15px;
    position: absolute;
    right: 12px;
    pointer-events: none;
}

/* ==========================================================
   CELDAS DEL CALENDARIO
========================================================== */
.mphb-datepick-popup table {
    width: 100% !important;
    border-spacing: 6px !important;
}

.mphb-datepick-popup td span {
    background: #f3f6f4 !important;
    padding: 8px 0 !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    color: #222 !important;
    transition: .25s ease;
}

.mphb-datepick-popup td span:hover {
    background: var(--verde-yanay) !important;
    color: #fff !important;
    transform: scale(1.05);
}

.mphb-datepick-popup td.datepick-selected span {
    background: var(--dorado-yanay) !important;
    color: #000 !important;
}

/* ==========================================================
   BOTONES LIMPIAR Y CERRAR
========================================================== */
.datepick-ctrl {
    display: flex !important;
    justify-content: space-between !important;
    padding: 12px !important;
}

.datepick-ctrl .datepick-cmd {
    flex: 1 !important;
    background: var(--verde-yanay) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 0 !important;
    font-weight: 700 !important;
    margin: 0 6px !important;
}

.datepick-ctrl .datepick-cmd:hover {
    background: var(--verde-oscuro) !important;
}

/* ==========================================================
   BOTÓN — COMPROBAR DISPONIBILIDAD
========================================================== */

input.mphb-reserve-btn,
.mphb-reserve-btn.button {
    background: var(--verde-yanay) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    border-radius: 12px !important;
    border: none !important;
    font-size: 1.05rem !important;
    margin-top: 25px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
    transition: .25s ease !important;
}

input.mphb-reserve-btn:hover {
    background: #284c30 !important;
    transform: translateY(-2px) !important;
}
/* ==========================================================
   FORMULARIO SINGLE — IGUAL AL BUSCADOR DEL HOME
========================================================== */

/* CONTENEDOR GENERAL */
.mphb-booking-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 22px;
    padding: 28px 35px;
    max-width: 900px;
    margin: 0 auto 45px auto;
    box-shadow: 0 10px 35px rgba(0,0,0,0.10);
    border: 1px solid rgba(74,108,61,0.12);
}

/* GRUPOS — Cada campo */
.mphb-booking-form > p,
.mphb-booking-form .mphb-reserve-form-field {
    margin: 0 0 16px 0 !important;
    display: flex;
    flex-direction: column;
}

/* LABELS */
.mphb-booking-form label {
    display: block;
    font-weight: 700;
    color: var(--verde-oscuro);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* INPUTS GENERALES */
.mphb-booking-form input[type="text"],
.mphb-booking-form input[type="number"],
.mphb-booking-form select {
    width: 100%;
    height: 48px;
    border-radius: 12px !important;
    border: 2px solid #d1d5db;
    background: #fff;
    padding: 0 16px;
    font-size: 1rem !important;
    font-weight: 600;
    color: #111;
    transition: .25s ease;
}

/* FOCUS */
.mphb-booking-form input[type="text"]:focus,
.mphb-booking-form select:focus {
    border-color: var(--verde-yanay);
    box-shadow: 0 0 0 4px rgba(74,108,61,0.20);
    outline: none !important;
}

/* FECHAS MÁS ANCHAS */
.mphb-booking-form input[id^="mphb_check_in_date"],
.mphb-booking-form input[id^="mphb_check_out_date"] {
    height: 48px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding-left: 16px !important;
    border-radius: 12px !important;
}

/* ==========================================================
   BOTONES + / –
========================================================== */
.yanay-number-wrapper {
    display: flex !important;
    align-items: center !important;
    border: 2px solid #d1d5db !important;
    background: #fff !important;
    border-radius: 12px !important;
    height: 48px !important;
    width: 160px !important;
    justify-content: space-between !important;
    padding: 0 6px !important;
}

.yanay-number-btn {
    width: 42px !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    color: var(--verde-yanay) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: .25s ease !important;
}

.yanay-number-btn:hover {
    background: var(--verde-yanay) !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.yanay-number-input {
    width: 50px !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border: none !important;
    background: transparent !important;
    pointer-events: none !important;
}


/* ==========================================================
   NOTA DE NIÑOS — ESTILO YANAY
========================================================== */

.yanay-nota-ninos {
    text-align: center !important;
    color: #4a6c3d !important;
    margin-top: 15px !important;
    font-size: 0.95rem !important;
    font-style: italic !important;
}

/* ==========================================================
   SINGLE — BUSCADOR HORIZONTAL EXACTO AL HOME
========================================================== */

/* Contenedor horizontal */
.mphb-booking-form {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 18px !important;
    padding: 32px 40px !important;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border: 1px solid rgba(74,108,61,0.10);
}

/* Cada grupo en columna */
.mphb-booking-form > p,
.mphb-booking-form .mphb-reserve-form-field {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

/* Labels alineados arriba */
.mphb-booking-form label {
    margin-bottom: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #222 !important;
}

/* Inputs fechas — mismo tamaño */
.mphb-booking-form input[id^="mphb_check_in_date"],
.mphb-booking-form input[id^="mphb_check_out_date"] {
    width: 210px !important;
    height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #d1d5db !important;
    padding: 0 14px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    background: #fafafa !important;
}

/* Adultos y Niños centrados */
.mphb-adults-wrapper,
.mphb-children-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.mphb-adults-wrapper label,
.mphb-children-wrapper label {
    text-align: center !important;
}

/* Contador número */
.yanay-number-wrapper {
    width: 140px !important;
    height: 48px !important;
    margin-top: 0 !important;
}

/* BOTÓN — Abajo, fila completa y centrado */
.mphb-booking-form input[type="submit"],
.mphb-booking-form button[type="submit"] {
    flex: 1 0 100% !important;
    max-width: 280px !important;
    margin: 20px auto 0 auto !important;
    height: 50px !important;
    border-radius: 50px !important;
    background: var(--verde-yanay) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(74,108,61,0.25) !important;
    transition: 0.3s ease !important;
}

.mphb-booking-form input[type="submit"]:hover {
    background: var(--verde-oscuro) !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================
   CORRECCIÓN FINAL — ANCHO ALINEADO + SEPARACIÓN SUPERIOR
========================================================== */

/* El formulario ahora mide lo mismo que Servicios (1200px) */
.buscador-habitacion .mphb-booking-form {
    max-width: 1200px !important; /* Igual que .yanay-room-wrapper */
    margin: 0 auto 50px auto !important;
    justify-content: space-between !important; /* Campos bien distribuidos */
    gap: 28px !important;
}

/* Separación del contenedor superior */
.buscador-habitacion {
    margin-top: 40px !important; 
    margin-bottom: 50px !important;
}

/* ==========================================================
   RESPONSIVE — versión móvil
========================================================== */

@media(max-width: 900px) {
    .buscador-habitacion .mphb-booking-form {
        max-width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
    }

    .mphb-booking-form > p,
    .mphb-adults-wrapper,
    .mphb-children-wrapper {
        width: 100% !important;
        align-items: stretch !important;
    }

    .mphb-booking-form input[id^="mphb_check_in_date"],
    .mphb-booking-form input[id^="mphb_check_out_date"] {
        width: 100% !important;
    }

    .yanay-number-wrapper {
        margin: 0 auto !important;
    }

    .mphb-booking-form input[type="submit"] {
        max-width: 100% !important;
        margin-top: 15px !important;
    }
}
/* ===========================================
   FIX DEFINITIVO — Romper el contenedor MotoPress
=========================================== */

section.yanay-room-booking .mphb-booking-form,
section.yanay-room-booking .mphb-booking-form-wrapper,
section.yanay-room-booking [class*="mphb_sc_booking_form"] {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Separación superior e inferior */
section.yanay-room-booking {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
/* ==========================================
   FIX DEFINITIVO — BOTÓN CENTRADO Y ABAJO
========================================== */

/* El contenedor que envuelve el botón */
.mphb-reserve-btn-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 20px !important;
}

/* El botón en sí */
.mphb-reserve-btn-wrapper input[type="submit"],
.mphb-reserve-btn-wrapper .mphb-reserve-btn.button {
    width: 280px !important;          /* tamaño perfecto */
    margin: 0 auto !important;        /* centrar */
    display: block !important;
    border-radius: 50px !important;
    height: 50px !important;
}





/* === INSERTAR EL MENSAJE DENTRO DEL FORMULARIO === */
.mphb-booking-form {
    display: flex !important;
    flex-wrap: wrap !important;
}

/* El mensaje debe estar dentro del formulario */
.yanay-nota-ninos {
    order: 98 !important;                /* Justo ANTES del botón */
    width: 100% !important;
    text-align: center !important;
    margin: 5px 0 10px 0 !important;
    color: #4a6c3d !important;
    font-size: 0.9rem !important;
    font-style: italic !important;
}

/* El botón siempre va al final */
.mphb-reserve-btn-wrapper,
.mphb-reserve-btn-wrapper input[type="submit"] {
    order: 99 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}



















































