.product-info__aside-content {
  display: none;
}

.product-info__bottom {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.product-info__callout-wrapper {
  padding-bottom: 0;
}

.product-info__description-text.is-active {
  height: 160px;
  mask-image: linear-gradient(180deg, #000 50%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 50%, transparent);
  pointer-events: none;
}

.product-info__description-text a {
  pointer-events: all;
}

.product-info__description-text-trigger.is-active > .icon {
  transition: transform var(--transition-duration);
  transform: rotate(180deg);
}

.product-info__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-info__layout--header {
  padding-bottom: 0;
  margin-bottom: 18px;
}

.product-info__layout--header .page-sidebar-layout__sidebar {
  display: none;
}

.product-info__layout--main {
  padding-top: 0;
}

.product-info__page-sidebar-layout:first-of-type {
  row-gap: 0;
}

.product-info__page-sidebar-layout > main {
  gap: 32px;
}

.product-info__page-sidebar-layout .page-sidebar-layout__sidebar-content {
  display: contents;
  height: 100%;
}

.product-info__product-card .product-card__name {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--font-line-height-base);
}

.product-info__product-card .product-card__pre-sale-price,
.product-info__product-card .product-card__sale-price {
  font-size: var(--font-size-base);
  line-height: var(--font-line-height-base);
}

.product-info__product-top-bar {
  display: none;
}

.product-info__product-review-summary-card-compact {
  display: none;
}

.product-info__review-summary-card {
  margin-bottom: 32px;
}

.product-info__reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.product-info__reviews-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-info__reviews-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-info__reviews-disclaimer {
  margin-top: 8px;
  color: var(--color-gray3);
}

.product-info__reviews-filters {
  align-self: flex-start;
}

.product-info__reviews-filters-container {
  /* Negative margin related to product-info__reviews-select bottom margin */
  margin-bottom: -4px;
}

.product-info__reviews-select {
  display: inline-block;
  margin-bottom: 4px;
}

.product-info__reviews-select:not(:last-child) {
  margin-right: 12px;
}

.product-info__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-info__section-divider {
  margin-bottom: 14px;
}

.product-info__section-heading {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-line-height-base);
}

.product-info__description-text,
.product-info__description-text p,
.product-info__description-text span {
  font-size: var(--font-size-base) !important;
  line-height: var(--font-line-height-large) !important;
}

.product-info__section-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .product-info__aside-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
  }

  .product-info__details {
    display: none;
  }

  .product-info__details-section {
    position: sticky;
    top: calc(var(--header-height-desktop) + var(--product-top-bar-height) + var(--gutter-size));
  }

  .product-info__details-section--with-header-categories {
    top: calc(var(--header-height-desktop) + var(--product-top-bar-height) + var(--gutter-size) + var(--header-categories-height));
  }

  .product-info__product-bottom-bar {
    display: none;
  }

  .product-info__product-card {
    display: none;
  }

  .product-info__product-info-sale {
    display: none;
  }

  .product-info__product-review-summary-card-compact {
    display: flex;
    position: sticky;
    top: calc(var(--header-height-desktop) + var(--product-top-bar-height) + var(--gutter-size));
    opacity: 0;
    transition: opacity var(--transition-duration);
  }

  .product-info__product-review-summary-card-compact--with-header-categories {
    top: calc(var(--header-height-desktop) + var(--product-top-bar-height) + var(--gutter-size) + var(--header-categories-height));
  }

  .product-info__product-review-summary-card-compact.is-active {
    opacity: 1;
  }

  .product-info__product-top-bar {
    display: inline-block;
  }

  .product-info__reviews {
    gap: 20px;
  }

  .product-info__section {
    font-size: var(--font-size-base);
    line-height: calc(var(--font-size-base) * 1.5);
    gap: 18px;
  }

  .product-info__section-heading {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    line-height: var(--font-line-height-large);
  }
}
