.mobile-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-footer-item {
    text-align: center;
    flex: 1;
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.mobile-footer-item i {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

/* Панель при разворачивании */

#mobile-panel {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: #f9f9f9;
    border-top: 1px solid #ccc;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hidden {
    display: none;
}

.close-mobile-panel {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #eee;
    border: none;
    border-radius: 6px;
}