/* =========================================================
   PRODUCTS MEGA MENU
========================================================= */

.mega-menu {

    position: fixed;

    top: 90px;
    left: 0;

    width: 100%;
    height: calc(100vh - 90px);

    display: none;

    z-index: 99999;

}


.mega-menu.active {

    display: block;

}


/* =========================================================
   BACKGROUND
========================================================= */

.mega-overlay {

    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

}


/* =========================================================
   WRAPPER
========================================================= */

.mega-wrapper {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1500px;

    height: 100%;

    margin: 0 auto;

    padding: 45px 45px 70px;

    box-sizing: border-box;

    overflow-y: auto;

}


/* =========================================================
   CONTENT GRID
========================================================= */

.mega-products-content {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 90px;

    row-gap: 38px;

}


/* =========================================================
   CATEGORY
========================================================= */

.mega-category {

    min-width: 0;

}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.mega-category-title {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

}


.mega-category-title a {

    color: #222;

    text-decoration: none;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.4;

    transition: color .2s ease;

}


.mega-category-title a:hover {

    color: #00c91b;

}


.mega-bullet {

    color: #222;

    font-size: 18px;

}


/* =========================================================
   PRODUCTS
========================================================= */

.mega-category-products {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 40px;

    row-gap: 9px;

    padding-left: 18px;

}


.mega-product-link {

    color: #666;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;

    transition:
        color .2s ease,
        transform .2s ease;

}


.mega-product-link:hover {

    color: #00c91b;

}


/* =========================================================
   PRODUCTS ACTIVE
========================================================= */

.bozz-nav-list > li.mega-open > a {

    color: #00c91b;

}


/* =========================================================
   BODY
========================================================= */




/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1401px) {

    .mega-wrapper {

        padding-left: 70px;

        padding-right: 70px;

    }

}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .mega-products-content {

        column-gap: 50px;

    }

    .mega-category-products {

        column-gap: 25px;

    }

}


/* =========================================================
   1000px
========================================================= */

@media (max-width: 1000px) {

    .mega-products-content {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .mega-menu {

        top: 75px;

        height: calc(100vh - 75px);

    }


    .mega-wrapper {

        padding: 30px 25px 50px;

    }


    .mega-products-content {

        grid-template-columns: 1fr;

        row-gap: 30px;

    }


    .mega-category-products {

        grid-template-columns: 1fr 1fr;

        padding-left: 15px;

    }

}