.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--clr-gray-200);
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  display: none; /* Hidden by default */
}

@media (max-width: 991px) {
  .bottom-nav {
    display: flex;
    justify-content: space-around;
    padding-inline: 2rem;
  }
  
  body {
    padding-bottom: 70px;
  }
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #888;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bottom-nav__item svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.bottom-nav__item:hover, .bottom-nav__item.is-active {
  color: var(--clr-primary);
}

.bottom-nav__item.is-active svg {
  transform: translateY(-2px);
}
