.filter-gallery {
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 40px auto;
}

.filter-gallery ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-gallery ul li {
  list-style: none;
  background-color: #eee;
  padding: 12px 20px;
  margin: 5px;
  letter-spacing: 1px;
  cursor: pointer;
}

.filter-gallery ul li.active {
  background-color: var(--primary-color);
  color: white;
}

.product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product .item-box {
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.product .item-box.hide {
  display: none;
  transform: scale(0.2, 0.2);
}

.product .item-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.product .item-box.active {
  animation: enter 1s forwards;
}

@keyframes enter {
  0% {
    transform: scale(0.2, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}