/* WhatsApp button style */
#whatsapp-button {
	position: fixed;
 	bottom: 50px;
	right: 20px;
	z-index: 1000;
	background-color: #25D366;
	border-radius: 50%;
	padding: 2px; /* 12 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease-in-out;
}

#whatsapp-button:hover {
	transform: scale(1.1);
}

#whatsapp-button img {
	width: 32px;
	height: 32px;
}

/* Popup message style */
#whatsapp-popup {
	display: none;
	position: fixed;
 	bottom: 120px;
	right: 20px;
	background-color: #fff;
	color: #333;
	border-radius: 10px;
	padding: 15px;
	width: 220px;
	font-family: sans-serif;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 999;
}

#whatsapp-popup::after {
	content: '';
	position: absolute;
	bottom: -10px;
	right: 20px;
	border-width: 10px 10px 0;
	border-style: solid;
	border-color: #fff transparent transparent;
	display: block;
	width: 0;
}