.product-gallery-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery-link::after {
  content: "Open full size";
  position: absolute;
  right: 14px;
  top: 14px;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.82);
  color: #f7eedb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-gallery-link img {
  transition: transform 260ms ease, filter 260ms ease;
}

.product-gallery-link:hover img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.product-gallery-link:hover::after,
.product-gallery-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.product-gallery-link:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: -3px;
}

.product-gallery-tile figcaption {
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 640px) {
  .product-gallery-link::after {
    right: 10px;
    top: 10px;
    opacity: 1;
    transform: none;
  }
}
