.categories-grid, .category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  justify-content: center;
  align-items: stretch;
}


.category-card, .category-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.category-card:hover, .category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* صورة القسم */
.category-card img, .category-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
}

/* اسم القسم */
.category-card h3, .category-item-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
}

/* خلفية موحدة (تقدر تغيّر اللون البنفسجي هنا حسب هوية متجرك) */
.category-card, .category-item {
  background-color: #f9f9ff;
}