/* ===============================================
   BOTTOM NAVIGATION - DISABLED
   This feature is currently not in use.
   HTML can also be removed from pages if not planned.
   =============================================== */

.bottom-nav {
    display: none !important;
}

/* Original styles preserved below for future reference:

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.bottom-nav-item.active {
    color: var(--pink);
    background: rgba(236, 72, 153, 0.1);
}

.bottom-nav-icon {
    font-size: 1.25rem;
}

.bottom-nav-label {
    font-size: 0.625rem;
    font-weight: 500;
}

*/