.product-slider {
  overflow: hidden;

  &:has(.product-slider__list:empty) {
    display: none;
  }

  .product-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 4px;
    flex-direction: column;

    @media screen and (min-width: 1000px) {
      margin-bottom: 24px;
      flex-direction: row;
    }
  }

  .product-slider__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .product-slider__item {
    list-style: none;
    padding: 0;
  }

  .product-slider__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 140%;
    text-align: center;
    color: var(--text-color-1);
    font-family: var(--heading-font-family);

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

  .product-slider__container {
    position: relative;

    .swiper-button-prev {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) rotate(180deg);

      @media screen and (min-width: 1000px) {
        left: 26px;
      }
    }

    .swiper-button-next {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);

      @media screen and (min-width: 1000px) {
        right: 26px;
      }
    }

    .swiper-button-disabled {
      opacity: 0;
    }
  }

  .slider-container {
    position: relative;
  }

  product-recommendations {
    .product-slider__header {
      justify-content: center;

      .product-slider__title {
        font-size: 30px;

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