.gg-favorites-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 6px 0;
	cursor: pointer;
	font-size: 15px;
	color: #333;
	font-family: inherit;
	line-height: 1.4;
	transition: opacity 0.2s ease;
}

.gg-favorites-button:hover {
	opacity: 0.7;
}

.gg-favorites-button.gg-favorites-loading {
	opacity: 0.5;
	pointer-events: none;
}

/* Heart icon */
.gg-favorites-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* Outline heart (unfavorited) */
.gg-favorites-icon::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

/* Filled heart (favorited) */
.gg-favorites-button.active .gg-favorites-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}
