/* Favorites toggle — Vendor/Service card, profile, detail (LAUNCH-UX-PRESENTATION-CLOSURE-1A). */

.apt-favorite-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 999px;
	background: #fff;
	color: #344054;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.apt-favorite-toggle:hover {
	border-color: #98a2b3;
	background: #f9fafb;
}

.apt-favorite-toggle:focus-visible {
	outline: 2px solid #1d4ed8;
	outline-offset: 2px;
}

.apt-favorite-toggle__icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-10.1-9.3C.3 8.6 1.7 5 5.1 4.2c2-.5 4 .4 5.1 2 .1.2.3.2.4 0 1.1-1.6 3.1-2.5 5.1-2 3.4.8 4.8 4.4 3.2 7.5C19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-10.1-9.3C.3 8.6 1.7 5 5.1 4.2c2-.5 4 .4 5.1 2 .1.2.3.2.4 0 1.1-1.6 3.1-2.5 5.1-2 3.4.8 4.8 4.4 3.2 7.5C19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.apt-favorite-toggle.is-favorited {
	background: #fef1f3;
	border-color: #e893a3;
	color: #c0264a;
}

.apt-favorite-toggle--card {
	padding: 5px 10px;
	font-size: 12px;
}

.apt-favorite-toggle--dashboard {
	padding: 5px 10px;
	font-size: 12px;
}

.apt-favorite-toggle[aria-busy="true"],
.apt-favorite-toggle.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.apt-favorite-toggle.apt-favorite-toggle--error {
	border-color: #d92d20;
	color: #d92d20;
}

/* Prevents the profile/detail placement from shifting adjacent action rows. */
.apt-favorite-toggle--profile,
.apt-favorite-toggle--detail {
	margin-bottom: 10px;
}

/* Saved Items dashboard table — remove control reuses the same component. */
.apt-dash-table--saved .apt-favorite-toggle {
	white-space: nowrap;
}

.apt-dash-table__title--unavailable {
	color: #667085;
	font-style: italic;
}

@media (max-width: 600px) {
	.apt-favorite-toggle {
		/* Minimum ~44px touch target (WCAG 2.5.5). */
		min-height: 44px;
		padding: 10px 14px;
		font-size: 14px;
	}
}
