.bf-mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
}

.dark .bf-mobile-bottom-menu {
    background: rgba(30, 30, 30, 0.98);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.bf-mobile-bottom-menu ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bf-mobile-bottom-menu li {
    flex: 1;
    text-align: center;
}

.bf-mobile-bottom-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.dark .bf-mobile-bottom-menu a {
    color: #999;
}

.bf-mobile-bottom-menu a i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.bf-mobile-bottom-menu a span {
    line-height: 1.2;
}

.bf-mobile-bottom-menu a.active {
    color: #dc3544;
}

.dark .bf-mobile-bottom-menu a.active {
    color: #f87171;
}

.bf-mobile-bottom-menu a.active i {
    transform: scale(1.1);
}

.bf-mobile-bottom-menu a:hover {
    color: #dc3544;
}

.dark .bf-mobile-bottom-menu a:hover {
    color: #f87171;
}

@media (max-width: 991px) {
    .bf-mobile-bottom-menu {
        display: block;
    }
}