 
    body {
      background: #f1f3f6;
    }

    .row {
      padding: 0 !important;
      margin: 0 !important;
      padding-bottom: 8px !important;
    }

    .product-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      margin: 5px;
      padding: 15px;
      transition: box-shadow 0.3s;
      height: 350px;
      /* text-align: center; */
    }
.productTitle{
  max-height: 60px;
    min-height: 60px;
    overflow: hidden;
    font-size: 16px !important;
    font-weight: 600;
}
    .product-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .product-img-container {
      position: relative;
      /* width: 150px; */
      /* height: 150px; */
      overflow: hidden;
      margin: auto;
      cursor: zoom-in;
    }

    .product-img-container img {
      /* width: 100%;
      height: 100%; */
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .product-img-container img:hover {
      transform: scale(1.8);
    }

    .product-name {
      font-size: 16px;
      font-weight: 600;
      color: #212121;
      margin: 10px 0 5px 0;
    }

    .product-card {
      max-width: 800px;
    }

    .img-preview {
      max-width: 120px;
      max-height: 120px;
      object-fit: cover;
    }

    .product-desc {
      text-align: justify;
      font-size: 13px;
      color: #555;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      overflow: hidden;
      min-height: 80px;
      max-height: 80px;
      overflow-y: scroll;
      padding: 5px;
    }


    .price {
      font-size: 18px;
      font-weight: bold;
      color: #388e3c;
      margin-bottom: 15px;
    }

    .btn-cart {
      background: #ff9f00;
      color: white;
      border: none;
    }

    .btn-buy {
      background: #fb641b;
      color: white;
      border: none;
    }

    .btn-cart:hover,
    .btn-buy:hover {
      opacity: 0.9;
    } 

    .img-preview { width: 96px !important; height: 96px !important; object-fit: cover; border-radius: 6px; border: 1px solid #ddd; }
    .product-card { max-width: 800px; }
    .thumbs { gap: 8px; display:flex; flex-wrap:wrap; }
    .thumb-item { position: relative; display:inline-block; }
    .thumb-item .remove-btn { position:absolute; top: -6px; right: -6px; }
    .productTitle { max-height: 35px;
    min-height: 35px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600; }
    .productDescription{max-height: 149px;
    min-height: 150px;
    overflow: hidden;
    overflow-y: auto;
    padding: 5px;}
    #productImageList { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; max-height: 240px;overflow: hidden; overflow-y: auto; flex-direction: column;}
    #productImageList li { position: relative; }