/* Payment Methods Section */
.payment-section {
    padding: 1.25rem 0;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-top: 1px solid #263440;
    border-bottom: 1px solid #263440;
}

.payment-methods {
    overflow: hidden;
    width: 100%;
}

.payment-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.payment-methods::-webkit-scrollbar {
    display: none;
}

.payment-item {
    flex-shrink: 0;
    min-width: calc(100vw / 2.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-image {
    height: 2.5rem;
    width: 5rem;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Provider Section */
.provider-section {
    padding: 1.25rem 0;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid #263440;
}

.provider-methods {
    overflow: hidden;
    width: 100%;
}

.provider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.provider-methods::-webkit-scrollbar {
    display: none;
}

.provider-item {
    flex-shrink: 0;
    min-width: calc(100vw / 2.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-image {
    height: 2.5rem;
    width: 5rem;
    object-fit: contain;
}

/* ========================================
   TABLET & DESKTOP STYLES
   ======================================== */
@media (min-width: 768px) {
    /* Keep animation running on desktop */
    .payment-track {
        animation: scroll 20s linear infinite;
    }

    .provider-track {
        animation: scroll 20s linear infinite;
    }

    .payment-item {
        min-width: calc(100vw / 6);
    }

    .provider-item {
        min-width: calc(100vw / 6);
    }
}

