.products-carousel {
    padding-top: 5em;
    overflow: hidden;
}

.products-carousel .button.outline {
    color: var(--text-orange);
    border-color: var(--bgd-orange);
}

@media (min-width: 1200px) {
    .products-carousel .button.outline:hover {
        background: var(--bgd-orange);
        color: var(--text-white);
    }
}

.products-carousel .products {
    margin-top: 2.2em;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.7em;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.products-carousel .products::-webkit-scrollbar {
    display: none;
}

.products-carousel .buttons .button {
    flex: 1;
    justify-content: center;
}

.products-carousel .carousel-progress {
    position: relative;
    width: calc(100% - 1.875em);
    height: 4px;
    background-color: rgba(13, 86, 79, 0.1);
    border-radius: 5px;
    margin-top: 2.625em;
    overflow: hidden;
}

.products-carousel .carousel-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--bgd-green-light);
    border-radius: 5px;
    transition: width var(--transition-duration-default) ease;
}

.arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5em;
    height: 4.5em;
    border-radius: 50%;
    border: 1px solid #679E69;
    background: var(--bgd-white);
    color: var(--text-green);
    cursor: pointer;
    transition: all var(--transition-duration-default) ease-in-out;
}

@media (min-width: 1200px) {
    .arrow-button:hover {
        background: #679E69;
        color: var(--text-white);
    }
}

.arrow-button.left {
    left: 6em;
}

.arrow-button.right {
    right: 6em;
}

.arrow-button span {
    font-size: 2.8em;
}

@media all and (max-width: 1100px) {
    .products-carousel .title-holder {
        flex-direction: column;
        text-align: center;
        padding-right: 4em;
    }
    .products-carousel .button.outline {
        margin-top: 1em;
    }
}

@media all and (max-width: 1000px) {
    .products-carousel {
        padding-top: 0;
        padding-bottom: 2.6em;
    }
}

@media all and (max-width: 600px) {
    .arrow-button {
        width: 3.5em;
        height: 3.5em;
    }
    .arrow-button.left {
        left: 2em;
    }
    .arrow-button.right {
        right: 2em;
    }
}
