
* {
    margin: 0px;
    padding: 0px;
    font-family: 'Noto Kufi Arabic', sans-serif;
    
    }
body {
     display:flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:#ddd;
    direction:rtl;
}




.food{
    position: absolute;
    top:0;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
}
.food button {
    width:60px;
    height:30px;
    top:0;
    position:relative;
    border:none;
    border-radius:10px;
    border-top-right-radius:0;
    border-top-left-radius:0; 
    cursor:pointer;
    font-size:14px;
    font-weight:bold;
    color:orangered;
    background: #fff;
    transition:0.1s;
   
}
.food button::after{
    content: '';
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(53,172,67,1)17.8%, rgba(246,211,96,1)100.2%);
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top:0;
    
}

.food button:active{
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient(circle farthest-corner at 10% 20%, rgba(53,172,67,1)17.8%, rgba(246,211,96,1)100.2%);
    transition:0.5s;
    color:#fff;
}


.header{
    position: absolute;
    top:9%;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    color:#fff;
    background:orangered;
    border-top-left-radius:7px;
    border-bottom-left-radius:4px;
    border-bottom-right-radius:7px;
    -webkit-box-shadow: 0px 0px 10px 0px #000;
    -moz-box-shadow: 0px 0px 10px 0px #000;
    box-shadow: 0px 0px 10px 0px #000;
}
.header:after {
content: ' ';
border: 10px solid transparent;
border-top-color: orangered;
position: absolute;
top: 99%;
left:7%;
    
}
.header h1{
    font-size:16px;
    margin: 2px 10px;
}

.container{
    justify-content: center;
    text-align: center;
    position: absolute;
    width:100%;
    top:20%;
    
}
.product-list{
    width:160px;
    height:210px;
    background: #ddd;
    direction: rtl;
    padding: 0;
    margin: 5px;
    position: relative;
    border-radius: 7px;
    display: inline-block;
     justify-content: center;
    align-items: center;
    border: solid 1px #000;
    -webkit-box-shadow: 0px 0px 10px 0px #003333;
    -moz-box-shadow: 0px 0px 10px 0px #003333;
    box-shadow: 0px 0px 7px 0px #003333;
    
}

.product-list a{
    text-decoration: none;
}
.cod{
    width:70px;
    height:20px; 
    color:#fff;
    background-color: #003333;
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: serif;
    font-size:12px;
    overflow: hidden;
    border-radius: 10px;
    padding: 2px;
   position: absolute;
    left: 24%;
    bottom:5px;
    font-family:'Noto Kufi Arabic' ;
}

.pho{
    width:150px;
    height:150px;
    background: #ddd;
    margin: 5px;
    overflow: hidden;
    position: absolute;
    top:0; 
    border-radius: 2px;
    
}

.pho img{
    width:140px;
    height:140px;
    margin: 5px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 0px 10px 0px #fff;
    -moz-box-shadow: 0px 0px 10px 0px #fff;
    box-shadow: 0px 0px 10px 0px #fff;
}
.details{
    margin: 5px;
    padding: 0;
    background: #eee;
    width:140px;
    height:50px;
    border-radius: 5px;
    position: absolute;
    bottom:0;
    left: 5px;
    
}
.details h2{
    color:#003333;
    font-size: 12px;
    text-align: center;
    font-family:'Noto Kufi Arabic' ;
}


