.coming-soon-text {
  color: #888;
  font-size: 1.2rem;
  font-weight: 500;
}
.product-thumb.coming-soon {
  background: #f0f0f0;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
  text-align: center;
}
.coming-soon-text {
  display: block;
  width: 100%;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
  margin-top: 80px;
  margin-bottom: auto;
}
/* Product List Responsive Grid */
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-height: 700px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 0;
}
.product-list-grid .product-thumb {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: block;
}
.product-thumb {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px #0001;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .product-list-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  /* 썸네일은 aspect-ratio로 정사각형 유지 */
}