.product_image {
  .featured_badge {
    position: absolute;
    bottom: 2rem;
    left: 0rem;
    display: flex;
    gap: 0.5rem;

    @media screen and (max-width: 749px) {
      bottom: 16px;
    }

    > * {
      padding: 4px 12px;
    }

    .featured_new_badge {
      background-color: white;
    }

    .tpg_text {
      font-family: var(--font-body-family);
      font-weight: 300;
      font-size: 12px;
      letter-spacing: .02em
    }

    .featured_discount_badge {
      background-color: rgba(194, 86, 81, 1);
      color: rgba(255, 255, 255, 1);

      > * {
        font-weight: 400;
      }
    }
  }
}

.collection .swiper-slide,
.product_card {
  width: 175px;
}

.collection .swiper-wrapper {
  display: flex;
}

.collection .swiper-slide {
  flex: 0 0 auto;
}

.product_card .featured_content,
.featured_content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 16px;

  .product_vendor {
    &.tpg_heading {
      font-family: var(--font-body-family);
      font-weight: 300;
      font-size: 20px;
      letter-spacing: 0.02em;

      @media screen and (max-width: 749px) {
        font-size: 16px;
        line-height: 24px;
      }
    }
  }

  .product_title {
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    opacity: 0.6;
    margin: 4px 0 0;

    @media screen and (max-width: 749px) {
      font-size: 12px;
      max-width: 95%;
    }
  }

  .product_price {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    flex-direction: column;

    .discount {
      color: rgba(194, 86, 81, 1);
      font-weight: 600;
      display: flex;
      align-content: start;
    }

    .price_discounted {
      color: rgba(122, 122, 122, 1);
      font-size: 11px;
      letter-spacing: .02em;
      line-height: 1;
      font-weight: 300;
      opacity: 0.7;
      margin-top: 4px;
      display: block;
    }
  }

  > * {
    text-align: left;
    display: flex;
    margin: 0;
    padding: 0;
  }
}

.product_price {
  span {
    display: flex;
    align-content: start;
  }
}

.image_with_collection_tpg .product_card .product_image img,
.image_with_collection_tpg .product_card .product_image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product_card,
.featured_item {
  position: relative;
  
  .abrwl-button {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 8px;
    right: 8px;

    @media screen and (max-width: 990px) {
      width: 20px;
      height: 18px;
    }
    
    &.abrwl-is-added {
      .icon.icon-heart {
        display: block !important;

        svg {
          path {
            &.heart-outline {
              display: none;
            }
            &.heart-solid {
              display: block !important;
            }
          }
        }
      }
    }
  }
}