

.category-section {
  padding: 15px;
}

.category-section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ITEM */
.category-item {
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-25px);
}

/* IMAGE */
.category-item .img-wrap {
  width: 100%;
  height: 70px;
  background-color: #f4f4f4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
}

/* TITLE */
.category-item .title {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #222;
}

/* DESKTOP */
@media (min-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .category-item .img-wrap {
    height: 0;
    padding-bottom: 100%;
  }

  .category-item .title {
    font-size: 13px;
  }
}

.no-underline {
  text-decoration: none;
}
/* ===== ANIMATION ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* hidden state */
.category-item {
  opacity: 0;
  transform: translateX(-30px);
}

/* visible animated */
.category-item.animate {
  animation: slideInLeft 0.45s ease forwards;
}
