product-featured-tab-content {
  display: block;
  max-width: 1440px;
  width: min(95%, 1440px);
  margin: 5.5rem auto 0;

  @media (max-width: 1200px) {
    width: 100%;
    max-width: none;
    margin-top: 4rem;
    padding: 0 20px;
  }

  & .product-featured-tab-content--nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;

    @media (max-width: 1200px) {
      justify-content: flex-start;
      gap: 5px;
      flex-wrap: wrap;
    }

    & button {
      flex: 1 0 20%;
      min-width: 0;
      padding: 15px 5px;
      border: 1px solid transparent;
      background-color: #ededed;
      scroll-snap-align: start;

      @media (max-width: 1200px) {
        flex: 1;
        min-width: 0;
        white-space: normal;
      }

      &.active-tab {
        background-color: white;
        border-color: black;
      }

      & span {
        font-size: 20px;
        font-family: "Paris Sans";

        @media (max-width: 1200px) {
          font-size: 16px;
        }
      }
    }
  }

  & .product-featured-tab-content--tab {
    display: none;
    padding: clamp(3rem, 8vw, 7rem) 0;

    &.active-tab {
      display: block;
    }
  }

  & .product-featured-tab-content--tab-content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    max-width: min(80%, 1120px);
    width: 100%;
    margin: 0 auto;
    gap: clamp(2rem, 5vw, 6rem);

    @media (max-width: 1200px) {
      max-width: none;
      grid-template-columns: minmax(0, 1fr) minmax(140px, 0.85fr);
      align-items: start;
    }

    @media (max-width: 767px) {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  & .product-featured-tab-content--copy,
  & .product-featured-tab-content--media {
    width: 100%;
    min-width: 0;
  }

  & .product-featured-tab-content--copy h2 {
    font-family: "VeryVogue" !important;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 3rem;

    @media (max-width: 1200px) {
      margin-bottom: 2rem;
    }
  }

  & .product-featured-tab-content--copy p,
  & .product-featured-tab-content--copy li {
    font-size: 16px;
    font-family: "Titling Gothic Regular";

    @media (max-width: 1200px) {
      font-size: 14px;
    }
  }

  & .product-featured-tab-content--copy ul {
    list-style: disc;
    padding-left: 2rem;

    & li {
      padding-bottom: 2rem;

      @media (max-width: 1200px) {
        padding-bottom: 1rem;
      }
    }
  }

  & .product-featured-tab-content--media img {
    display: block;
    width: 100%;
    height: auto;
  }

  @media (max-width: 767px) {
    & .product-featured-tab-content--media {
      order: -1;
    }
  }

  & .product-featured-tab-content--copy details {
    border-bottom: 1px solid black;

    &[open] .product-featured-tab-content--chevron-icon {
      transform: rotate(180deg);
    }
  }

  & .product-featured-tab-content--copy details summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    font-family: "Paris Sans";
    font-size: 24px;
    font-weight: bold;
    padding: 1.5rem 0;

    @media (max-width: 1200px) {
      font-size: 18px;
    }
  }

  & .product-featured-tab-content--chevron-icon {
    transition: transform 0.5s;
  }

  & .product-featured-tab-content--copy details > div {
    padding-bottom: 1rem;
  }
}
