.fwb-button {
	position: fixed;
	bottom: 90px;
	right: 20px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	background: #3a3a3a;
	border-radius: 50px;
	padding: 6px 6px 6px 22px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.fwb-button:hover,
.fwb-button:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
	outline: none;
}

.fwb-tooltip {
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	margin-right: 12px;
}

.fwb-icon {
	background: #25D366;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fwb-icon svg {
	width: 28px;
	height: 28px;
}

@media (max-width: 600px) {
	.fwb-button {
		bottom: 80px;
		right: 16px;
		padding: 4px 4px 4px 18px;
	}
	.fwb-tooltip {
		font-size: 14px;
		margin-right: 10px;
	}
	.fwb-icon {
		width: 44px;
		height: 44px;
	}
	.fwb-icon svg {
		width: 26px;
		height: 26px;
	}
}
