.products__wrapper {
  position: relative;
  background: var(--background-primary);
}

.products__wrapper--padding-top {
  padding-top: var(--padding-top-mobile, 0);
}

.products__wrapper--padding-bottom {
  padding-bottom: var(--padding-bottom-mobile, 0);
}

.products__container {
  position: relative;
  z-index: 1;
}

.products__top {
  text-align: center;
}

.products__tag-image {
  margin: 0 auto 8px;
}

.products__tag-image-placeholder {
  width: auto;
  left: 50%;
  transform: translate(-50%, 0);
}

.products__list {
  display: flex;
  padding-top: 18px;
}

.products__list > .product-card {
  max-width: var(--slide-width-mobile);
}

.products__buttons {
  text-align: center;
  padding-top: 38px;
  margin-bottom: calc(-1 * var(--button-margin-bottom));
}

.products__background-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.products__background {
  max-width: none;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.products__wrapper--with-background .carousel:before,
.products__wrapper--with-background .carousel:after {
  display: none;
}

@media (min-width: 992px) {
  .products__title {
    font-size: var(--font-size-h2);
  }

  .products__list {
    padding-top: 25px;
  }

  .products__list > .product-card {
    max-width: var(--slide-width);
  }
}

@media (min-width: 1200px) {
  .products__wrapper--padding-top {
    padding-top: var(--padding-top, 0);
  }

  .products__wrapper--padding-bottom {
    padding-bottom: var(--padding-bottom, 0);
  }
}
