
/* Русский комментарий: сквозное мобильное меню личного кабинета */
.mobile-cabinet-menu{
  display:none;
}

@media (max-width: 1024px){
  body{
    padding-bottom:92px !important;
  }

  .mobile-cabinet-menu{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1000;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    align-items:center;
    gap:6px;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-top:1px solid rgba(24,48,34,.08);
    box-shadow:0 -8px 28px rgba(20,44,31,.08);
  }

  .mobile-cabinet-menu__item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:56px;
    color:#8c97a7;
    text-decoration:none;
    background:none;
    border:none;
    padding:4px 6px;
    cursor:pointer;
    font:600 11px/1.1 Inter, Arial, sans-serif;
  }

  .mobile-cabinet-menu__item svg{
    width:24px;
    height:24px;
    stroke:currentColor;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .mobile-cabinet-menu__item.is-active{
    color:#2e6fd3;
  }

  .mobile-cabinet-menu__avatar{
    width:34px;
    height:34px;
    border-radius:999px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef3f0;
    color:#355c48;
    border:1px solid rgba(24,48,34,.10);
    font:700 12px/1 Inter, Arial, sans-serif;
  }

  .mobile-cabinet-menu__avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
}
