/*
 * Perfect Favorites — pfavs-frontend.css — v1.0.14
 *
 * Essential styling for the plugin-owned favorites-limit notice only.
 * Favorites Page layout, typography, empty-state presentation, cards,
 * columns, masonry, archive, and navigation styling belong to the theme.
 */

.pfavs-notice {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 99999;
	max-width: min(92vw, 520px);
	padding: 12px 16px;
	border-radius: 6px;
	background: #1f2937;
	color: #fff;
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translate(-50%, 12px);
	pointer-events: none;
	transition: opacity 160ms ease, transform 160ms ease;
}

.pfavs-notice.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
	.pfavs-notice {
		transition: none;
	}
}
