/* Makes the discounted price green, bold, and 14px */
.Product__price {
    color: #ff0000 !important;
    font-weight: bold !important;
    font-size: 16px !important;
    display: block; /* Ensures the price is a block to help the next line align */
}

/* Adds the "5% OFF" tag on a new line */
.Product__price:after {
    content: "(5% OFF)";
    display: block; /* This forces it to the next line */
    font-size: 12px; /* Adjusted for better visibility on its own line */
    color: #4e95d9;
    margin-top: 2px; /* Adds a tiny gap between the price and the tag */
}
