@font-face {
    font-family: aviny;
    src: url(../fonts/aviny.ttf);
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: aviny;
    direction: rtl;
}
a {
    color: unset;
    text-decoration: none;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}


body {
    max-width: 799.98px !important;
    margin: 0 auto;
    background: url(../img/food-pattern-final.png), #171717;
    height: calc(100vh - 55px);
    position: relative;
}
.sidebar
{
    width: 20%;
    max-width: 80px;
    height: calc(100vh - 55px);
    background-color: #313131;
    box-shadow: inset 0px 0px 2px 1px #E94E29;
    border-radius: 0px 88px 0px 0px;
    left: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category{
    font-size: 20px;
    font-family: aviny;
    color: #fff;
    margin-top: 50px;
}
.sidebar hr
{
    margin-top: 5px;
    width: 80%;
    height: 3px;
    border-color: #E94E29;
    background-color: #E94E29;
}
.categories
{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.categories .active p
{
    color: #E94E29;
    font-size: 20px;
}
.categories a p
{
    color: #fff;
    font-size: 20px;
}
.products
{
    padding: 20px;
    height: calc(100vh - 55px) !important;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
.products h2
{
    color: #E94E29;
    font-size: 30px;
    font-weight: 200;
}
.products hr{
    width: 60px;
    height: 3px;
    border-color: #E94E29;
    background-color: #E94E29;
    margin-bottom: 15px;
}
.product
{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}
.product img
{
    width: 100px;
    height: 100px;
    border: 2px solid #8F8F8F;
    border-radius: 50px;
}
.product .info
{
    display: flex;
    flex-direction: column;
    width: calc(100% - 160px);
    padding: 15px;
}

.product .info hr
{
    background-color: #8F8F8F;
    border-color: #8F8F8F;
    width: 100%;
    height: 1px !important;
    margin-bottom: 5px !important;
}

.product .info .name
{
    display: flex;
    justify-content: space-between;
}

.product .info .name p
{
    color: #fff;
    font-size: 20px;
}

.product .info .des p
{
    color: #8F8F8F;
    font-size: 15px;
}

.product .info .des {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.product .info .des .icon {
    display: flex;
    gap: 20px;
}

.product .info .des .icon svg:nth-child(1) {
    cursor: pointer;
}

