

.sidebar {
    width: 220px;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    left: -220px;
    top: 56px;
    transition: all 0.3s ease;
    border-right: 1px solid #ddd;
    z-index: 90;
}


.sidebar_inner{
    height: calc(100% - 55px);
}


.sidebar_body{
    height: calc(100% - 42px);
    overflow-y: scroll;
}
.sidebar_body::-webkit-scrollbar {
  width: 1px;
}
.sidebar_body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px #f3f3f3; 
  border-radius:2px;
}
.sidebar_body::-webkit-scrollbar-thumb {
  background: #8BC34A; 
  border-radius: 10px;
}

/* store_menu tabs */
.store_menu_tab_wrapper{
    border-bottom: 1px solid #f3f3f3;
    padding: 0px 10px;
}
.store_menu_tab{
    padding: 15px 0px;
}
.store_menu_tab a{
    border: 1px solid var(--primary_color);
    width: calc(100% / 3 - 6.33px);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 20px;
    font-weight: 400;
    color: var(--color1);
}
.store_menu_tab a.active{
    background-color: var(--primary_color);
    color: var(--secondary_color);
}

.offers_menu{
    padding: 10px 0px 10px 10px;
    border-bottom: 1px solid #f3f3f3;
}
.sidebar_bottom_menu{
    padding: 10px 0px 10px 10px;
    border-top: 1px solid #f3f3f3;
}
.main_menu{
    padding: 10px 0px 10px 10px;
}


.offers_menu li a,
.main_menu li a,
.sidebar_bottom_menu li a{
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: var(--color1);
} 




/* ====== sidebar  footer ===== */
.sidebar_footer{
    height: 42px;
}
.sidebar_footer .sidebar_footer_inner {
    height: 100%;
    box-shadow: -2px 0px 12px  0px rgba(30,39,46,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar_footer .sidebar_footer_inner a{
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: var(--color1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar_footer .sidebar_footer_inner a:nth-child(1){
    width: max-content;
    padding-right:8px;
    margin-right: 16px;
    border-right: 1px solid rgb(228, 227, 227);
}


.main_contents {
    flex: 1;
    width: 100%;
    transition: all 0.3s ease;
}



/* Desktop & Tablet: Sidebar is always visible */
@media screen and (min-width: 769px) {
    .sidebar {
        left: 0;
    }
    .main_contents {
        width: calc(100% - 220px);
        margin-left: 220px; /* Adjust for sidebar */
    }
}

