.payment-methods-wrapper-59c782d4 {
    text-align: center;
    background-color: var(--e-global-color-primary, #0a0a0a); /* Default fallback */
    padding: 60px 20px;
}

.payment-methods-title-59c782d4 {
    margin-bottom: 15px;
    margin-top: 0;
}

.payment-methods-subtitle-59c782d4 {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-methods-grid-59c782d4 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.payment-method-item-59c782d4 {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 90px;
}

.payment-method-item-59c782d4:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.payment-method-item-59c782d4 i {
    font-size: 36px;
    color: #333;
}

.payment-method-item-59c782d4 svg {
    width: 36px;
    height: 36px;
    fill: #333;
}

.payment-trust-badge-59c782d4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .payment-methods-grid-59c782d4 {
        gap: 15px;
    }
    .payment-method-item-59c782d4 {
        width: calc(33.333% - 15px); /* 3 items per row on mobile/tablet */
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .payment-method-item-59c782d4 {
        width: calc(50% - 15px); /* 2 items per row on tiny screens */
    }
}
