.payment-methods-section {
    padding: 20px 0;
    text-align: center;
    background: var(--color-white, #FFFFFF);
}

.payment-methods-title {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--color-text-primary, #1A1A1A);
}

.payment-methods-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.payment-methods-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 18px;
    row-gap: 12px;
    flex-wrap: wrap;
}

.payment-methods-container svg {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    transform: scale(0.85); /* Scale down by 15% on desktop */
    transform-origin: center;
}

.payment-methods-container svg:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .payment-methods-section {
        padding: 48px 0;
    }

    .payment-methods-title {
        font-size: 14px;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .payment-methods-wrapper {
        padding: 0;
    }

    .payment-methods-container {
        column-gap: 0px;
        row-gap: 6px;
    }

    .payment-methods-container svg {
        transform: scale(0.8); /* Scale down by 20% on mobile */
    }
} 