@media only screen and (max-width: 768px) {
    .bottom-blog .col {
        width: 100% !important;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 1094px) {
    .mobile-bottom-bar {
        z-index: 1 !important;
    }

    .system-modal-left .collapse .collapse .q-item__section--avatar {
        margin-right: -15px !important;
    }

    .q-item__section--side {
        padding-right: 0px !important;
        min-width: 26px !important;
    }

    .q-item__section--side > .q-avatar {
        width: 24px !important;
    }

    .system-modal-left .collapse .q-item__section--main {
        padding-left: 4px !important;
    }

    .system-modal-left .collapse .collapse .q-item__section--main {
        padding-left: 10px !important;
    }
}

div.sidebar-main div.bar {
    overflow: hidden !important;
}

div.sidebar-main div.sidebar-dropdown a {
    transition: none;
}

.nav-dropdown .subnav {
    padding-top: 1px !important;
}

.nav-dropdown .nav-close {
    margin-bottom: 40px !important;
}

.q-item-sub-icon{
    margin-right:-15px
}
.q-item__section--side {
    position: relative !important;
    left: -11px !important;
}





/* /////////////////////////////////////// */
    .categories-btn {
        font-size: 16px;
        padding: 10px 15px;
        font-weight: 600;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
    }

    .custom-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 300px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px #00000026;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .dropdown:hover .custom-dropdown {
        visibility: visible;
        opacity: 1;
    }

    .category-item-wrapper {
        padding: 8px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

    .category-item-wrapper:hover {
        background-color: #fff0f0;
        box-shadow: 0 2px 8px #ff000033;
    }

    .category-item {
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .category-item:hover {
        color: #d10000;
    }

    .submenu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 10px;
        min-width: 250px;
        background: #fffffff2;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px #0000001a;
        border-radius: 10px;
        display: none;
        max-height: 300px;
        overflow-y: auto;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .child-item {
        padding: 6px 10px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .child-item:hover {
        background-color: #fff0f0;
        box-shadow: 0 2px 6px #ff000033;
    }

    .child-item a {
        color: #333;
        transition: color 0.3s ease;
    }

    .child-item:hover a {
        color: #d10000;
    }

