.tabbar-wrap {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.tabbar-glass {
  background: rgba(182, 181, 181, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  padding: 6px 8px;
}

.tabbar {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.glass-indicator {
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.8s ease;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 72px;
  padding: 8px 12px;
  border-radius: 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.tab-icon {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-icon svg {
  width: 100%;
  height: 100%;
}

.tab-icon.lit {
  color: #ffffff;
  transform: scale(1.15);
}

.tab-label {
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s ease, font-weight 0.25s ease;
}

.tab-label.lit {
  color: #ffffff;
  font-weight: 700;
}
