/* Payment Systems Styles */
.footer-payment-systems {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-payment-systems {
        text-align: center;
        margin-top: 20px;
    }

    .footer-bottom-wrap {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px;
    }
}

.payment-logos {
    gap: 10px !important;
    align-items: center;
}

.payment-logo {
    transition: transform 0.2s ease;
    cursor: default;
    display: flex;
    align-items: center;
}

.payment-logo svg {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
    background: white;
}


.payment-title {
    margin-bottom: 8px !important;
    font-weight: 500;
    font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .payment-logos {
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .payment-logo svg {
        width: 50px !important;
        height: auto !important;
    }

    .payment-title {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .payment-logo svg {
        width: 45px !important;
    }
}
