/* HEADER */
.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--color-white);
}

/* img */
.logo-left img {
	width: 200px;
	height: auto;
}

/* MENU */
.custom-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

/* khi scroll */
.custom-menu.menu-scroll {
    margin-top: 20px;
}

.custom-menu li {
    position: relative;
}

.custom-menu a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 18px;
    display: block;
}

.custom-menu a:hover {
    color: var(--color-chinh);
}

/* ICON OUR PRODUCTS */
.custom-menu li.menu-item-has-children>a::after {
    font-family: "Font Awesome 6 Free";
    content: "\f0d7";
    font-weight: 600;
    margin-left: 8px;
    font-size: 12px;
}

/* LEVEL 2 */
.custom-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
}

/* hover OUR PRODUCTS */
.custom-menu li:hover>ul {
    display: block;
}

/* LEVEL 3 */
.custom-menu li ul li ul {
    top: 0;
    left: 100%;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}

/* hover LEVEL 2 */
.custom-menu li ul li:hover>ul {
    display: block;
}

/* ITEM */
.custom-menu li ul li {
    padding: 8px 15px;
    white-space: nowrap;
}

/* LINK */
.custom-menu li ul li a {
    color: #333;
    text-decoration: none;
    display: block;
}

/* HOVER */
.custom-menu li ul li:hover {
    background: #f5f5f5;
}

/* SCROLL STYLE */
.custom-menu li ul li ul::-webkit-scrollbar {
    width: 6px;
}

.custom-menu li ul li ul::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* MENU STICKY */
.custom-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--color-white);
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Header Flatsome */
@media (min-width: 850px){
    .header-wrapper{
        display: none !important;
    }
}

/* Header custom */
@media (max-width: 849px){
    .custom-header{
        display: none !important;
    }
}