.product-grid {
  columns: 4;
  column-gap: 1.25rem;
}

.product-grid > * {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

@media (max-width: 1279px) {
  .product-grid { columns: 3; }
}

@media (max-width: 1023px) {
  .product-grid { columns: 2; }
}

@media (max-width: 639px) {
  .product-grid { columns: 1; }
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.product-card:hover {
  border-color: rgba(232, 175, 81, 0.35);
  background: rgba(232, 175, 81, 0.03);
}

.product-card__body {
  padding: 1rem 1.1rem 1.15rem;
}



.product-card__image {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.product-card__image--horizontal {
  aspect-ratio: 850 / 475;
}

.product-card__image--vertical {
  aspect-ratio: 475 / 850;
}
