.chm-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chm-menu .submenu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chm-menu .menu-item:hover > .submenu {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .chm-menu { flex-direction: column; }
    .submenu.mobile-slideout {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        background: #fff;
        transition: left 0.3s ease-in-out;
    }
    .submenu-toggle { cursor: pointer; }
    .submenu.active { left: 0; }
}
