.also-bought {
    width: calc(100% + 25px);
    overflow: hidden;
    margin: 0 -25px 0 0;
    padding: 0 25px 0 0;
    position: relative;
}

.also-bought.is-end .swiper::after {
    opacity: 0;
}

.also-bought__container {
    padding: 20px 0 20px 20px;
    border-radius: 12px;
    background-color: #F5F5F5;
}

.also-bought__slide.swiper-slide {
    display: flex;
    flex-direction: column;
    padding: 9px;
    width: 160px;
    height: 196px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    background-color: #fff;
}

.also-bought .swiper {
    padding-right: 20px;
}

.also-bought .swiper::after {
    content: "";
    display: block;
    width: 196px;
    height: 122px;
    background: linear-gradient(180deg, #F5F5F5 11.48%, rgba(245, 245, 245, 0) 100%);
    position: absolute;
    top: 38px;
    right: -38px;
    transform: rotate(90deg);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.also-bought__slide.also-bought__slide--empty.swiper-slide {
    background-color: rgba(245, 245, 245, 0.3);
}

.also-bought__slide.also-bought__slide--empty.swiper-slide:hover {
    box-shadow: none;
}

.also-bought__slide:hover .also-bought__title {
    color: #E4007E;
}

.also-bought__heading {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #222222;
    margin-bottom: 20px;
}

.also-bought .price {
    margin-bottom: 5px;
}

.also-bought .price .price-economy {
    margin-bottom: 5px;
}

.also-bought .price .price-economy__val {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 6px;
    height: auto;
    text-align: center;
    padding: 0 7px;
}

.also-bought__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 5px;
    row-gap: 5px;
}

.also-bought__price .price__new {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    color: #222222;
}

.also-bought__price .price__old {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #999999;
    text-decoration: line-through;
}

.also-bought__title {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #555555;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.also-bought__navigation.swiper-button-prev,
.also-bought__navigation.swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    height: 44px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px 0 rgba(34, 34, 34, 0.07);
    transition: background-color 0.3s ease, opacity 0.3s ease;
    background-color: #fff;
    opacity: 1;
}

.also-bought__navigation.swiper-button-prev::after,
.also-bought__navigation.swiper-button-next::after {
    display: none;
}

.also-bought__navigation.swiper-button-prev.swiper-button-disabled,
.also-bought__navigation.swiper-button-next.swiper-button-disabled {
    display: flex;
    opacity: 0;
}

.also-bought__navigation.swiper-button-prev {
    left: 12px;
}

.also-bought__navigation.swiper-button-next {
    right: 12px;
}

.also-bought__navigation--prev svg {
    transform: rotate(-180deg);
}

.also-bought__navigation.swiper-button-prev svg,
.also-bought__navigation.swiper-button-next svg {
    stroke: #222;
    width: 7px;
    height: 12px;
    transition: stroke 0.3s ease;
}

.also-bought__navigation:hover {
    background-color: #E4007E;
}

.also-bought__navigation:hover svg {
    stroke: #fff;
}

.also-bought__image {
    width: 100px;
    height: 100px;
    margin: 0 auto 5px;
}

.also-bought__image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .also-bought {
        width: 100%;
        margin: 27px 0 0 0;
        padding: 0;
    }
}