/* ─────────────────────────────────────────────────────────────────────────
 * jp-712-wawi-download-accordion-icon.css — JP-712
 * Page: /en/erp-software/jtl-wawi-download (body.page-id-268079)
 * Section: "System requirements" product-accordion.
 *
 * Bug (JP-712): the accordion "+" / "−" toggle icons render ORANGE (#F28A28)
 * but the redesign wants them BLUE.
 *
 * Root cause: NOT a CSS/widget bug. ProductAccordionItem/View.php emits the
 * icon with an inline `style="color:…"` built from the WPBakery `icon_color`
 * attribute. The widget DEFAULT is blue #2722f8 (the same blue as the
 * accordion item borders), but every `[product_accordion_item]` on the EN page
 * has `icon_color="#F28A28"` saved, so the inline style paints them orange.
 *
 * EN-only on purpose: verified on live staging that the DE page (page-id-31)
 * already carries `color:#2722F8` in its content (it was corrected on prod
 * after the 2026-04 dump — the clone DB still shows the old orange, but the
 * live DE page is already blue). So only the EN translation is still orange.
 * `body.page-id-268079` matches exactly the EN page (its body carries both
 * 268079 and 31; the DE page carries only 31, so this never touches DE).
 *
 * Delivery: the colour lives in per-instance editor content (the DB), so the
 * proper long-term fix is the `icon_color` attribute (Layer B). This
 * page-scoped sheet is the low-risk fix for JP-712 — restores the widget's
 * intended #2722f8 with no prod DB write. `!important` is required to beat the
 * inline `style` attribute.
 * ───────────────────────────────────────────────────────────────────────── */
body.page-id-268079 .product-accordion__item--button i {
    color: #2722f8 !important;
}
