/* WooCommerce buttons; Gutenberg, the site header, and the footer are unaffected. */
.woocommerce :where(a.button, button.button, input.button, #respond input#submit) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 1rem 2rem !important;
	border: 1px solid transparent !important;
	border-radius: var(--mc-radius-pill) !important;
	background-color: var(--mc-accent) !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: background-color var(--mc-motion-fast) ease;
}

.woocommerce :where(a.button, button.button, input.button, #respond input#submit):hover {
	border-color: transparent !important;
	background-color: var(--mc-accent-hover) !important;
	color: #fff !important;
	text-decoration: none !important;
}

.woocommerce :where(a.button, button.button, input.button, #respond input#submit):focus-visible {
	outline: 2px solid var(--mc-accent-deep);
	outline-offset: 3px;
}
