tr.variant-list .gng-variant-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin: 6px 0;
}
.gng-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 10px;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s ease, transform .1s ease, box-shadow .15s ease;
  font: inherit;
  color: inherit;
}
.gng-tile:hover { border-color: #bdbdbd; }
.gng-tile:active { transform: scale(.98); }
.gng-tile.is-active {
  border-color: #111;
  box-shadow: 0 0 0 1px #111 inset;
}
.gng-tile-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 36px;
}
.gng-tile-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.gng-tile-label {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}