.bottom-nav {
    display: none;
    position: fixed; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    background: #e8e4d8;
    border-radius: 24px;
    padding: 8px 4px;
    box-shadow: 0 8px 32px rgba(22,45,30,0.14), 0 2px 8px rgba(22,45,30,0.08);
    border: 1px solid rgba(22,45,30,0.08);
    max-width: calc(100% - 20px);
    overflow: hidden;
}
.bottom-nav-inner {
    display: flex; align-items: center; gap: 2px;
}
.bottom-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 8px 8px; border-radius: 16px;
    text-decoration: none;
    color: rgba(26,45,30,0.40);
    font-size: 10px; font-weight: 600;
    transition: background .18s, color .18s;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}
.bottom-nav-item i { font-size: 14px; }
.bottom-nav-item:hover,
.bottom-nav-item.active {
    background: rgba(26,45,30,0.08);
    color: #1a2d1e;
}
@media (max-width: 900px) {
    .bottom-nav { display: block; }
}
/* Telefonon (≤ 660px): ikon-only, hogy mind a 7 elem elférjen */
@media (max-width: 660px) {
    .bottom-nav-item {
        font-size: 0;
        gap: 0;
        padding: 10px 11px;
    }
    .bottom-nav-item i {
        font-size: 17px;
    }
    .bottom-nav-inner { gap: 1px; }
}
