article.content-product {
  background-color: var(--white-color);
  color: var(--primary-color);
  position: relative;
  cursor: pointer;
}
article.content-product .stretched-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: auto;
}
article.content-product .product-thumbnail {
  overflow: hidden;
}
article.content-product .product-thumbnail img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
article.content-product figure.product-thumbnail {
  overflow: hidden;
}
article.content-product:hover .product-thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
article.content-product .content-product-wrap {
  padding: var(--spacing-2) var(--spacing-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
article.content-product .content-product-wrap .entry-header {
  padding-bottom: 0;
}
article.content-product .content-product-wrap .entry-header figure {
  margin-top: calc(var(--spacing-2) * -1);
  margin-left: calc(var(--spacing-2) * -1);
  margin-right: calc(var(--spacing-2) * -1);
}
article.content-product .content-product-wrap .entry-header figure img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
article.content-product .content-product-wrap .ribbons-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
article.content-product .content-product-wrap .ribbons-wrapper span {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  font-style: normal;
  font-weight: 400;
  padding: 4px 12px;
  line-height: normal;
  text-transform: uppercase;
}
article.content-product .content-product-wrap .ribbons-wrapper .onsale {
  color: var(--white);
  background: var(--red-color);
}
article.content-product .content-product-wrap .entry-content {
  padding-bottom: var(--spacing-2);
}
article.content-product .content-product-wrap .entry-content .woocommerce-loop-product__title {
  color: var(--blue-grey-color);
  font-size: var(--font-size-large);
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}
article.content-product .content-product-wrap .entry-content h2 {
  color: var(--Gray-400, #5B6C86);
  font-family: "warchal serif";
  font-size: var(--font-size-large);
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  margin: 0;
  padding: 0;
}
article.content-product .content-product-wrap .entry-content p {
  margin-top: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-small-medium);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
article.content-product .content-product-wrap .entry-content .price {
  color: var(--primary-color);
  font-size: var(--font-size-medium);
  font-style: normal;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}
article.content-product .content-product-wrap .entry-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  height: 35px;
}
article.content-product .content-product-wrap .entry-footer .price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 110px;
}
article.content-product .content-product-wrap .entry-footer .price-wrapper .from {
  font-size: var(--font-size-small-medium);
  font-family: var(--font-family-base);
  color: var(--primary-color);
  padding-right: 5px;
}
article.content-product .content-product-wrap .entry-footer .price-wrapper .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
article.content-product .content-product-wrap .entry-footer .price-wrapper .price del {
  padding-right: 5px;
  margin-bottom: 1px;
}
article.content-product .content-product-wrap .entry-footer .price-wrapper .price del span {
  font-size: var(--font-size-xs);
}
article.content-product .content-product-wrap .entry-footer span {
  color: var(--08, #101820);
  font-family: var(--font-family-base);
  font-size: var(--font-size-medium);
  font-style: normal;
  font-weight: 700;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1.2;
  /* 160% */
}
article.content-product .content-product-wrap .entry-footer a {
  font-size: var(--font-size-small-medium);
  font-family: var(--font-family-base);
  padding: 8px 16px;
}
article.content-product.product-type-variable .price .amount {
  padding-left: 5px;
}

body.archive {
  background: #F5F5F5;
}

.archive main {
  background: #F5F5F5;
}
.archive main h1 {
  color: var(--primary-color);
  margin: 0;
}
.archive main h2 {
  color: var(--primary-color);
  font-size: var(--font-size-x-large);
  margin: 0;
}
.archive main .products.columns-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: ;
  grid-template-columns: repeat(var(--columns), 1fr);
  margin-top: var(--spacing-2);
  margin-bottom: var(--spacing-3);
  grid-gap: var(--spacing-2);
  padding: 0;
}
@media (max-width: 1199.98px) {
  .archive main .products.columns-4 {
    -ms-grid-columns: 1fr var(--spacing-2) 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 999.98px) {
  .archive main .products.columns-4 {
    -ms-grid-columns: 1fr var(--spacing-2) 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 689.98px) {
  .archive main .products.columns-4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive main .woocommerce-products-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.archive main .woocommerce-products-header .term-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 43%;
}
.archive main .woocommerce-products-header .term-description p {
  color: var(--primary-color);
  font-size: var(--font-size-medium);
  text-align: right;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (max-width: 1199.98px) {
  .archive main .woocommerce-products-header .term-description p {
    font-size: var(--font-size-small-medium);
  }
}
@media (max-width: 999.98px) {
  .archive main .woocommerce-products-header .term-description p {
    font-size: var(--font-size-small);
  }
}
@media (max-width: 689.98px) {
  .archive main .woocommerce-products-header .term-description p {
    font-size: var(--font-size-xs);
  }
}
.archive main .product-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: var(--spacing-3);
}
.archive main .product-category a {
  text-decoration: none;
}
.archive main .product-category .subcategory-header {
  margin: var(--spacing-2) 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.archive main .product-category .subcategory-header p {
  color: var(--primary-color);
  font-size: var(--font-size-small-medium);
  max-width: 43%;
  text-align: right;
  margin-top: 0px;
  margin-bottom: 0px;
}
.archive main .product-category .products-in-category {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: ;
  grid-template-columns: repeat(var(--columns), 1fr);
  margin-top: var(--spacing-2);
  margin-bottom: var(--spacing-2);
  grid-gap: var(--spacing-2);
  padding: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .archive main .product-category .products-in-category {
    -ms-grid-columns: 1fr var(--spacing-2) 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 690px) {
  .archive main .product-category .products-in-category {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive main .product-category .products-in-category article.content-product {
  width: 100%;
}
/*# sourceMappingURL=archive-product.css.map */