/* ==========================================================================
   Launch Finder — [baby_name_launch_finder]
   ========================================================================== */

.bnlf-btn {
	--bnlf-pink: #f6339a;
	--bnlf-pink-deep: #e11d86;
	--bnlf-pink-soft: #ff4db2;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 11px 22px;
	border-radius: 999px;
	background: var(--bnlf-pink);
	color: #fff !important;
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(246, 51, 154, 0.32);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease,
		filter 0.25s ease;
	vertical-align: middle;
}

.bnlf-btn__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	display: block;
}

.bnlf-btn__text {
	display: inline-block;
}

.bnlf-btn:hover,
.bnlf-btn:focus-visible {
	background: linear-gradient(135deg, var(--bnlf-pink-soft) 0%, var(--bnlf-pink) 50%, var(--bnlf-pink-deep) 100%);
	color: #fff !important;
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 12px 28px rgba(246, 51, 154, 0.45);
	outline: none;
	filter: brightness(1.03);
}

.bnlf-btn:active {
	transform: translateY(0) scale(0.99);
	box-shadow: 0 6px 16px rgba(246, 51, 154, 0.3);
}

@media (max-width: 480px) {
	.bnlf-btn {
		min-height: 40px;
		padding: 10px 18px;
		font-size: 0.85rem;
	}

	.bnlf-btn__icon {
		width: 15px;
		height: 15px;
	}
}

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