.categories-container {
  display: flex;
  justify-content: center; /* توسيط الصور أفقياً */
  align-items: center;     /* توسيط عمودي */
  gap: 25px;               /* مسافة بين الصور */
  margin: 40px 0;
}

.category-item {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.category-item img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-name {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}
.category-item img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}.categories-container {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: auto;
    width: 90%;
}

@media (max-width: 768px) {

.category-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
            padding: 7px;
            
}
.categories-container {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: auto;
    width: 100%;
}
}