.single-product article.xj-single-product .xj-purchase-wishlist {
	color: var(--xj-navy, #102d50);
}

.single-product article.xj-single-product .xj-purchase-wishlist__icon {
	display: inline-grid;
	place-items: center;
	font-family: Arial, sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}

.single-product article.xj-single-product .xj-purchase-wishlist__icon[hidden] {
	display: none;
}

.single-product article.xj-single-product .xj-purchase-wishlist.is-saved {
	border-color: var(--xj-navy, #102d50);
	background: var(--xj-navy, #102d50);
	color: #fff;
}

.single-product article.xj-single-product .xj-purchase-wishlist.is-loading {
	cursor: wait;
	opacity: 0.68;
}

.xj-wishlist-toast {
	position: fixed;
	z-index: 100020;
	inset-block-start: max(16px, env(safe-area-inset-top));
	inset-inline-end: 16px;
	width: min(360px, calc(100vw - 32px));
	padding: 12px 16px;
	border: 1px solid #bfd7c7;
	border-radius: 6px;
	background: #f1fbf4;
	box-shadow: 0 8px 28px rgb(16 45 80 / 16%);
	color: #173e25;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.xj-wishlist-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.xj-wishlist-toast.is-error {
	border-color: #e2b5b5;
	background: #fff4f4;
	color: #7a1f1f;
}

@media (max-width: 480px) {
	.xj-wishlist-toast {
		inset-inline: 12px;
		width: auto;
	}
}
