.category-section {
  width: 100%;
  margin: 50px auto;
  padding: 0 20px;
}

/* HEADER */
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.category-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c344a;
}

/* ARROWS */
.category-arrows {
  display: flex;
  gap: 12px;
}

.cat-arrow {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  /* background: #f0f0f0; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff;
}

.cat-arrow:hover {
  background: #e2e2e2;
}

/* CATEGORY SCROLLING SECTION */
.categories-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;

  /* HIDE SCROLLBAR SAFELY (all browsers) */
  -ms-overflow-style: none;
  /* IE & Edge */
  scrollbar-width: none;
  /* Firefox */
}

.categories-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* CATEGORY CARD */
.category-card {
  min-width: 150px;
  background: #f8f8f8;
  border-radius: 20px;
  text-align: center;
  padding: 25px 10px;
  transition: 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  /* background: #f1fff4; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #222;
}

.category-card p {
  font-size: 14px;
  color: #666;
}
.bg1 { background:#FFF9E6; }
.bg2 { background:#F1FFE8; }
.bg3 { background:#FFEFEA; }
.bg4 { background:#FFF3E6; }
.bg5 { background:#FFF0FF; }
.bg6 { background:#F1FFE8; }
.bg7 { background:#FFECEC; }
.bg8 { background:#FFF9E6; }
.bg9 { background:#FFECE5; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .category-header h2 {
    font-size: 26px;
  }

  .cat-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card {
    cursor: pointer;
}
