/*
 * Mini-cart flyout PoA rewrite — scoped to #flyout-cart only.
 *
 * Visual parity with poa-cart-total.css: 400 weight, #4a6a8a accent — the "POA" text reads
 * as confident supporting copy, not alarm. Two surfaces are styled:
 *
 *   1. Unit-price cell on each .item.poa-replacement (set by the rewriter JS when that line's
 *      product slug is in window.__poaFlyoutCartSlugs).
 *   2. SubTotal value on the flyout root when .poa-cart-has-poa is present (ANY PoA line in
 *      the cart trips the SubTotal, matching the full-cart-total philosophy).
 *
 * Quick task 260518-f2i — closes the v1.x PoA flyout-coverage gap. Plugin-only constraint:
 * NO modifications to nopCommerce upstream CSS or markup.
 *
 * DO NOT redeclare any .edunet-* classes — those are globally injected by EdunetCore.cshtml.
 *
 * CSS keyword values stay W3C American English (color), per the project rule. Australian
 * spelling lives in this comment block (colour) and nowhere in the property declarations.
 */

/* Per-line unit price replacement — "POA" colour parity with poa-cart-total.css. */
#flyout-cart .item.poa-replacement .price > span {
    color: #4a6a8a;
    font-weight: 400;
}

/* SubTotal replacement when ANY cart line is PoA — same calm accent. */
#flyout-cart.poa-cart-has-poa .totals > strong {
    color: #4a6a8a;
    font-weight: 400;
}
