#navbar-root {
  position: fixed;
  left: 50%;
  bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 50;
  animation: navbar-rise 0.4s ease-out 0.15s backwards;
}

@keyframes navbar-rise {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2px;
  background: linear-gradient(90deg, #1C9FD4, #0d6a94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(13, 106, 148, 0.45), var(--shadow-float);
  padding: 3px;
}

.navbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.navbar-item[data-active="true"] {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.navbar-item [data-lucide] {
  width: 15px;
  height: 15px;
}

.navbar-item:active {
  transform: scale(0.94);
}

@keyframes navbar-activate {
  0%   { transform: translateX(0) scale(1); }
  20%  { transform: translateX(-3px) scale(1.05); }
  50%  { transform: translateX(3px) scale(1.05); }
  75%  { transform: translateX(-1.5px) scale(1.02); }
  100% { transform: translateX(0) scale(1); }
}

.navbar-item--activated {
  animation: navbar-activate 0.28s ease;
}
