.product-related {
  background-color: #6b7161;
  color: #ffffff;
  position: relative;
}

.product-related__content {
  display: flex;
  flex-direction: row;
  max-height: 516px;
}

@media (max-width: 768px) {
  .product-related__content {
    max-height: none;
    height: auto;
  }
}

.product-related__left {
  flex: 0 0 33%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-related__right {
  flex: 0 0 67%;
  position: relative;
  overflow: hidden;
}

.product-related__category {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
}

.product-related__title {
  font-family: "IvyPresto Headline", serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.15px;
  margin-bottom: 30px;
  color: #ffffff;
}

.product-related__details {
  margin-bottom: 40px;
}

.product-related__detail {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.product-related__detail-label {
  font-weight: 500;
  margin-right: 5px;
}

.product-related__detail-value {
  font-weight: 400;
}

.product-related__link {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: background-color 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.product-related__link svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.product-related__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.product-related__link:hover svg {
  transform: translateX(3px);
}

.product-related__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 992px) {
  .product-related__content {
    flex-direction: column;
  }

  .product-related__left {
    flex: 0 0 auto;
    padding: 40px;
    order: 2;
  }

  .product-related__right {
    width: 100%;
    height: 400px;
    order: 1;
  }

  .product-related__title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .product-related__left {
    padding: 30px 20px;
  }

  .product-related__right {
    height: 300px;
  }

  .product-related__title {
    font-size: 28px;
  }

  /* Assicurati che gli elementi con classe 'keep-desktop' siano comunque visibili su mobile */
  .product-complete__header .keep-desktop {
    display: block;
  }

  /* Stile per il bottone nella sezione product-related su mobile */
  .product-complete__header .product-info-request {
    position: relative;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 14px;
    word-wrap: break-word;
    word-break: keep-all;
    line-height: 1.4;
    min-height: 50px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
