* {
    box-sizing: border-box;
}
.product {
    float: left;
    width: 40%;
    border: solid black 1px;
    border-radius: 15px;
    margin-left: 5%;
}
.product ul {
    list-style-type: none;
    float: right;
    border: solid green 1px;
    width: 70%;
}
.product img {
    float: left;
    height: 100px;
    width: 100px;
    border: solid red 1px;          
}            
.product img.ico {
    float: left;
    height: 15px;
    width: 15px;    
}
.product div p {
    border: solid blue 1px;
}
.clear {
    clear: both;
}
.green {
    color: green;
}
.red {
    color: red;
}