.premium-trust-marquee-container-f9c5ebac {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--tm-bg-color, #121214);
    border-top: 1px solid var(--tm-border-color, rgba(240, 213, 117, 0.15));
    border-bottom: 1px solid var(--tm-border-color, rgba(240, 213, 117, 0.15));
    height: var(--tm-height-desktop, 64px);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .premium-trust-marquee-container-f9c5ebac {
        height: var(--tm-height-mobile, 54px);
    }
}

/* Luxury Soft Edge Fading */
.premium-trust-marquee-container-f9c5ebac::before,
.premium-trust-marquee-container-f9c5ebac::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    max-width: 150px;
    z-index: 2;
    pointer-events: none;
}

.premium-trust-marquee-container-f9c5ebac::before {
    left: 0;
    background: linear-gradient(to right, var(--tm-bg-color, #121214) 0%, rgba(18, 18, 20, 0) 100%);
}

.premium-trust-marquee-container-f9c5ebac::after {
    right: 0;
    background: linear-gradient(to left, var(--tm-bg-color, #121214) 0%, rgba(18, 18, 20, 0) 100%);
}

/* Linear Infinite Loop Track */
.tm-track-f9c5ebac {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.tm-list-f9c5ebac {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Marquee Items */
.tm-item-f9c5ebac {
    display: flex;
    align-items: center;
    padding-right: var(--tm-gap, 120px);
    color: var(--tm-text-color, #F6F4F1);
    font-weight: var(--tm-font-weight, 500);
    letter-spacing: var(--tm-letter-spacing, 0.3px);
}

.tm-icon-f9c5ebac {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--tm-icon-gap, 10px);
}

.tm-icon-f9c5ebac i {
    font-size: var(--tm-icon-size, 18px);
    color: var(--tm-icon-color, #F0D575);
}

.tm-icon-f9c5ebac svg {
    width: var(--tm-icon-size, 18px);
    height: var(--tm-icon-size, 18px);
    fill: var(--tm-icon-color, #F0D575);
}

/* Payment Icons styling */
.tm-payments-container-f9c5ebac {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: var(--tm-gap, 120px);
}

.tm-payment-svg-f9c5ebac {
    display: inline-flex;
    align-items: center;
    height: var(--tm-payment-height, 18px);
}

.tm-payment-svg-f9c5ebac svg,
.tm-payment-svg-f9c5ebac img {
    height: 100%;
    width: auto;
    max-height: var(--tm-payment-height, 18px);
    fill: var(--tm-payment-color, #8e8e93);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tm-payment-svg-f9c5ebac svg:hover,
.tm-payment-svg-f9c5ebac img:hover {
    opacity: 1;
}

@keyframes tm-scroll-f9c5ebac {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.tm-track-animated-f9c5ebac {
    animation: tm-scroll-f9c5ebac var(--tm-duration, 45s) linear infinite;
}

.premium-trust-marquee-container-f9c5ebac:hover .tm-track-animated-f9c5ebac {
    animation-play-state: var(--tm-pause-on-hover, paused);
}
