.ujsp-wc-floating-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 50%;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ujsp-wc-floating-btn:hover {
	transform: scale(1.1);
}

.ujsp-wc-floating-btn__icon {
	position: relative;
	z-index: 2;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ujsp-wc-floating-btn__icon svg {
	width: 100%;
	height: 100%;
	display: block;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.ujsp-wc-floating-btn__pulse {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #25D366;
	z-index: 1;
	animation: ujspWcPulse 2s infinite;
	opacity: 0;
}

@keyframes ujspWcPulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	70% {
		transform: scale(1.6);
		opacity: 0;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

@media (max-width: 768px) {
	.ujsp-wc-floating-btn {
		bottom: 16px;
		right: 16px;
		width: 48px;
		height: 48px;
	}
	.ujsp-wc-floating-btn__icon {
		width: 48px;
		height: 48px;
	}
}
