/* Floating WhatsApp button (homepage) */
.ds-whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 360;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.42);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ds-whatsapp-float svg {
	width: 30px;
	height: 30px;
}

.ds-whatsapp-float:hover,
.ds-whatsapp-float:focus-visible {
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.ds-whatsapp-float--desktop {
	display: flex;
}

.ds-whatsapp-float--mobile {
	display: none;
}

body.ds-has-whatsapp-float .scrollToTop {
	bottom: 88px;
}

@media (max-width: 1024px) {
	.ds-whatsapp-float {
		right: 12px;
		bottom: 12px;
		width: 52px;
		height: 52px;
	}

	.ds-whatsapp-float svg {
		width: 28px;
		height: 28px;
	}

	.ds-whatsapp-float--desktop {
		display: none;
	}

	.ds-whatsapp-float--mobile {
		display: flex;
	}

	body.ds-has-whatsapp-float .scrollToTop {
		bottom: 76px;
	}
}
