@import url('//at.alicdn.com/t/c/font_4889994_57rpp5qifqd.css');
header a,.home a{text-decoration: unset;}
.flex-center {
    display: flex;
    align-items: center;
  }
  .header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
    /* Mobile Controls
     ========================================================================== */
  }
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .header-logo img {
    height: 40px;
  }
  .header-nav {
    display: flex;
    align-items: center;
  }
  .header .header-mobile-controls {
    display: none;
    align-items: center;
  }
  .header-nav-menu {
    display: flex;
    align-items: center;
  }
  .header-nav-item {
    position: relative;
    margin: 0 15px;
  }
  .header-nav-item:hover .header-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .header-nav-item:hover .header-nav-link {
    color: #1e96ec;
  }
  .header-nav-item:hover .header-nav-link .icon-down-arrow {
    transform: rotate(180deg);
  }
  .header-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  .header-nav-link i {
    font-size: 12px;
  }
  .header-nav-link i.icon-down-arrow {
    margin-left: 5px;
    font-size: 12px;
    margin-top: 2px;
    transition: transform 0.3s ease;
  }
  .header-nav-link:hover {
    color: #1e96ec;
  }
  .header-nav-link.store-link {
    color: #fff;
    padding: 3px 10px;
    border-radius: 8px;
    background: linear-gradient(109deg, #ffaf50 -33.39%, #ff4ca0 32.2%, #7733fd 104.68%);
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    cursor: pointer;
    -webkit-mask-image: -webkit-radial-gradient(#fff, linear-gradient(109deg, #7733fd -33.39%, #FF4CA0 39.1%, #FFAF50 104.68%));
    border: 0 solid;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
  }
  .header-nav-link.store-link:disabled {
    cursor: default;
  }
  .header-nav-link.store-link:-moz-focusring {
    outline: auto;
  }
  .header-nav-link.store-link svg {
    display: block;
    vertical-align: middle;
  }
  .header-nav-link.store-link [hidden] {
    display: none;
  }
  .header-nav-link.store-link span {
    position: relative;
    color: #fff;
    z-index: 1;
  }
  .header-nav-link.store-link:before {
    background: linear-gradient(109deg, #7733fd -33.39%, #FF4CA0 39.1%, #FFAF50 104.68%);
    content: '';
    inset: 0;
    position: absolute;
    transform: translateX(var(--progress, -100%));
    transition: transform 0.2s ease;
  }
  .header-nav-link.store-link:hover:before {
    --progress: 0;
  }
  .header-nav-link.store-link .iconfont {
    font-size: 20px;
  }
  .header-nav-link.store-link span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    padding: 20px 10px 10px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transition: all 0.2s ease;
    z-index: 999;
  }
  .header-submenu-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 10px 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 300px;
    transition: background-color 0.3s ease;
  }
  .header-submenu-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .header-submenu-icon {
    width: 34px;
    height: 34px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  .header-submenu-content {
    display: flex;
    flex-direction: column;
  }
  .header-submenu-title {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
  }
  .header-submenu-description {
    font-size: 12px;
    color: #808080;
    line-height: 1.5;
  }
  .header-submenu.support {
    display: flex;
    flex-direction: column;
  }
  .header-submenu-support-item {
    display: flex;
    align-items: center;
    padding: 27px 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    min-width: 200px;
    gap: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .header-submenu-support-item img {
    width: 27px;
    height: 27px;
  }
  .header-submenu-support-item span {
    display: inline-block;
    width: fit-content;
  }
  .header-submenu-support-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .header-search-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 20px;
  }
  .header-search-container .header-login-btn {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #061c3d;
    background: #fff;
    text-decoration: none;
    padding: 3px 15px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    min-height: 28px;
    box-sizing: border-box;
  }
  .header-search-container .header-login-btn span {
    font-size: 14px;
    color: #061c3d;
    z-index: 1;
  }
  .header-search-container .header-login-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #061c3d;
    border-radius: 6px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .header-search-container .header-login-btn:hover:before {
    transform: translateX(0);
  }
  .header-search-container .header-login-btn:hover span {
    color: #fff;
  }
  .header-search-box {
    position: absolute;
    right: 55px;
    background: #fff;
    display: flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
    z-index: 2;
  }
  .header-search-box.active {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  .header-search-box.active .search-close {
    display: block;
  }
  .header-search-box-form{width: 100%;}
  .header-search-input {
    width: 100%;
    padding: 8px 15px;
    border: none;
    outline: none;
    font-size: 14px;
  }
  .header-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
  }
  .header-search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666666;
    display: none;
  }
  .footer {
    background-color: #061c3d;
    padding: 60px 0 30px;
    color: #fff;
  }
  .footer-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .footer-header .icon-down-arrow {
    display: none;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    transition: transform 0.3s;
  }
  .footer-header p {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
  }
  .footer-col ul {
    transition: max-height 0.3s ease-out;
  }
  .footer-col ul li {
    margin-bottom: 12px;
  }
  .footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    line-height: 1.4;
  }
  .footer-col ul li a:hover {
    color: #fff;
  }
  .footer-col:nth-child(2) ul li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .footer-col.newsletter .newsletter-content {
    transition: max-height 0.3s ease-out;
  }
  .footer-col.newsletter .newsletter-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
  }
  .footer-col.newsletter .subscribe-btn {
    background: linear-gradient(93deg, #4596e5 -9.17%, #4539cc 105.48%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
  }
  .footer-col.newsletter .subscribe-btn:hover {
    transform: translateY(-5px);
  }
  .footer-bottom {
    border-top: 1px solid rgba(215, 218, 237, 0.2);
    padding-top: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom p {
    color: #eaeaea;
    font-size: 14px;
  }
  .footer .media-footer {
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  .footer .media-icons {
    width: calc(33.33% - 10px);
    text-align: left;
  }
  .footer .media-icons img {
    width: 32px;
    height: 32px;
  }
  .footer .language-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 10%;
    position: relative;
  }
  .footer .language-box .lan-img {
    width: 17px;
    margin-right: 10px;
  }
  .footer .language-box .arrow {
    margin-left: 6px;
    width: 8px;
  }
  .footer .language-box .lan-text {
    font-size: 12px;
    color: #d7daed;
    cursor: pointer;
  }
  .footer .language-box .language-list {
    position: absolute;
    background: #061c3d;
    border: 1px solid #415264;
    box-sizing: border-box;
    width: 122px;
    padding: 13px 8px 16px;
    right: 0;
    bottom: 35px;
    display: none;
  }
  .footer .language-box .language-list ul {
    margin-top: 0;
  }
  .footer .language-box .language-list ul li:not(:first-child) {
    margin-top: 8px;
  }
  .footer .language-box .language-list ul li a {
    color: #d7daed;
    font-size: 12px;
    line-height: 1.4;
  }
  .back-to-top {
    bottom: 10%;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background-color: #4d6c82;
    color: #fff;
    position: fixed;
    right: 1%;
    text-align: center;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .back-to-top img {
    width: 24px;
    height: 29px;
    object-fit: cover;
  }
  .back-to-top:hover {
    background-color: #000;
  }
  @media screen and (max-width: 1200px) {
    .footer-wrapper {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .header-submenu-item {
      width: 280px;
    }
  }
  @media screen and (max-width: 996px) {
    .header-submenu-item {
      width: 220px;
    }
  }
  @media screen and (max-width: 768px) {
    .header {
      position: relative;
    }
    .header-logo img {
      height: 32px;
    }
    .header-nav {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 0;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 999;
    }
    .header-nav.active {
      transform: translateX(0);
    }
    .header .header-mobile-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .header-nav {
      overflow-y: auto;
    }
    .header-nav-menu {
      flex-direction: column;
      width: 100%;
    }
    .header-nav-item {
      width: 100%;
    }
    .header-nav-item .header-submenu {
      display: none;
      position: static;
      transform: unset;
      box-shadow: none;
      width: 100%;
      box-shadow: unset;
      opacity: 1;
      visibility: visible;
      transition: unset;
    }
    .header-nav-item .header-submenu .header-submenu-item {
      align-items: center;
      width: 100%;
      box-sizing: border-box;
    }
    .header-nav-item .header-submenu .header-submenu-title {
      margin-bottom: 0;
    }
    .header-nav-item .header-submenu .header-submenu-description {
      display: none;
    }
    .header-nav-item .header-submenu .header-submenu-support-item {
      padding: 15px 20px;
    }
    .header-nav-item:hover .header-submenu {
      transform: unset;
    }
    .header-nav-item:hover .header-nav-link .icon-down-arrow {
      transform: unset;
    }
    .header-nav-item.active .header-nav-link .icon-down-arrow {
      transform: rotate(180deg);
    }
    .header-nav-link {
      padding: 15px 20px;
      width: 100%;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      justify-content: space-between;
      box-sizing: border-box;
    }
    .header-nav-link.store-link {
      display: none;
    }
    .header-menu-toggle {
      display: block;
      background: none;
      border: none;
      padding: 10px;
      margin-left: 10px;
      cursor: pointer;
    }
    .header-menu-toggle .bar {
      display: block;
      width: 24px;
      height: 2px;
      background: #333;
      margin: 5px 0;
      transition: 0.3s;
    }
    .header-menu-toggle.active .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
    .header-menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }
    .header-menu-toggle.active .bar:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }
    .header-mobile-login {
      display: flex;
      align-items: center;
      border-radius: 8px;
      border: 1px solid #061c3d;
      background: #fff;
      color: #061c3d;
      text-decoration: none;
      padding: 8px 15px;
      font-size: 14px;
      font-weight: 500;
    }
    .header-search-container {
      position: static;
      margin-left: 0;
      width: 100%;
      padding: 15px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      gap: 0;
    }
    .header-search-container .header-login-btn {
      display: none;
    }
    .header-search-box {
      position: relative;
      right: auto;
      width: 100%;
      order: 2;
    }
    .header-search-box.active {
      width: 100%;
    }
    .header-search-toggle {
      order: 1;
    }
    .footer {
      padding: 0;
    }
    .footer-wrapper {
      grid-template-columns: 1fr;
      gap: 0;
      margin-bottom: 20px;
      padding-top: 20px;
    }
    .footer-col {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 0;
    }
    .footer-col:last-child {
      border-bottom: none;
    }
    .footer-col h3 {
      margin: 0;
      padding: 15px 0;
    }
    .footer-col ul,
    .footer-col .newsletter-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }
    .footer-col li:last-child {
      margin-bottom: 0;
    }
    .footer-col.active ul,
    .footer-col.active .newsletter-content {
      max-height: 500px;
      padding: 0 0 15px 0;
    }
    .footer-col.active .footer-header .icon-down-arrow {
      transform: rotate(180deg);
    }
    .footer-header .icon-down-arrow {
      display: block;
      transition: transform 0.3s ease;
    }
    .footer-header p {
      margin-bottom: 0;
      padding: 20px 0;
    }
    .footer-bottom {
      padding: 15px;
      text-align: center;
    }
    .footer-bottom p {
      font-size: 12px;
      line-height: 24px;
    }
    .footer-bottom .language-box {
      display: none;
    }
    .nav-link.store-link {
      display: none;
    }
  }
  @media screen and (max-width: 480px) {
    .footer-header h3 {
      font-size: 16px;
    }
    .footer-col ul li a,
    .footer-col p {
      font-size: 14px;
    }
  }
  body.header-menu-open {
    overflow: hidden;
  }