/**
 * Bouton flottant WhatsApp
 */
.pilot-wa-float {
	position: fixed;
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pilot-wa-float:hover,
.pilot-wa-float:focus {
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	outline: none;
}

.pilot-wa-float:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.pilot-wa-float__icon {
	display: flex;
	line-height: 0;
}

@media (max-width: 600px) {
	.pilot-wa-float {
		width: 52px;
		height: 52px;
	}
}
