.category-pills {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 40px;
  padding: 80px 20px;
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: max-content;
  gap: 12px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  border: 1px solid;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.52;
  padding: 8px 20px 8px 8px;
  background-color: #fff;
  transition: 0.2s ease;
}

.pill img {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Color themes */
.pill.pink {
  background: #ffd7d7;
  border: 1px solid #ff9b9b;
  color: #f46161;
}

.pill.blue {
  background: #ebf8ff;
  border: 1px solid #b5e5ff;
  color: #49b3fe;
}

.pill.green {
  background: #ebfff4;
  border: 1px solid #93e5b8;
  color: #24bc2e;
}

.pill.orange {
  background: #fff5eb;
  border: 1px solid #ffdab5;
  color: #f0973e;
}

.pill.magenta {
  background: #ffebfa;
  border: 1px solid #ffc5f1;
  color: #f74acc;
}

.pill.light-green {
  background: #f6fdd6;
  border: 1px solid #dee9ad;
  color: #99ad3f;
}

.pill.peach {
  background: #fde3db;
  border: 1px solid #ebc1b5;
  color: #d6694b;
}

.pill.violet {
  background: #f4e1ff;
  border: 1px solid #e5b7ff;
  color: #b367dd;
}

.pill.light-red {
  background: #ffe8e8;
  border: 1px solid #ffb6b6;
  color: #e36161;
}

/*------------------------*/

/* Scroll container */
.pills-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.pills-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Each row contains non-wrapping pills */
.pills-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

/* Blur edges */
.category-pills::before,
.category-pills::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.category-pills::before {
  left: 0;
  background: linear-gradient(to right, white 60%, transparent);
}

.category-pills::after {
  right: 0;
  background: linear-gradient(to left, white 60%, transparent);
}

@media screen and (max-width: 700px) {
  .pill {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  border: 1px solid;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.52;
  padding: 8px 20px 8px 8px;
  background-color: #fff;
  transition: 0.2s ease;
}

.pill img {
  width: 15px;
  height: 15px;
  padding: 6px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.category-pills {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 40px;
  padding: 30px 20px;
}
 .pills-row {
    display: flex;
    gap: 12px;
    animation: scrollLeft 15s linear infinite;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* adjust based on content width */
    }
  }
}

