/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 70;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
	background: #1ebe57;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.whatsapp-float:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

.whatsapp-float__icon {
	width: 28px;
	height: 28px;
}

body.has-mobile-cta .whatsapp-float {
	bottom: calc(78px + env(safe-area-inset-bottom, 0px) + 12px);
}

@media (max-width: 720px) {
	.whatsapp-float {
		right: 14px;
		width: 52px;
		height: 52px;
	}

	.whatsapp-float__icon {
		width: 26px;
		height: 26px;
	}
}
