/* ==========================================================
   LUXARA - MENU MOVIL HOME
========================================================== */

@media screen and (max-width: 820px) {

    body.home-menu-open {
        overflow: hidden !important;
    }

    .header .menu-mobile {
        position: relative;
        z-index: 5100;

        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        margin-left: auto;

        color: #ffffff;
        font-size: 25px;
        line-height: 1;

        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .header .nav {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        left: auto !important;

        z-index: 5000 !important;

        width: min(88vw, 390px) !important;
        height: 100vh !important;
     

        margin: 0 !important;
        padding: 0 26px 32px !important;

        display: block !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        background: #070b10 !important;

        box-shadow: -20px 0 55px rgba(0, 0, 0, 0.38);

        transform: translate3d(105%, 0, 0) !important;
        visibility: hidden !important;

        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.42s ease !important;
    }

    .header .nav.is-open {
        transform: translate3d(0, 0, 0) !important;
        visibility: visible !important;
    }

    .home-mobile-menu-head {
        width: 100%;
        min-height: 82px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .home-mobile-menu-head img {
        width: 126px;
        height: auto;
        display: block;
    }

    .home-menu-close {
        width: 42px;
        height: 42px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        background: transparent;

        color: #ffffff;

        font-family: Arial, sans-serif;
        font-size: 34px;
        font-weight: 200;
        line-height: 1;

        cursor: pointer;
    }

    .header .nav > a {
        width: 100% !important;

        margin: 0 !important;
        padding: 22px 2px !important;

        display: block !important;

        border-bottom: 1px solid rgba(255, 255, 255, 0.10);

        color: rgba(255, 255, 255, 0.88) !important;

        text-decoration: none;
        text-transform: uppercase;

        font-size: 13px !important;
        line-height: 1.2;
        font-weight: 600;

        letter-spacing: 0.7px;
    }

    .header .nav > a:hover,
    .header .nav > a:focus {
        color: #ff6800 !important;
    }

    .home-menu-overlay {
        position: fixed;
        inset: 0;

        z-index: 4900;

        background: rgba(0, 0, 0, 0.62);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);

        transition:
            opacity 0.32s ease,
            visibility 0.32s ease;
    }

    .home-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media screen and (min-width: 821px) {
    .home-mobile-menu-head,
    .home-menu-overlay {
        display: none !important;
    }
}
