/* ==========================================================================
   ICÔNES DE PAIEMENT - Footer
   À ajouter dans style.css (section footer) ou assets/css/payment-icons.css
   ========================================================================== */

.footer-payments__icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-payments__icons .payment-icon {
    width: 45px;
    height: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.footer-payments__icons .payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 600px) {
    .footer-payments__icons .payment-icon {
        width: 40px;
        height: 26px;
    }
}