.all_category {
  .card-categories-wrapper {
    margin-bottom: 15px;
    border-radius: 16px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);

      .img_content img {
        transform: scale(1.05);
      }
    }

    .card-categories {
      height: 100%;
      max-height: 280px;
      overflow: hidden;
      border-radius: 16px 16px 0 0;
    }

    .category-head {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      background: var(--primary-color);
      color: var(--white-color);
      padding: 15px 32px;
      min-height: 60px;
      text-align: center;

      a {
        color: var(--white-color);
        text-decoration: none;
        width: 100%;
        text-align: start;
        display: block;
        transition: opacity 0.3s ease;

        &:hover {
          text-decoration: none;
          opacity: 0.9;
        }
      }
    }
  }

  /* تنسيق التصنيفات الفرعية */
  .card-body {
    background: var(--primary-color);
  }

  .categories-title {
    margin: 0;
    padding: 10px 5px;
    border-top: 1px solid var(--white-color);

    a {
      text-decoration: none;
      font-weight: 600;
      color: var(--white-color) !important;
      transition: color 0.3s ease;
    }
  }

  .categories-subTitle {
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 15px;

    li {
      margin-bottom: 5px;
      list-style-type: circle;
    }

    a {
      text-decoration: none;
      color: #666;
      font-size: 14px;
      transition: color 0.3s ease;
    }
  }
}

/* تحسين المسافات */
.all-cat-col {
  margin-bottom: 30px;
}

.img_content {

  img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.5s ease;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .all-cat-col {
    margin-bottom: 20px;
  }

  .all_category {

    .card-categories-wrapper {

      .category-head {
        font-size: 16px;
        min-height: 50px;
      }
    }

    .categories-subTitle {
      padding-left: 15px;
    }
  }

  .img_content img {
    height: 180px;
  }
}
