.landing-page .hero-visual.product-gallery {
  min-width: 0;
  max-width: 100%;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
}

.product-gallery-track {
  display: flex;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  border-radius: 5px;
  background: #333;
}

.product-gallery-track::-webkit-scrollbar { display: none; }

.product-gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.landing-page .product-gallery .product-gallery-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.product-gallery-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.product-gallery-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  min-width: 0;
  min-height: 44px;
  padding: 7px 4px 6px;
  border: 1px solid #ffffff30;
  border-radius: 5px;
  background: #ffffff04;
  color: #d7cfc2;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.landing-page .product-gallery .product-gallery-choice > img {
  display: block;
  width: clamp(60px, 17vw, 80px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
}

.product-gallery-choice > span { overflow-wrap: anywhere; }
.product-gallery-choice[aria-pressed="true"] {
  border-color: #f1aa38;
  background: #f1aa3812;
  color: #ffd28c;
  box-shadow: inset 0 0 0 1px #f1aa38;
}

.product-gallery-track:focus-visible,
.product-gallery-choice:focus-visible {
  outline: 2px solid #ffd079;
  outline-offset: 3px;
}

.product-gallery-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (hover: hover) {
  .product-gallery-choice:hover { border-color: #eab04f; }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-track { scroll-behavior: auto; }
}
