#header-mobile {
    width: 100%;
    height: max-content;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    box-shadow: none;
    z-index: 999;
    transition: .5s ease;
}

#header-mobile.header-scrolled {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-mobile {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    z-index: 999;
}

#header-mobile-logo-black {
    width: 200px; 
    transition: .5s ease;
}

#menu-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    fill: #111;
    transition: .5s ease;
}

#menu-btn.active {
   transform: rotate(90deg); 
   fill: #fff;
}

#header-mobile-menu {
    width: 100vw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #32476d, #ae0000);
    transform: translateX(100%);
    z-index: -1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: .5s ease;
}

#header-mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;    
}

.header-mobile-menu-inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 80px auto 0 auto;
    flex-shrink: 0;
}

.header-mobile-nav-list {
    width: 100%;
}

.header-mobile-nav-list div {
    border-bottom: rgba(255,255,255,0.2) 2px solid;
}

.header-mobile-nav-list a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 20px 0;
    display: block;
    transition: .25s ease;
}

.header-mobile-has-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-mobile-menu-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: .5s ease;
}

.header-mobile-menu-arrow.active {
    transform: rotate(180deg);
}

.header-mobile-submenu {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease, opacity .5s ease;
}

.header-mobile-submenu.open {
    max-height: 100vh;
    opacity: 1;
}

.header-mobile-submenu-item a {
    font-size: 16px;
    font-weight: 400;
}

.header-mobile-socialMedia {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto 0 auto;
}

.header-mobile-socialMedia-btn,
.header-mobile-search-btn {
    pointer-events: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .25s ease;
}

#wechat-icon-mobile {
    width: 36px;
    height: 36px;
}

#douyin-mobile-icon {
    width: 36px;
    height: 36px;
}

#wx-channel-mobile-icon {
    width: 34px;
    height: 34px;
}

#wx-mp-mobile-icon {
    width: 36px;
    height: 36px;
}

.mobile-qr-card {
    top: 70px;
}

.mobile-wechat-icon-white,
.mobile-wechat-icon-green,
.mobile-douyin-icon-plus,
.mobile-wx-channel-icon-path,
.mobile-wx-mp-icon-path {
    fill: #fff;
}

.header-mobile-search-icon {
    width: 30px;
    height: 30px;
    stroke: #fff;
}

.header-mobile-search-container {
    width: 80%;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-mobile-search-input {
    width: 100%;
    height: 60px;
    background: transparent;
    border-style: none;
    border-bottom: rgba(255, 255, 255, 0.2) 2px solid;
    pointer-events: auto;
    caret-color: #fff;
    color: #fff;
    font-size: 18px;
}

.header-mobile-search-input:focus {
  outline: none;
  box-shadow: none;
}

.header-mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

