.mf-whatsapp-widget {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.mf-whatsapp-fab {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}
.mf-whatsapp-fab:hover {
	transform: scale(1.06);
}
.mf-whatsapp-fab img {
	filter: brightness(0) invert(1);
}

.mf-whatsapp-bubble {
	max-width: 260px;
	background: #fff;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	position: relative;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.mf-whatsapp-bubble.mf-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.mf-whatsapp-bubble p {
	margin: 0 0 10px;
	font-size: 13px;
	color: #222;
	line-height: 1.4;
	padding-right: 14px;
}
.mf-whatsapp-bubble-cta {
	display: inline-block;
	background: #25d366;
	color: #fff !important;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 20px;
}
.mf-whatsapp-bubble-close {
	position: absolute;
	top: 6px;
	right: 8px;
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 2px 4px;
}

@media (max-width: 480px) {
	.mf-whatsapp-widget {
		right: 14px;
		bottom: 14px;
	}
	.mf-whatsapp-bubble {
		max-width: 220px;
	}
}
