.box-navbar {
    background: #f94e41;
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 60px;
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    left: 0;
    z-index: 9999;
}

/* Nền navbar giữ FULL WIDTH; NỘI DUNG bên trong cách mỗi bên 60px trong vùng tối đa 1920px
   căn giữa: padding-x = max(0, (100% - 1920px)/2) + 60px.
   - viewport <= 1920px: padding = 60px mỗi bên (như thiết kế).
   - viewport  > 1920px: phần dôi ra chia đều 2 bên để vùng 1920px căn giữa, vẫn chừa 60px trong.
   Dùng .box-navbar.box-navbar (đặc hiệu 0,2,0) để THẮNG rule '.box-navbar{padding:14px 255px}'
   của cl_margin.css (nạp sau trên trang cafeflists). padding dọc = 0 để khớp private100.
   Chỉ áp từ 768px để không đụng padding mobile (14px 15px) khai báo bên dưới. */
@media (min-width: 768px) {
    .box-navbar.box-navbar {
        padding: 0 calc(max(0px, (100% - 1920px) / 2) + 60px);
    }
}

    /* Khối bọc logo + menu (inline flex) — ép căn giữa dọc để item không bị lệch lên trên */
    .box-navbar > div {
        align-items: center;
    }

    .box-navbar .logo {
        display: flex;
        align-items: center;
        width: auto !important;
    }

    .box-navbar .menu {
        margin: 0 0 0 auto;
        padding: 0;
        list-style: none;
        display: flex;
    }

        .box-navbar .menu > * + * {
            margin-left: 15px;
            padding-left: 15px;
        }

            .box-navbar .menu > * + *::before {
                content: "";
                background: rgba(255, 255, 255, 0.2);
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 16px;
            }

        .box-navbar .menu li {
            position: relative;
        }

        .box-navbar .menu a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 13px;
            font-weight: 700;
            line-height: 100%;
            text-decoration: none;
        }

    .box-navbar .btn-expand {
        width: 20px;
        height: 20px;
        margin-left: 40px;
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
    }

.listMenu {
    position: absolute;
    top: 55px;
    right: 60px;
    z-index: 1000;
}

.listMenu_ul {
    display: none;
    width: 390px;
    height: calc(100% - 300px);
    padding: 8px 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    background: white;
    animation: Gvc13T9u .2s ease-in both;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 70, 0.15);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.07);
}

@keyframes Gvc13T9u {
    from {
        transform: translateY(15px);
    }

    to {
        transform: translateY(0px);
    }
}

@keyframes _3rGzcfsn {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(15px);
    }
}

.listMenu_ul_item {
    color: #020626;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    padding: 16px 0;
    gap: 16px;
    border-bottom: 1px solid #EAEEF3;
    align-items: center;
}

    .listMenu_ul_item:last-child {
        border-bottom: none;
    }

.listMenu_ul span {
    background: #F94E41;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.listMenu_ul_item a {
    color: #000046;
}

/* Tablet + mobile: ẩn menu ngang, chỉ hiện nút hamburger (mở listMenu) */
@media (max-width: 1169px) {
    .box-navbar .menu {
        display: none;
    }

    /* Đẩy nút hamburger sang phải */
    .box-navbar .btn-expand {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .box-navbar {
        padding: 14px 15px;
        justify-content: space-between;
    }

        .box-navbar .menu {
            display: none;
        }

        .box-navbar .logo {
        }

    .listMenu {
        position: absolute;
        top: 48px;
        right: 0px;
        z-index: 1000;
        width: 100%;
        height: 100vh;
        pointer-events: none;
    }
    .listMenu_ul {
        width: 100%;
        height: 100vh;
        padding: 0px;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
        background: #FFF8F8;
        animation: Gvc13T9u .2s ease-in both;
        pointer-events: auto;
        /* MB full-bleed dưới navbar: bỏ viền/bo góc (tránh line mỏng sát header đỏ) */
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .listMenu_ul_item {
        padding: 16px 12px
    }
}
