/* Heart button on product loop / single product */
.ct-wishlist-btn {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #999;
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.ct-wishlist-btn:hover {
	transform: scale(1.08);
}
.ct-wishlist-btn svg path {
	stroke: currentColor;
}
.ct-wishlist-btn.active {
	color: #EC4C7D;
	border-color: #EC4C7D;
}
.ct-wishlist-btn.active svg path {
	fill: #EC4C7D;
}
.ct-wishlist-btn.ct-loading {
	opacity: 0.5;
	pointer-events: none;
}

/* Elementor header widget */
.ct-wl-widget {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: inherit;
}
.ct-wl-widget-icon {
	position: relative;
	display: inline-flex;
}
.ct-wl-widget-icon svg {
	stroke: #333;
	fill: none;
}
.ct-wl-widget-badge {
	position: absolute;
	top: -8px;
	right: -10px;
	background: #EC4C7D;
	color: #fff;
	font-size: 11px;
	line-height: 1;
	min-width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
}
.ct-wl-widget-label {
	font-size: 14px;
}

/* Wishlist page table */
.ct-wishlist-table {
	width: 100%;
	border-collapse: collapse;
}
.ct-wishlist-table th,
.ct-wishlist-table td {
	padding: 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
	vertical-align: middle;
}
.ct-wl-product a {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #333;
}
.ct-wl-product img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
}
.ct-wl-remove-item {
	background: none;
	border: none;
	font-size: 20px;
	color: #999;
	cursor: pointer;
}
.ct-wl-remove-item:hover {
	color: #EC4C7D;
}
.ct-wishlist-empty {
	padding: 24px;
	text-align: center;
	color: #777;
}
