/* Heart-burst animation for the "Reservar" / add-to-wishlist buttons.
   Motion is driven from heart-burst.js via the Web Animations API; this file
   only sets base layout. Palette matches the brand (see home.css :root). */

.nm-burst-heart,
.nm-burst-particle {
	position: fixed;
	z-index: 2147483000;
	pointer-events: none;
	will-change: transform, opacity;
	line-height: 0;
}

.nm-burst-heart svg {
	display: block;
	overflow: visible;
	filter: drop-shadow(0 8px 16px rgba(17, 21, 16, 0.28));
}

.nm-burst-heart--mini svg {
	width: 26px;
	height: 26px;
}

.nm-burst-particle {
	border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
	.nm-burst-heart,
	.nm-burst-particle {
		display: none;
	}
}
