/* Categories */
.categories {
  display: flex;
  padding: 40px 80px;
  justify-content: center;

  .category-list {
    gap: 30px;
    display: flex;
    padding: 10px 0;
    max-width: 900px;
    overflow-x: scroll;
    flex-wrap: nowrap;
    justify-content: flex-start;
    
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    &::-webkit-scrollbar { display: none; }

    &.active { cursor: grabbing; }

    .category-wrapper {
      gap: 8px;
      display: flex;
      min-width: 70px;
      flex-direction: column;

      .category-icon {
        width: 24px;
        height: 24px;
        opacity: 0.6;

        i {
          font-size: 24px;
          padding-left: 15px;
          color: var(--text-gray);
        }
      }

      p {
        font-size: 12px;
        color: var(--text-gray);
      }
    }
  }
}
