.productItem .productName a {
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* 2 satır */
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

}