.product-card {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.product-card .product-card__image {
    position: relative;
}

.product-card .product-card__tag {
    color: #073B4A;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 12px;
    background-color: white;
    border-left: 3px solid #0090bd;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    top: 20px;
    left: 0;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card__tag.petit-budget::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background-size: cover;
    background-image: url('../../assets/img/petit-budget.svg');
}

.product-card__tag.meilleure-vente::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background-size: cover;
    background-image: url('../../assets/img/meilleure-vente.svg');
}

.product-card__tag.le-confort::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background-size: cover;
    background-image: url('../../assets/img/le-confort.svg');
}

.product-card .product-card__image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.product-card .product-card__content__title {
    color: #073B4A;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
}

.product-card .product-card__button {
    font-family: "Poppins", sans-serif;
    color: #073B4A;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #BBCFDB;
    border-radius: 53px;
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
}

.product-card .product-card__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-card .product-card__content p {
    margin-bottom: 0;
}

.product-card .product-card__subtitle {
    font-family: "Poppins", sans-serif;
    color: #4F737D;
    font-size: 11px;
    font-weight: 400;
    text-align: left;
}

.product-card .product-card__reviews {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card .product-card__reviews p {
    color: #4F737D;
    font-size: 11px;
    font-weight: 500;
}

.product-card .product-card__reviews__stars {
    width: 65px;
    height: 12px;
    background: linear-gradient(90deg, gold calc(var(--rating) * 20%), #ddd calc(var(--rating) * 20%));
    -webkit-mask: url('../../assets/img/star.svg') center / 13px repeat-x;
    mask: url('../../assets/img/star.svg') center / 13px repeat-x;
}

@media screen and (min-width: 768px) {
    .product-card {
        min-width: 168px;
        width: 168px;
    }

    .product-card .product-card__image img {
        width: 168px;
        height: 168px;
    }
}