section[data-cattype="420"]:has(.nav-header li.has-dropdown:hover) ~ section.wrapper_middle.general::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(2px); /* ✅ 不影响层叠上下文 */
    pointer-events: none;       /* ✅ 不挡住点击 */
    z-index: 100;               /* ✅ 在内容上方，但在 dropdown 下方 */
}

section[data-cattype="420"] .nav-header .dropdown-panel {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

section[data-cattype="420"] {
  overflow-x: hidden !important;
}

/* 初始状态 */
section[data-cattype="420"] .main-nav > ul > li > a {
  font-size: 18px;
  padding: 15px 8px;
  transition: all 0.3s ease;
}
section.wrapper_middle[data-cattype="420"] {
  min-height: 65px;
}

/* 滚动时缩小字体和顶部间距 */
html.nav-up section[data-cattype="420"] .main-nav > ul > li > a {
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
}
html.nav-up section[data-cattype="420"] .dropdown-panel.product-dropdown {
  top: 45px;
}
html.nav-up section[data-cattype="420"] .media-dropdown {
  top: 45px;
}
html.nav-up section[data-cattype="420"] .header-logo > img {
  height: 40px;
}
section[data-cattype="420"] .header-logo > img {
   transition: all 0.3s ease;
}
/* 缩小时触发 */

section[data-cattype="420"] .nav-header {
  transition: height 0.3s ease;
}
/* Training Dropdown */
section[data-cattype="420"] .training-dropdown {
  position: fixed;
  top: 65px;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

section[data-cattype="420"] .nav-training:hover > .training-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

section[data-cattype="420"] .training-left-content {
  list-style: none;
  padding: 20px;
  margin: 0;
}

section[data-cattype="420"] .training-left-content li {
  padding: 5px 0;
}

section[data-cattype="420"] .training-left-content li a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
}
section[data-cattype="420"] .training-left-content li a:hover {
  color: #e60012;
}
section[data-cattype="420"] .dropdown-panel.training-dropdown {
  width: 200px;
}

/* Training Dropdown 内部 */


html.nav-up section[data-cattype="420"] .nav-header {
  height: 45px;
}
html.nav-up section[data-cattype="420"] .dealer-login,
html.nav-up section[data-cattype="420"] .extra-column img {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
/* Section Wrapper */
section[data-cattype="420"] {
  margin: 0;
  font-family: Helvetica, sans-serif !important;
	position: relative;
  z-index: 9999;
  padding-bottom: 1px;
  background: black;
padding-top: 0;
}
section[data-cattype="420"] h3{
  font-family: Helvetica, sans-serif !important;
  padding: 10px 0;
  font-weight: 600;
  color: black;
}
section[data-cattype="420"] .dealer-login-mobile {
  display: none;
}
/* Top Navigation Header */
section[data-cattype="420"] .nav-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 65px;
  background: #000;
  border-top: 5px solid #e60012;
}
section[data-cattype="420"] .dropa{
  color: black !important;
}
section[data-cattype="420"] .dropa:hover{
  color: #e60012 !important;
}
/* Logo */
section[data-cattype="420"] .header-logo img {
  height: 60px;
}

/* Navigation Menu Container */
section[data-cattype="420"] .main-nav {
  flex: 1;
  padding: 2px 20px;
  display: flex;
  justify-content: center;
}

/* UL Reset */
section[data-cattype="420"] .main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Top-level nav item */
section[data-cattype="420"] .main-nav li {
  position: relative;
  margin-right: 15px;
}

/* Top-level link */
section[data-cattype="420"] .main-nav > ul > li > a {
  color: #fff;
  text-decoration: none;
  padding: 15px 8px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  gap: 4px;
}

/* Hover underline */
section[data-cattype="420"] .main-nav > ul > li:hover > a {
  color: #e60012 !important; /* 字体变红 */
  border-bottom: none; /* 不要底线 */
}
section[data-cattype="420"] .dropdown-icon {
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}

/* hover 时文字与箭头同步变红 */
section[data-cattype="420"] .main-nav > ul > li:hover > a .dropdown-icon {
  border-right: 1.5px solid #e60012;
  border-bottom: 1.5px solid #e60012;
}
/* Dropdown arrow */
section[data-cattype="420"] .dropdown-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
  margin-top: -3px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  vertical-align: middle;
}

/* Dropdown Panel (default hidden) */
section[data-cattype="420"] .dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 300px;
  background: #fff;  /* <== 白色背景放在 dropdown-panel 本身 */
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  text-align: left;
}

/* Hover trigger to reveal dropdown */
section[data-cattype="420"] .main-nav li:hover > .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
	transition: all 90ms ease-out;
}
section[data-cattype="420"] .dropdown-panel.product-dropdown {
  position: fixed;
  left: 0;
  top: 65px; /* 导航高度 */
  width: 100vw;
  z-index: 9999;
}
section[data-cattype="420"] .product-items-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;   /* ✅ 让所有卡片等高 */
  text-align: center;
  gap: 20px;
  height: auto;           /* ✅ 不要写死高度 */
}

/* Product Dropdown Layout */
section[data-cattype="420"] .product-dropdown {
  display: flex;
  padding: 40px 30px;
    display: flex;
  justify-content: center; /* ⬅ 让里面的 wrapper 居中 */
  width: 100vw; /* 强制满屏宽度 */
   flex-direction: column;
     align-items: center;
}
section[data-cattype="420"] .lori-small {
  height: 191px;
  object-fit: contain;
  position: relative;
}
section[data-cattype="420"] hr {
  margin-top: 0;
  margin-bottom: 20px;
}
section[data-cattype="420"] .lori-medium {
  height: 191px;
  object-fit: contain;
}

section[data-cattype="420"] .lori-large {
  height: 191px;
  object-fit: contain;
  position: relative;
  bottom: 2px;
}
/* Product Item */
section[data-cattype="420"] .product-item {
  transition: background 0.2s;
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  text-align: center;
}

section[data-cattype="420"] .product-item:hover {
  background: #f5f5f5;
  cursor: pointer;
  text-align: center;
}

section[data-cattype="420"] .product-item img {
max-height: 250px;
  width: auto;
  object-fit: contain;
  margin-top: auto;
}

section[data-cattype="420"] .product-item h4 {
  font-size: 20px;
  margin: 5px 0;
  color: #000;
  font-family: Helvetica, sans-serif;
}
section[data-cattype="420"] .product-divider {
  border: none;
  border-top: 2px solid #ddd;
  width: 55%;
}
section[data-cattype="420"] .link-item.horizontal {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
section[data-cattype="420"] .link-item.horizontal img {
  margin: 0;
  height: 28px;
}

section[data-cattype="420"] .link-item.horizontal a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
section[data-cattype="420"] .link-item.horizontal a:hover {
  color: #e60012;
}
/* 下方图标链接区 */
section[data-cattype="420"] .product-links {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 10px 30px 30px;
}
section[data-cattype="420"] .link-item {
  text-align: center;
  font-size: 14px;
  color: #333;
}
section[data-cattype="420"] .link-item img {
  height: 32px;
  margin-bottom: 8px;
}
section[data-cattype="420"] .link-item span {
  display: block;
  color: #111;
}
section[data-cattype="420"] .product-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  font-family: Helvetica, sans-serif;
}
section[data-cattype="420"] .media-dropdown {
  position: fixed;
  top: 65px; 
  left: 0;
  width: 100vw;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover 显示 */
section[data-cattype="420"] .main-nav li:hover > .media-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
section[data-cattype="420"] .main-nav li > .dropdown-panel ul {
  display: flex;
  flex-direction: column; /* ⬅ 垂直\\ */
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

section[data-cattype="420"] .main-nav li > .dropdown-panel ul li {
  display: block;
  white-space: nowrap;
}

/* 居中容器，左右结构 */
section[data-cattype="420"] .media-dropdown-wrapper {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

/* 左边菜单内容 */
section[data-cattype="420"] .media-left {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  justify-content: center;   /* ⬅ 水平居中 */
  align-items: center;       /* ⬅ 垂直居中（可选） */
}

section[data-cattype="420"] .media-left ul {
  display: flex;
  flex-direction: column;    /* 垂直排 */
  align-items: stretch; /* ✅ 关键修正，让 li 占满宽度并靠左 */
  text-align: left;
}

section[data-cattype="420"] .media-left li {
  display: block; /* ⬅ 强制每一项 li 垂直排列 */
  font-size: 18px;
  padding: 5px 0;
  /* border-bottom: 1px solid #eee; */
  color: #111;
  cursor: pointer;
  transition: color 0.2s;
}

section[data-cattype="420"] .media-left li:hover {
  color: #e60012;
}

/* 右边图片内容 */
section[data-cattype="420"] .media-right {
  width: 700px;
  margin-left: auto; /* ⬅ 把右图容器推到最右 */
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}


section[data-cattype="420"] .media-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Right Side */
section[data-cattype="420"] .nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
}

/* Dealer Login Button */
section[data-cattype="420"] .dealer-login {
  background-color: #555;
  color: #fff;
  font-size: 18px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: none;
  height: 100%;
  outline: none;
}

/* Rightmost Icon Column */
section[data-cattype="420"] .extra-column {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
    cursor: pointer; /* 滑鼠指针变手指 */
}
section[data-cattype="420"] .dropdown-panel button {
  display: none;
}
section[data-cattype="420"] #slide-menus {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: black;
  z-index: 10001;
  transition: right 0.3s ease;
  padding: 30px 20px;
  box-sizing: border-box;
}
section[data-cattype="420"] #slide-menus.open {
  right: 0;
}
section[data-cattype="420"] #slide-menus ul {
  list-style: none;
  padding: 50px;
  margin: 0;
  text-align: left;
}
section[data-cattype="420"] #slide-menus li {
  padding: 10px 0;
}
section[data-cattype="420"] #slide-menus a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: none;
  padding: 0;
  font-size: 18px;
}
section[data-cattype="420"] #slide-menus a:hover{
  color: #e60012;
}
section[data-cattype="420"] .slide-close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #e60012;
  transition: transform 0.3s;
}
section[data-cattype="420"] .slide-close:hover {
  transform: rotate(90deg);
}
@media (min-width: 769px) {
  section[data-cattype="420"] .nav-header {
      position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #000;
  }

  body::before {
    content: "";
    display: none;
    height: 65px;
  }
}
@media (min-width: 769px) {
  .product-content {
    margin-top: 65px;
  }
}
@media (max-width: 1350px) {
  /* 减少主导航菜单间距 */
  section[data-cattype="420"] .main-nav li {
    margin-right: 20px; /* 从 30px 缩小 */
  }

  section[data-cattype="420"] .main-nav > ul > li > a {
    font-size: 16px; /* 缩小字体避免拥挤 */
    padding: 12px 6px;
    color: white;
  }

  /* Logo 缩小一点 */
  section[data-cattype="420"] .logo img {
    height: 60px;
  }

  /* 登录按钮略缩 */
  section[data-cattype="420"] .dealer-login {
    font-size: 16px;
    padding: 0 12px;
  }
section[data-cattype="420"] .media-right {
  width: 500px;
}
}
@media (max-width: 1206px) {
  body:not(.mobile-nav-open) section[data-cattype="420"] #slide-menus {
    display: none !important;
  }
section[data-cattype="420"] .header-logo {
  margin-left: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
}

section[data-cattype="420"] .nav-header {
  justify-content: space-between !important; /* 确保三列布局 */
}
section.wrapper_middle[data-cattype="420"] {
  min-height: auto;
}
#NewMenu {
  padding-top: 0;
  padding-bottom: 1px;
  background: black;
}
}
@media (max-width: 1206px) {
section[data-cattype="420"] .nav-header .dropdown-panel {
    box-shadow: none;
}
      section[data-cattype="420"] .main-nav{
           position: fixed;
               z-index: 10000 !important;
      }
        section[data-cattype="420"] .nav-right .dealer-login {
    display: none !important; /* 隐藏右上角按钮 */
  }
  section[data-cattype="420"] .dealer-login-mobile {
    background-color: #555;
        padding-left: 5px !important;
  }

  section[data-cattype="420"] .dealer-login-mobile a {
    color: #fff !important;
    font-weight: bold;
        display: block;
        width: 100%;
    text-align: center; /* ✅ 链接文字居中 */
  }

  section[data-cattype="420"] .dealer-login-mobile a:hover {
    color: #e60012 !important;
  }
  section[data-cattype="420"] .dealer-login-mobile {
    display: block !important; /* 显示在 slide 菜单中 */
  }
  section[data-cattype="420"] .nav-header{
    height: 45px;
  }
  section[data-cattype="420"] .header-logo img {
    height: 41px;
  }
  section[data-cattype="420"] .extra-column{
    justify-content: right;
    padding-right: 20%;

  }
  section[data-cattype="420"] .extra-column img {
    width: 24px;     /* 控制宽度 */
    height: auto;    /* 保持比例 */
    display: block;  /* 避免 inline 捣乱 */
  }
    section[data-cattype="420"] .dropdown-panel button {
    display: block;
  }
  section[data-cattype="420"] .main-nav li.has-dropdown > a::after {
    content: "›";
    font-size: 14px;
    color: #999;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  section[data-cattype="420"] .main-nav li.has-dropdown.open > a::after {
    content: "⌄";
  }

  section[data-cattype="420"] .main-nav li:not(.has-dropdown) > a::after {
    content: "";
  }
  section[data-cattype="420"] .dropdown-panel {
    position: relative !important;      /* ✅ 嵌在 li 内 */
    z-index: auto;           /* ✅ 跟随 li 层级 */
    display: none;
    padding: 0 20px 10px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  section[data-cattype="420"] .main-nav {
    position: fixed;
    top: 0;
    right: -100%;           /* ❗默认隐藏在右侧 */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 10009 !important;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  section[data-cattype="420"] .main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  section[data-cattype="420"] .main-nav li > a {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #111;
    text-decoration: none;
  }

  section[data-cattype="420"] .dropdown-panel {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0 20px;
    top: 0;
  }

  section[data-cattype="420"] .product-dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  section[data-cattype="420"] .product-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  section[data-cattype="420"] .product-item img {
    width: 100%;
    height: auto;
  }

  section[data-cattype="420"] .product-item h4 {
    font-size: 16px;
    margin:0;
  }

  section[data-cattype="420"] .product-item p {
    font-size: 14px;
    margin: 0;
    color: #555;
  }
  section[data-cattype="420"] .media-dropdown {
	width: auto;
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
    max-height: 80vh;
    padding: 20px;
  }

  section[data-cattype="420"] .media-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px; /* ⬅ 添加间距 */
  }

  section[data-cattype="420"] .media-left {
    width: 100%;
    padding: 0;
  }

  section[data-cattype="420"] .media-left ul {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
  }

  section[data-cattype="420"] .media-left li {
    width: 100%;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #111;
    cursor: pointer;
  }

  section[data-cattype="420"] .media-right {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  section[data-cattype="420"] .media-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
  }
  section[data-cattype="420"] .media-left {
    align-items: flex-start !important;
  }
  /* Back 按钮 */
  section[data-cattype="420"] .dropdown-panel button {
    display: none;
  }
   section[data-cattype="420"] #slide-menus {
    position: relative; /* ✅ 改为非 fixed，变成 main-nav 的下一个块 */
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: auto;
    transition: none;
    padding: 0 10px 0;
    box-sizing: border-box;
    display: none; /* 默认隐藏 */
  }

  section[data-cattype="420"] #slide-menus.open {
    display: block; /* ✅ 控制显隐 */
    margin: 0;
    padding: 0 0 0 5px;
  }

  section[data-cattype="420"] #slide-menus ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  section[data-cattype="420"] #slide-menus li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  section[data-cattype="420"] #slide-menus a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
  }

  section[data-cattype="420"] .slide-close {
    display: none !important; /* ✅ 不需要叉叉了 */
  }
  section[data-cattype="420"] .slide-append-items {
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  background: #fff;
}

section[data-cattype="420"] .slide-append-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
  section[data-cattype="420"] .main-nav > ul > li > a {
    color: black;
	border-bottom: 1px solid #eee;
  }

section[data-cattype="420"] .slide-append-items li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

section[data-cattype="420"] .slide-append-items a {
  text-decoration: none;
  color: #111;
  display: block;
}
section[data-cattype="420"] .mobile-submenu-header {
  background: #fff;
  display: none;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
  section[data-cattype="420"] .main-nav ul {
    display: block !important;
  }
  section[data-cattype="420"] .dropdown-panel.product-dropdown{
   width: auto;
  position: fixed;
  top: 10px; /* ✅ 建议设为 header 高度以下，例如 60px */
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;

  max-height: 80vh;     /* ✅ 超出自动滚动 */
  overflow-y: auto;
  padding: 20px;

  }

  section[data-cattype="420"] .main-nav li.open > a {
    visibility: hidden !important;
	position: fixed !important;
    top: 10px;
    width: 70%;
    border-bottom: 1px solid #e60012 !important;
    right: 10px;
  }

  section[data-cattype="420"] .main-nav li.open > a .dropdown-icon {
    visibility: hidden !important;
  }
  section[data-cattype="420"] .product-divider{
    display: none;
  }
section[data-cattype="420"] .product-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 10px;
  }
section[data-cattype="420"] .product-items-wrapper {
    flex-direction: column;
    align-items: center;
    height: auto; /* ✅ 解除固定高度 */
  }
section[data-cattype="420"] .product-items-wrapper{
    gap: 0;
}
  /* 控制产品图样式 */
  section[data-cattype="420"] .product-item {
    width: 90%;
    text-align: center;
    height: auto;
  }

  section[data-cattype="420"] .product-item img {
    width: 80%;
    height: auto;
    max-width: 250px;
    margin: 0 auto;
  }

  /* 让图标链接纵向排版 */
  section[data-cattype="420"] .product-links {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
  }

  /* 每一个图标项排版优化 */
  section[data-cattype="420"] .link-item.horizontal {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  section[data-cattype="420"] .link-item.horizontal img {
    height: 20px;
    width: 20px;
    object-fit: contain;
  }

  section[data-cattype="420"] .link-item.horizontal a {
    font-size: 15px;
    color: #111;
    text-align: left;
  }
  section[data-cattype="420"] .link-item.horizontal {
    flex-direction: row;     /* 保持横向，但可以设定位置 */
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 5px 20px;
  }

  section[data-cattype="420"] .link-item.horizontal img {
    height: 20px;
    width: 20px;
    object-fit: contain;
  }

  section[data-cattype="420"] .link-item.horizontal a {
    font-size: 15px;
    color: #111;
    text-align: left;
    line-height: 1.4;
  }
  section[data-cattype="420"] .media-right{
    display: none;
  }
  section[data-cattype="420"] .mobile-header-title {
    position: fixed !important;
    top: 10px;
    width: 70%;
    border-bottom: 1px solid #e60012 !important;
    right: 10px;
  }
   section[data-cattype="420"] .nav-media.has-dropdown.open {
      display: block !important;
  }
  section[data-cattype="420"] .nav-supports.has-dropdown.open{
    display: block !important;
  }
    section[data-cattype="420"] .nav-tools.has-dropdown.open{
    display: block !important;
  }
  section[data-cattype="420"] .dropdown-panel ul.media-left-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
    body.hide-product-item section[data-cattype="420"] .main-nav li.has-dropdown {
    display: none;
  }
  section[data-cattype="420"] h3 {
    display: none;
  }
  
section[data-cattype="420"] .nav-product.has-dropdown.open {
  top: -110px;
}
section[data-cattype="420"] .nav-media.has-dropdown.open {
  top: -110px;
}
section[data-cattype="420"] .nav-supports.has-dropdown.open{
  top: -110px;
}
section[data-cattype="420"] .nav-tools.has-dropdown.open{
  top: -145px;
}
section[data-cattype="420"] .main-nav li > .dropdown-panel ul{
    padding: 0;
}
}
@media (max-width: 1206px) {
  section[data-cattype="420"] .mobile-menu-close {
    display: block;
    position: fixed;
    top: 27px;
    right: 16px;
    background: white;
    color: #e60012;
    border: none;
    font-size: 20px;
    font-weight: bold;
    z-index: 10010;
    padding: 5px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 1206px) {
  section[data-cattype="420"] .mobile-menu-close {
    display: none;
  }
}
@media (max-width: 1206px) {
  section[data-cattype="420"] .main-nav > ul > li:hover > a {
    color: inherit !important;
  }
}

@media (max-width: 767px) {
  section[data-cattype="420"] .visible-xs {
    display: none !important;
  }
}