
/* ----- Product Section ----- */
.product {
    display: inline-block;
    padding: 2.5em 0;
    min-width: 30%;
    /*background-color: #ddd;*/
    margin: auto auto auto 2rem;
    /*box-shadow: inset -6px -6px 0px 5px #fd4540;*/
    /*box-shadow: inset -6px -6px 4px 1px #fd4540;*/
    border-radius: 0px 10px 10px 10px;
    transition: box-shadow 0.25s ease-in-out;

    /*background-color: #3e3e3e;*/
    box-shadow: inset -4px -4px 0px 0px #fd4540;
    background-image: url('/img/low-poly-bg-2.png');
    background-size: cover;
    background-repeat: repeat;
    background-color: #e8e5e5;

}
.product-center{
    text-align: center;
    & .product__photo{
        & .photo-container {
            left: unset;
            & .photo-main{
                & img {
                    float: none;
                }
            }
        }
    }
    & .product__info{
        & .title{
            & h1 {
                margin-left: 0;
            }
        }
    }
}
.product-wide{
    width: 98%;
}
/* ----- Photo Section ----- */
.product__photo {
    position: relative;
}

.photo-container {
    position: relative;
    left: -2.5em;
}

.photo-main {
    border-radius: 6px 6px 0 0;


    & img {
        filter: saturate(150%) contrast(120%) hue-rotate(10deg) drop-shadow(1px 20px 10px rgba(0, 0, 0, 0.3));
        border: 20px solid #fdfdfd;
        box-shadow: 4px 4px 25px -2px rgba(0, 0, 0, 0.3);
        float: left;
        margin-bottom: 1rem;
    }
}
.photo-main-center{
    text-align: center;
    & img {
        float: none;
    }
}


/* ----- Informations Section ----- */
.product__info {
    padding: 0.8em 0;
}

.title {
    & h1 {
        margin-bottom: 0.1em;
        color: #202020;
        font-size: 1.5em;
        font-weight: 900;
        margin-left: 2rem;
    }
}

.description {
    margin: 2em 2em 0;
}



