
.product_container  {
display: flex;
justify-content: space-between;
align-items: flex-start;
}


.product_image img {
max-width: 380px;
margin: 0 50px 0 0;
object-fit: contain;
}

.product_content {
width: 100%;
}

.product_content >*:not(:last-child) {
margin-bottom: 30px;
}

.product_title {
font-weight: 600;
font-size: 35px;
line-height: 150%;
letter-spacing: 0.5px;
}

.product_cart_buy {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
background: #fff;
box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
border-radius: 14px;
}

.product_cart_buy >*:not(:last-child) {
margin: 0 15px 0 0;
}

.product_price {
font-size: 22px;
font-weight: 700;
}

.buy_btn {
width: 255px;
}

.product_description ul, li {
list-style-type: disc;
margin: 0 0 0 5px;
}

.product_description >*:not(:last-child) {
margin-bottom: 15px;
}


@media(max-width: 1280px) {
.product_title {
font-size: calc(25px + (35 - 25) * ((100vw - 320px) / (1260 - 320)));
}
.product_description >*:not(:last-child) {
margin-bottom: calc(5px + (15 - 5) * ((100vw - 320px) / (1260 - 320)));
}
}

@media(max-width:988px) {
.product_container  {
flex-direction: column;
align-items: center;
}
.product_image {
width: 100%;
max-height: 250px;
}
.product_image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.product_content {
flex: 100%;
}
.product_content >*:not(:last-child) {
margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (798 - 320)));
}
}

@media(max-width: 520px) {
.product_cart_buy {
flex-direction: column;
align-items: flex-start;
}
.product_cart_buy >*:not(:last-child) {
margin: 0 0 15px 0;
}
.buy_btn {
width: 100%;
}
.product_image img {
  max-width: 100%;
}
