.category-section {
  width: 100%;
  /* max-width:1400px; */
  margin: 0 auto;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.category-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.cat-btn {
  background: transparent;
  border: none;
  color: #4b4a49;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.cat-btn:hover {
  color: #101010;
}

@media (max-width: 1024px) {
  .category-section {
    display: none;
  }
}
