/* Baibao Customer Suite — 心愿单样式。 */

/* 单品页:把爱心浮到 summary 区右上角(标题上方靠右,MercadoLibre 风格) */
.bcs-wishlist-button-wrap {
	float: right;
	margin: 0 0 .25em .75em;
}

.woocommerce div.product .summary .bcs-wishlist-button-wrap,
.woocommerce div.product .entry-summary .bcs-wishlist-button-wrap {
	margin-top: -.25em;
}

/* 收藏按钮:只有一个爱心(MercadoLibre 风格) */
.bcs-wishlist-button {
	--bcs-heart-active: #e0245e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 0 0 .25em;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #555;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	vertical-align: middle;
	transition: background-color .15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.bcs-wishlist-button:hover {
	background: rgba(0, 0, 0, .06);
}

.bcs-wishlist-button:focus-visible {
	outline: 2px solid var(--bcs-heart-active);
	outline-offset: 2px;
}

.bcs-wishlist-button.is-busy {
	opacity: .45;
	pointer-events: none;
}

.bcs-wishlist-heart {
	display: block;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linejoin: round;
	transition: fill .15s ease, stroke .15s ease, transform .12s ease;
}

.bcs-wishlist-button.is-active .bcs-wishlist-heart {
	fill: var(--bcs-heart-active);
	stroke: var(--bcs-heart-active);
}

.bcs-wishlist-button:active .bcs-wishlist-heart {
	transform: scale(.8);
}

/* 我的账户 / 短代码 */
.bcs-wishlist-empty {
	margin: 1em 0;
	color: #666;
}

.bcs-wishlist-table .bcs-wishlist-col-thumb {
	width: 64px;
}

.bcs-wishlist-table .bcs-wishlist-col-thumb img {
	width: 64px;
	height: auto;
}

.bcs-wishlist-remove {
	display: inline-block;
	margin-left: .5em;
	padding: 0 .4em;
	color: #a00;
	font-size: 1.2em;
	line-height: 1;
	text-decoration: none;
}

.bcs-wishlist-remove:hover {
	color: #d63638;
}

.bcs-wishlist-remove.is-busy {
	opacity: .4;
	pointer-events: none;
}
