.catalog-h1 {
  width: calc(100% - 96px);
}
.catalog-banner {
  position: relative;
}

.products {
  margin: 150px 0;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  columns: 3;
  gap: 20px;
}
.products-item {
  width: calc((100% - 40px) / 3);
  position: relative;
  margin: 20px 0;
}
.products-item-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem;
  color: #fafafa;
  margin: 32px 0 20px;
  line-height: 1;
  display: inline-block;
  height: 40px;
  overflow: hidden;
}
.products-item-price {
  font-size: 1.25rem;
  margin: 0 0 38px;
}
.products-item-price-old {
  text-decoration: line-through;
}
.products-item-price-new {
  color: #c7e954;
}
.products-item-btn {
  padding: 16px 20px;
  border-radius: 15px;
}
.products-item-more {
  color: #fafafa;
  border: 1px solid #39494c;
  display: inline-block;
}
.products-item-more:hover {
  text-decoration: none;
  border-color: #c7e954;
}
.products-item-to-cart {
  padding: 16px 20px;
  background: #c7e954;
  color: #111111;
  margin: 0 16px;
}
.products-item-to-cart:hover {
  text-decoration: underline;
}
.products-item-discount {
  background: #c7e954;
  padding: 4px 10px;
  border-radius: 15px;
  color: #39494c;
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.25rem;
  z-index: 1;
}
.products-more {
  color: #e8e8e8;
  border-bottom: 1px dashed #e8e8e8;
  padding: 0;
}
.products-more-wrap {
  text-align: center;
  margin: 60px 0;
}

@media (min-width: 1025px) {
  .products-filter-label {
    color: #e8e8e8;
    font-weight: 300;
    position: relative;
    background: #39494c;
    border-radius: 20px;
    padding: 23px 68px 23px 24px;
  }
  .products-filter-label:hover {
    cursor: pointer;
  }
  .products-filter-label:after {
    position: absolute;
    top: 50%;
    right: 24px;
    margin-top: -5px;
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fafafa;
  }
  .products-filter-item {
    position: relative;
    padding: 0 0 0 38px;
    margin: 16px 0;
    line-height: 1;
  }
  .products-filter-item:hover {
    cursor: pointer;
  }
  .products-filter-item:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -11px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
  }
  .products-filter-item.is-active:after {
    content: "";
    width: 9px;
    height: 4px;
    border-left: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: rotate(-45deg);
    margin: -4px 0 0;
  }
  .products-filter-close {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 10px;
    margin: -6px 0 0 0;
  }
  .products-filter-close:before, .products-filter-close:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: #fafafa;
    transform: rotate(45deg);
    top: 4px;
  }
  .products-filter-close:after {
    transform: rotate(-45deg);
  }
  .products-filter-close:hover {
    cursor: pointer;
  }
  .products-filter-items {
    background: #252525;
    padding: 8px 24px;
    border-radius: 20px;
    color: #e8e8e8;
    max-width: 300px;
    display: none;
    margin: 6px 0;
    position: absolute;
    z-index: 2;
  }
  .products-filter-items.is-active {
    display: block;
  }
  .products-filters {
    display: flex;
    gap: 16px;
    justify-self: center;
    margin: 0 0 20px;
  }
  .products-filters-active {
    justify-self: center;
    margin: 20px 0 60px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .products-filters-active-item {
    color: #fafafa;
    padding: 6px 10px 6px 35px;
    position: relative;
    background: #252525;
    display: inline-block;
    border-radius: 15px;
  }
  .products-filters-clear {
    color: #e8e8e8;
    border-bottom: 1px dashed #e8e8e8;
    padding: 0;
    display: none;
    height: 20px;
    margin: 4px 0;
  }
  .products-filters-clear.is-active {
    display: inline-block;
  }
  .products-filters-clear:hover {
    cursor: pointer;
  }
}
@media (max-width: 1024px) {
  .catalog-h1 {
    width: calc(100% - 30px);
  }
  .products {
    margin: 100px 0;
    padding: 0 16px;
  }
  .products-filters-mobile {
    padding: 16px;
    background: #39494c;
    border-radius: 10px;
    width: 100%;
    color: #fafafa;
    margin: 0 0 24px;
    font-size: 0.875rem;
  }
  .products-filters-mobile-arrow {
    background: #c7e954;
    border-radius: 15px;
    width: 42px;
    height: 25px;
    display: inline-block;
    padding: 6px;
    margin: 0 0 0 8px;
  }
  .products-filters-active {
    margin: 16px 0;
  }
  .products-list {
    columns: 2;
    gap: 8px;
  }
  .products-item {
    width: calc((100% - 8px) / 2);
    margin: 5px 0;
  }
  .products-item-title {
    font-size: 0.875rem;
    font-family: "TT Firs Neue", sans-serif;
    line-height: 1.1;
    margin: 12px 0 35px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.2em;
  }
  .products-item-image-img {
    border-radius: 7px;
  }
  .products-item-to-cart {
    background: transparent;
    padding: 0;
    margin: 0;
    float: right;
  }
  .products-item-price {
    font-size: 0.75rem;
    font-family: "Unbounded", sans-serif;
    color: #e8e8e8;
    width: calc(100% - 25px);
    float: left;
    margin: 0;
    line-height: 21px;
  }
  .products-item-price-new, .products-item-price-old {
    width: 100%;
    display: inline-block;
    line-height: 1.1;
    position: relative;
    top: -21px;
  }
  .products-item-price-discount {
    line-height: 1.3;
    position: relative;
    top: -12px;
  }
  .products-item-price-no {
    color: #8c8c8c;
    font-size: 0.625rem;
    font-family: "TT Firs Neue", sans-serif;
  }
  .products-item-discount {
    font-size: 0.625rem;
    top: 6px;
    left: 6px;
    line-height: 1;
    padding: 6px 8px;
  }
  .products-more-wrap {
    margin: 40px 0;
  }
  .products-filters {
    background: #252525;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 10;
    left: -100vw;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
    visibility: hidden;
  }
  .products-filters.is-active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .products-filters-label {
    font-family: "Unbounded", sans-serif;
    font-size: 0.75rem;
    color: #fafafa;
    padding: 19px 16px;
    text-align: left;
  }
  .products-filters-label-svg {
    margin: 0 5px 0 0;
  }
  .products-filters-clear {
    color: #e8e8e8;
    border-bottom: 1px dashed #e8e8e8;
    padding: 0;
    font-size: 0.875rem;
    display: none;
    margin: 40px auto;
    width: 110px;
  }
  .products-filters-clear.is-active {
    display: block;
  }
  .products-filter {
    border-top: 1px solid #525252;
  }
  .products-filter:last-of-type {
    border-bottom: 1px solid #525252;
  }
  .products-filter-label {
    color: #fafafa;
    font-size: 0.875rem;
    padding: 16px;
    width: 100%;
    text-align: left;
  }
  .products-filter-label-qty {
    float: right;
  }
  .products-filter-label-qty-svg {
    margin: 0 0 0 5px;
  }
  .products-filter-items {
    background: #252525;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 1;
    left: -100vw;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
    visibility: hidden;
    padding: 24px;
  }
  .products-filter-items.is-active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .products-filter-items-label {
    padding: 19px 0;
  }
  .products-filter-item {
    position: relative;
    padding: 0 16px 0 38px;
    margin: 16px 0;
    color: #e8e8e8;
    font-size: 0.875rem;
  }
  .products-filter-item:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    margin: -11px 0 0;
  }
  .products-filter-item.is-active:after {
    content: "";
    width: 9px;
    height: 4px;
    border-left: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: rotate(-45deg);
    margin: -4px 0 0;
  }
  .products-fav {
    padding: 0;
    margin: -4px 0 100px;
  }
  .products-fav-slider {
    display: flex;
    flex-direction: column;
  }
  .products-fav-slider .glide__track {
    padding: 0;
  }
  .products-fav-list {
    flex-wrap: nowrap;
    columns: auto;
    gap: 0;
    margin: 0 0 10px;
  }
}
/*# sourceMappingURL=products.css.map */
