.Product {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px; /* для 3D эффекта */
    flex-direction: column;
    scroll-margin-top: 100px;
}

.wrapper_Product {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s linear;
    transform: rotateX(35deg); /* начальный наклон назад */
}
.product-img {
    width: 1122px;
    height: 701px;
    transition: transform 0.1s linear;
}

.product-img_all{
    height: 1px;
}

.product-img1 {
   position: relative;
    left: -650px;
    top: 200px;
    transition: transform 0.2s linear;
}
.product-img2 {
   position: relative;
    top: 100px;
    left: 150px;
    transition: transform 0.2s linear;
}
.product-img4 {
   position: relative;
    left: -116px;
    top: -380px;
    transition: transform 0.2s linear;
}.product-img3 {
     position: relative;
     left: 640px;
     top: -380px;
     width: 213px;
     transition: transform 0.2s linear;
 }

/* Класс для смещения вправо на 20px */
.product-img3.move-right {
    transform: translateX(80px);
}
.product-img5 {

    top: 280px;
   position: relative;
    transition: transform 0.2s linear;
}


/* Десктоп (по умолчанию твои стили) */

/* Планшеты */
@media (max-width: 1024px) {
    .wrapper_Product {
        width: 90%;
        transform: rotateX(15deg); /* поменьше наклон */
    }

    .product-img {
        width: 100%;
        height: auto;
    }

    .product-img1,
    .product-img2,
    .product-img3,
    .product-img4,
    .product-img5 {
        display: none/* ограничение для телефонов */
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .Product{
        margin-top: 50px;
    }
    .wrapper_Product {
        width: 100%;
        flex-direction: column;
        transform: none; /* убираем наклон */
    }

    .product-img {
        width: 100%;
        height: auto;
    }



}
