body {
  overflow-x: hidden;
}
/* 
.category-tabs {
  padding: 10px;
} */

/* Category and Subcategory List Styling */
.category-list {
  list-style: none;
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for touch devices */
  padding: 0;
  margin: 0 0 20px;
  scrollbar-width: thin; /* Thin scrollbar for modern browsers */
/*   box-shadow: inset 0 -1px 0 0 #d1d2e0; */
}

.category-item {
  flex: 0 0 auto; /* Prevent wrapping */
  margin-right: 10px;
  cursor: pointer;
  padding: 10px 15px;
  white-space: nowrap; /* Prevent text from wrapping */
}

.category-item.active {
  border-bottom: 0.1rem solid black;
}

.subcategory-list {
  list-style: none;
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for touch devices */
  padding: 0;
  margin: 0 0 20px;
  scrollbar-width: thin; /* Thin scrollbar for modern browsers */
}

.subcategory-item {
  flex: 0 0 auto; /* Prevent wrapping */
  margin-right: 10px;
  cursor: pointer;
  padding: 10px 15px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 32px; /* Rounded corners */
  white-space: nowrap; /* Prevent text from wrapping */
  font-size: 14px;
}

.subcategory-item.active {
  background: #0cc7cf;
  color: #000;
  border: none;
}

.products .product h2 {
  color: rgb(0, 0, 0);
}

.products .product h2:hover {
  font-weight: 700;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.category-list::-webkit-scrollbar, .subcategory-list::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.category-list, .subcategory-list {
  -ms-overflow-style: none;
  scrollbar-width: none; 
}
