/* 🔥 OTF-Pro Bottom Navigation — estilo app móvil */

#otf-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    height: 68px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;

    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4px;

    z-index: 9999;

    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);

    font-family: system-ui, sans-serif;
}


/* Cada ícono */
.otf-bottom-item {
    flex: 1;
    text-align: center;
    padding: 4px 0;
    text-decoration: none;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;

    transition: 0.2s ease;
}

.otf-bottom-item .icon {
    font-size: 22px;
    line-height: 22px;
}

.otf-bottom-item .label {
    font-size: 12px;
    margin-top: 2px;
}

/* Estado activo */
.otf-bottom-item.active {
    color: #0073aa;
    font-weight: 600;
}

/* Animación suave al pulsar */
.otf-bottom-item:active {
    transform: scale(0.92);
}

/* Evitar que tape contenido */
body {
    padding-bottom: 80px !important;
}

/* Responsive modo escritorio */
@media (min-width: 1024px) {
    #otf-bottom-bar {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
    }
}
