
  
    .category-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .category-card {
      background-color: #e6f0ff;
      border-radius: 12px;
      width: 300px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .category-card:hover {
      transform: translateY(-5px);
    }
    .category-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }
    .category-content {
      padding: 15px;
    }
    .category-title {
      font-size: 18px;
      font-weight: bold;
      color: #0056b3;
      margin-bottom: 10px;
    }
    .category-description {
      font-size: 14px;
      color: #333;
    }
    .item-count {
      margin-top: 10px;
      font-size: 13px;
      color: #666;
    }