.product-page-details-mobile .product-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-page-details-mobile .product-details-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-page-details-mobile .product-share-container .share {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.product-page-details-mobile .product-share-container .share:hover {
  opacity: 0.7;
}
.product-page-details-mobile .product-share-container .share a {
  color: #000;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
}
.product-page-details-mobile .product-share-container .share img {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.product-page-details-mobile .product-description-container {
  padding-top: 2rem;
}
.product-page-details-mobile .product-advantages .advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
