/**
 * InstantPrice Frontend Styles
 *
 * @package InstantPrice
 */

/* Price wrapper */
.instantprice-price-wrap {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* Discount badge */
.instantprice-badge {
    display: inline-block;
    background: #2c974b;
    color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    vertical-align: middle;
}

/* WooCommerce strikethrough - make it more subtle */
.instantprice-price-wrap del {
    opacity: 0.55;
    font-size: 0.9em;
}

/* WooCommerce new price - emphasize */
.instantprice-price-wrap ins {
    text-decoration: none;
    font-weight: 700;
}

/* Shop page (product cards) */
.woocommerce ul.products li.product .instantprice-badge {
    font-size: 0.75em;
}

/* Single product page - bigger badge */
.single-product .summary .instantprice-badge {
    font-size: 0.85em;
    padding: 3px 10px;
}

/* Cart & checkout - smaller inline badge */
.woocommerce-cart .instantprice-badge,
.woocommerce-checkout .instantprice-badge {
    font-size: 0.7em;
    padding: 1px 5px;
}

/* Variable products - price range */
.woocommerce-variation-price .instantprice-badge {
    font-size: 0.75em;
}

/* Mini cart widget */
.widget_shopping_cart .instantprice-badge {
    display: none;
}
