.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.related-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.related-product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.related-product-card__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.related-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.related-product-card__content {
  padding: 0.75rem;
}

.related-product-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.related-product-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff0098;
}