/* ------------------------------------------
   FLIPKART STYLE CATEGORY BAR
------------------------------------------- */
.category-bar {
  background: #ffffff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow-x: auto;         /* for mobile scrolling */
  scrollbar-width: none;     /* hide scrollbar in Firefox */
}

.category-bar::-webkit-scrollbar {
  display: none;            /* hide scrollbar in Chrome */
}

.cat-item {
  width: 110px;             /* same width for all items */
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.cat-item:hover {
  transform: translateY(-3px);
}

.cat-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.cat-item p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-top: 4px;
}


