/* Product Card Component */
.product-card {
    /* height: 100%;  */
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}
.product-card__image-wrapper {
    width: 100%;
    margin: 0 auto;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.featured-products__item .product-card__image-wrapper .wishlist-button-add.wishlist-button-product,
.products article .wishlist-button-add.wishlist-button-product {
    position: absolute;
    padding: 0;
    margin: 0;
    border: unset;
    right: 6%;
    top: 4%;
    background-color: unset;
    border-radius: 50px;
    /* border: 2px solid var(--main-color, #9A101D); */
    box-shadow: unset;
}


.product-card__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    border: 1px solid var(--Filets-clairs, #EBEBEB);
    padding: 13px;
}

.product-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    margin: 0;
    text-align: center;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 30px;
    color: var(--text-color, #323232);
    font-family: var(--main-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 100% */
}

.product-card__title-link {
    color: inherit;
    text-decoration: none;
    min-height: 40px;
    place-content: center;
}

.product-card__action {
    text-align: center;
    margin-top: auto;
}
.product-card__image-wrapper .product-card__link.no-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    padding: 13px;
    border: 1px solid var(--Filets-clairs, #EBEBEB);
    background-color: #fff;
}
.product-card__image-wrapper .product-card__link.no-image img.no-image {
    object-fit: none;
    padding: 0;
    background-color: #EBEBEB !important;
    height: 100%;
}
@media (max-width: 480px){
    .product-card__title {
        font-size: 15px;
        line-height: 15px;
    }
    .product-card__image-wrapper .product-card__link.no-image img.no-image {
        height: fit-content;
    }
    .product-card__image-wrapper .product-card__link.no-image {
        height: fit-content;
    }
    
}
@media (max-width: 400px){
    .product-card__title-link {
        min-height: 80px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1280px) and (orientation: landscape) { 
    .product-card__image-wrapper .product-card__link.no-image img.no-image {
        height: auto;
    }
    .product-card__image-wrapper .product-card__link.no-image {
        height: auto;
    }
    
}