

/* دکمه همبرگر */
.hamburger {
  display: none; /* در دسکتاپ مخفیه */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-right: 5px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9999;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/* برای موبایل */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-top: 20px;
    }
  .responsive{
    flex-direction: column;
  }
  .navbar ul{
    display: none;
    flex-direction: column;
    background-color: #fff;
  }
 .tools{
    display: none;
}
  .navbar ul.active {
    display: flex;
  }
  .toolsMobile.active{
      display:flex;
  }
    .mobile ul.active {
        display: flex;
    }
  .tools.active {
    display: flex;
  }
}