/* Mobile bottom tab bar */
.tab-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(13, 13, 13, 0.97);
    border-top: 1px solid rgba(197, 164, 78, 0.2);
    z-index: 200;
    backdrop-filter: blur(10px);
}

.tab-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    font-size: 0.65rem;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    position: relative;
    min-height: var(--tap-min, 44px);
    transition: color 0.2s;
}

.tab-bar__item svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.tab-bar__item.active {
    color: var(--gold);
}

.tab-bar__item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--gold);
    border-radius: 0 0 2px 2px;
}

/* Body padding for tab bar on mobile */
body {
    padding-bottom: 56px;
}

/* Hide tab bar on desktop */
@media (min-width: 1024px) {
    .tab-bar {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}
