/*-----------------------------------
Hide Buy Buttons
-----------------------------------*/
.wp-block-surecart-product-buy-buttons,
.wp-block-surecart-product-quantity {
    display: none;
}


/*-----------------------------------
Sold Out After Description
-----------------------------------*/
.wp-block-surecart-product-description::after {
    content: var(--suredrop-sold-out); /* --suredrop-sold-out should include quotes in PHP */
    display: block;                     /* Makes it appear on its own line */
    margin-top: 1em;                    /* Space above */
    font-weight: bold;                  /* Stand out */
    font-size: 1rem;                    /* Adjust to match your design */
    background-color: rgb(228, 228, 228);
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

/*-----------------------------------
Hide Product Price
-----------------------------------*/
.wp-block-surecart-product-selected-price-amount {
    display: var(--suredrop-product-price-display-ended);
}
