/* Bottom Nav */
.bottom-nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 74px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 6px;

  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 50;
}

.nav-item{
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  color: rgba(234,242,255,0.55);
  text-decoration: none;
  font-size: 11px;
}

.nav-item .icon{
  width: 24px;
  height: 24px;
  opacity: 0.65;
}

.nav-item.active{
  color: rgba(234,242,255,0.95);
}

.nav-item.active .icon{
  opacity: 1;
}

/* כדי שלא התוכן "יישב" מתחת לתפריט */
.with-bottom-nav{
  padding-bottom: 88px;
}