/* Fix product layout and prevent overlap in JoomShopping */
.jshop_list_product .jshop_product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jshop_list_product .product_name {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* or 1 if you prefer */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jshop_list_product .block_product {
    min-height: 340px;  /* adjust height if needed */
    overflow: hidden;
}

.jshop_list_product .product_description {
    max-height: 60px;
    overflow: hidden;
}
