/* ================================================================
   СПЕШЕН FIX ЗА MOBILE BOTTOM NAVIGATION VISIBILITY
   ================================================================ */

/* Осигури видимост на долната навигация */
@media (max-width: 991.98px) {

    /* Добави padding на body за долната навигация */
    body {
        padding-bottom: 80px !important;
    }

    /* Осигури че bottom nav е винаги най-отгоре */
    .mobile-bottom-nav {
        z-index: 9999 !important;
        position: fixed !important;
        display: grid !important;
    }

    /* Помести main content над bottom nav */
    .app-container,
    main.app-main {
        padding-bottom: 100px !important;
        position: relative;
        z-index: 1;
    }
}