/* index.html 스타일 만들기 */
.product {
  display: flex;
  padding: 10px;
}
.thumbnail {
  max-width: 100px;
  width: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.product .price {
  font-size: 16px;
  font-weight: 600;
}
.product .title {
  font-size: 17px;
  font-weight: 600;
}
.product .date {
  color: grey;
  font-size: 13px;
}


.image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  }

  .image-preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
  }

  /* ---------------- 추가적인 css -------------------- */
  .product {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .thumbnail {
      width: 350px;
      height: 350px;
      background-size: cover;
      background-position: center;
      border: 1px solid #ddd;
      border-radius: 10px;
      margin-bottom: 10px;
  }

  .thumbnail-container {
      display: flex;
      gap: 10px;
      overflow-x: scroll;
  }

  .thumbnail-container img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border: 1px solid #ddd;
      border-radius: 5px;
  }

  /* ----------------------------- */



/* detail.html의 스타일 만들기 */
.detail-pic {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

