/* استهداف الصور داخل بطاقات الفئات */
img[src*="/uploads/"] {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

/* تأثير عند المرور */
img[src*="/uploads/"]:hover {
  transform: scale(1.05);
}

/* استهداف العناوين تحت الصور */
h3, .category-title, .collection-title {
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-top: 12px;
}

/* استهداف الحاوية العامة */
section, .section, .collection-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}