/* Grid3 Product Layout Fix */
.products.three-column .product {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.products.three-column .product-holder {
    margin-bottom: 15px !important;
}

.products.three-column .product-info {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.products.three-column .product__title {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

.products.three-column .product__price {
    margin-bottom: 10px !important;
}

.products.three-column .product-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    margin-bottom: 10px !important;
}

@media (max-width: 767px) {
    .products.three-column .product-description {
        display: none !important;
    }
}
