.product-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
    /* background: #f7f7f7; */
    height: 330px; /* Fixed height for product item */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
  }
  
  .product-item:hover {
    transform: scale(1.05);
  }
  
  .product-img {
    width: 100%;
    height:100%;
    padding: 20px;
    overflow: hidden;
  }
  
  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .product-name {
    height: max-content;
    padding: 10px;
    background: #f7f7f7;
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }
  
  
  .product-name h6 {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; 
      width: 100%;
      display: block;
  }