
/* Категории */
.allhir-categories{
  padding: 40px 0;
}
.allhir-categories__inner{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.category{
  text-align: center;
  color: #ffffff;
  max-width: 220px;
  cursor: pointer;
  padding: 10px 5px;
}
.category-icon img{
  width: 128px;
  height: 128px;
  object-fit: contain;
}
.category-title{
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
}

/* Подкатегории */
.subcats{
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}
.category:hover .subcats{
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}
.subcats li{ margin-top: 6px; }
.subcats a{
  color: #cccccc;
  font-size: 14px;
  text-decoration: none;
}
.subcats a:hover{ color: #FF7A00; }
