.mowaq-float {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 10050;
}

.mowaq-float__btn {
	position: fixed;
	bottom: max(1.1rem, env(safe-area-inset-bottom, 0px) + 0.6rem);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	pointer-events: auto;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	text-decoration: none;
	line-height: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}

.mowaq-float__btn:not(.mowaq-float__btn--top) {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.mowaq-float__btn--top {
	left: max(1rem, env(safe-area-inset-left, 0px) + 0.4rem);
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	color: #f9a825 !important;
}

.mowaq-float__btn--top:hover {
	filter: none;
	background: transparent !important;
	background-color: transparent !important;
	color: #d99000 !important;
	transform: translateY(-2px);
}

.mowaq-float__btn--top:focus-visible {
	outline: 2px solid #f9a825;
	outline-offset: 3px;
}

.mowaq-float__btn--top .mowaq-float__icon {
	width: 26px;
	height: 26px;
	fill: #f9a825 !important;
	color: #f9a825 !important;
}

.mowaq-float__btn--top:hover .mowaq-float__icon {
	fill: #d99000 !important;
	color: #d99000 !important;
}

@keyframes mowaq-float-wa-breathe {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(0, 0, 0, 0.12);
	}
}

.mowaq-float__btn--wa {
	right: max(1rem, env(safe-area-inset-right, 0px) + 0.4rem);
	background: #25d366;
	color: #fff;
	animation: mowaq-float-wa-breathe 2.6s ease-in-out infinite;
	will-change: transform;
}

.mowaq-float__btn--wa:hover {
	background: #20bd5a;
	animation: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.mowaq-float__btn--wa:focus-visible {
	outline: 2px solid #0d3d1f;
	outline-offset: 2px;
	animation: none;
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.mowaq-float__btn--wa {
		animation: none;
	}
}

.mowaq-float__btn[aria-hidden="true"] {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.mowaq-float__icon {
	flex-shrink: 0;
}
