.single-product {
    margin-bottom: 26px;
}

.single-product .part-1 {
    position: relative;
    height: 290px;
    max-height: 290px;
    margin-bottom: 20px;
    overflow: hidden;
}

.single-product .part-1 .product-image {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: all 0.3s;
}

.single-product:hover .part-1 .product-image {
    cursor: pointer;
    transform: scale(1.2,1.2) rotate(5deg);
}
