/* =========================================================
   MC2 DELIVERY
   NAVBAR
========================================================= */


/* =========================================================
   NAVBAR PRINCIPAL
========================================================= */

.site-navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    box-sizing: border-box;

}


/* =========================================================
   CONTAINER
========================================================= */

.navbar-container {

    display: flex;

    align-items: center;

    gap: 22px;

    width: 100%;

    max-width: 1320px;

    min-height: 72px;

    margin: 0 auto;

    padding: 0 24px;

    box-sizing: border-box;

}


/* =========================================================
   LOGO
========================================================= */

.navbar-logo {

    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    color: #ea1d2c;

    font-size: 22px;

    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

}


.navbar-logo:hover {

    color: #d91827;

}


/* =========================================================
   LINKS
========================================================= */

.navbar-links {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-shrink: 0;

}


.navbar-link {

    display: inline-flex;

    align-items: center;

    min-height: 40px;

    color: #333333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease;

}


.navbar-link:hover {

    color: #ea1d2c;

}


/* =========================================================
   BUSCA
========================================================= */

.navbar-search {

    display: flex;

    align-items: center;

    flex: 1 1 auto;

    min-width: 180px;

    max-width: 420px;

    height: 44px;

    margin-left: auto;

    padding: 0 15px;

    background: #f7f7f7;

    border: 1px solid #eeeeee;

    border-radius: 24px;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.navbar-search:focus-within {

    background: #ffffff;

    border-color: #dddddd;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05);

}


.navbar-search-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    margin-right: 8px;

    font-size: 16px;

}


.navbar-search input {

    width: 100%;

    min-width: 0;

    height: 100%;

    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #222222;

    font-family: inherit;

    font-size: 14px;

}


.navbar-search input::placeholder {

    color: #888888;

}


/* =========================================================
   ENDEREÇO
========================================================= */

.navbar-address {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    min-height: 44px;

    padding: 5px 10px;

    border: 0;

    background: transparent;

    color: #333333;

    font-family: inherit;

    cursor: pointer;

    text-align: left;

    text-decoration: none;

    border-radius: 8px;

}


.navbar-address:hover {

    background: #f7f7f7;

}


.navbar-address-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

}


.navbar-address-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;

}


.navbar-address-text small {

    color: #777777;

    font-size: 11px;

    line-height: 1.2;

}


.navbar-address-text strong {

    max-width: 150px;

    overflow: hidden;

    color: #222222;

    font-size: 13px;

    line-height: 1.3;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* =========================================================
   AÇÕES
========================================================= */

.navbar-actions {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

}


/* =========================================================
   LOGIN
========================================================= */

.navbar-login {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 12px;

    color: #333333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    border-radius: 20px;

    white-space: nowrap;

}


.navbar-login:hover {

    background: #f7f7f7;

    color: #ea1d2c;

}


/* =========================================================
   PERFIL DESKTOP
========================================================= */

.navbar-profile {

    position: relative;

}


.navbar-profile-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 44px;

    padding: 4px 8px 4px 4px;

    border: 0;

    border-radius: 24px;

    background: transparent;

    color: #333333;

    font-family: inherit;

    cursor: pointer;

    transition:
        background 0.2s ease;

}


.navbar-profile-button:hover {

    background: #f7f7f7;

}


/* =========================================================
   AVATAR DESKTOP
========================================================= */

.navbar-profile-avatar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    flex: 0 0 36px;

    overflow: hidden;

    border-radius: 50%;

    background: #ea1d2c;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;

}


.navbar-profile-avatar img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   INICIAIS
========================================================= */

.navbar-profile-avatar-initials {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}


/* =========================================================
   NOME
========================================================= */

.navbar-profile-name {

    max-width: 150px;

    overflow: hidden;

    color: #333333;

    font-size: 13px;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* =========================================================
   SETA
========================================================= */

.navbar-profile-arrow {

    color: #777777;

    font-size: 13px;

    line-height: 1;

}


/* =========================================================
   MENU PERFIL DESKTOP
========================================================= */

.navbar-profile-menu {

    position: absolute;

    top: calc(100% + 10px);

    right: 0;

    z-index: 5000;

    display: none;

    width: 280px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12);

    box-sizing: border-box;

}


.navbar-profile-menu.is-open {

    display: block;

}


/* =========================================================
   HEADER DO MENU DESKTOP
========================================================= */

.navbar-profile-menu-header {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px;

}


.navbar-profile-menu-avatar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    flex: 0 0 44px;

    overflow: hidden;

    border-radius: 50%;

    background: #ea1d2c;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

}


.navbar-profile-menu-avatar img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.navbar-profile-menu-avatar span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}


.navbar-profile-menu-user {

    display: flex;

    flex-direction: column;

    min-width: 0;

    gap: 3px;

}


.navbar-profile-menu-user strong {

    overflow: hidden;

    color: #222222;

    font-size: 14px;

    text-overflow: ellipsis;

    white-space: nowrap;

}


.navbar-profile-menu-user small {

    overflow: hidden;

    color: #777777;

    font-size: 12px;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* =========================================================
   DIVISOR
========================================================= */

.navbar-profile-divider {

    width: 100%;

    height: 1px;

    margin: 6px 0;

    background: #eeeeee;

}


/* =========================================================
   ITEM DO PERFIL
========================================================= */

.navbar-profile-menu-item {

    display: flex;

    align-items: center;

    gap: 12px;

    width: 100%;

    min-height: 44px;

    padding: 0 10px;

    border-radius: 9px;

    color: #333333;

    text-decoration: none;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.navbar-profile-menu-item:hover {

    background: #f7f7f7;

    color: #ea1d2c;

}


.navbar-profile-menu-item span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;

    flex: 0 0 26px;

    font-size: 17px;

}


.navbar-profile-menu-item strong {

    font-size: 13px;

    font-weight: 600;

}


.navbar-profile-logout {

    color: #ea1d2c;

}


.navbar-profile-logout:hover {

    background: #fff4f4;

    color: #d91827;

}


/* =========================================================
   CARRINHO
========================================================= */

.navbar-cart {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 0 15px;

    background: #ea1d2c;

    color: #ffffff;

    border-radius: 22px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.navbar-cart:hover {

    background: #d91827;

    color: #ffffff;

    transform: translateY(-1px);

}


.navbar-cart-icon {

    font-size: 16px;

    line-height: 1;

}


.navbar-cart-text {

    line-height: 1;

}


/* =========================================================
   MOBILE BOTTOM NAV
========================================================= */

.mobile-bottom-nav {

    display: none;

}


/* =========================================================
   BUSCA MOBILE
========================================================= */

.mobile-search-panel {

    display: none;

}


.mobile-search-form {

    display: flex;

    align-items: center;

    gap: 8px;

    width: 100%;

    height: 44px;

    padding: 0 13px;

    background: #f7f7f7;

    border: 1px solid #eeeeee;

    border-radius: 23px;

    box-sizing: border-box;

}


.mobile-search-form span {

    flex-shrink: 0;

    font-size: 16px;

}


.mobile-search-form input {

    width: 100%;

    height: 100%;

    min-width: 0;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    font-family: inherit;

    font-size: 14px;

    color: #222222;

}


/* =========================================================
   PERFIL MOBILE
========================================================= */

.mobile-profile-panel {

    display: none;

}


.mobile-profile-overlay {

    display: none;

}


/* =========================================================
   TABLET / DESKTOP MENOR
========================================================= */

@media (max-width: 1100px) {

    .navbar-container {

        gap: 14px;

    }


    .navbar-links {

        gap: 12px;

    }


    .navbar-search {

        max-width: 300px;

    }


    .navbar-address-text strong {

        max-width: 120px;

    }


    .navbar-profile-name {

        max-width: 100px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .navbar-container {

        min-height: 64px;

        padding: 0 18px;

    }


    .navbar-links {

        display: none;

    }


    .navbar-search {

        max-width: none;

    }


    .navbar-address {

        display: none;

    }


    .navbar-profile-name {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .site-navbar {

        position: sticky;

        top: 0;

        z-index: 1000;

        background: #ffffff;

        box-shadow:
            0 1px 6px rgba(0, 0, 0, 0.05);

    }


    .navbar-container {

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 10px;

        width: 100%;

        min-height: 62px;

        padding: 0 16px;

        box-sizing: border-box;

    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .navbar-logo {

        flex-shrink: 0;

        font-size: 18px;

        font-weight: 800;

    }


    /* -----------------------------------------------------
       LINKS
    ----------------------------------------------------- */

    .navbar-links {

        display: none;

    }


    /* -----------------------------------------------------
       BUSCA DESKTOP
    ----------------------------------------------------- */

    .navbar-search {

        display: none;

    }


    /* -----------------------------------------------------
       ENDEREÇO
    ----------------------------------------------------- */

    .navbar-address {

        display: flex;

        flex: 1;

        align-items: center;

        justify-content: flex-end;

        gap: 7px;

        min-width: 0;

        min-height: 44px;

        padding: 4px 0;

        background: transparent;

        border: 0;

    }


    .navbar-address-icon {

        flex-shrink: 0;

        font-size: 17px;

    }


    .navbar-address-text {

        min-width: 0;

        max-width: 145px;

    }


    .navbar-address-text small {

        display: block;

        font-size: 10px;

        line-height: 1.1;

    }


    .navbar-address-text strong {

        display: block;

        max-width: 145px;

        font-size: 12px;

        line-height: 1.25;

    }


    /* -----------------------------------------------------
       AÇÕES DESKTOP
    ----------------------------------------------------- */

    .navbar-actions {

        display: none;

    }


    /* -----------------------------------------------------
       BOTTOM NAVIGATION
    ----------------------------------------------------- */

    .mobile-bottom-nav {

        position: fixed;

        right: 0;

        bottom: 0;

        left: 0;

        z-index: 2000;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        width: 100%;

        height: 66px;

        padding:
            6px
            8px
            calc(6px + env(safe-area-inset-bottom));

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 -3px 15px rgba(0, 0, 0, 0.08);

        box-sizing: border-box;

    }


    /* -----------------------------------------------------
       ITEM
    ----------------------------------------------------- */

    .mobile-bottom-item {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        width: 100%;

        min-width: 0;

        padding: 4px;

        border: 0;

        outline: 0;

        background: transparent;

        color: #777777;

        font-family: inherit;

        text-decoration: none;

        cursor: pointer;

        -webkit-tap-highlight-color: transparent;

    }


    .mobile-bottom-icon {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 25px;

        height: 25px;

        font-size: 19px;

        line-height: 1;

    }


    .mobile-bottom-label {

        font-size: 10px;

        line-height: 1.2;

        font-weight: 600;

        white-space: nowrap;

    }


    /* -----------------------------------------------------
       FOTO DO PERFIL NA BOTTOM NAV
    ----------------------------------------------------- */

    .mobile-profile-bottom-avatar {

        width: 26px;

        height: 26px;

        overflow: hidden;

        border-radius: 50%;

        background: #ea1d2c;

        color: #ffffff;

        font-size: 10px;

        font-weight: 800;

    }


    .mobile-profile-bottom-avatar img {

        display: block;

        width: 100%;

        height: 100%;

        object-fit: cover;

        border-radius: 50%;

    }


    .mobile-profile-bottom-avatar > span {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        height: 100%;

    }


    /* -----------------------------------------------------
       ITEM ATIVO
    ----------------------------------------------------- */

    .mobile-bottom-item.active {

        color: #ea1d2c;

    }


    .mobile-bottom-item:active {

        transform: scale(0.96);

    }


    /* -----------------------------------------------------
       BUSCA MOBILE
    ----------------------------------------------------- */

    .mobile-search-panel {

        position: fixed;

        top: 62px;

        right: 0;

        left: 0;

        z-index: 1900;

        display: block;

        padding: 10px 16px;

        background: #ffffff;

        border-bottom: 1px solid #eeeeee;

        box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.08);

        transform:
            translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;

        box-sizing: border-box;

    }


    .mobile-search-panel.open {

        transform:
            translateY(0);

        opacity: 1;

        pointer-events: auto;

    }


    .mobile-search-panel-inner {

        width: 100%;

    }


    /* -----------------------------------------------------
       OVERLAY PERFIL
    ----------------------------------------------------- */

    .mobile-profile-overlay {

        position: fixed;

        inset: 0;

        z-index: 2100;

        display: block;

        background: rgba(0, 0, 0, 0.35);

        opacity: 0;

        pointer-events: none;

        transition:
            opacity 0.25s ease;

    }


    .mobile-profile-overlay.open {

        opacity: 1;

        pointer-events: auto;

    }


    /* -----------------------------------------------------
       PAINEL PERFIL
    ----------------------------------------------------- */

    .mobile-profile-panel {

        position: fixed;

        right: 0;

        bottom: 0;

        left: 0;

        z-index: 2200;

        display: block;

        padding: 0;

        background: #ffffff;

        border-radius:
            18px
            18px
            0
            0;

        box-shadow:
            0 -8px 30px rgba(0, 0, 0, 0.15);

        transform:
            translateY(105%);

        transition:
            transform 0.3s ease;

    }


    .mobile-profile-panel.open {

        transform:
            translateY(0);

    }


    .mobile-profile-panel-content {

        padding:
            18px
            16px
            calc(82px + env(safe-area-inset-bottom));

    }


    /* -----------------------------------------------------
       CABEÇALHO PERFIL MOBILE
    ----------------------------------------------------- */

    .mobile-profile-header {

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 12px;

        margin-bottom: 15px;

    }


    /* -----------------------------------------------------
       USUÁRIO MOBILE
    ----------------------------------------------------- */

    .mobile-profile-user {

        display: flex;

        align-items: center;

        gap: 12px;

        min-width: 0;

    }


    /* -----------------------------------------------------
       FOTO MOBILE
    ----------------------------------------------------- */

    .mobile-profile-avatar {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 48px;

        height: 48px;

        flex: 0 0 48px;

        overflow: hidden;

        border-radius: 50%;

        background: #ea1d2c;

        color: #ffffff;

        font-size: 15px;

        font-weight: 800;

    }


    .mobile-profile-avatar img {

        display: block;

        width: 100%;

        height: 100%;

        object-fit: cover;

        border-radius: 50%;

    }


    .mobile-profile-avatar span {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        height: 100%;

    }


    /* -----------------------------------------------------
       NOME / EMAIL MOBILE
    ----------------------------------------------------- */

    .mobile-profile-user-info {

        display: flex;

        flex-direction: column;

        gap: 3px;

        min-width: 0;

    }


    .mobile-profile-user-info strong {

        overflow: hidden;

        color: #222222;

        font-size: 16px;

        font-weight: 700;

        line-height: 1.25;

        text-overflow: ellipsis;

        white-space: nowrap;

    }


    .mobile-profile-user-info small {

        overflow: hidden;

        color: #777777;

        font-size: 12px;

        line-height: 1.25;

        text-overflow: ellipsis;

        white-space: nowrap;

    }


    /* -----------------------------------------------------
       BOTÃO FECHAR
    ----------------------------------------------------- */

    .mobile-profile-header button {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 34px;

        height: 34px;

        flex: 0 0 34px;

        padding: 0;

        border: 0;

        border-radius: 50%;

        background: #f5f5f5;

        color: #333333;

        font-size: 24px;

        line-height: 1;

        cursor: pointer;

    }


    .mobile-profile-header button:hover {

        background: #eeeeee;

    }


    /* -----------------------------------------------------
       OPÇÕES PERFIL MOBILE
    ----------------------------------------------------- */

    .mobile-profile-menu {

        display: flex;

        flex-direction: column;

        gap: 6px;

    }


    .mobile-profile-menu-item {

        display: flex;

        align-items: center;

        gap: 13px;

        min-height: 52px;

        padding: 0 12px;

        border-radius: 10px;

        color: #333333;

        text-decoration: none;

        transition:
            background 0.2s ease,
            color 0.2s ease;

    }


    .mobile-profile-menu-item:hover {

        background: #f7f7f7;

    }


    .mobile-profile-menu-item span {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 32px;

        flex: 0 0 32px;

        font-size: 19px;

    }


    .mobile-profile-menu-item strong {

        font-size: 14px;

        font-weight: 600;

    }


    .mobile-profile-logout {

        color: #ea1d2c;

    }


    .mobile-profile-logout:hover {

        background: #fff4f4;

    }


    /* -----------------------------------------------------
       ESPAÇO BOTTOM NAV
    ----------------------------------------------------- */

    body {

        padding-bottom:
            66px;

    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 430px) {

    .navbar-container {

        padding:
            0 12px;

    }


    .navbar-logo {

        font-size: 17px;

    }


    .navbar-address-text {

        max-width: 125px;

    }


    .navbar-address-text strong {

        max-width: 125px;

    }


    .mobile-bottom-nav {

        height: 64px;

    }


    .mobile-bottom-icon {

        font-size: 18px;

    }


    .mobile-bottom-label {

        font-size: 9px;

    }


    .mobile-profile-bottom-avatar {

        width: 25px;

        height: 25px;

    }


    .mobile-profile-avatar {

        width: 44px;

        height: 44px;

        flex-basis: 44px;

    }


    .mobile-profile-user-info strong {

        font-size: 15px;

    }


    .mobile-profile-user-info small {

        font-size: 11px;

    }

}

.mobile-menu-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10010;
    padding: 15px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transform: translateY(25px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.mobile-menu-panel.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-panel-content {
    width: min(520px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, .18);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px;
    border-bottom: 1px solid #eef0f3;
}

.mobile-menu-header > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-header span {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mobile-menu-header strong {
    color: #111827;
    font-size: 20px;
}

.mobile-menu-header button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 12px;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background: #f9fafb;
}

.mobile-menu-item:active {
    transform: scale(.99);
}

.mobile-menu-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: #fff1f2;
}

.mobile-menu-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.mobile-menu-item-content strong {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.mobile-menu-item-content small {
    color: #6b7280;
    font-size: 11px;
    line-height: 1.4;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, .35);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .mobile-menu-panel,
    .mobile-menu-overlay {
        display: none;
    }
}
