



/* Нижняя навигация */
.lel_menu-bottom-nav4444 {
    /* height: 80px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*   background: #333;*/
    color: white;
}
.lel_menu-bottom-nav     {
   /* position: fixed;*/
    /*
    left: 5px;
    right: 5px;
    bottom: 5px;
    height: 80px;
    */
    /*
    left: 0;
    right: 0;
    */
    background: rgba(255, 255, 255, 0.95);
    /*background: #4caf50;*/
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  /*  z-index: 1000;*/
 /*   padding: 10px 10px; */
    padding-top: 5px;

    max-width: 800px;
    margin: auto;
    border-radius: 10px;
}

.lel_menu-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary, #757575);
    padding: 8px 12px;
    border-radius: var(--border-radius, 16px);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 70px;
    position: relative;
    background: transparent;
}
.lel_menu-nav-btn:hover {
    color: var(--primary-color, #e91e63);
    background: rgba(233, 30, 99, 0.05);
}

.lel_menu-nav-btn-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lel_menu-nav-btn.active {
    color: var(--primary-color, #e91e63);
    transform: translateY(-5px);
}

.lel_menu-nav-btn.active::before {
    content: '';
    position: absolute;
    top: -1px;
    width: 4px;
    height: 4px;
    background: var(--primary-color, #e91e63);
    border-radius: 50%;
}

.lel_menu-nav-icon {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.lel_menu-nav-btn.active .lel_menu-nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(233, 30, 99, 0.3));
}

.lel_menu-nav-text {
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.lel_menu-nav-btn.active .lel_menu-nav-icon {
    animation: pulse 2s infinite;
}





/* Адаптивность для планшетов */
/*
@media (min-width: 768px) {
    .lel_menu-bottom-nav {
        height: 90px;
        padding: 0 20px;
    }

    .lel_menu-nav-btn {
        max-width: 80px;
    }

    .lel_menu-nav-icon {
        font-size: 1.6rem;
    }

    .lel_menu-nav-text {
        font-size: 0.85rem;
    }
}
*/

/* Адаптивность для мобильных устройств */
/*
@media (max-width: 480px) {
    .lel_menu-bottom-nav {
        height: 70px;
    }

    .lel_menu-nav-btn {
        padding: 6px 8px;
        max-width: 60px;
    }

    .lel_menu-nav-icon {
        font-size: 1.2rem;
    }

    .lel_menu-nav-text {
        font-size: 0.7rem;
    }

    .lel_menu-action-buttons {
        gap: 0.8rem;
    }

    .lel_menu-action-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
*/