/**
 * Campaign Pricing — front-end styles
 *
 * Two output shapes the plugin emits:
 *
 *   1. <span class="campaign-price-display"><del>$base</del> <ins>$discount</ins></span>
 *      Inline form, produced by wrap_price_html() for product listings.
 *
 *   2. <span class="campaign-price-display"><del>$base</del><br><ins>$discount</ins></span>
 *      Stacked form, produced by display_cart_item_price / _subtotal.
 *
 * Plus the per-line campaign label:
 *
 *      <div class="campaign-promo-label">Memorial Day Savings</div>
 *
 * Themes can override any of these rules by targeting the same selectors
 * with higher specificity (or a later stylesheet).
 */

.campaign-promo-label {
    display: block;
    margin-top: 4px;
    font-size: 0.9em;
    font-weight: 600;
    color: #FF8202;
}

.campaign-price-display del {
    opacity: 0.6;
    margin-right: 0.25em;
}

.campaign-price-display ins {
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    color: #FF8202;
}
