/* Basic header menu style */
#charming-header-nav {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.chm-menu-items {
    list-style: none;
    display: flex;
    gap: 20px;
}

.chm-menu-items li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.chm-menu-items li a:hover,
.chm-menu-items li a:focus {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Responsive toggle for mobile */
.chm-menu-toggle {
    display: none;
    font-size: 24px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 768px) {
    .chm-menu-items {
        display: none;
        flex-direction: column;
        gap: 10px;
    }
    .chm-menu-toggle {
        display: block;
    }
}