/*
 * amg-a11y-contrast.css
 * PSI (WCAG 1.4.3) contrast fixes — minimal same-hue darkening, no layout/size change.
 * Each rule notes the measured ratio before -> after (WCAG formula, on the element's
 * actual background). Only isolated, low-risk selectors are touched here; brand-colored
 * card badges and unlocated selectors are left for owner review (see task notes).
 * Created: 2026-07-10
 */

/* .free-hint — light grey hint text on white.
   #9ca3af -> #71767f : 2.54:1 -> 4.57:1 (same cool-grey hue, ~1 step darker). */
.free-hint {
	color: #71767f !important;
}

/* .amg-discount-badge — white text on red badge; darken bg half a shade (red-500 -> red-600).
   #fff on #ef4444 -> #fff on #dc2626 : 3.76:1 -> 4.83:1 (same red hue). */
span.amg-discount-badge,
.amg-discount-badge,
.single-product .summary .price .amg-discount-badge,
.single-product .woocommerce-variation-price .amg-discount-badge,
.woocommerce-variation-price .price .amg-discount-badge {
	background: #dc2626 !important;
}
