.product-card { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }

.product-card .img-wrap {
  position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  outline: 1px solid var(--hairline); outline-offset: -1px;
  transition: outline-offset 200ms ease;
}
.product-card:hover .img-wrap { outline-offset: -3px; outline: 1.5px solid var(--ink); }

.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-card .season-tag {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper); padding: 4px 10px 4px 6px; border-radius: 999px;
  font-size: 13px; color: var(--ink-2); letter-spacing: 0.02em;
}
.product-card .season-tag .dot {
  width: 8px; height: 8px; border-radius: 999px;
}

.product-card .pick-btn {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 160ms ease;
  color: var(--ink); font-size: 16px;
}
.product-card .pick-btn:hover,
.product-card .pick-btn.is-saved {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

.product-card .hover-strip {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--paper); padding: 8px 12px; border-radius: 4px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.product-card:hover .hover-strip { opacity: 1; transform: translateY(0); }
.product-card .hover-strip .variants { display: flex; gap: 4px; align-items: center; }
.product-card .hover-strip .swatch {
  width: 14px; height: 14px; border-radius: 999px;
  box-shadow: inset 0 0 0 1px oklch(0.20 0.02 60 / 0.10);
}
.product-card .hover-strip .more {
  font-size: 13px; color: var(--ink-3); font-family: var(--mono); margin-left: 4px;
}
.product-card .hover-strip .qv { font-size: 13px; font-weight: 500; }

.product-card .meta { display: flex; justify-content: space-between; gap: 12px; }
.product-card .meta .brand {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 4px;
}
.product-card .meta .name { font-family: var(--serif); font-size: 21px; line-height: 1.15; }
.product-card .meta .merchant {
  font-size: 13px; color: var(--ink-3); margin-top: 6px;
  display: inline-flex; align-items: center; gap: 5px;
}
.product-card .meta .merchant::before {
  content: ""; width: 4px; height: 4px; border-radius: 999px;
  background: var(--ink-3); display: inline-block;
}
.product-card .meta .merchant strong { color: var(--ink-2); font-weight: 500; }
.product-card .meta .right { text-align: right; white-space: nowrap; }
.product-card .meta .price { font-size: 16px; font-weight: 500; }
.product-card .meta .color { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
