.wl-heart-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 6px 14px;
	cursor: pointer;
	font-size: 13px;
	margin-top: 8px;
	transition: border-color .15s ease, background .15s ease;
}
.wl-heart-icon {
	width: 14px;
	height: 14px;
	display: inline-block;
	position: relative;
}
.wl-heart-icon::before {
	content: "\2661";
	font-size: 16px;
	line-height: 1;
	position: absolute;
	top: -7px;
	left: 0;
	color: #999;
}
.wl-heart-btn.wl-active .wl-heart-icon::before {
	content: "\2665";
	color: var(--wl-accent, #e63946);
}
.wl-heart-btn.wl-active {
	border-color: var(--wl-accent, #e63946);
}
.wl-heart-btn.wl-loading {
	opacity: .6;
	pointer-events: none;
}

.wl-wishlist-wrap { margin: 20px 0; }
.wl-list { margin-bottom: 32px; }
.wl-list-header { display: flex; align-items: center; justify-content: space-between; }
.wl-items-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.wl-items-table th, .wl-items-table td { padding: 10px; border-bottom: 1px solid #eee; text-align: left; }
.wl-item-product a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.wl-price-dropped { color: #1a7f37; font-weight: 600; }
.wl-drop-badge { display: inline-block; margin-left: 8px; background: #e8f7ee; color: #1a7f37; border-radius: 4px; padding: 2px 8px; font-size: 11px; }
.wl-remove-btn { background: none; border: 1px solid #ddd; border-radius: 4px; padding: 4px 10px; cursor: pointer; }
.wl-share-btn { background: none; border: 1px solid #ddd; border-radius: 4px; padding: 4px 12px; cursor: pointer; }
.wl-empty { color: #777; }

.wl-shared-items { list-style: none; margin: 0; padding: 0; }
.wl-shared-items li { border-bottom: 1px solid #eee; padding: 10px 0; }
.wl-shared-items a { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.wl-shared-item-price { margin-left: auto; font-weight: 600; }
