.product-card {
    width: 12rem;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    border: 1px solid #d8d8d8;
    border-radius: .5rem;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    padding: .5rem .5rem .5rem .5rem
}

@media (max-width: 463px) {
    .product-card {
        width: 10rem;
    }
}

.product-card:hover {
    background-color: #fff;
    box-shadow: 0rem .5rem .5rem #4001;
    transform: translateY(-.5rem);
    transition: .15s ease-in-out;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: .5rem .5rem 0rem 0rem;
}

.product-card-title {
    margin: .5rem 0rem 0rem 0rem;
    font-size: .9em;
    font-weight: 400;
}

.product-card-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: .75em;
    margin-top: .5rem;
}

@media (max-width: 495px) {
    .product-card-title {
        font-size: .8em;
    }

    .product-card-item {
        margin-top: .25rem;
    }
}

.size-title {
    flex-wrap: wrap;
    /*max-width: 4rem;*/
}

.product-card-item-size-marks-container {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
    justify-content: space-evenly;
}

.product-card-item-title {
    color: #999;
    margin-right: .5rem;
}

.product-card-item-value {
    font-weight: 600;
}

.mark-new {
    display: flex;
    justify-content: center;
    background-color: #fc3fa5;
    color: white;
    border: solid 1px #d52e88;
    border-radius: .5rem;
    font-size: .75em;
    font-weight: bold;
    padding: .25em .5em;
}