.product-list-container {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 10px 0 30px;
}
.product-list-container .product-heading h2 {
  font-size: 1.6rem;
  margin-top: unset !important;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .product-list-container .product-heading h2 {
    font-size: 1.4rem;
  }
}
.product-list-container .product-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-list-container .product-list-wrap .content-product-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-list-container .product-list-wrap .content-product-list {
    display: block;
  }
}
.product-list-container .product-list-wrap .content-product-list .product-list {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .product-list-container .product-list-wrap .content-product-list .product-list {
    margin-bottom: 20px;
  }
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-image {
  flex: 0 0 140px;
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-image figure {
  margin: unset;
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-details .product-name p {
  text-transform: uppercase;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  margin-top: unset !important;
  font-family: unset !important;
  margin-bottom: unset !important;
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-details .product-description p {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin-top: 5px !important;
  font-family: unset !important;
  margin-bottom: 5px !important;
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-details .product-price {
  margin-top: 10px;
}
.product-list-container .product-list-wrap .content-product-list .product-list .product-details .product-price span {
  font-size: 0.9rem;
  font-weight: 600;
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link a {
  text-decoration: none;
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link a span {
  border: 1px solid #000;
  padding: 6px 14px;
  display: inline-block;
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  align-items: center;
  transition: 0.3s ease;
  font-family: VogueAvantGarde, helvetica, sans-serif;
}
@media screen and (max-width: 768px) {
  .product-list-container .product-list-wrap .content-product-list .product-shop-link a span {
    display: block;
    text-align: center;
  }
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link a span:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link a span:hover .icon-arrow path {
  fill: #fff;
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link a span .icon-arrow {
  transform: rotate(-45deg);
}
.product-list-container .product-list-wrap .content-product-list .product-shop-link a span .icon-arrow path {
  transition: 0.3s ease;
}/*# sourceMappingURL=product-item-list.css.map */