div.product{
    margin: 15px auto;
    width: 90%;
    max-width: 400px;
}

div.image{
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5px var(--background_darkest_hover);
}

div.product > p.warning{
    display: block;
    width: max-content;
    width: -moz-max-content;
    max-width: 100%;
    padding: 5px 10px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: var(--red);
    text-align: center;
}

div.product > p.spacer{
    width: 100%;
    height: 1px;
    border-bottom: 2px solid var(--spacer_light);
    margin: 10px auto;
}

div.product > div.price{
    display: block;
    width: max-content;
    width: -moz-max-content;
    margin: 20px auto;
    background-color: var(--background_dark);
    border-radius: 5px;
    padding: 10px 25px;
}

div.product > div.price,
div.product > div.price > span{
    font-size: 18px;
}

div.product > p.label{
    margin: 25px 0 0;
}