.product-page-hero {
  padding-top: 56px !important;
}

.product-page-hero .product-detail {
  width: min(1440px, calc(100% - 40px)) !important;
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr) !important;
  gap: clamp(24px, 3vw, 48px) !important;
  padding: clamp(14px, 2vw, 24px) !important;
}

.product-gallery {
  align-content: start !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.product-gallery__item,
.product-gallery__item:first-child {
  min-height: 0 !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.product-gallery__item {
  aspect-ratio: 4 / 5 !important;
}

.product-gallery__item:first-child {
  grid-column: 1 / -1 !important;
  aspect-ratio: 5 / 5.4 !important;
  max-height: 820px !important;
}

.product-gallery__item img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
  cursor: zoom-in;
}

.product-detail__copy {
  padding: clamp(8px, 2vw, 30px) !important;
}

.product-detail__copy h2 {
  font-size: clamp(3rem, 5.2vw, 5.8rem) !important;
  line-height: .94 !important;
}

.product-detail__copy .product-description {
  max-width: 52ch !important;
  margin: 20px 0 0 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.r34-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(17, 16, 13, .92);
}

.r34-product-lightbox[hidden] {
  display: none !important;
}

.r34-product-lightbox img {
  width: auto;
  height: auto;
  max-width: min(94vw, 1400px);
  max-height: 92vh;
  object-fit: contain;
  background: #fff;
}

.r34-product-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: rgba(17, 16, 13, .72);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .product-page-hero .product-detail {
    grid-template-columns: 1fr !important;
    width: min(100% - 24px, 760px) !important;
  }

  .product-detail__copy {
    position: static !important;
  }
}

@media (max-width: 620px) {
  .product-gallery {
    grid-template-columns: 1fr !important;
  }

  .product-gallery__item,
  .product-gallery__item:first-child {
    grid-column: 1 !important;
    aspect-ratio: 4 / 5 !important;
  }

  .product-detail__copy h2 {
    font-size: clamp(2.7rem, 14vw, 4rem) !important;
  }
}