/* =========================================================
   JACS - PAYMENT NOT COMPLETED
   ========================================================= */

.jacs-payment-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.jacs-payment-card {
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 40px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.jacs-payment-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3cd;
    color: #b7791f;

    font-size: 42px;
    font-weight: 700;
}

.jacs-payment-card h1 {
    margin: 0 0 18px 0;

    font-size: 30px;
    font-weight: 700;

    color: #1f2937;
}

.jacs-payment-message {
    margin: 0 auto 30px auto;

    font-size: 17px;
    line-height: 1.6;

    color: #6b7280;

    max-width: 460px;
}

.jacs-payment-info {
    margin: 30px 0;

    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.jacs-payment-info-row {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 16px 5px;

    border-bottom: 1px solid #e5e7eb;

    font-size: 16px;
}

.jacs-payment-info-row:last-child {
    border-bottom: none;
}

.jacs-payment-info-row span {
    color: #6b7280;
}

.jacs-payment-info-row strong {
    color: #1f2937;
}


/* =========================================================
   ESTADO: PENDIENTE
   ========================================================= */

.jacs-payment-status-pending {
    color: #b7791f !important;
}


/* =========================================================
   ESTADO: EXPIRÓ
   ========================================================= */

.jacs-payment-status-expired {
    color: #dc2626 !important;
}


/* =========================================================
   ESTADO: CLIENTE CANCELÓ
   ========================================================= */

.jacs-payment-status-canceled {
    color: #dc2626 !important;
}


/* =========================================================
   BOTONES
   ========================================================= */

.jacs-payment-buttons {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 30px;
}

.jacs-payment-button {
    width: 100%;

    display: block;

    padding: 16px 20px;

    border-radius: 10px;

    text-decoration: none !important;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.5px;

    box-sizing: border-box;

    transition: all 0.2s ease;
}

.jacs-payment-button-primary {
    background: #0b5ed7;
    color: #ffffff !important;
}

.jacs-payment-button-primary:hover {
    background: #084298;

    transform: translateY(-2px);
}

.jacs-payment-button-secondary {
    background: #f3f4f6;
    color: #374151 !important;
}

.jacs-payment-button-secondary:hover {
    background: #e5e7eb;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {

    .jacs-payment-page {
        padding: 25px 15px;
        align-items: flex-start;
    }

    .jacs-payment-card {
        padding: 35px 22px;
        margin-top: 20px;
    }

    .jacs-payment-card h1 {
        font-size: 25px;
    }

    .jacs-payment-message {
        font-size: 16px;
    }

}