main#main>section {
    padding: 20px;
}

.producto {
    background-color: rgb(255, 237, 219);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.producto figure {
    display: flex;
    background-color: rgba(247, 247, 247, 0.3);
    align-items: center;
    width: 80%;
    padding: 20px;
    max-width: 20em;
}

.producto img {
    width: 100%;
}

.producto>div {
    width: 80%;
    max-width: 20em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.producto>div>* {
    font-size: 1.4em;
    margin: 15px 0px;
}

.producto .price {
    width: 100%;
    margin: 0px;
}


.producto .button {
    width: 100%;
    font-size: 1em;
}

.desc p {
    margin: 12px 5px;
    white-space: pre-wrap;

}


.valoraciones>section{
    margin-bottom: 40px;
}

.valoraciones>div.stars {
    padding: 10px 0px;
    font-size: 1.8em;
    position: relative;
    margin-bottom: 10px;
}


.valoraciones>div.stars>i.fi{
    margin: 0px 5px;
}

.valoraciones>div.stars>span {
    font-size: 0.6em;
    position: absolute;
    top: 10px;
    margin-left: 5px;
}

.valoraciones .valoracion {
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0px 0px 23px 5px rgb(238, 238, 238);
    background-color: white;
    margin: 10px;
}

.valoraciones .valoracion-propia{
    position: relative;
    margin: auto;
}

.valoraciones .valoracion .titulo,
.valoraciones .valoracion .stars {
    font-size: 1.2em;
}

.valoraciones .valoracion .titulo {
    font-weight: bold;
}

.valoraciones .valoracion .desc {
    padding: 7px 0px;
    white-space: pre-line;
}

.valoraciones .valoracion:not(:nth-last-of-type(1)) {
    border-bottom: 1px rgb(212, 212, 212) solid;
}

.valoraciones #mostrar-mas{
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    background-color: white;
    margin: 15px auto;
}

.valoraciones #mostrar-mas i{
    position: relative;
    margin-left: 5px;
    top: 3px;
}



.valoraciones form>h3{
    font-size: 1.5em;
}

.valoraciones form>div{
    font-size: 1.8em;
    display: block;
    margin: 10px 0px;
    width: fit-content;
}

.valoraciones form>div button{
    border: none;
    background-color: white;
    display: inline-block;

}

.valoraciones form>textarea{
    width: 100%;
    height: 300px;
    min-height: 300px;
    max-width: 100%;
    min-width: 100%;
    font-size: 1.15em;
    padding: 20px;
    
}

.valoraciones form .button{
    margin: 20px auto;
    display: block;
}





@media screen and (min-width: 768px) {
    /* .producto figure {
        max-width: 22em;
    }

    .producto>div {
        max-width: 22em;
    } */

    .producto-info {
        width: 100%;
    }

    main#main>section {
        padding: 20px 25px;
    }

}

@media screen and (min-width: 1200px) {
    .producto {
        flex-direction: row;
        justify-content: center;
    }

    .producto>div{
        margin-left: 30px;
    }
    
    .valoraciones section{
        display: flex;
        flex-wrap: wrap;
    }

    .valoraciones .valoracion{
        width: 48%;
    }

    .valoraciones .valoracion:nth-last-of-type(2){
        border: 0px;
    }
}