.lwc-social-float {
	position: fixed;
	right: 14px;
	bottom: 88px;
	z-index: 99980;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lwc-social-float__btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 14px rgba(24, 24, 27, 0.22);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	text-decoration: none;
}

.lwc-social-float__btn:hover,
.lwc-social-float__btn:focus-visible {
	transform: translateY(-2px);
	color: #fff;
	box-shadow: 0 6px 18px rgba(24, 24, 27, 0.28);
}

.lwc-social-float__btn--fb {
	background: #1877f2;
}

.lwc-social-float__btn--ig {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.lwc-social-float__btn--wa {
	background: #25d366;
}

@media (max-width: 640px) {
	.lwc-social-float {
		right: 10px;
		bottom: 76px;
	}

	.lwc-social-float__btn {
		width: 42px;
		height: 42px;
	}
}

@media print {
	.lwc-social-float {
		display: none;
	}
}
