/* Floating WhatsApp / Telegram buttons fixed to the right edge */
.floating-contacts {
	position: fixed;
	right: 24px;
	bottom: 86px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.floating-contacts a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contacts a:hover,
.floating-contacts a:focus {
	transform: scale(1.08);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.floating-contacts a img {
	width: 38px;
	height: 38px;
}

@media (max-width: 767px) {
	.floating-contacts {
		right: 10px;
		bottom: 90px;
		gap: 10px;
	}

	.floating-contacts a {
		width: 48px;
		height: 48px;
	}

	.floating-contacts a img {
		width: 30px;
		height: 30px;
	}
}
