/* Galerie produit — grande image + vignettes horizontales */
[data-tm-pdp-gallery] [data-tm-pdp-thumbs] {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  width: 100%;
  max-width: 100%;
}

[data-tm-pdp-gallery] [data-tm-pdp-thumb] {
  display: block;
  flex: 0 0 auto;
  width: 4.5rem;
  height: 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  max-width: 4.5rem;
  max-height: 4.5rem;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #e3d6c5;
  cursor: pointer;
  line-height: 0;
  transition: border-color 0.2s ease;
}

[data-tm-pdp-gallery] [data-tm-pdp-thumb]:hover {
  border-color: rgba(97, 46, 3, 0.35);
}

[data-tm-pdp-gallery] [data-tm-pdp-thumb][aria-selected="true"] {
  border-color: #612e03;
}

[data-tm-pdp-gallery] [data-tm-pdp-thumb] img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}
