.variation-ingredients-section {
  .variation-ingredients-slider__heading {
    text-align: center;
    color: #e69d72;
    text-align: center;
    font-family: Arboria-Bold;
    font-size: 40px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 0;

    @media screen and (max-width: 760px) {
      margin-top: 0;
    }
    p {
      margin: 0;
    }
    em {
      color: #73453d;
      font-size: 50px;
      @media screen and (min-width: 990px) {
        font-size: 70px;
      }
    }
    em:nth-child(2) {
      font-size: 40px;
      @media screen and (min-width: 990px) {
        font-size: 70px;
      }
    }

    @media screen and (min-width: 990px) {
      font-size: 70px;
      max-width: 1100px;
      text-align: center;
      margin: 0 auto 2rem;
    }
  }

  .variation-ingredients-slider__blocks {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
  }

  .variation-ingredients-slider__block {
    flex: 0 0 auto;
    text-align: center;
  }

  .slick-slider {
    margin: 0;
  }

  .slick-list {
    padding: 0 !important;
  }

  .slick-track {
    padding: 0;
    display: flex;
    align-items: center;
    min-height: 360px;

    @media screen and (min-width: 990px) {
      padding: 70px 0;
    }
  }

  .slick-slide {
    text-align: center;

    .image-wrap {
      display: flex;
      align-items: center;
      justify-self: center;
      position: relative;
      cursor: pointer;

      img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        transition: all 0.3s ease-in-out;
      }
    }

    .variation-ingredients-slider__image {
      opacity: 1;
      &.active-image {
        opacity: 0;
        visibility: hidden;

        @media screen and (max-width: 760px) {
          max-width: 360px;
          height: auto;
        }
      }
    }

    /* active slide image */
    &.slick-current {
      .variation-ingredients-slider__image {
        opacity: 0;
        &.active-image {
          opacity: 1;
          visibility: visible;
        }
      }
    }
  }

  .slider-content {
    position: relative;
    min-height: 150px;
    margin: 0 0 30px;
    @media screen and (min-width: 990px) {
      margin: 0;
    }

    .arrow-wrap {
      position: absolute;
      top: -44%;
      width: 100%;
      @media screen and (min-width: 990px) {
        top: 0;
      }

      button {
        width: 35px;
        height: 35px;
        z-index: 1;
        &:before {
          display: none;
        }
      }

      .slick-disabled {
        opacity: 0.3;
        pointer-events: none;
      }
      .slick-prev {
        top: 10px;
        left: 0px;
      }

      .slick-next {
        top: 10px;
        right: 0px;
      }
    }

    .slider-content__item {
      width: 100%;
      position: absolute;
      visibility: hidden;
      opacity: 0;
      transform: translateY(50px);
      transition:
        opacity 0.5s ease,
        transform 0.5s ease;
      &.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slider-content__title {
      text-align: center;
      text-transform: uppercase;
      color: #73453d;
      font-family: Arboria-Black;
      font-size: 22px;
      font-weight: 400;
      line-height: 130%;
      border-bottom: 1px solid #c7b5b1;
      padding-bottom: 2rem;
      margin: 0 0 4rem;
      @media screen and (min-width: 990px) {
        font-size: 32px;
        margin: 0 0 3rem;
      }
    }

    .slider-content__text {
      color: #5e5e5e;
      font-family: Arboria-Book;
      font-size: 18px;
      font-weight: 400;
      line-height: 160%;
      @media screen and (min-width: 990px) {
        font-size: 20px;
      }

      b {
        display: block;
        color: #000;
        font-family: Arboria-Bold;
        font-size: 20px;
        font-weight: 400;
        line-height: 130%;
        margin: 0 0 1rem;

        @media screen and (min-width: 990px) {
          font-size: 24px;
        }
      }
    }
  }

  .variation-ingredients-button-wrap {
    text-align: center;
  }

  .variation-ingredients-button {
    margin: 0rem auto 3rem;
    color: #fff;
    font-family: Arboria-Bold;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    padding: 2rem 4rem;
    border-radius: 10px;
    background: #e69d72;
    border: 1px solid transparent;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    @media screen and (min-width: 990px) {
      margin: 3rem auto;
    }
    &:hover {
      border: 1px solid #e69d72;
      background-color: transparent;
      color: #e69d72;
    }
  }
}
