/* PRODUCT TICKER SECTION */
.product-ticker-section {
    width: 100%;
    overflow: hidden;
    margin-top: 150px;
}

.product-ticker {
    position: relative;
    width: 100%;
}

.product-ticker-track {
    display: flex;
    width: max-content;
    /* Use CSS var for duration so JS can set it responsively */
    animation-name: product-ticker-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: var(--product-ticker-duration, 10s);
}

.product-ticker-group {
    display: flex;
    align-items: center;
    gap: 120px;
    padding: 48px 64px;
}

.product-item {
    position: relative;
    display: inline-block;
}

.product-image {
    width: 700px;
    height: auto;
    display: block;
}

.product-label {
    position: absolute;
    right: 100px;
    top: 70%;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    background-color: var(--grün);
    color: white;
    font-size: 2.5em;
    line-height: 1em;
    font-style: normal;
    padding: 4px 24px 12px 24px;
}

@keyframes product-ticker-scroll {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media screen and (max-width: 1100px) {
    .product-ticker-group {
        gap: 0;
        padding: 0;
    }

    .product-image {
        width: 70vw;
    }

    .product-label {
        right: 7vw;
        top: 60%;
        padding: 5px 20px 10px 20px;
        font-size: 1.5em;
    }
}
