.sfcb-floating-button {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 58px;
	width: auto;
	height: 58px;
	padding: 0 18px;
	border-radius: 999px;
	background: #25d366;
	color: #fff !important;
	text-decoration: none !important;
	box-shadow: 0 8px 24px rgba(0,0,0,.22);
	transition: transform .2s ease, box-shadow .2s ease;
	box-sizing: border-box;
}

.sfcb-floating-button:hover,
.sfcb-floating-button:focus {
	color: #fff !important;
	text-decoration: none !important;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.sfcb-floating-icon {
	display: block;
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex: 0 0 28px;
}

.sfcb-floating-button > svg {
	display: block;
	width: 28px;
	height: 28px;
	fill: currentColor;
	flex: 0 0 28px;
}

.sfcb-floating-text {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

@media (max-width: 680px) {
	.sfcb-floating-button {
		right: 16px;
		bottom: 16px;
		width: 54px;
		height: 54px;
		min-width: 54px;
		padding: 0;
	}

	.sfcb-floating-text {
		display: none;
	}

	.sfcb-floating-icon,
	.sfcb-floating-button > svg {
		width: 26px;
		height: 26px;
		flex-basis: 26px;
	}
}
