.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    padding: 13px 24px;
    padding-bottom: calc(13px + env(safe-area-inset-bottom));
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -1px 20px 0 rgba(0, 0, 0, 0.25);
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-bottom-nav {
        display: flex;
    }

    .footer {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }

    .header-top__center {
        display: none;
    }

    .header-top__center.mobile-search-open {
        display: block;
    }
}

.mobile-bottom-nav--hidden {
    transform: translateY(100%);
}

.mobile-bottom-nav__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    color: #000;
    text-decoration: none;
}

.mobile-bottom-nav__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-bottom-nav__badge {
    position: absolute;
    top: -7px;
    right: -9px;
    background: #FFB928;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 900px;
    min-width: 16px;
    text-align: center;
}

.mobile-bottom-nav__badge.empty {
    display: none;
}

.mobile-bottom-nav__avatar {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #FFF5F5;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-bottom-nav__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-bottom-nav__avatar-initials {
    color: #E63737;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}
