/**
 * Floating WhatsApp button — fixed bottom-right, shown site-wide.
 * Reuses the theme's `gelatine` keyframe (base.css) for the hover bounce.
 */

.hsc-whatsapp-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #25D366;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
	text-decoration: none;
	transition: transform .3s ease;
}
.hsc-whatsapp-btn:hover {
	animation: gelatine .5s;
}
