/* ===== Header ===== */
.chf-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
    box-sizing: border-box;
}

.chf-logo img {
    height: 56px;
}

.chf-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.chf-menu a {
    color: #222;
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Toggle button */
.chf-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile */
@media(max-width:1024px){
    .chf-menu { display: none; }
    .chf-toggle { display: block; }
    .chf-mobile-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 9998;
        flex-direction: column;
    }
    .chf-mobile-menu.active { display: flex; }
    .chf-menu-mobile a {
        padding: 10px 20px;
        display: block;
        color: #222;
    }
}

/* Footer */
.chf-footer {
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Scroll top */
#chf-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}
