/* =========================================================
   AUTO PRODUCT CATEGORY MENU
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

.tn-auto-product-category-root {
    position: relative;
}


/* =========================================================
   CATEGORY ITEM
   ========================================================= */

.tn-auto-product-category {
    position: relative;
}


/* =========================================================
   CATEGORY LINK
   ========================================================= */

.tn-auto-product-category > .tn-category-link {
    position: relative;
    display: block;
}


/* =========================================================
   TOGGLE BUTTON
   ========================================================= */

.tn-category-toggle {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;

    background: transparent !important;

    padding: 0 !important;
    margin: 0 !important;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    position: absolute;

    top: 0;
    right: 0;

    width: 45px;
    height: 45px;

    z-index: 20;
}


/* =========================================================
   ICON
   ========================================================= */

.tn-category-toggle-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    font-size: 22px;
    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   SUBMENU
   ========================================================= */

.tn-category-submenu {
    list-style: none;

    margin: 0;
    padding: 0;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 850px) {

    /*
     * Không cần collapse button desktop
     */

    .tn-category-toggle {
        display: none !important;
    }


    /*
     * Category root
     */

    .tn-auto-product-category-root {
        position: relative;
    }


    /*
     * Submenu
     */

    .tn-auto-product-category
        > .tn-category-submenu {

        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        min-width: 250px;

        margin: 0;
        padding: 0;

        background: #fff;

        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.12);

        z-index: 9999;
    }


    /*
     * Hover cấp 1
     */

    .tn-auto-product-category:hover
        > .tn-category-submenu {

        display: block;
    }


    /*
     * Category có con
     */

    .tn-auto-product-category {
        position: relative;
    }


    /*
     * Submenu cấp 2+
     */

    .tn-auto-product-category
        .tn-auto-product-category
        > .tn-category-submenu {

        top: 0;
        left: 100%;
    }


    /*
     * Hover submenu cấp sâu
     */

    .tn-auto-product-category
        .tn-auto-product-category:hover
        > .tn-category-submenu {

        display: block;
    }


    /*
     * Link
     */

    .tn-auto-product-category
        > .tn-category-link {

        padding: 10px 15px;
    }


    /*
     * Hover
     */

    .tn-auto-product-category
        > .tn-category-link:hover {

        background: #f5f5f5;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 849px) {

    /*
     * Root
     */

    .tn-auto-product-category-root {
        width: 100%;
    }


    /*
     * Category
     */

    .tn-auto-product-category {
        width: 100%;
    }


    /*
     * Link
     */

    .tn-auto-product-category
        > .tn-category-link {

        display: block;

        padding-top: 10px;
        padding-bottom: 10px;

        padding-left: 15px;
        padding-right: 50px;
    }


    /*
     * Toggle
     */

    .tn-category-toggle {

        display: flex !important;
    }


    /*
     * SUBMENU MẶC ĐỊNH ĐÓNG
     */

    .tn-auto-product-category
        > .tn-category-submenu {

        display: none !important;

        width: 100%;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden;
    }


    /*
     * Khi mở
     */

    .tn-auto-product-category.tn-category-open
        > .tn-category-submenu {

        display: block !important;
    }


    /*
     * Category con cấp 2
     */

    .tn-auto-product-category
        .tn-auto-product-category
        > .tn-category-link {

        padding-left: 30px;
    }


    /*
     * Category con cấp 3
     */

    .tn-auto-product-category
        .tn-auto-product-category
        .tn-auto-product-category
        > .tn-category-link {

        padding-left: 45px;
    }


    /*
     * Category con cấp 4
     */

    .tn-auto-product-category
        .tn-auto-product-category
        .tn-auto-product-category
        .tn-auto-product-category
        > .tn-category-link {

        padding-left: 60px;
    }


    /*
     * Category con cấp 5+
     */

    .tn-auto-product-category
        .tn-auto-product-category
        .tn-auto-product-category
        .tn-auto-product-category
        .tn-auto-product-category
        > .tn-category-link {

        padding-left: 75px;
    }


    /*
     * Icon
     */

    .tn-category-toggle-icon {
        transition: transform 0.2s ease;
    }


    /*
     * Khi mở
     */

    .tn-auto-product-category.tn-category-open
        > .tn-category-toggle
        .tn-category-toggle-icon {

        transform: rotate(180deg);
    }
}


/* =========================================================
   MOBILE SIDEBAR FLATSOME
   ========================================================= */

@media (max-width: 849px) {

    /*
     * Đảm bảo submenu của chúng ta
     * không bị Flatsome override
     */

    .off-canvas
        .tn-auto-product-category
        > .tn-category-submenu {

        display: none !important;
    }


    .off-canvas
        .tn-auto-product-category.tn-category-open
        > .tn-category-submenu {

        display: block !important;
    }
}