*{
    padding:0;
    margin:0;
    box-sizing:border-box;
}

:root{
    --clr-primary:red;
    --clr-sekunder:rgb(255, 255, 255);
}

body{
    background-color:rgb(9, 0, 14);
}

h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
}

h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
}

h6{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: .8rem;
}

/* WEB-HEAD */

.web-head{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color:var(--clr-primary);
    margin-top:10px;
}

.title-web{
    letter-spacing: .3em;
    margin-left:0.3em;
}

.sub-title-web{
    color:var(--clr-sekunder);
    border-top:1px solid white;
    border-bottom:1px solid white;
    padding:5px 10px;
    margin-top:-10px;
}

/* WEB-HEAD END */





/* CONTAINER */

.container{
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding:10px 40px;
    gap:50px;
    height: 65vh;
}

.content{
    width: 100%;
    color:white;
}

.content h6{
    margin: 5px 10px 15px 10px;
    color:rgb(191, 191, 191);
    text-transform: capitalize;
}

.content h6 span{
    color: white;
}

.categorys{
    width: 100%;
    height: 30px;
    display: flex;
    gap:10px;
    margin-top: 5px;
    overflow-x: scroll;
}

.categorys::-webkit-scrollbar{
    height: 0px;
}

.categorys button{
    width: fit-content;
    padding:0px 20px;
    border-radius:20px;
    border:1px solid white;
    background-color:transparent;
    color:white;
    transition:.3s linear;
}

.categorys button:hover{
    background-color: white;
    color:black;
    font-weight: 500;
}

.categorys button.activeCate{
    background-color: white;
    color:black;
    font-weight: 500;
}

.content-main{
    background-color:rgb(0, 0, 0);
    border:1px solid white;
    width: 100%;
    height: 60vh;
    margin:20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding:15px;
    gap: 10px;
    row-gap: 15px;
    overflow-y: scroll;
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(3, 1fr);
}

.content-main::-webkit-scrollbar{
    width: 3px;
}

.content-main::-webkit-scrollbar-thumb{
    background-color: var(--clr-primary);
}

.content-main::-webkit-scrollbar-track{
    background-color: var(--clr-sekunder);
}

.card-item{
    background-color: rgba(44, 44, 44, 0.4);
    height: 240px;
    position: relative;
    padding:0;
    margin: 0px;
}

.img-card-item{
    background-color: brown;
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-card-item img{
    width: 100%;
}

.information-card-item{
    text-transform:capitalize ;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    margin:2px 5px;
}

.footer-card-item{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0px 15px;
    position: absolute;
    color: var(--clr-primary);
    bottom: 0;
    padding: 4px 15px;
    height: fit-content;
    align-items: center;
    font-size: 1.6em;
}

.footer-card-item button{
    background-color: transparent;
    font-size: 1em;
    border:none;
    color: white;
    cursor: pointer;
}

.footer-card-item button:hover i{
    color: var(--clr-primary);
}

.content-side{
    width: 100%;
    padding: 5px 10px;
}

.content-side h2{
    color: white;
}

.content-side .items-count{
    color:rgb(172, 170, 170);
}

.content-side .items-onOrders{
    width: 100%;
    height: 40vh;
    padding: 20px;
    overflow-y: scroll;
}

.content-side .items-onOrders::-webkit-scrollbar{
    width: 0px;
}

.content-side .items-onOrders .item{
    background-color: rgb(26, 26, 26);
    color: white;
    margin: 10px 0px;
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 5px;
    padding:5px;
    position: relative;
}

.content-side .items-onOrders .item .img-item{
    background-color: beige;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.content-side .items-onOrders .item .img-item img{
    height: 100%;
}

.content-side .items-onOrders .item .item-price{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    width: 55%;
}

.content-side .items-onOrders .item .item-price span{
    color: rgb(173, 173, 173);
    font-size: .8em;
}

.content-side .items-onOrders .item button{
    position: absolute;
    height: fit-content;
    width: fit-content;
    background-color: transparent;
    border:1px solid var(--clr-primary);
    color: var(--clr-primary);
    right: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-side .items-onOrders .item button i{
    transition: .3s linear;
    font-size: 1.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    background-color: transparent;
    border-radius: 50%;
    height: 30px;
}

.content-side .items-onOrders .item button i:hover{
    background-color: var(--clr-primary);
    color: black;
}

.content-side .estimate-pay{
    color: white;
    padding: 10px 15px;
    margin-top: 20px;
    background-color: rgb(26, 26, 26);
    border-radius: 5px;
}

.content-side .estimate-pay div{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(173, 173, 173);
    font-size: .8em;
    margin: 6px 0px;
}

.content-side .estimate-pay div p:nth-child(2){
    color:white;
    font-size: 1.1em;
}

.content-side .pay-now{
    background-color: var(--clr-primary);
    color: white;
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5em;
    width: 100%;
    margin-top: 10px;
    height: 60px;
    transition: .3s linear;
    cursor: pointer;
}

.content-side .pay-now:hover{
    background-color: rgb(8, 186, 8);
}

/* CONTAINER END */

/* Smartphone */
@media screen and (max-width:767px) {
    .container{
        grid-template-columns: 1fr;
        padding: 10px 20px;
        margin-top: 20px;
    }

    .content-main{
        margin: 10px auto;
        grid-template-columns: 1fr;
        padding: 0px;
        border-radius: 0px;
        width: 90%;
        gap:10px;
        margin-top: 20px;
    }

    .content-side .items-onOrders{
        padding: 0px;
    }
}


/* Tablets */
@media screen and (min-width:768px) and (max-width:1023px) {
    .container{
        grid-template-columns: 2fr 1fr;
        padding: 20px;
        margin: 0px;
        gap:20px;
    }
    .content-main{
        grid-template-columns: repeat(2, 1fr);
        padding: 0px;
        gap:10px;
        margin: 20px 0px;
    }
    .content-side .items-onOrders{
        padding: 0px;
    }
}

/* Leptop */
@media screen and (min-width:1024px) and (max-width:1439px){
    .container{
        grid-template-columns: 3fr 1.5fr;
    }
    .content-side .items-onOrders{
        padding: 0px;
    }
}