/* Нижняя мобильная навигация каталога (только ≤989px): фильтр, звонок, вопрос. */

.bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    height: 45px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    background: var(--Surface-White, #FFF);
    border-radius: 20px 20px 0 0;
    filter: drop-shadow(0 -4px 8px rgba(0, 0, 0, 0.17));
}

.bottom-nav .item {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}
.bottom-nav .item img {
    width: 24px;
    height: 24px;
}

.bottom-nav .call-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--Surface-White, #FFF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav .call-btn img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

@media (max-width: 989px) {
    .bottom-nav {
        display: flex;
    }
}
