.wweb-wl-heart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #9ca3af;
	transition: color 0.2s ease, transform 0.25s ease;
	position: relative;
	z-index: 1;
}

.wweb-wl-heart:hover {
	color: #ef4444;
}

.wweb-wl-heart--active {
	color: #ef4444;
	fill: #ef4444;
}

.wweb-wl-heart--active svg {
	fill: #ef4444;
}

.wweb-wl-heart--animate {
	animation: wweb-heart-pop 0.35s ease;
}

@keyframes wweb-heart-pop {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.35); }
	100% { transform: scale(1); }
}

.wweb-wishlist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	padding: 16px 0;
}

.wweb-wishlist-empty {
	text-align: center;
	padding: 40px 0;
	color: #6b7280;
	font-size: 15px;
}

.wweb-wl-card {
	position: relative;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.25s ease;
}

.wweb-wl-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.wweb-wl-remove {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.2s ease;
}

.wweb-wl-remove:hover {
	background: #dc2626;
}

.wweb-wl-card-img {
	display: block;
	aspect-ratio: 1/1;
	overflow: hidden;
	background: #f3f4f6;
}

.wweb-wl-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.wweb-wl-card:hover .wweb-wl-card-img img {
	transform: scale(1.04);
}

.wweb-wl-card-body {
	padding: 12px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wweb-wl-card-name {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	text-decoration: none;
	line-height: 1.35;
}

.wweb-wl-card-name:hover {
	color: #2563eb;
}

.wweb-wl-card-price {
	font-size: 15px;
	font-weight: 700;
	color: #dc2626;
}

.wweb-wl-add-cart {
	display: inline-block;
	text-align: center;
	padding: 7px 14px;
	font-size: 13px;
	font-weight: 600;
	background: #111827;
	color: #fff !important;
	border-radius: 6px;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.wweb-wl-add-cart:hover {
	background: #374151;
}

@media (max-width: 600px) {
	.wweb-wishlist-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}
