/* ═══════════════════════════════════════════════════════════
   Mobile bottom navigation — a fixed bar of icon+label items
   The phone companion to the dark sidebar (nav.css): 4–5 primary
   destinations across the bottom, optionally with a raised center
   action. The look (.tn-bottom-nav) is separate from the fixed
   positioning (.tn-bottom-nav--fixed) so it can also be embedded.
   ═══════════════════════════════════════════════════════════ */

.tn-bottom-nav {
    display: flex;
    align-items: flex-end;
    background: var(--tn-bg-card);
    border-top: 1px solid var(--tn-border);
    box-shadow: var(--tn-shadow-lg);
    padding: 4px 0 8px;
}

/* Pin to the bottom of the viewport (the usual case) */
.tn-bottom-nav--fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

/* Items — equal width, icon over label */
.tn-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    color: var(--tn-text-secondary);
    font-size: 0.65rem;
    text-decoration: none;
    text-align: center;
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    transition: color var(--tn-transition);
}

.tn-bottom-nav-item i {
    font-size: 1.2rem;
}

.tn-bottom-nav-item:hover {
    color: var(--tn-text-primary);
}

.tn-bottom-nav-item.is-active {
    color: var(--tn-accent);
}

.tn-bottom-nav-item:focus-visible {
    outline: none;
    color: var(--tn-accent);
}

/* Raised center action (a primary "+" style destination) */
.tn-bottom-nav-item--center i {
    background: var(--tn-accent);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -16px;
    box-shadow: 0 4px 10px rgba(13, 115, 119, 0.35);
}

.tn-bottom-nav-item--center.is-active i {
    background: var(--tn-accent-hover);
}

/* Hide above the mobile breakpoint when used as the mobile-only nav */
.tn-bottom-nav--mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .tn-bottom-nav--mobile-only {
        display: flex;
    }
}
