.categories-judul {
      text-align: center;
      font-size: 24px;
      padding: 10px;
      color: white;
    }

    .categories-wrapper {
      position: relative;
      max-width: 100%;
      padding: 0 60px;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 26px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 50%;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      z-index: 2;
      transition: background-color 0.2s;
    }

    .arrow:hover {
      background-color: #f3f4f6;
    }

    .arrow-left {
      left: 10px;
    }

    .arrow-right {
      right: 10px;
    }

    .categories-container {
      overflow: hidden;
    }

    .categories {
      display: flex;
      gap: 16px;
      transition: transform 0.3s ease;
      padding: 10px 0;
    }

    .categories a {
      text-decoration: none;
    }

    .category {
    min-width: 140px;
    padding: 12px;
    background-color: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .category:hover {
    background-color: #2563eb;
    color: white;
    border-color: #1d4ed8;
    transform: translateY(-2px);
  }

  .category img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .category span {
    font-size: 15px;
    font-weight: bold;
    color: inherit;
    margin-top: 5px;
  }