/* bottom-nav.css */
/* bottom-nav.css */
.bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    /* Центруємо панель горизонтально */
    width: 240px;
    /* Оптимальна ширина для 4 кнопок */
    max-width: 90%;
    /* Адаптивність під малі екрани */
    height: 56px;
    background: #333;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bottom-nav__btn {
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    /* Плавний перехід між звичайним та активним станом */
    transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.1s ease;
}

/* Ефект під час натискання пальцем */
.bottom-nav__btn:active {
    transform: scale(0.92);
}

/* Активна кнопка */
.bottom-nav__btn-active {
    background: #8870ff;
    opacity: 1;
}

.bottom-nav__icon {
    width: 24px;
    height: 24px;
    display: block;
    pointer-events: none;
    /* Щоб клік фіксувався саме на кнопці <button>, а не на картинці <img> */
}