/* Hiding is scoped to body classes the plugin adds only for the current
   product's effective disabled-state (see includes/frontend) -- with the
   plugin deactivated this file is never enqueued and these classes are
   never added, so the native buttons are completely unaffected. */
body.kzca-hide-add-to-cart .single_add_to_cart_button {
	display: none !important;
}
body.kzca-hide-buy-now button[formaction*="kzc_buy_now"] {
	display: none !important;
}
/* Both native buttons hidden: the row that held them would otherwise
   still take up a (near-empty) flex gap. */
body.kzca-hide-add-to-cart.kzca-hide-buy-now .action-row {
	display: none !important;
}

.kzca-amazon-row {
	margin-top: 14px;
}
/* Doubled up with .btn-cart (".btn-cart.kzca-amazon-button") rather than
   ".kzca-amazon-button" alone -- this stylesheet happens to be enqueued
   before the theme's style.css (no dependency between them, and neither
   needs one), so at equal specificity style.css's own .btn-cart color
   would otherwise win by source order. */
.btn-cart.kzca-amazon-button {
	width: 100%;
	background: linear-gradient(135deg, #ff9900, #e88a00);
	color: #0f1111;
}
.btn-cart.kzca-amazon-button:hover {
	background: linear-gradient(135deg, #e88a00, #cc7a00);
}
.kzca-amazon-button svg {
	width: 16px;
	height: 16px;
}
