.product_card_details {
    padding: 178px 0 120px;
}

.product_card_details .h2 {
    margin: 48px 0;
}

.product_details_picture_main {
    display: grid;
    grid-template-columns: calc(40% - 21px) 60%;
    gap: 21px;
    padding-bottom: 48px;
    border-bottom: 1px solid #cacaca;
}

.product_details_picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #cacaca;
    margin-bottom: 48px;
    padding-bottom: 24px;
}

.product_details_icon {
    display: flex;
    gap: 4px;
}

.main_characteristics_price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.main_characteristics {
    white-space: nowrap;
}

.main_characteristics_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #333;
    margin-bottom: 24px;
}

.main_characteristics_all {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.main_characteristics_item_text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #787878;
}

.main_characteristics_item_text span {
    color: #333;
}

.main_price {
    width: 366px;
}

.main_price_top {
    box-shadow: 0 2px 9px 0 rgba(12, 12, 13, 0.15);
    border-radius: 4px;
    margin-bottom: 24px;
}

.main_price_top .adding_product {
    display: flex;
    position: static;
    border-top: none;
}

.main_price_top .product_price {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    color: #333;
    margin-bottom: 12px;
}

.main_price_inform {
    padding: 32px;
}

.product_number {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #48720e;
}

.main_price_bottom {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    gap: 8px;
    width: 68%;
}

.non_bold_text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #787878;
}

.go_to_products:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: #ffb630;
    transition: width 0.3s ease-out;
}

.go_to_products:hover:before {
    width: 100%;
}

.product_description,
.product_characteristics {
    width: 75%;
    margin: 0 auto;
}

.product_description .main_characteristics_title {
    margin: 48px 0;
}

.product_characteristics .main_characteristics_title {
    margin: 70px 0 24px;
}

.part_characteristics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.characteristics_item {
    border-top: 0.5px solid #cacaca;
    padding: 16px 0;
}

.characteristics_item_text {
    display: flex;
    justify-content: space-between;
    width: 80%;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #787878;
}

.characteristics_item_value {
    color: #333;
}

/*АДАПТИВ*/

@media screen and (max-width: 1250px) {
    .main_characteristics_price {
        gap: 32px;
    }

    .main_price_bottom {
        width: 100%;
    }

    .product_description,
    .product_characteristics {
        width: 100%;
    }
}

@media screen and (max-width: 950px) {
    .h2 {
        width: auto;
    }

    .product_details_picture_main {
        display: flex;
        flex-direction: column;
    }

    .main_price {
        width: auto;
    }
}

@media screen and (max-width: 650px) {
    .main_characteristics_price {
        flex-direction: column;
    }

    .main_characteristics {
        text-align: center;
    }

    .part_characteristics {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .characteristics_item_text {
        width: 100%;
    }
}
