
.wnw-widget {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	z-index: 999;
	text-decoration: none;
}

.wnw-widget:hover {
	background-color: #20BA5A;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	transform: scale(1.1);
}

.wnw-widget svg {
	width: 32px;
	height: 32px;
	color: #fff;
}

@media (max-width: 768px) {
	.wnw-widget {
		width: 50px;
		height: 50px;
	}

	.wnw-widget svg {
		width: 26px;
		height: 26px;
	}
}
