/* Название — максимум 2 строки */
.product-thumb .caption h4 {
    line-height: 20px;
    height: 40px;
    overflow: hidden;
}

/* Все description_cat по умолчанию — 1 строка */
.product-thumb .description_cat {
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 5px;
}

/* ВТОРАЯ строка (описание) — 2 строки */
.product-thumb .description_cat:nth-of-type(2) {
    height: 40px;
}

/* Цена чтобы не прыгала */
.product-thumb .price {
    min-height: 40px;
}

/* Размеры — максимум 2 строки */
.product-thumb .product-sizes {
    line-height: 20px;
    height: 40px;          /* 2 строки */
    overflow: hidden;
    margin-bottom: 5px;
}