.singleProduct {
    background-color: rgb(247, 247, 247);
    padding-bottom: 100px;
    padding-top: 50px;
}

.product_content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product_images_wrapper {
    width: 50%;
}

.product_images {
    transition: 0;
}

.product_images .swiper-wrapper {}

.product_images .swiper-slide {
    background: #fff;

}

.product_images .swiper-slide>img {
    width: 50%;

}

.product_thumbs {
    transition: 0;

    width: 50%;
    margin: auto;
}

.product_thumbs .swiper-wrapper {
    justify-content: center;
}

.product_thumbs .swiper-slide {
    border: 2px solid rgba(0, 0, 0, .15);
    background: #fff;
}

.product_thumbs .swiper-slide>img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: top;
}


.product_info {
    width: 50%;
}

.product_info>h2 {
    font-family: var(--font-main), serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.35;
    color: #000;
    margin-bottom: 20px;
}

.product_info>.price {
    font-family: var(--font-main), serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.35;
    color: #000;
    margin-bottom: 20px;

}

.product_info>p {
    font-family: var(--font-main), serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.55;
    color: #000;
}

.product_info>button {
    font-family: var(--font-main), serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.55;
    color: #fff;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px 20px;
}


@media(max-width: 768px){
    .product_content{
        flex-direction: column;
    }
    .product_images_wrapper {
        width: 100%;
    }
    .product_info {
        width: 100%;
    }
}