.loreva-bottom-navigation {

    position: fixed;

    right: 0;

    bottom: 0;

    left: 0;

    z-index: 9999;

    display: none;

    background: var(--surface-1);

    border-top: 1px solid var(--surface-border);

    box-shadow: var(--shadow-md);

    padding:
        var(--space-2)
        var(--space-3)
        calc(var(--space-2) + env(safe-area-inset-bottom));

    transition:
        transform .3s ease,
        background .3s ease,
        backdrop-filter .3s ease;

}

.loreva-bottom-navigation.is-glass {

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

}

.loreva-bottom-navigation__list {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-2);

    margin: 0;

    padding: 0;

    list-style: none;

}

.loreva-bottom-navigation__item {

    flex: 1;

}

.loreva-bottom-navigation__link {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-height: 52px;

    padding: var(--space-2);

    color: var(--loreva-text);

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;

}

.loreva-bottom-navigation__icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

}

.loreva-bottom-navigation__icon svg {

    width: 22px;

    height: 22px;

    fill: currentColor;

    transition: inherit;

}

.loreva-bottom-navigation__label {

    font-size: 12px;

    line-height: 1;

    font-weight: 500;

    white-space: nowrap;

}

.loreva-bottom-navigation__badge {

    position: absolute;

    top: 4px;

    right: calc(50% - 18px);

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 18px;

    height: 18px;

    padding: 0 5px;

    border-radius: var(--radius-round);

    background: var(--loreva-primary);

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

}

.loreva-bottom-navigation__item.is-active
.loreva-bottom-navigation__link {

    color: var(--loreva-primary);

}

.loreva-bottom-navigation__link:hover {

    color: var(--loreva-primary);

}

.loreva-bottom-navigation__link:active {

    transform: scale(.96);

}

.loreva-bottom-navigation.is-hidden {

    transform: translateY(100%);

}

@media (max-width: 992px) {

    .loreva-bottom-navigation {

        display: block;

    }

    body {

        padding-bottom: 84px;

    }

}

@media (min-width: 992px) {

    .loreva-bottom-navigation {

        display: none !important;

    }

}