/* ÉTER Core — estilo monocromático */

/* Botão de favorito */
.eter-wishlist-btn {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 6px;
	line-height: 1;
	color: #111;
	transition: transform .15s ease;
}
.eter-wishlist-btn:hover { transform: scale(1.12); }
.eter-wishlist-btn .eter-heart { font-size: 20px; }
.eter-wishlist-btn.is-active .eter-heart { /* coração preenchido */ }
.eter-wishlist-btn.is-active .eter-heart::before { content: "\2665"; }
.eter-wishlist-btn.is-active .eter-heart { font-size: 0; }
.eter-wishlist-btn.is-active .eter-heart::before { font-size: 20px; }

/* Barra de envio grátis */
.eter-shipping-bar { padding: 4px 0 14px; }
.eter-shipping-msg {
	font-size: 13px;
	text-align: center;
	color: #444;
	margin: 0 0 8px;
}
.eter-shipping-msg i { font-style: normal; }
.eter-shipping-track {
	height: 5px;
	background: #ececea;
	border-radius: 999px;
	overflow: hidden;
}
.eter-shipping-fill {
	height: 100%;
	background: #111;
	transition: width .4s ease;
}

/* Grelha de favoritos */
.eter-wishlist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
}
.eter-wishlist-card {
	text-decoration: none;
	color: #111;
	display: block;
}
.eter-wishlist-card img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}
.eter-wl-name { display: block; font-size: 14px; margin-top: 10px; }
.eter-wl-price { display: block; font-size: 14px; color: #777; }
.eter-empty { color: #777; }
