.whatsapp-floating-btn {
	position: fixed;
	right: 20px;
	bottom: 110px;
	z-index: 99999;
	display: flex;
	width: 55px;
	height: 55px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, background-color 0.2s ease;
	text-decoration: none !important;
}

.whatsapp-floating-btn:hover {
	transform: scale(1.08);
	background: #20ba5a;
}

.whatsapp-floating-icon {
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.whatsapp-floating-icon svg {
	width: 32px;
	height: 32px;
}

/* Bubble Text Support - Horizontal Capsule */
.whatsapp-floating-btn.has-bubble-text {
	width: auto !important;
	height: 55px !important;
	padding: 0 20px !important;
	border-radius: 28px !important;
	display: flex !important;
	flex-direction: row !important;
	gap: 10px !important;
}

.whatsapp-bubble-text {
	color: #ffffff;
	font-weight: 600;
	font-size: 14px !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	white-space: nowrap !important;
	display: inline-block !important;
}

/* Reorder when positioned on the left so icon displays before text */
.whatsapp-floating-btn.whatsapp-position-left.has-bubble-text {
	flex-direction: row-reverse !important;
}

@media (max-width: 768px) {
	.whatsapp-floating-btn {
		right: 15px;
		bottom: 95px;
		width: 50px;
		height: 50px;
	}

	.whatsapp-floating-btn.has-bubble-text {
		width: auto !important;
		height: 50px !important;
		border-radius: 25px !important;
		padding: 0 16px !important;
		gap: 8px !important;
	}

	.whatsapp-floating-icon {
		width: 28px;
		height: 28px;
	}

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

	.whatsapp-bubble-text {
		font-size: 13px !important;
	}
}
