.productHero {
  width: 100%;
  padding-bottom: 80px;
}
.productHero_ImageWrapper {
  width: 100%;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  max-height: 580px;
}
.productHero_Image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.productHero_Container {
  max-width: 1280px;
  width: 90%;
  margin: auto;
}
.productHero_Grid {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0 0 0;
}

.productHero_Col--right {
  height: 100%;
}

.productHero_Col--right .productHero_RightImageWrapper {
  height: 100%;
}

.productHero_Col--right img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Click-to-fullscreen affordance */
.productHero_RightImage {
  cursor: zoom-in;
}

.productHero_Title {
  color: #000;
  font-family: "Alata", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.64px;
  margin: 0;
}
.productHero_Text {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin: 16px 0 0 0;
}

.productHero_Pill {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
}
.productHero_Pill--grey {
  background: #f2f2f2;
  color: #000;
}

.productHero_Specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.productHero_SpecTitle {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.productHero_SpecValue {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.productHero_Actions {
  margin-top: 42px;
}
.productHero_Button {
  padding: 10px 24px;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(
    0deg,
    var(--Color-Persian-Red, #c53c29) 0%,
    var(--Color-Persian-Red, #c53c29) 100%
  );
  color: #fff;
}

.productHero_Button:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, #8a291b 0%, #8a291b 100%);
}

/* Lightbox (fullscreen image viewer) for product hero */
.productHero_Lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.productHero_Lightbox.is-open {
  display: flex;
}
.productHero_Lightbox_Image {
  max-width: 92vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.productHero_Lightbox_Close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Right column image */
.productHero_RightImageWrapper {
  width: 100%;
}
.productHero_RightImage {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .productHero_Container {
    width: 90%;
  }
  .productHero_Grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .productHero_Title {
    font-size: 40px;
  }
  .productHero_Specs {
    grid-template-columns: 1fr;
  }
}
