.product-category__product-description {
  display: none;
}
.product-category__product-description p {
  font-size: 0.8em;
}
.product-category__product-description.active {
  display: block;
}
.product-category {
  margin-bottom: var(--spacing);
}
.product-category h2 {
  margin-bottom: 0;
}
.product-category .product-category__product:last-of-type {
  border-bottom: none;
}
.product-category .button_to {
  display: inline-block;
}
.product-category__product-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 4rem 5rem;
  grid-column-gap: 2rem;
}
.product-category__product {
  padding-bottom: calc(var(--spacing) / 4);
  border-bottom: 2px solid #f3f3f3;
  padding-top: calc(var(--spacing) / 4);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 4rem 5rem;
}
.product-category__product a {
  color: var(--primary-alt);
}
.product-category__product a:hover {
  color: #4a8ac2;
}
.product-category__product.in-stock a {
  color: var(--tertiary);
}
.product-category__product.in-stock a:hover {
  color: var(--tertiary-alt);
}
.product-category__product figure {
  max-width: 4rem;
  margin: 0;
  padding: 0;
}
.product-category__product figure > div {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.product-category__product figure img {
  max-height: 5.5rem;
}
.product-category__product figure .content {
  display: flex;
  align-items: center;
  border: 2px solid #f3f3f3;
  justify-content: center;
}
.product-category__product h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.product-category__product p {
  margin: 0;
}
@media (min-width: 1024px) {
  .product-category__product h3 {
    line-height: 4.3rem;
  }
  .product-category__product > div {
    flex: 1;
  }
  .product-category__product figure {
    min-width: 4.3rem;
    margin-right: var(--spacing);
    margin-bottom: 0;
  }
}
.product-category__product--stock {
  grid-template-columns: 1fr 9rem;
}
@media (min-width: 640px) {
  .product-category__product--stock {
    grid-template-columns: 2fr 1fr 1fr 9rem;
  }
}
.ba-purchasable_product_categories .page-header {
  margin-bottom: 0;
}
.product-category--link:last-of-type {
  border-bottom: none;
}
.product-category--link {
  border-bottom: 2px solid #f3f3f3;
  margin: 0;
}
.product-category--link h3 {
  margin: 0;
}
.product-category--link p {
  margin: 0;
  padding: 0;
}
.product-category--link figure {
  min-width: 4.3rem;
  margin-right: 2rem;
  margin-bottom: 0;
}
.product-category--link > a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: black;
}
@media (min-width: 1024px) {
  .product-category--link > a {
    align-items: center;
  }
}
@media (max-width: 640px) {
  #product-catalogue .product-category__product {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #product-catalogue figure,
  #product-catalogue figure .content,
  #product-catalogue figure .content img {
    max-height: 4rem;
  }
  #product-catalogue .product-category .button_to {
    font-size: 1.4rem;
  }
  #product-catalogue .product-category-listing h3 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1em;
  }
  #product-catalogue .product-category-listing p {
    font-size: 1.4rem;
  }
}
