/**
 * Worky: brand color + Elementor kit CSS variables.
 * Demo / theme_mods used #f7992b; that value is also embedded in Elementor’s
 * per-widget CSS (higher specificity than variables). See functions.php: output
 * buffer + inline on elementor-post-* handle.
 */

/* Elementor Global Colors (Site Settings → global kit) */
[class*='elementor-kit-'] {
	--e-global-color-primary: #B1122A;
	--e-global-color-secondary: #B1122A;
	--e-global-color-accent: #B1122A;
}

/* Jet / theme buttons that still use generic accent utility */
.btn.btn-primary,
.button.alt,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.widget_shopping_cart .button {
	background-color: #B1122A;
	border-color: #B1122A;
}

.btn.btn-primary:hover,
.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background-color: #8c0d21;
	border-color: #8c0d21;
}
