/* Add custom CSS styles below */ 
.categories-section {
      padding: 20px;
    }
    .section-title {
      text-align: center;
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 700;
    }
    .categories-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
    }
    .category-card {
      flex: 1 1 calc(14% - 16px); /* 7 عناصر في الصف مع التباعد */
      text-align: center;
    }
    .category-card img {
      width: 100%;
      height: auto;
      border-radius: 8px; /* لو تحب حواف دائرية */
    }
    @media (max-width: 1200px) {
      .category-card {
        flex: 1 1 calc(20% - 16px); /* 5 عناصر في الصف للشاشات المتوسطة */
      }
    }
    @media (max-width: 900px) {
      .category-card {
        flex: 1 1 calc(33.33% - 16px); /* 3 عناصر في الصف للشاشات الصغيرة */
      }
    }
    @media (max-width: 600px) {
      .category-card {
        flex: 1 1 calc(50% - 16px); /* 2 عناصر في الصف للشاشات الموبايل */
      }
    }
    @media (max-width: 400px) {
      .category-card {
        flex: 1 1 100%; /* عنصر واحد في الصف للشاشات الصغيرة جدًا */
      }
    }