.orders-page{

width:90%;
margin:60px auto;

}


.orders-page h1{

text-align:center;
font-size:40px;
margin-bottom:40px;

}



.order-card{

background:white;

padding:30px;

margin-bottom:30px;

border-radius:15px;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

}



.status{

padding:6px 15px;

border-radius:20px;

background:#eee;

}


.order-product{
    
    display:flex;
    
    gap:30px;
    
    padding:20px;
    
    margin:20px auto;
    
    width:80%;
    
    background:white;
    
    border-radius:15px;
    
    box-shadow:0 5px 15px #aeaeae;
    
    align-items:center;
    
}




.order-product img{

width:90px;

height:110px;

object-fit:cover;

border-radius:10px;

}



.order-card button{

background:#111;

color:white;

border:none;

padding:12px 25px;

border-radius:8px;

cursor:pointer;

}


.order-card button:hover{

background:#b88a44;

}