.card-green { background: #bcd9bd; }
.card-purple { background: #d4c5df; }
.product-card-image {
  margin: 10px 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.product-card-image a {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: var(--line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  line-height: 0;
  text-decoration: none;
  max-width: 100%;
}

.product-card-image a:hover {
  transform: translateY(-2px);
  box-shadow: 2px 6px 0 var(--red);
}

.product-card-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (min-width: 761px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

