.mh-fc2fb9cf-wrapper {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 998;
}

.mh-fc2fb9cf-wrapper.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mh-fc2fb9cf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 15px 20px;
    width: 100%;
}

.mh-fc2fb9cf-logo img {
    max-height: 50px;
    object-fit: contain;
}

.mh-fc2fb9cf-logo h2 {
    margin: 0;
    font-size: 24px;
}

.mh-fc2fb9cf-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.mh-fc2fb9cf-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    align-items: center;
}

.mh-fc2fb9cf-menu li {
    margin: 0 5px;
    z-index: 2;
}

.mh-fc2fb9cf-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.mh-fc2fb9cf-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    z-index: 1 !important;
    pointer-events: none;
}

.mh-fc2fb9cf-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.mh-fc2fb9cf-search-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}
.mh-fc2fb9cf-search-toggle:hover {
    background: rgba(0,0,0,0.05);
}

.mh-fc2fb9cf-search-box {
    position: absolute;
    top: 100%;
    right: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 300px;
}

.mh-fc2fb9cf-search-box.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mh-fc2fb9cf-search-input {
    width: 100%;
    border: none;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 15px;
    outline: none;
}

.mh-fc2fb9cf-search-results {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
}
.mh-fc2fb9cf-search-results a {
    display: block;
    padding: 8px 10px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
}
.mh-fc2fb9cf-search-results a:hover {
    background: #f0f0f0;
}

.mh-fc2fb9cf-btn {
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s;
    display: inline-block;
    text-align: center;
}
.mh-fc2fb9cf-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.mh-fc2fb9cf-btn-full {
    width: 100%;
}

.mh-fc2fb9cf-mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Mobile Sidebar Styles */
.mh-fc2fb9cf-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    max-width: 80vw;
}

.mh-fc2fb9cf-sidebar.is-open {
    left: 0;
}

.mh-fc2fb9cf-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mh-fc2fb9cf-sidebar-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mh-fc2fb9cf-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mh-fc2fb9cf-sidebar-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.mh-fc2fb9cf-sidebar-close:hover {
    background: rgba(0,0,0,0.05);
}

.mh-fc2fb9cf-sidebar-menu {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mh-fc2fb9cf-sidebar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mh-fc2fb9cf-sidebar-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.mh-fc2fb9cf-sidebar-menu a:hover,
.mh-fc2fb9cf-sidebar-menu a.is-active {
    background: rgba(0,0,0,0.03);
}

.mh-fc2fb9cf-sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .mh-fc2fb9cf-menu,
    .mh-fc2fb9cf-desktop-btn {
        display: none;
    }
    
    .mh-fc2fb9cf-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .mh-fc2fb9cf-search-box {
        right: 0;
        width: calc(100vw - 40px);
        max-width: 350px;
    }
}
