/* JioMart-style Category Grid */
#category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  justify-items: center;
  padding: 30px 15px;
  max-width: 1280px;
  margin: auto;
}

/* Category Card */
.category-item {
   width: 100%;
  max-width: 180px;
  padding: 16px 14px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Category Image */
.category-item img {
    width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.category-item:hover img {
  transform: scale(1.08);
}

/* Category Name */
.category-item p {
   font-size: 15px;
  font-weight: 600;
  color: #212121;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Pagination Buttons */
#category-pagination {
  text-align: center;
  margin: 40px 0 20px;
}

#category-pagination button {
  /* padding: 10px 10px; */
  /* margin: 0 5px; */
  background-color: transparent;
  color:#0078ad;
  border: none;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  /* transition: background-color 0.3s ease, transform 0.2s ease; */
}

#category-pagination button:hover {
  /* background-color: #005f85; */
  transform: translateY(-2px);
}

/* Message Styling */
#category-message {
  text-align: center;
  color: #d32f2f;
  font-size: 14px;
  margin-top: 20px;
}

/* Global Body */
body {
  background: #f1f3f6;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}
