/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 64px;
  background-color: #ffffff;
  border-top: 1px solid #f6f6f6;
  display: flex;
  justify-content: center;
  gap: 55px;
  padding: 8px 16px;
  z-index: 2000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #ccc;
}

.nav-item img {
  width: 24px;
  height: 24px;
}

.nav-item span {
  font-size: 12px;
  font-weight: 500;
  color: #ccc;
}

.nav-item.active span {
  color: #222;
}

.nav-item.active {
  color: #222;
}
