.mg-wishlist-heart {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #bbb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: color 0.25s, transform 0.25s, background 0.25s;
}

.mg-wishlist-heart:hover {
	color: #e74c6f;
	transform: scale(1.1);
}

.mg-wishlist-heart.is-active {
	color: #e74c6f;
	background: rgba(255, 255, 255, 0.95);
}

.mg-wishlist-heart.is-active svg {
	fill: #e74c6f;
}

.mg-wishlist-heart svg {
	width: 18px;
	height: 18px;
	transition: fill 0.25s;
}

.products .product {
	position: relative;
}

@keyframes mg-wishlist-pop {
	0% { transform: scale(1); }
	50% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

.mg-wishlist-heart.mg-pop {
	animation: mg-wishlist-pop 0.35s ease;
}

.mg-wishlist-empty {
	text-align: center;
	padding: 60px 20px;
	max-width: 480px;
	margin: 0 auto;
}

.mg-wishlist-empty svg {
	color: #ccc;
	margin-bottom: 20px;
}

.mg-wishlist-empty h2 {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 10px;
}

.mg-wishlist-empty p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 24px;
}

.mg-wishlist-empty__btn {
	display: inline-block;
	padding: 12px 28px;
	background: var(--mg-purple, #490D78);
	color: #fff !important;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}

.mg-wishlist-empty__btn:hover {
	background: #3a0860;
}

.mg-wishlist-remove {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 8px auto 0;
	padding: 6px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	color: #888;
	font-size: 12px;
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s;
}

.mg-wishlist-remove:hover {
	color: #dc2626;
	border-color: #dc2626;
}
