ul.new-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  max-width: 1200px; /* Ç¤°Õ¤ÇÃæ±û´ó¤» */
}

ul.new-items li {
  width: 23%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

ul.new-items li img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

ul.new-items .price {
  font-weight: bold;
  color: #e60012;
}

ul.new-items .regular {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9em;
}




