.product-highlights-section {
  display: flex;
  flex-direction: column;
  gap: var(--global-item-gap);
  @media screen and (min-width: 990px) {
    padding-right: 0;
  }
  @media screen and (max-width: 989px) {
    .section-content-header {
      width: 100%;
      text-align: left;
      align-items: flex-start;
    }
  }

  .highlights-content-container {
    display: flex;
    gap: var(--global-col-gap-lg);
    align-items: flex-start;
    gap: 80px;
    max-width: 100%;
    overflow-x: hidden;
    @media screen and (min-width: 990px) {
      padding: 40px 0px 40px 10%;
    }

    @media screen and (max-width: 989px) {
      gap: 20px;
      flex-direction: column;
    }

    @media screen and (max-width: 768px) {
      padding: 0;
    }
  }

  .highlights__wrapper {
    flex: 0 0 45%;

    @media screen and (max-width: 989px) {
      flex: 0 0 100%;
      min-width: auto;
      width: 100%;
    }

    svg.icon-minus {
      display: none;
    }

    .highlight-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;

      .icon-plus,
      .icon-minus {
        height: 42px;
        width: 42px;
        min-width: 42px;
        background: var(--brand-blue);
        border-radius: 100%;
        color: var(--brand-white);
        padding: 10px;
      }
    }

    .accepted-answer {
      max-height: 0;
      overflow: hidden;
    }

    .highlight-copy {
      p {
        margin: 0;
      }
    }

    details,
    .accordion-row {
      border-bottom: var(--toggle-border-width) solid var(--toggle-bg-stroke);

      padding: var(--toggle-pad) 0;
      &:first-of-type {
        padding-top: 0;
      }

      &:hover {
        cursor: pointer;
      }

      @media screen and (max-width: 768px) {
        border-bottom: 0;
        position: relative;
      }

      &:after {
        @media screen and (max-width: 768px) {
          content: "";
          position: absolute;
          width: 95%;
          bottom: 0;
          height: 1px;
          background: #e4dfdc;
        }
      }

      &:first-of-type {
        .highlight-title {
          padding-top: 0;
        }
      }

      &:last-of-type {
        border-bottom: none;
      }
      &[open],
      &.open {
        .highlight-title {
          margin-bottom: var(--toggle-gap);
          .icon-caret {
            rotate: -180deg;
            color: var(--toggle-icon-fill-active);
          }
        }
        svg.icon-plus {
          display: none;
        }
        svg.icon-minus {
          display: block;
        }
      }
    }
  }

  .product-wrapper {
    overflow-x: hidden;
    max-width: 100%;
    height: 100%;
    position: sticky;
    top: 0;
    width: 100%;
    .card-product-container {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      gap: var(--global-grid-gap);
      scroll-snap-type: x mandatory;
      padding-bottom: var(--global-item-gap);
      -webkit-overflow-scrolling: touch;

      scroll-snap-type: x mandatory;
      &::-webkit-scrollbar {
        height: 8px;
      }
      &::-webkit-scrollbar-track {
        background-color: var(--brand-grey-light);
        border-radius: 10px;
        margin-right: var(--global-sect-pad-x-sm);
      }
      &::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: var(--brand-black);
        width: 50%;
      }

      .product_card {
        background: var(--card-bg-fill);
        border-radius: var(--card-border-rad);
        scroll-snap-align: start;
        &:last-child {
          margin-right: var(--global-sect-pad-x-sm);
        }
        @media screen and (max-width: 989px) {
          flex: 0 0 50%;
        }
        @media screen and (max-width: 768px) {
          flex: 0 0 100%;
        }
        a.snug-text-container {
          display: flex;
          flex-direction: column;
          width: 100%;
          gap: 10px;
        }
        .product_card--container {
          display: flex;
          flex-direction: column;
          gap: 15px;
          min-width: 400px;
          min-height: 500px;
          padding: 30px;
          align-items: flex-start;

          @media screen and (max-width: 989px) {
            min-height: 420px;
            width: 100%;
            min-width: 0;
          }
        }
        .product_card--image {
          min-height: 275px;
          height: 275px;
          width: 100%;
          @media screen and (max-width: 989px) {
            min-height: 230px;
            height: 230px;
          }

          img {
            object-fit: cover;
          }
        }
        .product_card--content {
          align-items: flex-start;
          .product_card--title {
            color: var(--brand-white);
            font-family: Archivo;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            text-align: left;
            @media screen and (max-width: 989px) {
              font-size: 20px;
            }
          }
          .price * {
            color: var(--brand-white);
            font-family: Questrial;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
          }
        }
        .n-o-button {
          --button-border-width: 2px;
          --button-bg-stroke-default: var(--brand-white);
          color: var(--brand-white);
          font-family: Archivo;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 1.12px;
          &:hover {
            color: var(--brand-black);
            background-color: var(--brand-white);
          }
          &:focus,
          &:focus-visible {
            outline: 2px solid var(--brand-white);
            outline-offset: 2px;
          }
        }
      }
    }
    .card-wrapper {
      flex: 0 0 280px;
      flex-grow: 1;
      height: initial;

      @media screen and (max-width: 768px) {
        flex: 0 0 250px;
      }
    }
  }
}
