.marquee {
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    margin: auto;
    max-width: 1400px;
    color: white;
    margin-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    gap: 5rem;
    text-wrap-mode: nowrap;
    margin-right: 3%;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    transition: color 0.3s ease;
    font-size: 48px;
    font-style: italic;
    font-weight: 300;
    line-height: 52px;
    text-transform: uppercase;
}

.discount-price .price-amount::before {
    content: "-";
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 2rem));
    }
}

.marquee--hover-pause:hover .marquee-content {
    animation-play-state: paused;
}

.marquee--hover-pause:hover span {
    color: #ECE81A;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation-play-state: paused !important;
    }
}

@media (max-width: 1280px) {
    .marquee-content span {
        font-size: 2rem;
    }

    .marquee {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}