*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
    font-family: "Poppins", sans-serif;
}

.main{
    background-color: #dad5d5;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart{
    background-color: #fff;
    border-radius: 8px;
    height:45vh;
    width: 90vh;
    display: flex;
}

aside{
    height: 45vh;
    width: 13vh;
}

aside ul{
    padding:3px;
}

aside ul li{
    cursor: pointer;
    list-style:none;
    height:12vh;
    margin: 3px;
}

aside ul li:hover{
    border:2px solid rgb(36, 21, 236);
    border-radius: 5px;
}


img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.preview{
    height:45vh;
    width:45vh;
}

.preview img{
    border-radius: 7px;
    padding: 11px;
    border: 1px solid rgba(0, 0, 0, 0.575);
}

.abt{
    height:45vh;
    width:32vh;
}

.abt h2{
    text-align: center;
    padding: 5px;
}

.abt p{
    font-size: 12px;
    text-align: center;
    padding: 5px;
}

.description{
    height:24vh;
    width: 100%;
}

.price{
    height: 7vh;
    display: flex;
}

.price .old ,
.new{
    margin-left:13px
}

.price h4{
    color: gray;
    text-decoration: line-through;
}

.btn{
    padding: 13px;
    text-align: center;
    height:14vh ;
    display: flex;
    flex-direction: column;
}

.btn h4{
    font-size: 15px;
}

.btn i{
    padding-left: 9px;
}

.btn button{
    height: 2em;
    background-color: rgb(6, 103, 248);
    border: none;
    border-radius: 4px;
    color:wheat;
    cursor: pointer;
}

button:hover{
    border:1px solid rgb(32, 17, 17)
}