/* Hide the existing "SOLD OUT" text */
.product-mark.sold-out {
display: none;
}
/* Display "ON HOLD" beneath the title */
.product-mark.sold-out::after {
content: "ON HOLD";
display: block;
color: red; /* Set to your preferred color */
font-weight: bold; /* Optional */
text-align: center; /* Optional */
margin-top: 10px; /* Adjust as needed for spacing */
font-size: 1rem; /* Adjust as needed */
}