.products-section {
    padding: 60px 40px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Showcase Section */
  .products-showcase {
    background: #f6f6f6;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .showcase-content {
    flex: 1;
  }
  
  .showcase-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .showcase-content p {
    color: #666;
    margin-bottom: 20px;
  }
  
  .btn-products {
    display: inline-block;
    background: #3d086e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
  }

  .btn-products:hover {
    background-color: #56099e;
    color: #fff;
  }
  
  .showcase-image {
    flex: 1;
  }
  
  .showcase-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Category Grid */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .category-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3d086e;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
  }

  .category-btn:hover {
    background-color: #56099e;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-showcase {
      flex-direction: column;
    }
  
    .category-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .category-grid {
      grid-template-columns: 1fr;
    }
  }
  