/**
 * SendPal marketing site bottom nav — mirrors app.sendpal.io SiteBottomNav (mobile / tablet only).
 */

.sendpal-site-bottom-nav {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 45;
	border-top: 1px solid #e0e0e0;
	background: #fff;
	padding-bottom: env(safe-area-inset-bottom, 0);
	box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.06);
}

.sendpal-site-bottom-nav__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.sendpal-site-bottom-nav__item {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	min-height: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 8px 4px;
	text-decoration: none;
	color: #9e9e9e;
	font-size: 10px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	transition: background 0.15s ease, color 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
	.sendpal-site-bottom-nav__item {
		font-size: 11px;
	}
}

.sendpal-site-bottom-nav__item:active {
	background: rgba(245, 245, 245, 0.85);
}

.sendpal-site-bottom-nav__item--active {
	color: #1b107b;
	font-weight: 600;
}

.sendpal-site-bottom-nav__indicator {
	position: absolute;
	left: 8px;
	right: 8px;
	top: 0;
	height: 3px;
	border-radius: 0 0 999px 999px;
	background: #1b107b;
}

.sendpal-site-bottom-nav__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.sendpal-site-bottom-nav__label {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 2px;
}

/* Show below xl (1280px), same breakpoint as Next.js bar */
@media (max-width: 1279px) {
	.sendpal-site-bottom-nav {
		display: block;
	}

	body.sendpal-has-bottom-nav {
		padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
	}

	/* Keep theme “back to top” above the nav when visible */
	body.sendpal-has-bottom-nav .to-top.fixed-totop {
		bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
	}
}
