/**
 * HALINK C9 — Mobile bottom nav + offcanvas tweaks
 */

.hl-bottom-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--hl-z-header);
	display: none;
	padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--hl-border);
	box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 991.98px) {
	.hl-bottom-nav {
		display: block;
	}

	body {
		padding-bottom: 4.5rem;
	}
}

.hl-bottom-nav__bar {
	gap: 0.15rem;
}

.hl-bottom-nav__item {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: 0.35rem 0.25rem !important;
	color: var(--hl-muted) !important;
	font-size: 0.65rem;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: var(--hl-radius) !important;
}

.hl-bottom-nav__item.active,
.hl-bottom-nav__item:hover {
	color: var(--hl-primary) !important;
	background: var(--hl-primary-light) !important;
}

.hl-bottom-nav__icon {
	position: relative;
	font-size: 1.1rem;
	line-height: 1;
}

.hl-bottom-nav__badge {
	position: absolute;
	top: -0.35rem;
	right: -0.55rem;
	font-size: 0.6rem;
}

.hl-bottom-nav__label {
	line-height: 1.1;
}
