.mwn-floating-wa {
	position: fixed;
	right: max(16px, env(safe-area-inset-right, 0px));
	bottom: max(20px, env(safe-area-inset-bottom, 0px));
	z-index: 99990;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mwn-floating-wa:hover,
.mwn-floating-wa:focus {
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}

.mwn-floating-wa:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.mwn-floating-wa__icon {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

@media (max-width: 782px) {
	.mwn-floating-wa {
		width: 52px;
		height: 52px;
		right: max(12px, env(safe-area-inset-right, 0px));
		bottom: max(16px, env(safe-area-inset-bottom, 0px));
	}

	.mwn-floating-wa__icon {
		width: 28px;
		height: 28px;
	}
}
