.bicLighterGallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.bicLighterGalleryThumb {
  flex: 0 0 96px;
  width: 96px;
  height: 76px;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 211, 255, 0.48);
  background: #061523;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.bicLighterGalleryThumb:hover,
.bicLighterGalleryThumb:focus-visible {
  border-color: #b3ff2c;
  box-shadow: 0 0 0 2px rgba(179, 255, 44, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.bicLighterGalleryThumb img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
}

/* The stock lighter artwork is a tall transparent product cutout. It must be
   contained inside the thumbnail; cover sizing crops it down to an empty tile. */
.bicLighterGalleryThumb[data-kind='product'] {
  background: radial-gradient(circle at 50% 48%, #0b2638 0, #061523 70%);
}

.bicLighterGalleryThumb[data-kind='product'] img {
  padding: 0.3rem;
  object-fit: contain;
}

@media (max-width: 640px) {
  .bicLighterGalleryThumb {
    flex-basis: 78px;
    width: 78px;
    height: 62px;
  }
}
