.product-card-list-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-card-outer-wrapper{
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
}

.product-card-list-wrapper .product-card{
    padding: var(--spacing-l);
    display: flex;
    flex-direction: column;
    background-color: var(--color-lightgray);
    position: relative;
}

.product-card-list-wrapper .product-card .new-product-badge{

    position: absolute;
    top: var(--spacing-l);
    right: var(--spacing-l);
    background-color: var(--color-yellow);
    font-size: 38px;
    line-height: 51px;
    text-transform: uppercase;
    border-radius: 100%;
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.product-card-list-wrapper .product-card .product-title {
    padding: 12px;
    background-color: #ffffff;
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: flex-start;
    margin-bottom: var(--spacing-ml);
}
.product-card-list-wrapper .product-card .product-image {
    text-align: center;
    justify-content: center;
    display: flex;
    height: 472px;
    align-items: center;
    /* align-content: center; */
}

/* TODO

     transform: scale(0.6, 0.6);
    transform-origin: top;
}

     */

.product-card-list-wrapper .product-card .product-image img {
    max-height: 100%;
}
.product-card-list-wrapper .product-card .product-price{
    font-size: var(--price-font-size);
    line-height: var(--price-line-height);
    font-family: var(--unineue-regular);
}
@media (max-width: 480px) {

    .product-card-list-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: column;
    }

    .product-card-outer-wrapper {
        width: calc(100vw - 72px);
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .product-card-list-wrapper .product-card .product-image {
        text-align: center;
        justify-content: center;
        display: flex;
        height: auto;
        align-items: center;
        /* align-content: center; */
    }

    .product-card-list-wrapper .product-card .new-product-badge{

        position: absolute;
        top: var(--spacing-l);
        right: var(--spacing-l);
        background-color: var(--color-yellow);
        font-size: 21px;
        line-height: 28px;
        text-transform: uppercase;
        border-radius: 100%;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;

    }

}
@media (min-width: 480px) and (max-width: 850px) {

    .product-card-list-wrapper .product-card .product-image {
        text-align: center;
        justify-content: center;
        display: flex;
        height: 290px;
        align-items: center;
        /* align-content: center; */
    }

    .product-card-list-wrapper .product-card .new-product-badge{

        position: absolute;
        top: var(--spacing-l);
        right: var(--spacing-l);
        background-color: var(--color-yellow);
        font-size: 21px;
        line-height: 28px;
        text-transform: uppercase;
        border-radius: 100%;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .product-card-outer-wrapper {
        width: calc(50% - 8px);
        display: flex;
        flex-direction: column;
    }

}
@media (min-width: 851px) and (max-width: 1318px){



    .product-card-list-wrapper .product-card .product-image {

        height: clamp(18.125rem, -2.534rem + 38.841vw, 29.438rem);

    }

}

@media (min-width: 551px) and (max-width: 850px){

    .product-card-list-wrapper .product-card .product-image {

        height: clamp(12.188rem, 1.246rem + 31.773vw, 18.125rem);

    }

}
@media (min-width: 851px) and (max-width: 1200px){



    .product-card-list-wrapper .product-card .new-product-badge {
        position: absolute;
        top: var(--spacing-l);
        right: var(--spacing-l);
        background-color: var(--color-yellow);
        font-size: clamp(1.313rem, -1.278rem + 4.871vw, 2.375rem);
        line-height: clamp(1.75rem, -1.755rem + 6.59vw, 3.188rem);
        text-transform: uppercase;
        border-radius: 100%;
        width: clamp(4rem, -3.62rem + 14.327vw, 7.125rem);
        height:clamp(4rem, -3.62rem + 14.327vw, 7.125rem);
        display: flex;
        align-items: center;
        justify-content: center;
    }

}
