*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

.wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.wrapper .img{
    margin: 30px;
    width: 30%;
}

.wrapper .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper .info{
    width: 25%;
    margin: 30px;
    height: 85%;
    color: #444;
}

.info h2,p,.size,.qty{
    padding: 15px 10px;
}

.info h2{
    font-size: 35px;
    font-weight: 900;
}

.info p{
    font-size: 22px;
}

.talle{
    width: 100%;
}

.talle .select{
    display: flex;
    height: 55px;
    border: 1px solid #444;
    padding: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.talle .option-list{
    position: relative;
    padding: 20px;
    margin-top: 2px;
    background: #fff;
    border: 1px solid #444;
    display: none;
}

.talle.click .option-list{
    display: block;
}

.option-list .option{
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 10px;
    align-items: center;
}

.option-list .option:hover{
    background: #ebebeb;
}

.qty input{
    padding: 10px;
    width: 80px;
    outline: none;
    font-size: 22px;
}

.cart button{
    width: 300px;
    height: 40px;
    cursor: pointer;
    background: #fff;
    margin-right: 5px;
}

.cart .i{
    display: flex;
    align-items: center;
    width: 40px;
    height: 35px;
    font-size: 30px;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

.cart.liked i{
    color: red;
}

.buy button{
    margin-top: 10%;
    height: 55px;
    width: 100%;
    font-size: 20px;
    background: #222;
    color: #fff;
    cursor: pointer;

}

