/**
 * Bitprice Payment Gateways Widget styles
 */
.bitprice-payment-gateways {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
}

.bitprice-payment-gateway-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bitprice-payment-gateway-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.bitprice-payment-gateway-link:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

.bitprice-payment-gateway-logo {
    max-height: 32px;
    width: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .bitprice-payment-gateways {
        justify-content: center;
    }
    
    .bitprice-payment-gateway-logo {
        max-height: 28px;
    }
}
