.product-detail__highlights {
  position: relative;
  width: 100%;
  margin-block-start: 15px;
  padding: 32px;
  border: 1px solid rgba(var(--color-text), 0.12);
  border-radius: 18px;
}

.product-detail__highlights-heading {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 22px;
  z-index: 1;
  margin: 0;
  padding-inline: 10px;
  color: rgb(var(--color-text));
  background: rgb(var(--color-background));
  transform: translateY(-50%);
}

.product-detail__highlights-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0 0 4px;
}

.product-detail__highlights-list:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.product-detail__highlight-item {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: max-content;
  grid-template-rows: auto auto;
  min-height: 70px;
  padding: 12px 20px 12px 62px;
  border-radius: 10px;
  background: rgba(var(--color-text), 0.06);
  scroll-snap-align: start;
}

.product-detail__highlight-icon {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 20px;
  display: flex;
  transform: translateY(-50%);
}

.product-detail__highlight-icon svg {
  width: 30px;
  height: 30px;
}

.product-detail__highlight-label,
.product-detail__highlight-value {
  grid-column: 1;
  margin: 0;
  white-space: nowrap;
}

.product-detail__highlight-label {
  grid-row: 2;
  color: rgba(var(--color-text), 0.62);
}

.product-detail__highlight-value {
  grid-row: 1;
  color: rgb(var(--color-text));
  font-weight: 600;
}

@media (max-width: 959px) {
  .product-detail__highlights {
    margin-block-start: 8px;
    padding: 28px 16px 18px;
    border-radius: 16px;
  }

  .product-detail__highlights-heading {
    inset-inline-start: 8px;
    padding-inline: 8px;
  }

  .product-detail__highlights-list {
    flex-wrap: nowrap;
    gap: 8px;
    padding-block-end: 6px;
    overflow: auto hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline proximity;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail__highlights-list::-webkit-scrollbar {
    display: none;
  }

  .product-detail__highlight-item {
    min-height: 68px;
    padding: 12px 16px 12px 54px;
  }

  .product-detail__highlight-icon {
    inset-inline-start: 16px;
  }

  .product-detail__highlight-icon svg {
    width: 28px;
    height: 28px;
  }
}
