.ipo-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}

.ipo-whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.ipo-whatsapp-float svg {
	width: 32px;
	height: 32px;
	fill: #fff;
}

.ipo-whatsapp-float .ipo-wa-tooltip {
	position: absolute;
	right: 72px;
	background: #333;
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.ipo-whatsapp-float:hover .ipo-wa-tooltip {
	opacity: 1;
}

@media (max-width: 600px) {
	.ipo-whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 16px;
		right: 16px;
	}

	.ipo-whatsapp-float svg {
		width: 26px;
		height: 26px;
	}

	.ipo-whatsapp-float .ipo-wa-tooltip {
		display: none;
	}
}
