:root {
    --main-bg-color: #E6EEFB;
    --main-darkcolor: rgb(86, 117, 146);
    --main-darkblur03: #05386b55;
    --main-darkblur06: #05386b55;
    --modal-backbody: #d8d8dc99;
    --modal-boxshadow: #c7c7ccb3;
    --table-rowhover: #eaf4ff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Quicksand_Book, Helvetica, sans-serif;
    color: black;
}
.hidden{
    display: none !important;
}
.menubar{
    width: 100%;
    height: 60px;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-around;
    background-color: white;
    box-shadow: 0px 0px 1px 1px var(--main-darkblur03);
    padding: 0 10px;
    z-index: 2;
}
.menu-box{
    display: flex;
    align-items: center;
    gap: 20px;
    input{
        width: 260px;
        padding: 10px;
    }
    a{
        text-decoration: none;
    }
    form{
        display: flex;
        align-items: center;
        button{
            padding: 5px;
        }
    }
}

.menu-button{
    cursor: pointer;
}
.menu-box .trade{
    font-family: Quicksand_Bold;
    font-size: 1.5em;
    margin: 0 10px;
    text-shadow: 2px 2px 1px rgb(189, 189, 189);
} 
.trade img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.menu-box span:nth-child(1){
    font-family: Quicksand_Bold;
    font-size: 1em;
    color: rgb(40, 3, 173);
}
.menu-box span:nth-child(2){
    font-family: Quicksand_Bold;
    font-size: 1em;
    color: orangered;
}
.menu-box .login{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.disabled-link {
    pointer-events: none;
}
.login p{
    font-size: .8em;
    
}
.menu-box .cart{
    position: relative;
    
}
.cart i{
    font-size: 2em;
    cursor: pointer;
}
.cart b{    /*  */
    width: 2em;
    height: 2em;
    font-size: 0.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 190, 0);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top:-5px;
    right: -5px;
    
}
.cart .empty{
    opacity: 0;
}
.categbar{
    width: 100%;
    height: 70px; 
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    width: 60px;
    height: 60px;
    img{
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }
}

.categories{
    width: calc(80% - 60px);
    height: 70px;
    overflow-x: auto;
    padding: 0 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    
    a{
        text-decoration: none;
        font-weight: bold;
        font-size: large;
        white-space: nowrap;
    }
    a:hover{
        border-bottom: 1px solid grey;
    }
}

.categories::-webkit-scrollbar{
    width: 7px;
    height: 7px;
    background-color: transparent;
    border: 1px solid grey;
}
  
.categories::-webkit-scrollbar-thumb{
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background-color: rgb(182, 197, 212);
       
}
.pad{
    /* width: 100%; */
    margin: 15px 0;
    .title{
       text-align: center;
        font-size: larger;
        font-weight: 600;
    }
    /* .content{
        
    } */
    .content .subtitle{
        text-align: start;
        font-size: large;
        font-weight: normal;
    }
    .content section{
        padding: 5px;
        margin: 10px 0;
        /* text-align: center; */
    }
    .content p{
        margin: 10px;
    }
    .title, .subtitle, p{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
}


.whatsup{
    
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: wurotate 6s linear infinite;
    a{
        width: 100%;
        height: 100%;
        img{
            width: 100%;
            height: 100%;
        }
    }

}
@keyframes wurotate {
 0%{
    transform: rotate(0deg);
   }
25%{
    transform: rotate(360deg);
   }
50%{
    transform: rotate(0deg);
   }
}
.footer{
    width: 100%;
    padding: 10px;
    margin-top: 40px;
    border-top: 1px solid gray;
    background-color: white;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    font-size: .9em;
}
.footlogo{
   display: flex;
   justify-content: center;
   align-items: center;
    img{
        width: 60px;
        height: 60px;
        border-radius: 5px;
    }
}
@media (width < 650px) {
    .menu-box{
        gap: 5px;
    }
   .menubar .center{
    display: none;
   } 
   .categories{
        width: calc(100% - 70px);
        border-bottom: 1px solid gray;
   }
   .footer{
        flex-direction: column;
   }
}