/*
 * Custom Product Badge Styles
 * Extends Stroyka theme badge system
 *
 * Base badge styles are in style.css with:
 * - sale: #ff3333 (red)
 * - new: #3377ff (blue)
 * - hot: #614ba6 (purple)
 */

/* Out of Stock Badge - Gray/Muted Style */
.product-card__badge--out-of-stock,
.product-card__badge--out_of_stock {
    background: #95a5a6;
    color: #fff;
}

/* Featured Badge - Gold/Premium Style (to differentiate from hot) */
.product-card__badge--featured {
    background: #f39c12;
    color: #fff;
}
