.section-variation-video-reviews {
  .wrapper {
    width: 100%;
    padding: 20px 0 0 0;
    text-align: center;
    @media screen and (min-width: 990px) {
      padding: 20px 30px 0;
    }
  }
  h2 {
    color: #e69d72;
    text-align: center;
    font-family: Arboria-Bold;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 111%; /* 88.8px */
    margin: 0;
    strong {
      color: #73453d;
    }

    p {
      margin: 12px 0 54px;

      @media screen and (max-width: 989px) {
        margin: 0 30px 54px;
      }
    }

    @media screen and (min-width: 1280px) {
      font-size: 80px;
      max-width: 1200px;
      margin: 0 auto;
    }
  }
  .carousel {
    width: 90%;
    margin: 0 auto;
  }

  .video-container {
    position: relative;
    padding: 0;
    height: 100%;
    background: #000;
  }

  .video-container video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    display: block;
    border: none;
    padding: 0;
    background-color: transparent;
    transition:
      transform 0.2s ease,
      outline 0.2s ease;

    svg {
      width: 50px;
      height: 50px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }

  .youtube-icon:focus-visible {
    outline: 3px solid #73453d;
    outline-offset: 4px;
    transform: translate(-50%, -50%) scale(1.1);
    border-radius: 50%;
  }

  .swiper-scrollbar-drag {
    display: block !important;
    background-color: #73453d;
    border-radius: 100px;
    height: 7px;
    top: -3px;
    cursor: pointer;
  }

  .navigation-panel {
    display: flex;
    align-items: center;
    margin-top: 1.7rem;
    margin-bottom: 2rem;
    gap: 3.7rem;
    position: relative;
    height: 40px;
    padding: 0 50px 0 0;
    max-width: 1380px;

    @media screen and (min-width: 990px) {
      margin-top: 3.7rem;
      margin-bottom: 2rem;
      padding: 0;
    }

    .swiper-button-wrap {
      gap: 2.5rem;
      height: 100%;
      display: flex;
      align-items: center;
      flex-flow: nowrap;
    }

    .swiper-button-next,
    .swiper-button-prev {
      &:after,
      &::before {
        display: none;
      }
      position: static;
      width: 35px;
      height: 35px;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .swiper-scrollbar {
      position: static;
      height: 1px;
      border-radius: 100px;
      background: #c7b5b1;
    }
  }

  .swiper {
    @media screen and (max-width: 989px) {
      padding-left: 30px;
    }
  }

  .swiper-wrapper {
    height: 430px;

    .swiper-slide {
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
    }
  }
}

.product-video-block {
  &.pause {
    ~ button .icon-video-play {
      display: block;
    }
    ~ button .icon-video-pause {
      display: none;
    }
  }

  &.playing {
    ~ button:hover {
      .icon-video-pause {
        display: block;
      }
    }
    ~ button .icon-video-play {
      display: none;
    }
    ~ button .icon-video-pause {
      display: none;
    }
  }
}
