/* ============================================
   PAYMENT ICONS — Full Color Brand Logos
   ============================================ */

.sgn-payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.sgn-payment-icons img {
    height: 45px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sgn-payment-icons img:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .sgn-payment-icons {
        gap: 15px;
    }
    .sgn-payment-icons img {
        height: 38px;
    }
}