/* Favorites: header counter + product-card toggle. */
.mot-fav-link { position: relative; display: inline-flex; align-items: center; color: inherit; text-decoration: none; }
.mot-fav-icon { position: relative; display: inline-flex; width: 26px; height: 26px; color: #333; }
.mot-fav-icon svg { width: 26px; height: 26px; }
.mot-fav-count {
	position: absolute; top: -7px; right: -9px;
	min-width: 16px; height: 16px; padding: 0 4px;
	border-radius: 9px; background: #e21b1b; color: #fff;
	font-size: 11px; line-height: 16px; text-align: center; font-weight: 600;
}

.mot-fav-toggle {
	background: none; border: 0; padding: 4px; cursor: pointer;
	color: #adadad; line-height: 0; transition: color .15s ease;
}
.mot-fav-toggle svg { width: 22px; height: 22px; }
.mot-fav-toggle:hover { color: #e21b1b; }
.mot-fav-toggle.is-active { color: #e21b1b; }
.mot-fav-toggle.is-active svg path { fill: currentColor; }

/* place the heart on product cards */
.woocommerce ul.products li.product { position: relative; }
.woocommerce ul.products li.product .mot-fav-toggle { position: absolute; top: 8px; right: 8px; z-index: 2; }
