/* ### Out of stock item -- Start */
/* Grey out the entire out-of-stock product container */
li.outofstock {
    opacity: 0.5;
    filter: grayscale(50%) brightness(100%);
    position: relative;
}

/* Add an "Out of Stock" label overlay */
li.outofstock::after {
    content: "Out of Stock";
	pointer-events: none;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    z-index: 10;
    text-transform: uppercase;
}
/* ### Out of stock item -- End */

/* ### Header title -- Start */
.wp-block-site-title a {
    text-decoration: none !important;
}
/* ### Header title -- End */