/* Square product cards: the complete source image stays visible without cropping. */
.image {
  aspect-ratio: 1 / 1;
  padding: 8px;
  background: #fff;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 17px;
}

@media (max-width: 680px) {
  .image {
    padding: 5px;
  }

  .image img {
    border-radius: 13px;
  }
}
