body {
    background-color: #F8F7F3;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Manrope';
}

.custome-box-header {
    position: fixed;
    top: 13px;
    /* Cách top 13px như yêu cầu của bạn */
    left: 50%;
    /* Dịch sang 50% chiều rộng của viewport */
    transform: translateX(-50%);
    /* Dịch ngược lại 50% chiều rộng của chính nó để căn giữa */

    width: calc(100% - 40px);
    /* Để lại 20px padding ở mỗi bên khi màn hình nhỏ */
    max-width: 1190px;
    /* Chiều rộng tối đa cố định */

    background: #FFFFFF;
    border-radius: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Thêm đổ bóng cho đẹp mắt */
    padding: 0 20px;
    /* Thêm padding bên trong navbar để nội dung không sát cạnh */
    height: 70px;
    /* Đặt chiều cao cố định cho header */

    display: flex;
    /* Kích hoạt Flexbox */
    align-items: center;
    /* Căn giữa các item theo chiều dọc */
    justify-content: space-between;
    /* Đẩy logo và menu ra hai phía */

    z-index: 1000;
    box-sizing: border-box;
}


/* --- Logo --- */
.custome-box-header .navbar-brand {
    padding: 0;
    /* Bỏ padding mặc định của bootstrap navbar-brand */
    margin-right: 20px;
    /* Khoảng cách giữa logo và menu */
}

.img-logo {
    width: 180px;
    /* Kích thước logo */
    height: auto;
    /* Giữ tỷ lệ */
}

/* --- Menu (navbar-collapse và custome-navbar) --- */
.collapse.navbar-collapse {
    flex-grow: 1;
    /* Cho phép phần collapse chiếm toàn bộ không gian còn lại */
}

.custome-navbar {
    /* Là navbar-nav của Bootstrap */
    display: flex;
    justify-content: space-around;
    /* Phân bổ đều các mục menu */
    align-items: center;
    width: 100%;
    /* Đảm bảo custome-navbar chiếm 100% của navbar-collapse */
}

.custome-navbar .text-nav-link {
    /* Thay vì nav-link, bạn dùng text-nav-link */
    color: #8C8C8C !important;
    /* Màu chữ mặc định */
    font-weight: 500;
    padding: 10px 15px;
    /* Padding cho từng mục menu */
    text-decoration: none;
    /* Bỏ gạch chân */
    transition: color 0.3s ease;
}


.custome-navbar .active-link {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #383838 !important;
    border-bottom: 0.5px solid #101088 !important;
}

.text-nav-link {
    font-size: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #8C8C8C;
}

.text-nav-link:hover,
.text-nav-link:active,
.text-nav-link:focus,
.text-nav-link:visited,
.text-nav-link:link {
    text-decoration: none;
    color: #8C8C8C;
}

.custome-navbar {
    display: flex;
    justify-content: space-around;
}

.active-url {
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    text-align: center;
    color: #383838 !important;
    border-bottom: 0.5px solid #101088;
}

/* footer */
.footer-novatek {
    background: linear-gradient(91.61deg, #FFF3E7 0%, #795A42 100%);
    padding: 45px 0;
}

.content-footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.title-footer-left {
    font-weight: 700;
    font-size: 25px;
    letter-spacing: -0.25px;
    color: #000000;
    margin-bottom: 30px;
}

.category-footer {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.25px;
    color: #000000;
    margin-bottom: 15px;
    padding-left: 10px;
}

.category-footer:last-child {
    margin-bottom: 0;
}

.title-content-contact {
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

.content-contact {
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.box-content-mid-bot {
    display: flex;
}

.content-mid-bot-left {
    margin-right: 50px;
    padding-left: 10px;
}

.content-footer-right {
    display: flex;
    align-items: flex-end;
}

.img-social {
    width: 50px;
    height: 50px;
}

.navbar-light .navbar-toggler-icon {
    background-image: url('../../img/icon-menu.png'); 
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-toggler-icon.open-icon {
    background-image: url('../../img/icon-close.png'); /* Thay đổi đường dẫn đến ảnh của bạn */
}

.navbar-light .navbar-toggler {
    border: none;
}

.download-catalouge {
    display: none;
}

/* end footer */

@media (min-width: 992px) {

    .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 1200px) {

    .footer-novatek {
        padding: 45px 30px;
    }
}

@media (max-width: 991.98px) {
    .custome-box-header {
        top: 0;
        left: 0;
        transform: translateX(0);
        width: 100%;
        max-width: none;
        border-radius: 0;
        padding: 10px 15px;
        height: auto;
        flex-wrap: wrap;
    }

    .custome-box-header .navbar-brand {
        margin-right: 0;
    }

    .navbar-toggler {
        display: block !important;
        margin-left: auto;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 10px;
    }

    .custome-navbar {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .custome-navbar .text-nav-link {
        width: fit-content;
        margin: 15px 15px;
        padding: 0;
        padding-right: 10px;
        padding-bottom: 5px;
        text-align: left;
    }

    .img-logo {
        width: 150px;
    }

    body.product-menu-fullscreen {
        overflow: hidden;
    }

    body.product-menu-fullscreen #navbarCollapse.show {
        height: 90vh;
    }

    .download-catalouge {
        display: block;
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 20px;
        text-decoration-line: underline;
        color: #000000;
    }

    .box-navbar {
        padding: 30px 0 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .box-catalouge {
        width: 100%;
    }
    
    .footer-novatek {
        padding: 50px 0 0 60px;
    }

    .content-footer-left {
        margin-bottom: 25px;
    }

    .box-content-mid-bot {
        flex-direction: column;
    }

    .content-mid-bot-left {
        margin-right: 0;
    }

    .content-mid-bot-right {
        padding-left: 10px;
    }

    .content-footer-right {
        justify-content: center;
        margin: 20px 0;
    }
    
    .content-footer {
        justify-content: space-around;
    }
}

@media (max-width: 767px) {
    .content-footer {
        flex-direction: column;
    }
}


