@media screen and (max-width: 768px) {
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
     }

  .product-list__unit {
    width: 50% !important; /* 画像サイズを少し大きく */
    margin-bottom: 6px; /* 余白を調整 */
  }

  .product-list__unit img {
    width: 100%; /* 画像をコンテナいっぱいに広げる */
    height: auto; /* アスペクト比を維持 */
  }

  /* 7列目ごとの崩れを防ぐ */
  .product-list__unit:nth-child(7n) {
    clear: none !important;
  }
}