body.no-scroll {
    overflow: hidden;
}

nav.custom-header-navigation {
    position: relative;
}

.custom-header-navigation ul {
    position: relative;
    padding: 15px;
    margin: 10px 0;
    overflow: hidden;
    list-style: none;
}

.custom-header-navigation ul li {
    float: left;
    line-height: 30px;
    position: relative;
}

.custom-header-navigation ul li a {
    overflow: hidden;
    height: 30px;
    letter-spacing: 1px;
    display: block;
    margin: auto 10px;
    color: #333;
    padding: 0 25px;
    text-decoration: none;
    text-align: center;
}

button.menu-toggle {
    cursor: pointer;
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
}

.menu-icon {
    width: 48px;
    height: 48px;
    float: right;
    position: relative;
}

.menu-icon .bar {
    height: 4px;
    position: absolute;
    top: 11px;
    left: 7px;
    width: 32px;
    background: #555555;
    border-radius: 1px;
}

.menu-icon .bar:nth-of-type(2) {
    top: 21px;
}

.menu-icon .bar:nth-of-type(3) {
    top: 31px;
}

.hover-indicator {
    position: absolute;
    border: 2px solid #fdb365;
    border-radius: 7px;
    transition: all 0.3s ease;
    pointer-events: none;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    button.menu-toggle {
        display: block;
    }

    .custom-header-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        margin: 5px;
        background: #fff;
        border: 1px solid #fdb365;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        padding: 0;
    }

    .custom-header-navigation ul.open {
        display: flex;
        position: fixed;
        z-index: 1;
    }

    .hover-indicator {
        display: none;
    }
}