.yg-whatsapp-btn {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yg-whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.yg-whatsapp-btn svg {
	width: 32px;
	height: 32px;
	fill: #ffffff;
}

.yg-whatsapp-tooltip {
	position: absolute;
	right: 70px;
	background: #fff;
	color: #333;
	font-size: 13px;
	font-family: sans-serif;
	padding: 6px 12px;
	border-radius: 4px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.yg-whatsapp-btn:hover .yg-whatsapp-tooltip {
	opacity: 1;
}

@media (max-width: 480px) {
	.yg-whatsapp-btn {
		width: 52px;
		height: 52px;
		bottom: 20px;
		right: 20px;
	}

	.yg-whatsapp-btn svg {
		width: 28px;
		height: 28px;
	}

	.yg-whatsapp-tooltip {
		display: none;
	}
}
