.product-category-grid-with-short-description-block {
  /* Categories Grid */
  /* Product Card (for categories) */
}
.product-category-grid-with-short-description-block .product-archive__title {
  padding-top: 15px;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 19px;
  }
}
@media only screen and (min-width: 992px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 23px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 27px;
  }
}
@media only screen and (min-width: 1400px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 31px;
  }
}
@media only screen and (min-width: 1600px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 36px;
  }
}
@media only screen and (min-width: 1800px) {
  .product-category-grid-with-short-description-block .product-archive__title {
    padding-top: 40px;
  }
}
.product-category-grid-with-short-description-block .product-archive__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 30px;
}
.product-category-grid-with-short-description-block .products-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
  height: fit-content;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .products-grid {
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .product-category-grid-with-short-description-block .products-grid {
    justify-content: flex-start;
  }
}
.product-category-grid-with-short-description-block .products-grid.is-loading {
  position: relative;
  opacity: 0.6;
}
.product-category-grid-with-short-description-block .products-grid.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #003060;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.product-category-grid-with-short-description-block .product-card {
  background: white;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  width: 328px;
  max-width: 100%;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card {
    flex-direction: column;
    gap: 20px;
    width: 360px;
  }
  .product-category-grid-with-short-description-block .product-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 82px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: #F5F5F5;
    transition: all 0.2s ease-in-out;
  }
}
.product-category-grid-with-short-description-block .product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 133/134;
  width: 133px;
  height: auto;
  flex-shrink: 0;
  transition: all 0.2s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card__image {
    width: 290px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}
.product-category-grid-with-short-description-block .product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s ease-in-out;
  transform-origin: center bottom;
}
.product-category-grid-with-short-description-block .product-card__img--placeholder {
  background: linear-gradient(135deg, #F5F5F5 0%, #D9D9D9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-category-grid-with-short-description-block .product-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  flex: 1;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card__content {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px 20px 20px;
    gap: 16px;
    flex: 1;
    height: auto;
  }
}
.product-category-grid-with-short-description-block .product-card__text {
  display: block;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card__text {
    display: flex;
    flex-direction: column;
  }
}
.product-category-grid-with-short-description-block .product-card__title {
  margin: 0;
  transition: all 0.2s ease-in-out;
  font-size: 20px;
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: transparent;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card__title {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .product-category-grid-with-short-description-block .product-card__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.product-category-grid-with-short-description-block .product-card__excerpt {
  display: none;
  color: black;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  flex: 1;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card__excerpt {
    display: block;
    font-size: 16px;
    line-height: 20px;
  }
}
.product-category-grid-with-short-description-block .product-card__excerpt p {
  margin: 0;
}
.product-category-grid-with-short-description-block .product-card__cta {
  margin-top: 0;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card__cta {
    margin-top: auto;
  }
}
.product-category-grid-with-short-description-block .product-card__link {
  width: fit-content;
  font-size: 16px;
  border-width: 3px;
  color: #E24A02;
  border-color: #E24A02;
  padding: 2px 7px;
}
.product-category-grid-with-short-description-block .product-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.product-category-grid-with-short-description-block .product-card__link:hover {
  border-color: #000000;
}
.product-category-grid-with-short-description-block .product-card__link:hover::after {
  background-color: #E24A02;
}
@media only screen and (min-width: 576px) {
  .product-category-grid-with-short-description-block .product-card:hover .product-card__image {
    transform: scale(1.07);
  }
}
.product-category-grid-with-short-description-block .product-card:hover .product-card__title {
  color: #E24A02;
  text-decoration-color: #E24A02;
}
.product-category-grid-with-short-description-block .product-card:hover .btn {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.product-category-grid-with-short-description-block .no-products-found {
  grid-column: 1/-1;
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #eee;
}

/*# sourceMappingURL=product-category-grid-with-short-description-style.css.map */
