.whatsapp-chat-float {
	position: fixed;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--wc-float-size, 60px);
	height: var(--wc-float-size, 60px);
	background-color: var(--wc-float-color, #25D366);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	z-index: 999999;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}

.whatsapp-chat-float:hover,
.whatsapp-chat-float:focus {
	transform: scale(1.08);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-chat-position-right {
	right: 20px;
}

.whatsapp-chat-position-left {
	left: 20px;
}

.whatsapp-chat-icon {
	width: 60%;
	height: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	pointer-events: none;
}

.whatsapp-chat-icon-default svg {
	width: 100%;
	height: 100%;
}

.whatsapp-chat-icon-custom {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

/* Responsive: sedikit lebih kecil di layar mobile agar tidak dominan */
@media ( max-width: 480px ) {
	.whatsapp-chat-float {
		width: calc(var(--wc-float-size, 60px) * 0.85);
		height: calc(var(--wc-float-size, 60px) * 0.85);
	}

	.whatsapp-chat-position-right {
		right: 12px;
	}

	.whatsapp-chat-position-left {
		left: 12px;
	}
}
