
/* 新增css modify by Joanna 20260113  start */

.produits-list {
  display: flex;
  flex-wrap: wrap;
  
}

.produits-list .produit-wrap {
  width: 33.33%; /* 三欄 */
  padding: 10px;
  box-sizing: border-box;
}

/* RWD */
@media (max-width: 768px) {
  .produits-list .produit-wrap {
    width: 50%; /* 兩欄 */
  }
}
@media (max-width: 480px) {
  .produits-list .produit-wrap {
    width: 100%; /* 單欄 */
  }
}


.img-wrap a{
    display: block;
    text-decoration: none;
    position: relative;
    /* padding-top: 45%; */
    padding-top: 85%;
    overflow: hidden;
    transition: 0.5s ease all;
}

.img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    float: none;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: 0.5s ease all;
    transform-origin: center;
}

/* 新增css modify by Joanna 20260113  end */