:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.product-page-details-desktop .product-details-content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  overflow: visible;
}
.product-page-details-desktop .product-share-container {
  display: flex;
  justify-content: flex-end;
}
.product-page-details-desktop .product-share-container .share {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  justify-content: flex-end;
  padding-left: 3.3rem;
}
.product-page-details-desktop .product-share-container .share:hover {
  opacity: 0.7;
}
.product-page-details-desktop .product-share-container .share a {
  color: #000;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
}
.product-page-details-desktop .product-share-container .share img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.product-page-details-desktop .product-advantages h2 {
  font-size: 2.2rem;
  margin-bottom: 3.2rem;
  border-bottom: none;
  padding-right: 1rem;
}
.product-page-details-desktop .product-advantages .advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  padding-right: 1rem;
}
.product-page-details-desktop .product-advantages .advantages-grid .advantage-item {
  position: relative;
}
@media (width > 768px) {
  .product-page-details-desktop .product-advantages .advantages-grid .advantage-item::after {
    content: "";
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    width: 0.1rem;
    background-color: var(--red-30);
    z-index: 1;
  }
}
