/* Mobile bottom navigation — visible below xl (1280px) */
.hc-mbn {
	display: none;
}

@media (max-width: 1279px) {
	.hc-mbn {
		display: flex;
		position: fixed;
		right: 0;
		left: 0;
		bottom: 0;
		z-index: 9990;
		align-items: flex-end;
		justify-content: space-around;
		direction: rtl;
		height: 64px;
		padding: 6px 4px calc(8px + env(safe-area-inset-bottom, 0px));
		background: #fff;
		box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.08);
		border-top: 1px solid #eef0f3;
	}

	body.hc-has-mobile-bottom-nav {
		padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
	}

	body.hc-has-mobile-bottom-nav #contact-widget-container {
		bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
	}

	.hc-mbn__item {
		flex: 1 1 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		gap: 4px;
		min-width: 0;
		padding: 0 2px;
		background: none;
		border: 0;
		color: #334155;
		text-decoration: none;
		font-family: inherit;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.hc-mbn__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		color: #475569;
	}

	.hc-mbn__icon svg {
		width: 24px;
		height: 24px;
	}

	.hc-mbn__icon--mag {
		width: 30px;
		height: 30px;
	}

	.hc-mbn__icon--mag svg {
		width: 28px;
		height: 28px;
	}

	.hc-mbn__label {
		display: block;
		width: 100%;
		font-size: 10px;
		line-height: 1.3;
		font-weight: 600;
		color: #1e293b;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		padding: 0 1px;
	}

	.hc-mbn__item--call {
		position: relative;
		z-index: 2;
		justify-content: center;
		align-self: stretch;
	}

	.hc-mbn__fab {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		margin-top: -28px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background-color: #f54336;
		color: #fff;
		cursor: pointer;
		box-shadow:
			0 4px 6px -1px rgb(0 0 0 / 0.1),
			0 2px 4px -2px rgb(0 0 0 / 0.1);
		-webkit-tap-highlight-color: transparent;
	}

	.hc-mbn__fab-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		transition: transform 0.3s ease-in-out;
	}

	.hc-mbn__fab-icon svg {
		width: 28px;
		height: 28px;
		stroke: currentColor;
		fill: none;
	}

	body.hc-has-mobile-bottom-nav .hc-cpl-toast {
		bottom: calc(88px + env(safe-area-inset-bottom, 0px));
	}
}

@media print {
	.hc-mbn,
	.notPrint {
		display: none !important;
	}
}
