.engajae-favorite-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ddd;
	border-radius: 50%;
	cursor: pointer;
	transition: border-color 0.15s, transform 0.1s;
}

.favorite-short {
	z-index: 5 !important;
}

.engajae-favorite-btn:active {
	transform: scale(0.92);
}

.engajae-favorite-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.engajae-favorite-btn svg {
	fill: none;
	stroke: #888;
	stroke-width: 1.6;
	transition: fill 0.15s, stroke 0.15s;
	/* O ícone é só visual — o clique inteiro é tratado pelo <button> (área toda),
	   senão um coração com fill:none só responde ao clique bem em cima do traço. */
	pointer-events: none;
}

.engajae-favorite-btn:hover svg {
	stroke: #ea6410;
}

.engajae-favorite-btn.engajae-favorite-active svg {
	fill: #ea6410;
	stroke: #ea6410;
}

.engajae-favorites-empty {
	font-size: 14px;
	color: #666;
}

.engajae-favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.engajae-favorites-card {
	position: relative;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	transition: opacity 0.2s;
}

.engajae-favorites-card.engajae-favorites-card-removed {
	opacity: 0;
}

.engajae-favorites-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 12px;
}

.engajae-favorites-card-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.engajae-favorites-card-title {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #222;
}

.engajae-favorites-card-price {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #ea6410;
}

.engajae-favorites-card .engajae-favorite-btn {
	position: absolute;
	top: 10px;
	right: 10px;
}