/*
 * Merchado Flow — favorieten (FB3): PDP-hartje + header-icoon met teller.
 * Veel !important: Blocksy/Elementor button-styling wint anders op de PDP
 * (klantfeedback: hartje werd een zwarte cirkel met mini-icoon).
 */

/* PDP: kaal hartje naast de add-to-cart-knop (bewust subtiel, klantfeedback:
   een omcirkelde variant concurreerde te veel met de hoofdknop). Het klikvlak
   blijft ruim, alleen het icoon is zichtbaar. */
.mc-fav-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 0 !important;
	margin: 0 0 0 6px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #5C5C58 !important;
	box-shadow: none !important;
	cursor: pointer;
	vertical-align: middle;
	flex-shrink: 0;
	/* De knoprij is een flex-container; zonder dit hangt het hartje bovenaan
	   naast de hogere CTA-knop. */
	align-self: center !important;
	line-height: 1 !important;
	transition: color .12s ease, background .12s ease;
}
.mc-fav-btn svg {
	width: 22px !important;
	height: 22px !important;
	display: block;
	stroke: currentColor;
	stroke-width: 1.8;
}
.mc-fav-btn:hover,
.mc-fav-btn:focus {
	background: #F5F1E8 !important;
	color: #9E491D !important;
}
.mc-fav-btn.is-active {
	color: #9E491D !important;
	background: transparent !important;
}
.mc-fav-btn.is-active svg { fill: #9E491D; }

/* Header: hartje met teller vóór het account-icoon (alleen ingelogd met ≥1 favoriet). */
.mc-fav-header {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-right: 2px;
	color: inherit;
	text-decoration: none !important;
}
.mc-fav-header svg {
	width: 17px;
	height: 17px;
	display: block;
	stroke: currentColor;
	fill: none;
}
.mc-fav-header:hover { color: #9E491D; }
.mc-fav-header__count {
	position: absolute;
	top: -1px;
	right: -3px;
	min-width: 15px;
	height: 15px;
	padding: 0 4px;
	border-radius: 9999px;
	background: #9E491D;
	color: #FFFFFF;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 9.5px;
	font-weight: 700;
	line-height: 15px;
	text-align: center;
	box-sizing: border-box;
}
