/* Bottom navbar styles for mobile */
:root{
    --navbar-height: 64px;
}

.bottom-navbar{
    display: none; /* hidden on desktop */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: var(--primary, #ff6f92);
    color: #fff;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.12);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bottom-navbar__list{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 6px;
    margin: 0;
    list-style: none;
}

.bottom-navbar__item{
    flex: 1 1 auto;
    text-align: center;
}

.bottom-navbar__link{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: background .12s ease, color .12s ease, transform .08s ease;
    border-radius: 8px;
}

.bottom-navbar__link .icon{
    font-size: 18px;
    line-height: 1;
}

.bottom-navbar__link .label{
    font-size: 11px;
}

.bottom-navbar__link:active,
.bottom-navbar__link:focus,
.bottom-navbar__link:hover{
    color: #fff;
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

.bottom-navbar__link.active{
    background: rgba(255,255,255,0.12);
}

/* Show only on mobile widths */
@media (max-width: 768px){
    .bottom-navbar{ display: block; }

    .has-bottom-navbar{ padding-bottom: var(--bottom-navbar-height, 64px); }
}

/* Accessibility focus */
.bottom-navbar__link:focus{
    outline: 2px solid rgba(255,255,255,0.2);
    outline-offset: 3px;
}

