.gear-product-image {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin: -24px -24px 10px;
  padding: 18px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f8f8f5;
}

.gear-product-image img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform .25s ease;
}

.gear-product-image:hover img {
  transform: scale(1.04);
}

.gear-product:has(.gear-product-image) {
  overflow: hidden;
}
