/* bnv mobile */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 1000;
}

.bottom-nav .nav-item {
  color: #555;
  text-align: center;
  font-size: 0.8em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: color 0.3s;
}

.bottom-nav .nav-item .icon {
  width: 25px;
  height: 25px;
  color: #333;
  transition: 0.2s;
}

.bottom-nav .nav-item.active {
  color: #2e3a59;
}

.bottom-nav .nav-item.active .icon {
  color: royalblue;
  transform: scale(1.15);
}

.bottom-nav .nav-item.active span {
  color: royalblue;
}

.bottom-nav .nav-item .badge {
  position: absolute;
  top: 0;
  right: -5px;
  background: #2e3a59;
  color: #fff;
  font-size: 0.65em;
  padding: 2px 6px;
  border-radius: 50%;
}

.page {
  display: none;
  margin-top: 80px;
  margin-bottom: 60px;
}

.page.active {
  display: block;
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none !important;
  }

  .page {
    margin-bottom: 0px;
    margin-top: 120px;
  }
}

/* پایان نویگیشن */