.waves-mobile-bottom-nav {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: #fff;
	border-top: 1px solid #ddd;
	border-radius: 24px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
	z-index: 1000;
}

/* nav items */

.waves-mobile-bottom-nav__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-decoration: none;
	color: #6b7280; /* neutral gray */
	transition: color 0.15s ease;
}

/* icon wrapper */

.waves-mobile-bottom-nav__item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: transform 0.15s ease;
}

/* label */

.waves-mobile-bottom-nav__item .label {
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.2px;
}

/* hover / tap feedback */

.waves-mobile-bottom-nav__item:active .icon {
	transform: scale(0.92);
}

/* active state */
.waves-mobile-bottom-nav__item.active {
	color: var(--color-primary-light);
}
.waves-mobile-bottom-nav__item.active svg {
	fill: var(--color-primary-light);
}
.waves-mobile-bottom-nav__item.active::after {
	content: "";
	width: 18px;
	height: 3px;
	background: var(--color-primary-light);
	border-radius: 3px;
	margin-top: 2px;
}

/* keep footer clear of nav */

footer {
	padding-bottom: calc(200px + env(safe-area-inset-bottom)) !important;
}

/* hide on desktop */

@media (min-width: 769px) {

	.waves-mobile-bottom-nav {
		display: none;
	}

	footer {
		padding-bottom: 0;
	}

}