p.stock.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    padding: 5px 8px;
    border-radius: 3px;
    max-width: 100px;
    margin-bottom: 10px;
}

/* Hide categories beyond 4 */
ul.products>li.product-category:nth-of-type(n+5) {
    display: none;
}

/* DEFAULT: no margin change */
ul.products>li.product-category {
    margin-right: auto;
}

/* === 1 ITEM === */
ul.products>li.product-category:only-of-type {
    margin-right: 75%;
}

/* === 2 ITEMS === */
ul.products>li.product-category:first-of-type:nth-last-of-type(2)~li.product-category:last-of-type {
    margin-right: 50%;
}

/* === 3 ITEMS === */
ul.products>li.product-category:first-of-type:nth-last-of-type(3)~li.product-category:last-of-type {
    margin-right: 25%;
}

/* === EXACTLY 4 ITEMS → reset (safety) === */
ul.products>li.product-category:first-of-type:nth-last-of-type(4),
ul.products>li.product-category:first-of-type:nth-last-of-type(4)~li.product-category {
    margin-right: auto;
}

li.product-category {
    position: relative;
}

mark.count:after {
    content: " টি পাঞ্জাবি";
    line-height: 1;
}

mark.count {
    position: absolute;
    top: 3%;
    right: 5%;
    line-height: 1;
    padding: 6px 8px 4px 8px;
    font-weight: 600;
    border-radius: 3px;
    font-size: 14px;
}

li.product-category img {
    max-height: 200px;
    border-radius: 10px;
    object-position: top;
}

@media (max-width: 767px) {
    li.product-category {
        width: 48% !important;
    }

    li.product-category img {
        max-height: 150px;
    }

    li.product-category a h2.woocommerce-loop-category__title {
        font-size: 14px !important;
    }

    mark.count {
        font-size: 13px;
    }
}