/* components/wa-float.css
   Floating WhatsApp button.

   Part of assets/css/. The load order lives in
   inc/setup.php - add new files there, not with @import. */

.wa-float {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 80;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(9, 190, 16, 0.35);
}

.wa-float:hover { background: #07A00D; color: #fff; }

@media (max-width: 680px) {
	.wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
