.product-card {
  display: grid;
  gap: 0.7rem;
}

.product-card__media {
  aspect-ratio: 4 / 5;
  background: var(--fashion-accent-soft);
  overflow: hidden;
  position: relative;
}

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

.product-card__name {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.swatch-row {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0;
  background: #d8d8d6;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #9aa3ad;
  font-size: 0.7rem;
  background: var(--fashion-accent-soft);
}
