/* ==================================================
   ICPV - Pantalla de Pago Declinado/Rechazado (AZUL)
   ================================================== */

/* Contenedor Principal (Tarjeta de Recibo) */
.icpv-declined-container {
    max-width: 520px;
    margin: 45px auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    font-family: system-ui, -apple-system, sans-serif;
}

/* Encabezado con Icono de Alerta */
.icpv-declined-header {
    text-align: center;
    margin-bottom: 25px;
}

.icpv-declined-icon {
    width: 64px;
    height: 64px;
    background: #fff5f5; /* Rojo de alerta muy suave */
    color: #e53e3e; /* Rojo de error */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icpv-declined-icon svg {
    width: 32px;
    height: 32px;
}

.icpv-declined-header h2 {
    color: #213056;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.icpv-declined-subtitle {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

/* Caja de Mensaje Técnico de AZUL */
.icpv-declined-body {
    background: #fdfefe;
    border: 1px dashed #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

#AZUL_PaymentPage {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

#AZUL_PaymentPage li {
    font-size: 14.5px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

#AZUL_PaymentPage li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

#AZUL_PaymentPage li span {
    font-weight: 600;
    color: #6b7280;
}

#AZUL_PaymentPage li strong {
    color: #e53e3e;
    background: #fff5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13.5px;
}

/* Texto de sugerencia o ayuda */
.icpv-help-text {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.5;
    margin: 12px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

/* Ocultamos el enlace por defecto si ya manejamos el botón abajo */
#AZUL_BackToCheckout {
    display: none;
}

/* Botones y Pie de Tarjeta */
.icpv-declined-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Botón Principal: Reintentar */
.btn-retry-checkout {
    display: block;
    text-align: center;
    background: #30c15c;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}

.btn-retry-checkout:hover {
    background: #29ab51;
    transform: translateY(-1px);
}

/* Botón Secundario: Home */
.btn-declined-home {
    display: block;
    text-align: center;
    background: #f3f4f6;
    color: #374151 !important;
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    transition: background 0.2s;
}

.btn-declined-home:hover {
    background: #e5e7eb;
}

/* Enlace a Soporte */
.icpv-declined-support {
    text-align: center;
    font-size: 13.5px;
    color: #9ca3af;
    margin-top: 15px;
}

.icpv-declined-support a {
    color: #213056;
    text-decoration: none;
    font-weight: 600;
}

.icpv-declined-support a:hover {
    text-decoration: underline;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 480px) {
    .icpv-declined-container {
        padding: 25px 20px;
        margin: 20px 15px;
    }
}