
.nds-contact-icons {
	position: fixed;
	bottom: 24px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nds-contact-icons--right {
	right: 24px;
	align-items: flex-end;
}

.nds-contact-icons--left {
	left: 24px;
	align-items: flex-start;
}

.nds-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nds-contact-label {
	background: #111827;
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 14px;
	line-height: 1;
	opacity: 0;
	transform: translateX(8px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(0,0,0,.16);
}

.nds-contact-icons--left .nds-contact-label {
	order: 2;
	transform: translateX(-8px);
}

.nds-contact-icons--right .nds-contact-label {
	order: 1;
}

.nds-contact-link {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0,0,0,.18);
	transition: transform .2s ease, box-shadow .2s ease;
}

.nds-contact-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.nds-contact-link svg {
	width: 26px;
	height: 26px;
	fill: #ffffff;
}

.nds-contact-link--whatsapp {
	background: #25D366;
}

.nds-contact-link--phone {
	background: #2563EB;
}

.nds-contact-item.is-open .nds-contact-label {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

@media (max-width: 767px) {
	.nds-contact-icons--right {
		right: 14px;
	}

	.nds-contact-icons--left {
		left: 14px;
	}

	.nds-contact-icons {
		bottom: 14px;
	}

	.nds-contact-link {
		width: 48px;
		height: 48px;
	}

	.nds-contact-label {
		font-size: 13px;
		padding: 8px 10px;
	}
}
