    
.catp-slider-container {
     
     position: relative;
      width: 100%;
      margin: auto;
      overflow: hidden;
      background: lightgoldenrodyellow;
      max-width: 1200px;
    
    }
    .controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
     
    }

    .controls select {
    
      font-size: 14px;
    }

    .product-grid {
   display: grid;
      grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
      gap:1.33% ;
        width: 100%;
        max-width: 1200px;
      align-content: center;
      max-width: 1200px;
 
  box-sizing: border-box;
  justify-content: flex-start; /* Aligns items to the start */
}


    .product-card {
      border: 1px solid #ccc;
    
      text-align: center;
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .product-title {
      font-size: 14px;
      margin: 10px 0;
      min-height: 40px;
    }

    .product-price {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .product-old-price {
      text-decoration: line-through;
      color: #999;
      margin-right: 5px;
    }

    .add-to-cart {
      background: #333;
      color: #fff;
      padding: 10px;
      text-transform: uppercase;
      font-size: 13px;
      border: none;
      width: 100%;
      cursor: pointer;
    }

    .pagination {
      text-align: center;
      margin-top: 30px;
    }

    .pagination button {
      margin: 0 5px;
      
      border: 1px solid #ccc;
      background: #f0f0f0;
      cursor: pointer;
    }

    .pagination button.active {
      background: #333;
      color: #fff;
    }

   
  