.product-gallery { min-width: 0; }
.product-gallery__main {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--jaroni-white);
}
.product-gallery__main img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 420px;
  object-fit: contain;
  transition: opacity var(--duration-normal) ease, transform .35s ease;
}
.product-gallery__main:hover img:not([hidden]) { transform: scale(1.035); }
.product-gallery__main img[hidden] { display: none; }
.product-gallery__placeholder {
  position: absolute;
  color: #d5ddd9;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: var(--font-weight-900);
  letter-spacing: .06em;
}
.product-gallery__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--color-control-border);
  border-radius: 50%;
  color: #243029;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 5px 15px rgba(8, 24, 15, .08);
  cursor: pointer;
  font-size: 1.55rem;
  transform: translateY(-50%);
}
.product-gallery__arrow--previous { left: 14px; }
.product-gallery__arrow--next { right: 14px; }
.product-gallery__arrow:disabled { display: none; }
.product-gallery__arrow[hidden],
.product-gallery__thumbs[hidden] { display: none; }
.product-gallery__thumbs {
  display: flex;
  gap: var(--space-10);
  margin-top: 13px;
  padding: var(--space-2);
  overflow-x: auto;
  scrollbar-width: thin;
}
.product-gallery__thumb {
  position: relative;
  display: grid;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: var(--space-5);
  place-items: center;
  overflow: hidden;
  border: 1px solid #e7ebe9;
  border-radius: var(--radius-8);
  background: var(--jaroni-white);
  cursor: pointer;
}
.product-gallery__thumb.is-active { border-color: var(--jaroni-green); box-shadow: 0 0 0 1px rgba(0, 166, 81, .08); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumb img[hidden] { display: none; }
.product-gallery__thumb span { color: #9aa49f; font-size: .62rem; font-weight: var(--font-extrabold); }

@media (max-width: 1024px) {
  .product-gallery__main { min-height: 390px; }
  .product-gallery__main img { height: 350px; }
}

@media (max-width: 600px) {
  .product-gallery__main { min-height: 320px; border-radius: 0; }
  .product-gallery__main img { height: 290px; }
  .product-gallery__arrow { width: 38px; height: 38px; }
  .product-gallery__thumb { flex-basis: 66px; width: 66px; height: 66px; }
}
