/* Mobile Tab Bar — Airbnb-style scroll-hide */
.mTabBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid #ebebeb;
  transform: translateY(0);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  contain: paint;
  padding-bottom: env(safe-area-inset-bottom);
}

.mTabBar.is-hidden {
  transform: translateY(100%);
}

.mTabBar__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mTabBar__list li::before { content: none; }

.mTabBar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #999;
  font-size: 10px;
  line-height: 1;
  padding: 6px 12px;
  transition: color 0.15s;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  font-family: inherit;
}

.mTabBar__item.is-active { color: #FF6666; }
.mTabBar__item:active { color: #333; }

.mTabBar__icon { width: 22px; height: 22px; }

.mTabBar__badge {
  position: absolute;
  top: 2px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #FF6666;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

@media (min-width: 993px) {
  .mTabBar { display: none; }
}

@media (max-width: 992px) {
  body { padding-bottom: 56px; }
}
