/* ==========================================================
   Sticky Contacts
   ========================================================== */

.stickyContacts {
	position: fixed !important;
	right: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	z-index: 999999 !important;
	overflow: visible !important;
}

.stickyContacts ul {
	list-style: none !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
}

.stickyContacts li {
	position: relative !important;
	display: flex !important;
	justify-content: flex-end !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
}

.stickyContacts li a {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	width: 50px;
	height: 50px !important;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 20px !important;
	transition: width 0.35s ease, background 0.25s !important;
	overflow: hidden !important;
	white-space: nowrap !important;
	border-radius: 4px 0 0 4px !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 50px !important;
	box-shadow: none !important;
	border: none !important;
}

.stickyContacts li a:hover {
	width: 240px;
}

.stickyContacts li a span {
	display: none !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	margin-right: 10px !important;
	color: #fff !important;
	order: -1 !important;
}

.stickyContacts li a:hover span {
	display: inline-flex !important;
	align-items: center !important;
}

/* Icons */
.stickyContacts .email a::after {
	content: '\f0e0' !important;
	font-family: 'Font Awesome 6 Free' !important;
	font-weight: 900 !important;
	flex-shrink: 0 !important;
	width: 50px !important;
	text-align: center !important;
}

.stickyContacts .mobile a::after {
	content: '\f095' !important;
	font-family: 'Font Awesome 6 Free' !important;
	font-weight: 900 !important;
	flex-shrink: 0 !important;
	width: 50px !important;
	text-align: center !important;
}

.stickyContacts .wechat a::after {
	content: '\f1d7' !important;
	font-family: 'Font Awesome 6 Brands' !important;
	font-weight: 400 !important;
	flex-shrink: 0 !important;
	width: 50px !important;
	text-align: center !important;
}

.stickyContacts .whatsapp a::after {
	content: '\f232' !important;
	font-family: 'Font Awesome 6 Brands' !important;
	font-weight: 400 !important;
	flex-shrink: 0 !important;
	width: 50px !important;
	text-align: center !important;
}

/* Wechat Popup — fixed positioning at body root level */
.wechat-popup {
	display: none;
	position: fixed !important;
	background: #fff !important;
	padding: 12px !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18) !important;
	z-index: 9999999 !important;
	overflow: visible !important;
}

.wechat-popup.show {
	display: block !important;
}

.wechat-popup img {
	width: 150px !important;
	height: 150px !important;
	display: block !important;
	border-radius: 4px !important;
}

.wechat-popup::after {
	content: '' !important;
	position: absolute !important;
	right: -8px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	border: 8px solid transparent !important;
	border-left-color: #fff !important;
}

/* Colors */
.stickyContacts .email a    { background: #1a2e5a !important; }
.stickyContacts .mobile a   { background: #2c3e6b !important; }
.stickyContacts .wechat a   { background: #07c160 !important; }
.stickyContacts .whatsapp a { background: #25d366 !important; }

.stickyContacts .email a:hover    { background: #e67e22 !important; }
.stickyContacts .mobile a:hover   { background: #e67e22 !important; }
.stickyContacts .wechat a:hover   { background: #06a350 !important; width: 50px; }
.stickyContacts .whatsapp a:hover { background: #1ebe57 !important; }

/* Mobile */
@media (max-width: 768px) {
	.stickyContacts li a {
		width: 38px !important;
		height: 38px !important;
		font-size: 16px !important;
		line-height: 38px !important;
		border-radius: 4px 0 0 4px !important;
		justify-content: center !important;
	}
	.stickyContacts li a::after {
		width: 38px !important;
		font-size: 15px !important;
		line-height: 38px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		height: 38px !important;
	}
	.stickyContacts li a:hover {
		width: 180px !important;
	}
	.stickyContacts .wechat a:hover {
		width: 38px !important;
	}
	.stickyContacts li a:hover span {
		font-size: 12px !important;
	}
}
