:root {
    --primary-color: #535a61;
    --accent-color: #a88959;
    --background-color: #dad3ce;
    --text-color: #2c2e32;
    --neutral-color: #83807b;
    --accent-color-alpha-8: rgba(168, 137, 89, 0.8);
    --accent-color-alpha-2: rgba(168, 137, 89, 0.2);

    --gold: #ffb338;
    --light-shadow: #77571d;
    --dark-shadow: #3e2904;
}
/*-- COMPONENT --*/
.productsListingWrap{
    padding: 50px 0;
}
.productItemBox{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #eee;
    margin-bottom: 20px;
}
.card__img{
    width: 220px;
    height: 220px;
    height: auto;
    padding: 3rem 0;
    transition: .5s;
    object-fit: cover;
}
.card__img img{
    width: 110%;
    height: 110%;
    object-fit: cover;
/*    height: auto;*/
}
.card__name{
    position: absolute;
    left: -25%;
    top: 0;
    width: 3.5rem;
    height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    background-color: var(--text-color);
    color: var(--background-color);
    font-weight: bold;
    transition: .5s;
    padding: 0 15px;
    text-transform: uppercase;
}
.card__precis{
    width: 100%;
    transition: .5s;
    text-align: center;
}
.card__preci{
    display: block;
    text-align: center;
    font-size: var(--h3-font-size);
    font-weight: bold;
}
.card__preci--before{
    font-size: var(--smaller-font-size);
    color: var(--text-color);
    margin-bottom: .25rem;
    height: 48px;
}
.card__preci--now{
    font-size: var(--h3-font-size);
    font-weight: bold;
}
/*Move left*/
.productItemBox:hover{
    box-shadow: 0 .5rem 1rem #D1D9E6;
}
.productItemBox:hover .card__name{
    left: 0;
}
.productItemBox:hover .card__img{
    transform: rotate(30deg);
    margin-left: 3.5rem;
}
.productItemBox:hover .card__precis{
    margin-left: 3.5rem;
    padding: 0 1.5rem;
}