.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #EDEDED;
}

.product-item__info {
    width: 65%;
    word-wrap: break-word;
}

.product-item__title {
    font-size: 16px;
    line-height: 22px;
}
.product-item__description {
    color: #737373;
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
}

.product-item__price {
    max-width: 15%;
    font-weight: 700;
}

.product-item__buy {
    margin-left: 30px;
    width: 145px;
    text-align: center;
}

.product-item__buy-passive-text {
    display: none;
}

.product-item__buy--added {
    background: #fff;
    border-color: #EDEDED;
    color: #333;
}

.product-item__buy--added:hover {
    background: #fff;
}

.product-item__buy--added .product-item__buy-passive-text {
    display: inline;
}
.product-item__buy--added .product-item__buy-active-text {
    display: none;
}

@media screen and (max-width: 767px) {
    .product-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-item__info {
        width: 100%;
    }
    .product-item__price {
        max-width: 100%;
        width: 100%;
        padding: 10px 0;
    }
    .product-item__buy {
        margin-left: 0;
    }
}