ul li {
  font-weight: normal;
}

.payment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.60);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal {
    width: 92%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 24px 60px rgba(15,23,42,0.18);

    transform: translateY(10px) scale(0.98);
    transition: all 0.25s ease;

    font-family: Inter, sans-serif;

    border-top: 6px solid #355D38;
}

.payment-modal-overlay.active .payment-modal {
    transform: translateY(0) scale(1);
}

.payment-modal-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;

    background: linear-gradient(135deg, #355D38, #A72D2A);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 30px;
}

.payment-modal h2 {
    margin: 0 0 12px;
    text-align: center;
    color: #355D38;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.payment-modal p {
    margin: 0 0 30px;
    text-align: center;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.payment-modal-actions {
    display: flex;
    gap: 14px;
}

.payment-modal-btn {
    flex: 1;
    border: none;
    border-radius: 14px;
    padding: 15px 18px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* NON */
.payment-modal-btn-secondary {
    background: #f3f4f6;
    color: #A72D2A;
    border: 1px solid rgba(167,45,42,0.15);
}

.payment-modal-btn-secondary:hover {
    background: #fdecec;
}

/* OUI */
.payment-modal-btn-primary {
    background: linear-gradient(135deg, #355D38, #2d4f30);
    color: white;

    box-shadow: 0 8px 20px rgba(53,93,56,0.28);
}

.payment-modal-btn-primary:hover {
    transform: translateY(-1px);

    box-shadow: 0 12px 26px rgba(53,93,56,0.35);
}

@media (max-width: 480px) {

    .payment-modal {
        padding: 26px;
    }

    .payment-modal-actions {
        flex-direction: column;
    }

}