.mobile-app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

/* Footer icon + label */
.footer-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

/* მობილურზე გამოჩნდება, დესქტოპზე არა */
@media (min-width: 768px) {
  .mobile-app-footer {
    display: none;
  }
}
