.angie-whatsapp-icon-253 {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
}

.angie-whatsapp-icon-253 a {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 15px;
}

.angie-wa-text-box {
	background-color: #f8f9fa;
	padding: 12px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	font-family: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angie-whatsapp-icon-253 a:hover .angie-wa-text-box {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.angie-wa-title {
	color: #334155;
	font-size: 15px;
	margin-bottom: 4px;
}

.angie-wa-subtitle {
	color: #1e293b;
	font-size: 16px;
	font-weight: 600;
}

.angie-wa-icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25D366; /* WhatsApp Green icon */
	color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angie-whatsapp-icon-253 a:hover .angie-wa-icon-circle {
	transform: scale(1.05);
	box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.angie-wa-icon-circle svg {
	width: 35px;
	height: 35px;
	fill: currentColor;
}

@media (max-width: 768px) {
	.angie-whatsapp-icon-253 {
		bottom: 20px;
		right: 20px;
	}
	
	.angie-wa-text-box {
		display: none; /* Hide text on mobile for better UX */
	}
	
	.angie-wa-icon-circle {
		width: 50px;
		height: 50px;
	}
	
	.angie-wa-icon-circle svg {
		width: 28px;
		height: 28px;
	}
}