/* ===== Bottom Tab Bar ===== */
.tabbar-seat {
  width: 100%;
  height: var(--tabbar-height);
}

.tabbar {
  width: 100%;
  padding: 0 6px;
  height: var(--tabbar-height);
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--bg-tabbar);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.tabbar__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.tabbar__icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.tabbar__label {
  margin-top: 4px;
  font-size: var(--font-xs);
  color: var(--text-secondary);
}

.tabbar__item--active .tabbar__label {
  color: var(--accent-gold);
}
