:root {
  --container: 1400px;
  --radius: 18px;
  --ink: #0f172a;
  --muted: #6b7280;
  --line: #e9edf3;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

/* 리스트 그리드 */
.product-page-v1-main {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .product-page-v1-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .product-page-v1-main {
    grid-template-columns: 1fr;
  }
}

/* 카드 */
.product-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
.product-card {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* 썸네일 */
.product-card__image {
  position: relative;
  min-height: 160px;
  padding: 18px;
  background: linear-gradient(180deg, #f4f7fe 0%, #ffffff 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list-thumbnail-image-url {
  height: 280px;
  object-fit: fill;
  width: 280px;
}

/* 상단 배지(가격 표시용) */
.price-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 60%, #06b6d4 120%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}
.price-badge .cur {
  opacity: 0.95;
  font-size: 14px;
  margin-right: 2px;
}
.price-badge .num {
  font-size: 18px;
  line-height: 1;
}

/* 바디 */
.product-card__info {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}
.product-card__name {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.product-card__price {
  display: flex;
  gap: 10px;
  color: #475569;
  font-size: 12px;
}
.product-card__price b {
  font-weight: 800;
  color: #111827;
}
