/* ZUBR PRO BOTTOM NAV */

.bottom-nav {
    position: fixed !important;
    left: 50% !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 20px) !important;
    max-width: 520px !important;
    min-height: 74px !important;
    padding: 8px !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 7px !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255,255,255,1) !important;
    backdrop-filter: blur(24px) !important;
    z-index: 3000 !important;
    overflow: hidden !important;
}

.bottom-nav button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 56px !important;
    padding: 6px 2px !important;
    border-radius: 20px !important;
    background: transparent !important;
    color: #7c8287 !important;
    box-shadow: none !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
}

.bottom-nav button span {
    font-size: 19px !important;
    line-height: 1 !important;
}

.bottom-nav button small {
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.bottom-nav button.active {
    background: #050505 !important;
    color: #ffffff !important;
}

.page {
    padding-bottom: 104px !important;
}

@media (max-width: 380px) {
    .bottom-nav {
        width: calc(100% - 14px) !important;
        bottom: 8px !important;
        border-radius: 24px !important;
        gap: 5px !important;
        padding: 7px !important;
    }

    .bottom-nav button {
        border-radius: 17px !important;
    }

    .bottom-nav button span {
        font-size: 17px !important;
    }

    .bottom-nav button small {
        font-size: 9px !important;
    }
}
