/*
 * Makes the "already in your wishlist" state of the add-to-wishlist button unmissable,
 * wherever it appears (single product page, catalog/loop cards). WCBoost/Ecomus already
 * mark this state with an "added" class and (depending on the "Button display for existing
 * items" setting) may swap the heart icon for a trash icon, but on their own those are too
 * subtle - the button otherwise looks identical to its own "not yet added" state, which
 * reads as broken rather than "you can click this to view/remove it."
 */
.wcboost-wishlist-button.added,
.wcboost-wishlist-single-button.added {
	position: relative;
	box-shadow: 0 0 0 2px #2e7d32, 0 0 10px rgba( 46, 125, 50, 0.55 );
}

.wcboost-wishlist-button.added .wcboost-wishlist-button__icon,
.wcboost-wishlist-single-button.added .wcboost-wishlist-button__icon,
.wcboost-wishlist-button.added .wcboost-wishlist-button__icon svg,
.wcboost-wishlist-single-button.added .wcboost-wishlist-button__icon svg {
	color: #2e7d32;
}
