/**
 * Theme Name: Hello Add
 * Template:   hello-elementor
 * ...other header fields
 */

/* Product card becomes vertical layout */
.woocommerce ul.products li.product{
    display:flex;
    flex-direction:column;
}

/* Remove title bottom spacing */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
    margin-bottom:2px !important;
}

/* Reserve icon row */
.product-icons{

    min-height:46px;

    display:flex;
    flex-wrap:nowrap;

    gap:1px;

    overflow-x:auto;   /* scroll instead of wrap */
    overflow-y:hidden;

    scrollbar-width:none;
}

.product-icons::-webkit-scrollbar{
    display:none;
}

.product-icon{

    height:40px !important;
    width:auto !important;
	margin:0 !important;
    max-width:none !important;

    object-fit:contain;

    vertical-align:middle;

    display:inline-block;
}

/* Short description */
.cat-short-desc{
    font-size:13px;
    color:#666;
    line-height:1.4;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    overflow:hidden;

    /* reserve exactly 2 lines height */
    min-height:2.8em;
    max-height:2.8em;

    margin-bottom:6px;
}

/* Push button down */
.woocommerce ul.products li.product{
    display:flex;
    flex-direction:column;
}

.woocommerce ul.products li.product .button{
    margin-top:auto;
}