.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 7 / 10;
  overflow: hidden;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/watermark.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 2;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 3;
}

.product-card__info {
  padding: var(--space-4) var(--space-3) var(--space-3);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--ivory);
}

.product-card__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: var(--space-2);
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--smoke);
  margin-bottom: var(--space-3);
}

.product-card__director::after {
  content: '·';
  margin-left: var(--space-2);
  color: var(--border-light);
}

.product-card__footer {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
}

.product-card__from {
  font-size: var(--text-xs);
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
