.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 300px;
}



.product-gallery-detail {
  max-height: 300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
}

.product-gallery-link:focus {
  outline-offset: 0;
}

.product-gallery-link--selected {
  outline: 2px solid var(--color-focus);
}

.product-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

