.elementor-640 .elementor-element.elementor-element-45596078{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ==========================================================================
   CHECKOUT / CONFIRMACIÓN DE RESERVA (MOTOPRESS)
   ========================================================================== */

/* 1. Contenedor Maestro */
.mphb_sc_checkout-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 16px 60px;
    font-family: inherit;
    box-sizing: border-box;
}

/* Aviso de usuario / Login */
.mphb-login-form-wrap {
    background: #f8fafc;
    border: 1px solid #dee3ed;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    color: #515962;
    margin-bottom: 28px;
}

.mphb-login-form-wrap a {
    color: #142238;
    font-weight: 600;
}

/* 2. Grid Principal: 2 Columnas (Izquierda: Datos, Derecha: Resumen) */
.mphb_sc_checkout-form {
    display: grid;
    grid-template-columns: 1fr 420px;
    column-gap: 40px;
    align-items: start;
}

/* 3. Agrupación y orden de secciones */

/* COLUMNA IZQUIERDA */
#mphb-customer-details {
    grid-column: 1;
    grid-row: 1;
}

#mphb-billing-details {
    grid-column: 1;
    grid-row: 2;
}

.mphb-errors-wrapper {
    grid-column: 1;
    grid-row: 3;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* COLUMNA DERECHA (Panel Sticky de Resumen) */
#mphb-booking-details {
    grid-column: 2;
    grid-row: 1;
    background: #ffffff;
    border: 1px solid #dee3ed;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

#mphb-price-details {
    grid-column: 2;
    grid-row: 2;
    background: #ffffff;
    border: 1px solid #dee3ed;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.mphb-total-price {
    grid-column: 2;
    grid-row: 3;
    margin: 20px 0 10px;
}

.mphb_sc_checkout-submit-wrapper {
    grid-column: 2;
    grid-row: 4;
    margin: 0;
}

/* 4. Títulos de secciones */
.mphb-checkout-section h3,
.mphb-checkout-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #142238;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f3f9;
}

/* 5. Maquetación del Formulario de Datos Personales (#mphb-customer-details) */
#mphb-customer-details {
    background: #ffffff;
    border: 1px solid #dee3ed;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

#mphb-customer-details .mphb-customer-details-title {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

#mphb-customer-details .mphb-required-fields-tip {
    grid-column: 1 / -1;
    margin: 0 0 12px 0;
    color: #818a96;
    font-size: 12px;
}

#mphb-customer-details p {
    margin: 0;
}

/* Distribución por campo */
.mphb-customer-name { grid-column: 1; }
.mphb-customer-last-name { grid-column: 2; }
.mphb-customer-email { grid-column: 1; }
.mphb-customer-phone { grid-column: 2; }
.mphb-customer-country { grid-column: 1 / -1; }
.mphb-customer-note { grid-column: 1 / -1; }

/* Labels de formulario */
#mphb-customer-details label,
#mphb-booking-details label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2f3237;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

#mphb-customer-details label abbr {
    color: #dc2626;
    text-decoration: none;
}

/* Inputs, Selects y Textarea */
#mphb-customer-details input[type="text"],
#mphb-customer-details input[type="email"],
#mphb-customer-details select,
#mphb-customer-details textarea,
#mphb-booking-details select,
#mphb-booking-details input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dee3ed;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1d1e20;
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#mphb-customer-details input:focus,
#mphb-customer-details select:focus,
#mphb-customer-details textarea:focus,
#mphb-booking-details select:focus,
#mphb-booking-details input:focus {
    border-color: #C9B074;
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 176, 116, 0.2);
}

/* 6. Caja de Detalles de Reserva (Columna Derecha) */
.mphb-check-in-date,
.mphb-check-out-date {
    font-size: 14px;
    color: #515962;
    margin: 6px 0;
}

.mphb-check-in-date strong,
.mphb-check-out-date strong {
    color: #142238;
}

.mphb-room-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 14px;
    margin-top: 14px;
    border: 1px solid #dee3ed;
}

/* Selector con especificidad suficiente sin !important */
#mphb-booking-details .mphb-room-details h3.mphb-room-number {
    font-size: 14px;
    font-weight: 700;
    color: #142238;
    margin: 0 0 8px 0;
    border-bottom: none;
    padding-bottom: 0;
}

.mphb-room-type-title {
    font-size: 13px;
    color: #515962;
    margin-bottom: 12px;
}

.mphb-room-type-title a {
    color: #142238;
    font-weight: 600;
    text-decoration: none;
}

/* 7. Tabla de Desglose de Precios (#mphb-price-details) */
.mphb-price-breakdown {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.mphb-price-breakdown td,
.mphb-price-breakdown th {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f9;
}

.mphb-price-breakdown-accommodation {
    color: #142238;
    text-decoration: none;
    font-weight: 600;
}

.mphb-table-price-column {
    text-align: right;
    font-weight: 600;
    color: #142238;
}

.mphb-price-breakdown-total th {
    font-size: 16px;
    font-weight: 700;
    color: #142238;
    padding-top: 14px;
    border-top: 2px solid #dee3ed;
    border-bottom: none;
}

.mphb-price-breakdown-total .mphb-price {
    font-size: 18px;
    color: #C9B074;
}

/* 8. Sección de Métodos de Pago (#mphb-billing-details) */
#mphb-billing-details {
    background: #ffffff;
    border: 1px solid #dee3ed;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* 9. Total Flotante y Botón Final */
.mphb-total-price output {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #142238;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.mphb-total-price .mphb-price {
    color: #C9B074;
    font-size: 22px;
    font-weight: 700;
}

.mphb_sc_checkout-submit-wrapper .button,
.mphb_sc_checkout-submit-wrapper input[type="submit"] {
    width: 100%;
    background-color: #C9B074;
    color: #142238;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 30px;
    height: 52px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201, 176, 116, 0.4);
    transition: all 0.25s ease;
    margin-top: 8px;
}

.mphb_sc_checkout-submit-wrapper .button:hover,
.mphb_sc_checkout-submit-wrapper input[type="submit"]:hover {
    background-color: #dfc88e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 176, 116, 0.5);
}

/* ==========================================================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 920px) {
    .mphb_sc_checkout-form {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    #mphb-booking-details {
        grid-column: 1;
        grid-row: auto;
    }

    #mphb-customer-details {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .mphb-customer-name,
    .mphb-customer-last-name,
    .mphb-customer-email,
    .mphb-customer-phone {
        grid-column: 1;
    }

    #mphb-price-details {
        grid-column: 1;
        grid-row: auto;
    }

    #mphb-billing-details {
        grid-column: 1;
        grid-row: auto;
    }

    .mphb-total-price {
        grid-column: 1;
        grid-row: auto;
    }

    .mphb_sc_checkout-submit-wrapper {
        grid-column: 1;
        grid-row: auto;
    }
}/* End custom CSS */