.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width:1600px;
	margin:auto;
  }
}



/*--------------------------------------------------------------
# Product One
--------------------------------------------------------------*/
.new-product {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.new-product__single {
  position: relative;
  display: block;
  margin-bottom: 21px;
  margin-left:20px;
}

.new-product__img-box {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.new-product__single:hover .new-product__img-box {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.new-product__img { 
  width:360px;
  height:360px;
  position: relative;
  display: block;
  border: 1px solid #ece9e0;
  border-radius: var(--agrion-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
}
.new-product__img img {	
  width:360px;
  height:360px;
  border-radius: var(--agrion-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.new-product__single:hover .new-product__img img {
  transform: scale(1.05);
}

.new-product__sale {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 56px;
  height: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--agrion-white);
  background-color: var(--agrion-base);
  border-radius: 10px;
}

.new-product__img-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg) scale(0);
  transition: all 500ms ease;
  z-index: 2;
}

.new-product__single:hover .new-product__img-icon {
  transform: rotate(0deg) scale(1);
  transition-delay: 200ms;
}

.new-product__img-icon a {
  position: relative;
  height: 70px;
  width: 70px;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--agrion-black);
  background-color: var(--agrion-primary);
  border-radius: 50%;
  transition: all 500ms ease;
}

.new-product__img-icon a:hover {
  background-color: var(--agrion-base);
  color: var(--agrion-white);
}

.new-product__content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.new-product__rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-product__rating i {
  font-size: 11px;
  color: var(--agrion-primary);
}

.new-product__rating i+i {
  margin-left: 4px;
}

.new-product__title {
  max-width:360px;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px; 
  margin-top: 8px;
  margin-bottom: 1px;
}

.new-product__title a {
  color: var(--agrion-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration:none;
}

.new-product__title a:hover {
  color: #598f34;
}

/*--------------------------------------------------------------
# New Product Two
--------------------------------------------------------------*/
.new-product-two {
  position: relative;
  display: block;
}

.new-product-two .section-title {
  margin-bottom: 36px;
}

.new-product-two__top {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.new-product-two__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.new-product-two__filter.style1 li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.new-product-two__filter.style1 li+li {
  margin-left: 30px;
}

.new-product-two__filter.style1 li .filter-text {
  position: relative;
  display: inline-block;
  color: var(--agrion-gray);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
}

.new-product-two__filter.style1 li .filter-text:before {
  position: absolute;
  bottom: 3px;
  left: -4px;
  right: -4px;
  content: "";
  height: 2px;
  background-color: var(--agrion-primary);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;  
}

.new-product-two__filter.style1 li:hover .filter-text:before,
.new-product-two__filter.style1 li.active .filter-text:before {
  transform: scale(1, 1);
  transform-origin: right center; 
  background: gold;
}

.new-product-two__filter.style1 li:hover .filter-text,
.new-product-two__filter.style1 li.active .filter-text {
  color: var(--agrion-black);

}

