/* Мобилно дънно меню като на снимката */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: 8px;
    min-width: 60px;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.active {
    color: #007bff;
    background-color: #f8f9fa;
}

.mobile-bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-bottom-nav-item span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* Скриване на мобилното меню на десктоп */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Добавяне на padding в долната част на body за мобилното меню */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}

/* Стилове за мобилното меню (sidebar) */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-sidebar.show {
    left: 0;
}

.mobile-sidebar-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.mobile-sidebar-content {
    padding: 20px 0;
}

.mobile-sidebar-section {
    margin-bottom: 30px;
}

.mobile-sidebar-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding: 0 20px;
}

.mobile-sidebar-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-sidebar-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.mobile-sidebar-item i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Скриване на мобилното меню на десктоп */
@media (min-width: 768px) {
    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: none;
    }
}
