.ribbon {
  position: absolute;
  top: 14px;
  left: -36px;
  width: 140px;
  padding: 6px 0;
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(-45deg);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.ribbon--sold {
  background-color: var(--color-status-sold);
}

.ribbon--reserved {
  background-color: var(--color-status-reserved);
}

.ribbon--featured {
  background-color: var(--color-status-featured);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
}

.product-card__badge--featured {
  top: var(--space-sm);
  left: var(--space-sm);
  right: auto;
}

.product-card--status-sold .product-card__media {
  filter: grayscale(0.4);
  opacity: 0.85;
}

.product-card__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.product-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card__price {
  margin: 0;
  font-size: var(--fs-lg);
}

.product-card__meta {
  margin: 0;
}
