/**
 * Favourites toggle button — single product pages.
 *
 * @package LED_Controls_Trade_Portal
 */

.lctp-fav-wrap {
	margin-top: 12px;
}

.lctp-fav-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	color: #6b7280;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lctp-fav-btn:hover {
	border-color: #2e7d32;
	color: #2e7d32;
}

.lctp-fav-btn:focus-visible {
	outline: 2px solid #2e7d32;
	outline-offset: 2px;
}

.lctp-fav-btn:disabled {
	opacity: 0.6;
	cursor: wait;
}

/* Active (saved) state */
.lctp-fav-btn.is-active {
	border-color: #2e7d32;
	background: #f0faf0;
	color: #2e7d32;
}

.lctp-fav-btn.is-active .lctp-fav-icon {
	fill: #2e7d32;
	stroke: #2e7d32;
}

.lctp-fav-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	fill: none;
	transition: fill 0.15s, stroke 0.15s;
}

.lctp-fav-btn:hover .lctp-fav-icon {
	stroke: #2e7d32;
}
