.bottom-nav {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px;
    background-color: var(--color-secondary, #332F2A);
    border-radius: 9999px;
    z-index: 1000;
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.2s ease;
    min-width: 48px;
}

.bottom-nav__item svg {
    width: 24px;
    height: 24px;
}

.bottom-nav__item span {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.bottom-nav__icon-wrap {
    position: relative;
    display: inline-flex;
}

.bottom-nav__badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 4px 5px;
    border-radius: 9px;
    background: var(--primary-color, #FFC22A);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
}

.bottom-nav__item--active {
    color: var(--primary-color, #FFC22A);
}

button.bottom-nav__item {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}
