.product-cards-by-selection-block__heading h2 {
  margin-bottom: 0;
}

.product-cards-by-selection-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-cards-by-selection-block .products-grid {
    justify-content: center;
    gap: 10px 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .product-cards-by-selection-block .products-grid {
    justify-content: flex-start;
  }
}
.product-cards-by-selection-block .products-grid.is-loading {
  position: relative;
  opacity: 0.6;
}
.product-cards-by-selection-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-cards-by-selection-block .product-card {
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  width: 328px;
  max-width: 100%;
}
@media only screen and (min-width: 576px) {
  .product-cards-by-selection-block .product-card {
    flex-direction: column;
    row-gap: 0;
    width: 360px;
  }
  .product-cards-by-selection-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-cards-by-selection-block .product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 133/134;
  width: 133px;
  height: auto;
  flex-shrink: 0;
}
@media only screen and (min-width: 576px) {
  .product-cards-by-selection-block .product-card__image {
    width: 288px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.product-cards-by-selection-block .product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s ease-in-out;
}
.product-cards-by-selection-block .product-card__img--placeholder {
  background: linear-gradient(135deg, #F5F5F5 0%, #D9D9D9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-cards-by-selection-block .product-card__img--placeholder::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23C1C1C1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3e%3ccircle cx='9' cy='9' r='2'/%3e%3cpath d='m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.product-cards-by-selection-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-cards-by-selection-block .product-card__content {
    padding: 0 20px 20px 20px;
  }
}
.product-cards-by-selection-block .product-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.product-cards-by-selection-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: 768px) {
  .product-cards-by-selection-block .product-card__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.product-cards-by-selection-block .product-card__brand {
  color: #7F7F7F;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.product-cards-by-selection-block .product-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 5px;
}
@media only screen and (min-width: 576px) {
  .product-cards-by-selection-block .product-card__buttons {
    flex-direction: row;
    gap: 10px;
  }
}
.product-cards-by-selection-block .product-card__btn {
  width: 100%;
  font-size: 16px;
  padding: 8px 12px;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .product-cards-by-selection-block .product-card__btn {
    width: auto;
    flex: 1;
  }
}
.product-cards-by-selection-block .product-card__btn.btn--outline-dark::after {
  background-color: #000000;
}
.product-cards-by-selection-block .product-card__btn.btn--outline-dark:hover {
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}
.product-cards-by-selection-block .product-card__btn.btn--outline-dark:hover::after {
  background-color: #E24A02;
}
.product-cards-by-selection-block .product-card:hover .product-card__img {
  transform: scale(1.074);
}

/*# sourceMappingURL=product-cards-by-selection-style.css.map */
