/* "Powiadom o dostępności" — out-of-stock CTA visual fallback.
 *
 * Force-enables the add-to-cart button when WooCommerce marks it as disabled,
 * with an orange background as the pre-JS visual hint. Once notify-availability.js
 * fires `found_variation`, it actively sets `prop('disabled', false)` + swaps
 * button text — at which point this rule no longer applies (no `:disabled` state
 * on the element).
 *
 * Largely overlaps with ms-cta-always-active in inc/conditional-assets.php; kept
 * here for the orange-BG hint that ms-cta-always-active doesn't provide.
 */
.single_add_to_cart_button:disabled {
	opacity: 1 !important;
	background-color: #ff6600 !important;
	cursor: pointer !important;
}
