/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: none;
    background: rgba(30, 31, 34, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    flex: 1;
}

.mobile-bottom-nav a svg {
    transition: all 0.2s ease;
}

.mobile-bottom-nav a.active {
    color: #ffffff;
}

.mobile-bottom-nav a.active svg {
    color: #ffffff;
    filter: drop-shadow(0 0 6px rgba(188, 163, 59, 0.6));
}

.mobile-bottom-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: rgba(188, 163, 59, 1);
    box-shadow: 0 0 6px rgba(188, 163, 59, 0.5);
    border-radius: 1px;
}

.mobile-bottom-nav a:hover {
    color: rgba(188, 163, 59, 0.8);
}

.mobile-bottom-nav a:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
    }

    .vertical-menu {
        display: none !important;
    }
}
