/**
 * Discount Display Module - Frontend Styles
 *
 * Styles for cart and checkout price display with strikethrough original prices.
 * Works with wc_format_sale_price() generated HTML structure:
 * - <del aria-hidden="true"> for original price
 * - <ins aria-hidden="true"> for sale price
 *
 * @package Extra_Woo_Toolkit
 * @subpackage Modules/DiscountDisplay
 * @since 1.1.0
 */

/* Cart page - Price column: strikethrough original price in red */
.woocommerce-cart .product-price del,
.woocommerce-cart .product-subtotal del {
	color: #e2401c;
	opacity: 0.7;
	font-size: 0.9em;
	display: block;
}

/* Cart page - Price column: sale price emphasis */
.woocommerce-cart .product-price ins,
.woocommerce-cart .product-subtotal ins {
	font-weight: 600;
	text-decoration: none;
	display: block;
}

/* Checkout page - strikethrough original price in red */
.woocommerce-checkout .product-total del {
	color: #e2401c;
	opacity: 0.7;
	font-size: 0.9em;
}

/* Checkout page - sale price emphasis */
.woocommerce-checkout .product-total ins {
	font-weight: 600;
	text-decoration: none;
}

/* "You Saved" row styling */
.ewt-you-saved td {
	color: #77a464;
}

.ewt-you-saved td strong {
	font-size: 1.05em;
}

.ewt-you-saved td small {
	font-weight: normal;
	opacity: 0.8;
}
