 .item_text {
padding:15px;
 }
 

.datblock {
    position: relative;
}

/* область скрытия текста */
.text_hide_wrap {
    position: relative;
    overflow: hidden;
    max-height: 160px;
    transition: max-height 1.1s ease;
    padding-bottom: 50px;
}

.text_hide_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
 
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #F3F3F3);
    transition: opacity .3s ease;
}


.datblock.open .text_hide_wrap {
    max-height: 3500px;
}

.datblock.open .text_hide_wrap::after {
    opacity: 0;
}

.toggleReview {
    margin-top: 10px;
    cursor: pointer;
    padding: 12px;
    right: 0;
    bottom: 0;
    z-index: 3;
    background-color: #464A53;
    color: #ffffff;
    width: 180px;
    border-radius: 7px;
}

.datblock:not(.open) .item_text img {
    opacity: 0;
    display: none;
}

.datblock.open .item_text img {
    opacity: 1;
    display: block;
    transition: opacity .3s ease;
}

 
 

.item_text ul,
.item_text ol {
    display: flow-root;
}

.item_text em {
    font-style: normal;
}

/* ----- Swiper (товары в наличии) ----- */
.stockSwiper {
    width: 100%;
    height: 100%;
    padding: 0;
}

.stockSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3F3;
    border-radius: 8px;
    box-sizing: border-box;
}

  