/* Hub bar thémable */
:root{
  --hubbar-h: 52px;
  --hubbar-bg: var(--house-header-bg);
  --hubbar-border: var(--house-header-border);
  --hubbar-text: var(--house-text);
  --hubbar-btn-bg: rgba(255,255,255,0.10);
  --hubbar-btn-border: rgba(255,255,255,0.16);
}

.hubbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  height: var(--hubbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  backdrop-filter: blur(10px);
  background: var(--hubbar-bg);
  border-bottom: 1px solid var(--hubbar-border);
  color: var(--hubbar-text);
}

.hubbar__home{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--hubbar-text);
  background: var(--hubbar-btn-bg);
  border: 1px solid var(--hubbar-btn-border);
  font-weight: 800;
  font-size: 14px;
}

.hubbar__title{
  font-weight: 800;
  font-size: 14px;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width:520px){
  :root{ --hubbar-h: 48px; }
  .hubbar__home span.label{ display:none; }
}
