.product-return-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6e9ed;
}

.product-return-bar h1 {
  margin: 0;
  color: #222;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
}

.product-return-bar.is-detail {
  justify-content: space-between;
}

.product-return-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid #1d5496;
  border-radius: 3px;
  color: #1d5496;
  font-size: 14px;
  transition: .25s ease;
}

.product-return-button::before {
  content: "\2190";
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

.product-return-button:hover {
  background: #1d5496;
  color: #fff;
}

@media (max-width: 767px) {
  .product-return-bar {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .product-return-bar h1 {
    font-size: 22px;
  }

  .product-return-button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 13px;
  }
}
/* Product detail contact rows: keep links and plain text equally interactive. */
.view_text .prodet_contact {
  padding-top: 0;
}

.view_text .prodet_contact li {
  height: auto;
  line-height: 1.6;
  overflow: hidden;
  border-bottom: 1px solid #edf0f3;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.view_text .prodet_contact li > a,
.view_text .prodet_contact li > span {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 65px;
  padding: 14px 20px 14px 0;
  box-sizing: border-box;
  color: #000;
  line-height: 1.6;
  overflow-wrap: anywhere;
  transition: color .25s ease;
}

.view_text .prodet_contact li:hover {
  background: #1d5496;
  color: #fff;
  box-shadow: 0 6px 18px rgba(29, 84, 150, .18);
}

.view_text .prodet_contact li:hover > a,
.view_text .prodet_contact li:hover > span,
.view_text .prodet_contact li:hover .icon,
.view_text .prodet_contact li a:hover,
.view_text .prodet_contact li:last-child a:hover {
  background: transparent;
  color: #fff;
}
