/**
 * Minimal styling with CSS variables.
 */
:root {
	--wc-wishlist-color: #ff0000;
	--wc-wishlist-bg-hover: #f9f9f9;
}

.wc-wishlist-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px 10px;
	display: inline-flex;
	align-items: center;
	color: inherit;
	transition: transform 0.2s ease;
}

.wc-wishlist-btn:hover {
	transform: scale(1.1);
}

.wc-wishlist-btn .wc-wishlist-icon {
	font-size: 1.5em;
	color: var(--wc-wishlist-color);
	line-height: 1;
}

.wc-wishlist-btn.loading {
	opacity: 0.5;
	pointer-events: none;
}

.wc-custom-wishlist-container {
	margin: 20px 0;
	overflow-x: auto;
}

.wc-wishlist-table {
	width: 100%;
	border-collapse: collapse;
}

.wc-wishlist-table th,
.wc-wishlist-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

.wc-wishlist-table tbody tr {
	transition: background-color 0.3s ease;
}

.wc-wishlist-table tbody tr:hover {
	background-color: var(--wc-wishlist-bg-hover);
}

.wc-wishlist-table .product-thumbnail img {
	max-width: 80px;
	height: auto;
	border-radius: 4px;
}

.wc-wishlist-table .product-remove a {
	color: var(--wc-wishlist-color);
	font-size: 1.5em;
	text-decoration: none;
	font-weight: bold;
}

.wc-wishlist-table .product-remove a:hover {
	color: #cc0000;
}

.wc-wishlist-share {
	margin-top: 30px;
	padding: 15px;
	background: #fdfdfd;
	border: 1px solid #eee;
	border-radius: 4px;
}

.wc-wishlist-share h4 {
	margin-top: 0;
	margin-bottom: 10px;
}

.wc-wishlist-share-link {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	cursor: text;
}

.wishlist-instock {
	color: green;
	font-weight: bold;
}

.wishlist-outofstock {
	color: red;
	font-weight: bold;
}
