:root {
  --primary: #fcb040;
  --dark: #111111;
  --gray-1: #222222;
  --gray-2: #666666;
  --gray-3: #8b8b8b;
  --line: #e8e8e8;
  --bg: #ffffff;
  --card: #f6f7f8;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --wrap: 1400px;
  --ease: all .28s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--gray-1);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
main { overflow: hidden; }

.wrap-1400 {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; background: #fff; }
.card-surface {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: var(--ease);
}
.card-surface:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
}
.section-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
}
.section-desc {
  margin: 0;
  max-width: 620px;
  color: var(--gray-2);
  font-size: 15px;
}
.section-head-light h2,
.section-head-light .section-desc { color: #fff; }
.section-head-light .section-kicker { color: var(--primary); }


.brand { flex: 0 0 auto; }
.brand img {
  max-height: 44px;
  width: auto;
}


.mega-thumb img[src=""],
.card-media img[src=""],
.app-thumb img[src=""],
.news-thumb img[src=""],
.about-media img[src=""] {
  opacity: 0;
}
.mega-links {
  display: grid;
  gap: 10px;
  align-content: start;
}
.mega-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f8f9;
  font-weight: 500;
  transition: var(--ease);
}
.mega-links a:hover {
  background: #fff3df;
  color: var(--dark);
  transform: translateX(4px);
}




.hero-section { padding: 0; background: #fff; }
.hero-slider { position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 500px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.hero-bg-1 { background-image: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 36%, rgba(0,0,0,.18) 100%), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'><rect width='1600' height='900' fill='%23242424'/><rect x='900' y='80' width='360' height='740' rx='26' fill='%23383838'/><rect x='1000' y='140' width='140' height='480' rx='10' fill='%23fcb040'/><rect x='1180' y='160' width='90' height='110' rx='8' fill='%23efefef'/><rect x='180' y='170' width='460' height='270' rx='18' fill='%23515151'/></svg>"); }
.hero-bg-2 { background-image: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.46) 35%, rgba(0,0,0,.18) 100%), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'><rect width='1600' height='900' fill='%23282828'/><rect x='860' y='100' width='460' height='660' rx='26' fill='%23434343'/><rect x='930' y='150' width='160' height='470' rx='12' fill='%23fcb040'/><rect x='1126' y='170' width='120' height='120' rx='8' fill='%23fff'/><rect x='1126' y='320' width='140' height='220' rx='8' fill='%23181818'/><rect x='160' y='170' width='520' height='310' rx='18' fill='%23555555'/></svg>"); }
.hero-bg-3 { background-image: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.5) 38%, rgba(0,0,0,.2) 100%), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'><rect width='1600' height='900' fill='%232d2d2d'/><rect x='900' y='90' width='420' height='720' rx='26' fill='%233b3b3b'/><rect x='980' y='150' width='220' height='150' rx='12' fill='%23fcb040'/><rect x='980' y='360' width='240' height='320' rx='14' fill='%23f1f1f1'/><rect x='170' y='170' width='500' height='320' rx='20' fill='%23575757'/></svg>"); }
.hero-content {
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
  color: #fcb040;
}
.hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--primary);
}
.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.hero-copy p:not(.hero-kicker) {
  margin: 18px 0 0;
  font-size: 17px;
  color: rgba(255,255,255,.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: var(--ease);
  font-weight: 700;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252,176,64,.25);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.42);
  color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
}
.slider-arrow:hover { background: rgba(255,255,255,.16); }
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 30px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.35);
}
.slider-dots button.is-active { background: var(--primary); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.product-card a,
.application-card a,
.news-card a { display: block; }
.card-media,
.app-thumb,
.news-thumb {
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, #ebebeb, #d8d8d8);
}
.card-media img,
.app-thumb img,
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover img,
.application-card:hover img,
.news-card:hover img { transform: scale(1.04); }
.card-body,
.news-body {
  padding: 26px;
}
.card-body h3,
.application-card h3,
.news-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}
.card-body p,
.application-card p,
.news-body p {
  margin: 0;
  color: var(--gray-2);
}
.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 36px;
  align-items: center;
}
.about-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.15;
}
.about-lead {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--gray-1);
}
.about-rich {
  color: var(--gray-2);
  margin-bottom: 28px;
}
.about-rich p:first-child { margin-top: 0; }
.about-rich p:last-child { margin-bottom: 0; }
.about-media {
  min-height: 420px;
  overflow: hidden;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-section {
  position: relative;
  background: linear-gradient(90deg, rgba(16,16,16,.78), rgba(16,16,16,.58)), url("/static/images/hyyy_bg.jpg") center/cover no-repeat;
}
.application-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.15), rgba(0,0,0,.15));
}
.application-inner { position: relative; z-index: 1; }
.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.application-card {
  overflow: hidden;
  background: rgba(255,255,255,.94);
  border-radius: var(--radius);
}
.application-card h3,
.application-card p { padding: 0 24px; }
.application-card h3 { padding-top: 22px; }
.application-card p { padding-bottom: 24px; }

.news-section { background: #fff; }
.news-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}
.news-scroller::-webkit-scrollbar { height: 8px; }
.news-scroller::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 999px;
}
.news-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 300px;
  scroll-snap-align: start;
}
.news-date {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-footer {
  background: #111111;
  color: rgba(255,255,255,.78);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 40px;
  padding: 72px 0 54px;
}
.footer-logo img {
  max-height: 46px;
  width: auto;
}
.footer-company {
  margin: 20px 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.footer-links h3,
.footer-contact h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}
.footer-links ul,
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li,
.footer-contact li { margin-bottom: 12px; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { margin: 0; }
.footer-policy {
  display: flex;
  gap: 18px;
}
.footer-policy a:hover { color: var(--primary); }

@media (max-width: 1280px) {
  .main-nav { order: 3; width: 100%; }
  .topbar { flex-wrap: wrap; padding: 16px 0; }
  .nav-list { justify-content: flex-start; }
  .mega-menu { width: min(760px, calc(100vw - 40px)); }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .search-box { display: none; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 88px;
    bottom: 0;
    z-index: 19;
    width: 100%;
    padding: 12px 20px 24px;
    background: rgba(255,255,255,.98);
    transform: translateX(100%);
    transition: var(--ease);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .nav-list {
    display: block;
  }
  .nav-item {
    border-bottom: 1px solid var(--line);
  }
  .nav-link {
    display: flex;
    justify-content: space-between;
    min-height: 58px;
    padding: 0;
  }
  .nav-link::after { display: none; }
  .mega-menu {
    position: static;
    width: 100%;
    margin: 0 0 14px;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    box-shadow: none;
    border-radius: 14px;
    border: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }
  .nav-item.open > .mega-menu { display: grid; }
  .mega-thumb { min-height: 180px; }
  .product-grid,
  .application-grid,
  .footer-main,
  .about-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-head { align-items: start; flex-direction: column; }
  .news-card { flex-basis: calc((100% - 24px) / 2); }
}

@media (max-width: 767px) {
  .wrap-1400 { width: calc(100% - 28px); }
  .section { padding: 72px 0; }

  .brand img { max-height: 38px; }
  .hero-slide,
  .hero-content { min-height: 520px; }
  .hero-copy p:not(.hero-kicker) { font-size: 15px; }
  .slider-controls { bottom: 24px; }
  .slider-arrow { width: 42px; height: 42px; }
  .product-grid,
  .application-grid,
  .footer-main,
  .about-panel {
    grid-template-columns: 1fr;
  }
  .news-card { flex-basis: 88%; min-width: 88%; }
  .card-body,
  .news-body { padding: 22px; }
  .about-media { min-height: 280px; }
  .footer-bottom-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
}

/* =========================================
   Header / Navigation - Final Replace
========================================= */
.lz-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #e8e8e8;
}

.lz-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

.lz-brand{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.lz-brand img{
  display: block;
  max-height: 55px;
  width: auto;
}

.lz-top-actions{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.lz-icon-btn{
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #e8e8e8;
  background: #fcb040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.lz-icon-btn:hover{
  border-color: #d8d8d8;
}

.lz-search-form{
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.lz-search-form-desktop{
  width: 480px;
  height: 46px;
}

.lz-search-form input{
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: #111;
}

.lz-search-form input::placeholder{
  color: #a0a0a0;
}

.lz-search-submit{
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lz-search-icon{
  display: block;
  width: 18px;
  height: 18px;
  background: url("/static/images/ico_search.png") center center / contain no-repeat;
}

.lz-search-icon::before,
.lz-search-icon::after{
  display: none !important;
  content: none !important;
}

.lz-search-submit .lz-search-icon,
.lz-search-toggle .lz-search-icon{
  filter: none !important;
  opacity: 1 !important;
}

.lz-lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  color: #111;
  white-space: nowrap;
}

.lz-lang-switch a{
  color: #111;
  transition: color .25s ease;
}

.lz-lang-switch a:hover,
.lz-lang-switch a.is-current{
  color: var(--primary);
}

.lz-menu-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
}

.lz-menu-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.lz-search-toggle{
  display: none;
}

.lz-mobile-search{
  display: none;
  padding-bottom: 14px;
}

.lz-search-form-mobile{
  width: 100%;
  height: 46px;
}

.lz-nav-row{
  border-top: 1px solid #f3f3f3;
}

.lz-main-nav{
  position: relative;
}

.lz-nav-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 52px;
}

.lz-nav-item{
  position: static;
}

.lz-nav-line{
  display: flex;
  align-items: center;
}

.lz-nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  transition: color .25s ease;
}

.lz-nav-link:hover{
  color: #fcb040;
}

.lz-nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fcb040;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

.lz-nav-item:hover > .lz-nav-line .lz-nav-link::after,
.lz-nav-item.is-open > .lz-nav-line .lz-nav-link::after{
  transform: scaleX(1);
}

.lz-sub-toggle{
  display: none;
}

.lz-mega-menu{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid #efefef;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  padding: 26px 0 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s ease;
  display: grid;
  grid-template-columns: 300px 430px 320px;
  gap: 0;
  align-items: start;
}

.lz-nav-item[data-soncount]:not([data-soncount="0"]):hover > .lz-mega-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lz-mega-col{
  min-height: 400px;
}

.lz-mega-cats{
  position: relative;
  padding: 8px 34px 0 22px;
}

.lz-mega-cats::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #e3e3e3;
}

.lz-cat-list{
  display: grid;
  gap: 14px;
  padding-right: 14px;
}
.lz-mega-docs{
  padding: 8px 34px 0 46px;
  border-left: 0;
}

.lz-mega-preview{
  padding: 6px 0 0 34px;
}

.lz-cat-btn{
  display: block;
  width: 100%;
  margin: 0;
  padding: 16px 22px;
  border: 1px solid #e8e8e8;
  background: #fff;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  transition: all .22s ease;
}

.lz-cat-btn:last-child{
  margin-bottom: 0;
}

.lz-cat-btn:hover,
.lz-cat-btn.is-active{
  color: #fcb040;
  border-color: #fcb040;
  background: #e9d4b4;
  box-shadow: 0 6px 18px rgba(227,0,22,.05);
}

.lz-doc-group,
.lz-preview-group{
  display: none;
}

.lz-doc-group.is-active,
.lz-preview-group.is-active{
  display: block;
}

.lz-doc-group-inner{
  gap: 10px;
}

.lz-doc-group .lz-doc-group-nav,
.lz-doc-group .lz-doc-group-list{
  display: none;
}

.lz-doc-group[data-soncount="0"] .lz-doc-group-list{
  display: grid;
}

.lz-doc-group:not([data-soncount="0"]) .lz-doc-group-nav{
  display: grid;
}

.lz-doc-item{
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.45;
  color: #222;
  border-bottom: 1px solid #f1f1f1;
  transition: all .2s ease;
}

.lz-doc-item:hover,
.lz-doc-item.is-active{
  color: #fcb040;
  padding-left: 6px;
}

.lz-doc-item-nav{
  font-weight: 600;
}

.lz-doc-item-article{
  font-weight: 500;
}

.lz-preview-item{
  display: none;
}



.lz-doc-item-nav{
  font-weight: 600;
}

.lz-doc-item-article{
  font-weight: 500;
}


.lz-preview-group.is-active .lz-preview-item{
  display: block;
}

.lz-preview-media{
  width: 100%;
  aspect-ratio: 1 / 0.78;
  background: #f6f6f6;
  border: 1px solid #ededed;
  overflow: hidden;
}

.lz-preview-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lz-preview-caption{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: #111;
}

.lz-preview-caption{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: #111;
}

.lz-mobile-submenu{
  display: none;
}

.lz-mobile-lang{
  display: none;
}

@media (max-width: 991px){
  .lz-top{
    min-height: 76px;
  }

  .lz-brand img{
    max-height: 55px;
  }

  .lz-search-form-desktop,
  .lz-lang-switch{
    display: none;
  }

  .lz-search-toggle,
  .lz-menu-toggle{
    display: inline-flex;
  }

  .lz-mobile-search{
    display: none;
  }

  .lz-header.is-search-open .lz-mobile-search{
    display: block;
  }

  .lz-nav-row{
    border-top: 0;
  }

  .lz-main-nav{
    display: none;
    padding: 0 0 16px;
    border-top: 1px solid #efefef;
  }

  .lz-header.is-menu-open .lz-main-nav{
    display: block;
  }

  .lz-nav-list{
    display: block;
    gap: 0;
  }

  .lz-nav-item{
    border-bottom: 1px solid #efefef;
  }

.lz-nav-item[data-soncount="0"] .lz-sub-toggle,
.lz-nav-item[data-soncount="0"] .lz-mega-menu,
.lz-nav-item[data-soncount="0"] .lz-mobile-submenu{
  display: none !important;
}

  .lz-nav-line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
  }

  .lz-nav-link{
    flex: 1 1 auto;
    min-height: 56px;
    display: flex;
    align-items: center;
    font-size: 17px;
  }

  .lz-nav-link::after{
    display: none;
  }

  .lz-sub-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 42px;
  }

  .lz-sub-toggle span{
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    transform: rotate(45deg);
    transition: transform .25s ease;
  }

  .lz-nav-item.is-open > .lz-nav-line .lz-sub-toggle span{
    transform: rotate(135deg);
  }

  .lz-mega-menu{
    display: none !important;
  }

  .lz-mobile-submenu{
    display: none;
    padding: 0 0 12px 14px;
  }

  .lz-nav-item.is-open > .lz-mobile-submenu{
    display: block;
  }

  .lz-mobile-submenu a{
    display: block;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    border-top: 1px solid #f4f4f4;
  }

  .lz-mobile-submenu a:hover{
    color: #fcb040;
  }

  .lz-mobile-lang{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0 0;
    font-size: 16px;
    line-height: 1;
    border-top: 1px solid #efefef;
  }

  .lz-mobile-lang a{
    color: #111;
    text-decoration: none;
    font-weight: 600;
  }

  .lz-mobile-lang a.is-current,
  .lz-mobile-lang a:hover{
    color: #fcb040;
  }
}

