/* === JONET Discounts Frontend === */

/* Campaign label under price */
.jonet-campaign-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #c00;
    margin-top: 4px;
    line-height: 1.3;
}

/* Strikethrough + new price */
.price del {
    opacity: 0.5;
    margin-right: 4px;
}

.price ins {
    text-decoration: none;
    font-weight: 400;
    color: #c00;
}

/* Discount badge on product image — catalog */
.jonet-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: #c00;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 4px 8px;
    line-height: 1.2;
    border-radius: 0;
}

/* Badge on single product page */
.jonet-discount-badge--single {
    font-size: 13px;
    padding: 6px 12px;
    top: 12px;
    left: 12px;
}

/* Checkout item campaign label */
.jc-cart-item__campaign {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #c00;
    margin-top: 2px;
}

/* Checkout item price strikethrough */
.jc-cart-item__price del {
    opacity: 0.5;
    margin-right: 4px;
    font-size: 0.9em;
}

.jc-cart-item__price ins {
    text-decoration: none;
    color: #c00;
}

/* Mini-cart price strikethrough */
.woocommerce-mini-cart-item .quantity del {
    opacity: 0.5;
    margin-right: 3px;
}

.woocommerce-mini-cart-item .quantity ins {
    text-decoration: none;
    color: #c00;
}
