.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: var(--beyaz, #ffffff);
    box-shadow: 0 -2px 8px var(--golge, rgba(0, 0, 0, 0.1));
    z-index: 1000;
}

.nav-item {
    flex: 1;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: var(--gri, #aaa);
    font-size: 12px;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-item i {
    font-size: 20px;
    line-height: 1;
}

.nav-item span {
    line-height: 1;
}

.nav-item.active {
    color: var(--altin, #C4935A);
}

.nav-item:hover {
    color: var(--altin, #C4935A);
}