.products-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 141px;
  background-color: var(--new-product-page-background-color);

  @media(max-width: 800px) {
    padding-top: 121px;
  }
}

.products-main-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  box-sizing: border-box;
  max-width: 1440px;

  @media(max-width: 1500px) {
    padding: 0 60px;
    max-width: 1320px;
  }

  @media(max-width: 800px) {
    padding: 0 20px;
  }
}

#products-category-navigation {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 70px;
  border-bottom: 1px solid var(--dark-font-color);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: var(--page-background-color); */
  
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  @media(max-width: 800px) {
    top: 50px;
  }
}

#products-category-navigation a {
  font-family: PP Neue Montreal;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-right: 40px;
    @media(max-width: 800px) {
margin-right: 20px;
font-size: 14px;
    }
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

#products-category-navigation a:last-child {
  margin-right: 0;
}

#products-category-navigation .active-category-link {
  padding: 6px 0;
  border-bottom: 1px solid var(--dark-font-color);
}

#products-category-navigation .active-category-link:hover {
  border-bottom: 1px solid var(--dark-font-hover-color);
}

.products-about-section {
  width: 100%;
  min-height: 810px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  @media(max-width:1200px) {
    min-height: 600px;
    background-position: center right;
  }

  @media(max-width:600px) {
    min-height: 375px;
  }
}


@media(max-width: 1000px) {
  .products-about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
}

.products-about-section-wrapper {
  width: 100%;
  padding: 120px;
  max-width: 1440px;
  box-sizing: border-box;
  z-index: 2;

  @media(max-width:1200px) {
    padding: 120px 60px;
  }

  @media(max-width:600px) {
    padding: 60px 20px;
  }
}

.products-about-section h2 {
  color: var(--white);
  font-family: PP Neue Montreal;
  font-size: 50px;
  font-weight: 500;
  max-width: 590px;
  margin-bottom: 40px;

  @media(max-width:600px) {
    font-size: 34px;
    letter-spacing: 0.68px;
    font-weight: 400 !important;
  }
}

.products-about-button {
  max-width: 282px;

  @media(max-width:600px) {
    width: 100%;
    max-width: unset;
  }
}

.products-questions-section {
  padding: 120px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--light-gray-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid var(--dark-font-color);

  @media(max-width: 1200px) {
    padding: 120px 60px;
  }

  @media(max-width: 800px) {
    padding: 60px 20px;
  }
}

.products-questions-wrapper {
  width: 100%;
  max-width: 794px;
}

.products-questions-header {
  font-size: 34px;
  letter-spacing: 0.68px;
  text-align: center;
  margin-bottom: 40px;
}

.products_questions_button {
  margin-top: 45px;
}

.products-page .woocommerce-notices-wrapper {
  display: none;
}

.products-page{
overflow: hidden;
}

/* new product list */

.products-page .product-list + .product-list {
  padding-top: 0;
}

.products-page .product-list .product-list-header h2 {
  text-align: left;
	padding-left:120px;
}

.home-questions-section.products-variant {
  background-color: white;
}

.products-reviews {
  width: 100%;
  background-color: var(--gray-blue-background-color);
}

.products-page .part-articles-section {
  border-top: 1px solid var(--dark-font-color);
  border-bottom: 1px solid var(--dark-font-color);
}