/* WhatsApp floating widget */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
	z-index: 9999;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
	flex-shrink: 0;
}
.whatsapp-float-tooltip {
	position: absolute;
	right: calc(100% + 12px);
	white-space: nowrap;
	background: #333;
	color: #fff;
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 13px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
	opacity: 1;
}
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 52px;
		height: 52px;
	}
	.whatsapp-float-tooltip {
		display: none;
	}
}
