.mobile-app-navbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;

    padding: 25px;
    height: 100px;
    border-radius: 35px 35px 0 0;
    border: 1px solid #ffffffd1;
    border-width: 1px 0 1px 0;
    background: rgb(255 255 255 / 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 36%);
    z-index: 9999;
}

.mobile-app-navbar .nav-item {
    text-align: center;
    flex: 1;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mbn-underlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, rgb(0 0 0 / 12%), #00000000);
    pointer-events: none;
    z-index: 9998;
}

.mobile-app-navbar .nav-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 auto 4px;
}

.mobile-app-navbar .nav-item .icon svg {
    width: 20px;
    height: 20px;
    fill: rgb(0 0 0);
}

/* Активное состояние — фиолетовый #831BEB */
.mobile-app-navbar .nav-item.active,
.mobile-app-navbar .nav-item.active .icon,
.mobile-app-navbar .nav-item:focus,
.mobile-app-navbar .nav-item:active {
    color: #ec2053;
}

/* Чтобы иконка SVG тоже перекрашивалась в активный цвет */
.mobile-app-navbar .nav-item.active .icon svg {
    fill: #ec2053;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 4px;
}

.cart-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.cart-count-badge-wrapper {
    position: absolute;
    top: -4px;
    right: -4px;
    pointer-events: none;
}

.cart-count-badge {
    background-color: #8e44ad;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 20px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
}
