/**
 * Bottom tabbar — fixed at viewport bottom，最大宽度 480px 居中
 * 设计稿 H1-me-home 底部那条
 *
 * 米色调与 relationships-report.css 协调；安全区适配 iOS 底部 Home 区
 */
.bottom-tabbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid #e3d4ae;
  z-index: 10;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-tabbar__item {
  flex: 1;
  background: none;
  border: none;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #8a7860;
  font-size: 11px;
  cursor: pointer;
}
.bottom-tabbar__icon {
  font-size: 20px;
  line-height: 1;
  filter: grayscale(0.4);
  opacity: 0.7;
  transition: filter 0.15s, opacity 0.15s;
}
.bottom-tabbar__label {
  letter-spacing: 0.5px;
}
.bottom-tabbar__item.is-active {
  color: #a07a32;
  font-weight: 600;
}
.bottom-tabbar__item.is-active .bottom-tabbar__icon {
  filter: none;
  opacity: 1;
}

/* 凡有 tabbar 显示的 view，给底部留出 tabbar 高度（~56px）+ safe-area。
   按 viewId scope 选择器，避免 me.css / global 跨文件耦合（review#3 必修） */
#main-view,
#me-view {
  padding-bottom: 80px;
}
