.stock-status.in-stock {
    font-weight: bold;
    color: #28a745;
    font-style: italic;
}

.stock-status.out-of-stock {
    font-weight: bold;
    color: lightgrey;
}

/* Global approach for product items with in-stock status */
/* .oe_product:has(.stock-status.in-stock) .oe_currency_value {
    color: #0fd612;
    font-weight: bold;
} */

/* Global approach for product items with out-of-stock status */
.oe_product:has(.stock-status.out-of-stock) .h6.mb-0 {
    color: lightgrey;
    font-style: italic;
    font-weight: normal;
}
.oe_product:has(.stock-status.out-of-stock) .oe_currency_value {
    color: lightgrey;
    font-style: italic;
    font-weight: normal;
}
