/* Floating Button */
#whatsapp-chat-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25d366;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	z-index: 999999;
}

/* Popup Box */
#whatsapp-chat-popup {
	position: fixed;
	bottom: 95px;
	right: 20px;
	width: 280px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: none;
	z-index: 999999;
	animation: fadeIn 0.3s ease;
	font-family: Arial, sans-serif;
}

#whatsapp-chat-popup .header {
	background: #25d366;
	color: white;
	padding: 12px;
	display: flex;
	align-items: center;
}

#whatsapp-chat-popup .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
}

#whatsapp-chat-popup .info strong {
	font-size: 15px;
}

#whatsapp-chat-popup .info span {
	font-size: 12px;
}

#whatsapp-chat-popup .close-btn {
	margin-left: auto;
	cursor: pointer;
	font-size: 20px;
}

#whatsapp-chat-popup .body {
	padding: 15px;
	font-size: 14px;
}

/* Chat Button */
.chat-button {
	width: 100%;
	border: none;
	background: #25d366;
	color: white;
	padding: 12px;
	font-weight: normal;
	font-size: 14px;
	cursor: pointer;
}

.chat-button:hover {
	background: #1ebe5d;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}