/**
 * Bouton favoris sur les produits
 */
.btn-favorite-toggle {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 60;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#popupCT2 .btn-favorite-toggle {
	top: 130px;
}
.btn-favorite-toggle:hover {
	background: #fff;
	transform: scale(1.1);
	box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.btn-favorite-toggle .heart-icon {
	fill: transparent;
	stroke: #e74c3c;
	stroke-width: 2;
	transition: all 0.2s ease;
}

.btn-favorite-toggle:hover .heart-icon {
	fill: rgba(231, 76, 60, 0.2);
}

.btn-favorite-toggle.is-favorited .heart-icon {
	fill: #e74c3c;
	stroke: #e74c3c;
}

.btn-favorite-toggle.is-favorited:hover .heart-icon {
	fill: #c0392b;
	stroke: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
	.btn-favorite-toggle {
		width: 32px;
		height: 32px;
	}
	.btn-favorite-toggle .heart-icon {
		width: 18px;
		height: 18px;
	}
}