.accompany-products-wrapper {
    display: flex;
    gap: 10px;
    overflow: scroll auto;
    -webkit-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    max-width: 100%;
}

.accompany-products-wrapper::-webkit-scrollbar {
    height: 0px;
}

.accompany-products-title {
    position: relative;
}

.accompany-products-wrapper .product-item-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media (max-width: 767px) {
    .accompany-products__item {
        max-width: 130px;
        min-width: 130px;
    }

    .accompany-products-wrapper .product-item-title a {
        font-size: 12px;
    }

    .accompany-products__slider-btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .accompany-products-wrapper {
        user-select: none;
    }

    .accompany-products-wrapper.active {
        cursor: -webkit-grabbing;
        cursor: grabbing;
    }

    .accompany-products__slider-btn {
        position: absolute;
        top: calc(50% - 50px);
        z-index: 15;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        appearance: none;
        border: 1px solid transparent;
        background-color: #FFFFFF;
        border-radius: 50%;
    }

    .accompany-products__slider-btn:hover,
    .accompany-products__slider-btn:focus {
        outline: none;
    }

    .accompany-products__slider-btn:hover::before,
    .accompany-products__slider-btn:focus::before {
        border-top-color: #3f3f3f;
        border-left-color: #3f3f3f;
    }

    .accompany-products__slider-btn:active {
        background-color: rgb(63 63 63 / 30%);
    }

    .accompany-products__slider-btn--backward {
        left: 40px;
    }

    .accompany-products__slider-btn--forward {
        right: 40px;
    }

    .accompany-products__slider-btn::before {
        content: '';
        width: 15px;
        height: 15px;
        border-top: 3px solid rgb(63 63 63 / 30%);
        border-left: 3px solid rgb(63 63 63 / 30%);
        border-radius: 3px;
    }

    .accompany-products__slider-btn--backward::before {
        transform: translateX(2px) rotate(-45deg);
    }

    .accompany-products__slider-btn--forward::before {
        transform: translateX(-2px) rotate(135deg);
    }

    .slider-btn-hide {
        display: none;
    }

    .accompany-products__item {
        max-width: 200px;
        min-width: 200px;
    }
}

.product-item {
    display: block;
    box-sizing: border-box;
    padding-top: 0px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 2px;
}

.product-item-big-card .product-item,
.product-item-small-card .product-item { }

.product-item-line-card .product-item { border-bottom: 1px solid #dadada; }

.bx-no-touch .product-item-container.hover .product-item {
    border-color: transparent;
    background: #fff;
}

.bx-touch .product-item {
    width: auto;
    background: #fff;
}

/*Image*/
.product-item-image-wrapper {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-top: 150%;
    width: 100%;
    transition: all 300ms ease;
    background-color: #ff00004f;
}

.product-item-image-original,
.product-item-image-alternative {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 300ms linear;
}

.product-item-image-original { z-index: 11; }

.product-item-image-alternative {
    z-index: 13;
    opacity: 0;
}

.product-item-big-card .product-item-image-wrapper {  }

/*Image Slider*/
.product-item-image-slider-slide-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: opacity 300ms ease;

}

.product-item-image-slide {
    position: relative;
    display: none;
    height: 100%;
    background-color:#f7ecea;;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .6s ease-in-out left;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .product-item-image-slide {
        transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .product-item-image-slide.next,
    .product-item-image-slide.active.right {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    .product-item-image-slide.prev,
    .product-item-image-slide.active.left {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .product-item-image-slide.next.left,
    .product-item-image-slide.prev.right,
    .product-item-image-slide.active {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.product-item-image-slider-slide-container > .active,
.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev { display: block; }

.product-item-image-slider-slide-container > .active { left: 0; }

.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.product-item-image-slider-slide-container > .next { left: 100%; }

.product-item-image-slider-slide-container > .prev { left: -100%; }

.product-item-image-slider-slide-container > .next.left,
.product-item-image-slider-slide-container > .prev.right { left: 0; }

.product-item-image-slider-progress-bar-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
}

.product-item-image-slider-progress-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background-color: var(--theme-color-primary);
    opacity: .8;
}

.product-item-image-slider-control-container {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: block;
    padding: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container { opacity: 1; }

.product-item-image-slider-control,
.product-item-image-slider-control.active {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, .8);
    opacity: .6;
    cursor: pointer;
    transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover { cursor: pointer; }

.product-item-image-slider-control.active,
.product-item-image-slider-control:hover { background-color: var(--primary); }

/*Title*/
.product-item-title {
    font-family: Circe;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    text-align: left;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #3F3F3F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.product-item-title a {
    color: #3f3f3f;
    text-decoration: none;
    transition: 250ms linear all;
    font-size: 14px;
}
