@font-face {
  font-family: "Lato";
  src: url("./assets/lato-regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("./assets/lato-bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "iconfont";
  src: url("./assets/iconfont.woff2") format("woff2"), url("./assets/iconfont.woff") format("woff");
}

@font-face {
  font-family: "fontawesome";
  src: url("./assets/fontawesome-webfont.woff2") format("woff2"), url("./assets/fontawesome-webfont.woff") format("woff");
}

:root {
  --green: #419143;
  --footer-green: #3c801d;
  --text: #111;
  --muted: #555;
  --line: #eeeeee;
  --soft: #fafafa;
  --yellow: #fff500;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-width: 320px;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", "Roboto", "Poppins", "Oswald", "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  outline: 0;
}

button {
  background: none;
  cursor: pointer;
  padding: 0;
}

img {
  border: 0;
  display: block;
  max-width: 100%;
}

ul,
li,
figure,
p,
h1,
h2,
h3,
h4,
h5 {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

.hd-iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.hd-icon-arrow-l:before { content: "\e628"; }
.hd-icon-arrow-r:before { content: "\e626"; }
.hd-icon-arrow-long-r:before { content: "\e629"; }
.hd-icon-xiaohuoche:before { content: "\e607"; }
.hd-icon-baozhang:before { content: "\e627"; }
.hd-icon-dianhua:before { content: "\e621"; }
.hd-icon-search:before { content: "\e60a"; }

.hd-container,
.hd-layout {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 20px;
  width: 100%;
}

.hd-flex {
  display: flex;
  flex-wrap: wrap;
}

.hd-flex-jc-ai-c {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hd-flex-jc-sa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.hd-flex-jc-sb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hd-mobile-head-items,
.hd-mobile-nav-panel,
.hd-mobile-body-mask {
  display: none;
}

.hd-web_head {
  position: sticky;
  top: 0;
  z-index: 900;
}

.hd-web_head .hd-head_layer {
  background: var(--green);
  padding: 15px 0;
}

.hd-web_head .hd-head_layer .hd-layout {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
}

.hd-web_head .hd-logo {
  flex: 0 0 130px;
}

.hd-web_head .hd-logo img {
  height: 79px;
  margin-bottom: -35px;
  object-fit: contain;
  width: 105px;
}

.hd-nav_wrap {
  display: flex;
  flex: 1;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 10;
}

.hd-head_nav {
  align-items: center;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.hd-head_nav > li {
  color: #fff;
  font-size: 14px;
  line-height: 42px;
  perspective: 500px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}

.hd-head_nav > li:after {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  display: inline-block;
  height: 14px;
  vertical-align: middle;
  width: 1px;
}

.hd-head_nav > li:last-child:after {
  display: none;
}

.hd-head_nav > li > a {
  border-radius: 5px;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  transition: color 0.25s ease;
}

.hd-head_nav em {
  font-style: italic;
}

.hd-head_nav > li:hover > a {
  color: var(--yellow);
}

.hd-head_nav b:after,
.hd-change-language-title a:after {
  content: "\25be";
  display: inline-block;
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.25s ease;
}

.hd-head_nav > li:hover b:after,
.hd-change-language:hover .hd-change-language-title a:after {
  transform: rotate(180deg);
}

.hd-head_nav li ul {
  background: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 58px;
  transform: scale(0.8) rotateY(30deg);
  transform-origin: center 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 250px;
  z-index: 999;
}

.hd-head_nav li:hover > ul {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.hd-head_nav > li li {
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.5;
  position: relative;
}

.hd-head_nav > li li a {
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  padding: 11px 15px;
  position: relative;
}

.hd-head_nav > li li a:before {
  background: #1c9a03;
  content: "";
  height: 30%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 40%;
  transition: all 0.2s ease;
  width: 3px;
}

.hd-head_nav > li li:hover > a {
  background: #fafafa;
  color: #1c9a03;
}

.hd-head_nav > li li:hover > a:before {
  height: 100%;
  opacity: 1;
  top: 0;
}

.hd-head_nav li ul ul {
  left: 102%;
  max-height: 350px;
  overflow-y: auto;
  top: 0;
}

.hd-btn--search {
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 40px;
  height: 40px;
  margin-left: 8px;
  position: relative;
  transition: transform 0.25s ease;
  width: 40px;
}

.hd-btn--search:after {
  background: url("./assets/search_btn34.png") center no-repeat;
  content: "";
  display: inline-block;
  height: 40px;
  position: relative;
  width: 40px;
  z-index: 1;
}

.hd-btn--search:before {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  content: "";
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scale(0.5);
  transition: all 0.25s ease;
  width: 40px;
}

.hd-btn--search:hover:before {
  opacity: 0.6;
  transform: scale(0.8);
}

.hd-head_right {
  flex: 0 0 auto;
  padding-left: 15px;
  text-align: right;
}

.hd-change-language {
  display: inline-block;
  margin-left: 12px;
  position: relative;
  text-align: left;
}

.hd-change-language-title {
  padding: 10px 0;
}

.hd-change-language-title a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 13px;
  gap: 5px;
}

.hd-change-language:hover .hd-change-language-title a {
  color: var(--yellow);
}

.hd-country-flag {
  background-image: url("./assets/language-all.webp");
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  width: 22px;
}

.hd-language-flag-en { background-position: 0 0; }
.hd-language-flag-es { background-position: 0 -800px; }
.hd-language-flag-ja { background-position: 0 -528px; }
.hd-language-flag-id { background-position: 0 -480px; }
.hd-language-flag-hi { background-position: 0 -432px; }
.hd-language-flag-ru { background-position: 0 -736px; }
.hd-language-flag-de { background-position: 0 -368px; }
.hd-language-flag-fr { background-position: 0 -320px; }
.hd-language-flag-ar { background-position: 0 -32px; }
.hd-language-flag-pt { background-position: 0 -704px; }
.hd-language-flag-it { background-position: 0 -512px; }
.hd-language-flag-nl { background-position: 0 -240px; }
.hd-language-flag-sv { background-position: 0 -832px; }
.hd-language-flag-ko { background-position: 0 -544px; }
.hd-language-flag-th { background-position: 0 -848px; }
.hd-language-flag-vi { background-position: 0 -912px; }
.hd-language-flag-tr { background-position: 0 -864px; }
.hd-language-flag-pl { background-position: 0 -688px; }
.hd-language-flag-ch { background-position: 0 -144px; }

.hd-change-language-cont {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0 0 5px 5px;
  max-height: 80vh;
  opacity: 0;
  overflow-y: auto;
  padding: 20px 10px 12px 20px;
  position: absolute;
  right: 0;
  top: 56px;
  transform: scale3d(0.9, 0.9, 1);
  transition: all 0.3s ease;
  visibility: hidden;
  width: 360px;
  z-index: 999;
}

.hd-change-language:hover .hd-change-language-cont {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  visibility: visible;
}

.hd-prisna-wp-translate-seo {
  display: flex;
  flex-wrap: wrap;
}

.hd-prisna-wp-translate-seo li {
  font-size: 13px;
  margin: 0 0 10px;
  overflow: hidden;
  padding-right: 10px;
  width: 33.333%;
}

.hd-prisna-wp-translate-seo a {
  align-items: center;
  color: #000;
  display: flex;
  gap: 8px;
}

.hd-breadcrumbs {
  background: var(--soft);
  margin-bottom: 30px;
  padding: 10px 0;
}

.hd-breadcrumbs .hd-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.hd-breadcrumbs .hd-container > div,
.hd-breadcrumbs .hd-container a {
  color: var(--muted);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.hd-breadcrumbs-title {
  color: var(--green);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.hd-page-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 68px;
}

.hd-page-l-menu-tit {
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: capitalize;
}

.hd-sf-menu {
  border-left: 0;
  border-right: 0;
}

.hd-sf-menu > li {
  border-bottom: 1px solid var(--line);
  min-height: 46px;
  position: relative;
}

.hd-sf-menu a {
  color: var(--text);
  display: block;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  padding: 12px 10px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.hd-sf-menu li:hover > a {
  color: var(--green);
}

.hd-pdshow {
  display: grid;
  gap: 30px;
  grid-template-columns: 380px minmax(0, 1fr);
}

.hd-preview-container {
  position: relative;
}

.hd-small-box {
  background: #f8f8f8;
  cursor: zoom-in;
  height: 380px;
  overflow: hidden;
  position: relative;
  width: 380px;
}

.hd-small-box img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hd-small-box .hd-hover {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(65, 145, 67, 0.58);
  box-shadow: 0 0 0 9999px rgba(255, 255, 255, 0.08);
  height: min(118px, 35%);
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.12s ease;
  width: min(118px, 35%);
}

.hd-small-box .hd-hover.hd-is-visible {
  opacity: 1;
}

.hd-mediaplay {
  display: none;
}

.hd-thumbnail-box {
  height: 96px;
  margin-top: 20px;
  position: relative;
}

.hd-thumbnail-box .hd-btn {
  align-items: center;
  color: #b8c8b8;
  display: flex;
  font-size: 28px;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 17px;
  transition: color 0.2s ease;
  width: 38px;
  z-index: 2;
}

.hd-thumbnail-box .hd-btn:hover {
  color: var(--green);
}

.hd-btn-prev {
  left: 0;
}

.hd-btn-next {
  right: 0;
}

.hd-list {
  height: 82px;
  margin: 0 auto;
  max-width: 244px;
  overflow: hidden;
  width: calc(100% - 92px);
}

.hd-wrapper {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hd-item button {
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  height: 63px;
  justify-content: center;
  padding: 3px;
  transition: border-color 0.2s ease;
  width: 63px;
}

.hd-item.hd-active button,
.hd-item:hover button {
  border-color: var(--green);
}

.hd-item img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hd-banner-page {
  color: #999;
  display: none;
  font-size: 12px;
  margin-top: 4px;
  text-align: center;
}

.hd-big-box {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 230%;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  height: 380px;
  left: 402px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity 0.14s ease;
  width: 380px;
  z-index: 40;
}

.hd-big-box.hd-is-visible {
  opacity: 1;
}

.hd-pdshow-r {
  color: var(--text);
  padding-top: 10px;
}

.hd-prodetails-name {
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.hd-pdshow-r-text {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2%;
  padding: 50px 0 35px;
}

.hd-bullet {
  display: block;
  padding-left: 23px;
  position: relative;
}

.hd-bullet:before {
  content: "\2022";
  left: 8px;
  position: absolute;
}

.hd-pdshow-r-btn {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.hd-sendinquiry {
  align-items: center;
  border: 1px solid var(--green);
  color: var(--green);
  display: flex;
  font-size: 13px;
  height: 42px;
  justify-content: space-between;
  min-width: 190px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.hd-sendinquiry:hover {
  background: var(--green);
  color: #fff;
}

.hd-prodetails-box {
  margin-top: 30px;
}

.hd-pdservice {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  gap: 20px;
  padding: 14px 0;
}

.hd-pdservice li {
  align-items: center;
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.hd-pdservice i {
  color: var(--green);
  font-size: 19px;
}

.hd-prodetails-box-cont {
  color: #333;
  font-size: 15px;
  margin-top: 22px;
}

.hd-prodetails-box-cont p {
  font-weight: 400;
  line-height: 1.75;
}

.hd-prodetails-box-cont h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hd-spec-table {
  margin: 12px 0 18px;
}

.hd-spec-table strong {
  display: inline-block;
  margin-bottom: 8px;
}

.hd-table-scroll {
  overflow-x: auto;
}

.hd-spec-table table {
  min-width: 720px;
  width: 100%;
}

.hd-spec-table td {
  border: 1px solid #aaa;
  font-size: 13px;
  padding: 7px 8px;
  text-align: left;
  vertical-align: middle;
}

.hd-maybe {
  margin: 20px auto 0;
}

.hd-prodetails-box-tit,
.hd-feedback-tit {
  background: var(--soft);
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2%;
  padding: 5px;
  text-align: left;
}

.hd-maybe-list > li {
  margin-top: 15px;
  text-align: center;
  width: 32%;
}

.hd-maybe-img {
  align-items: center;
  border: 1px solid var(--line);
  display: flex; 
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.hd-maybe-img img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  width: 100%;
}

.hd-maybe-tit {
  color: var(--text);
  display: -webkit-box;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
  max-height: 23px;
  overflow: hidden;
  transition: color 0.2s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.hd-maybe-list > li:hover .hd-maybe-tit {
  color: var(--green);
}

.hd-maybe-list > li:hover img {
  transform: scale(1.05);
}

.hd-pd-inquirl {
  margin: 20px 0 40px;
}

.hd-wmkcfeedback {
  border: 1px solid var(--line);
  padding: 18px;
}

.hd-feedback-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hd-wmkcfeedback input,
.hd-wmkcfeedback textarea {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  min-height: 42px;
  padding: 10px 44px 10px 12px;
  width: 100%;
}

.hd-wmkcfeedback textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.hd-wmkcfb-name { background-image: url("./assets/inname.webp") !important; background-position: right -24px !important; background-repeat: no-repeat !important; }
.hd-wmkcfb-email { background-image: url("./assets/inemail.webp") !important; background-position: right -24px !important; background-repeat: no-repeat !important; }
.hd-wmkcfb-phone { background-image: url("./assets/inphone.webp") !important; background-position: right -24px !important; background-repeat: no-repeat !important; }
.hd-wmkcfb-company { background-image: url("./assets/incompany.webp") !important; background-position: right -24px !important; background-repeat: no-repeat !important; }
.hd-wmkcfb-title { background-image: url("./assets/intitle.webp") !important; background-position: right -24px !important; background-repeat: no-repeat !important; }
.hd-wmkcfb-content { background-image: url("./assets/incontent.webp") !important; background-position: right 14px !important; background-repeat: no-repeat !important; }

.hd-wmkcfeedback button {
  background: var(--green);
  color: #fff;
  display: block;
  font-weight: 700;
  height: 42px;
  margin-top: 14px;
  min-width: 140px;
  padding: 0 22px;
  text-transform: uppercase;
}

.hd-form-success {
  color: var(--green);
  font-size: 13px;
  margin-top: 10px;
}

.hd-web_footer {
  background: var(--footer-green);
  color: #fff;
}

.hd-web_footer a {
  color: #fff;
}

.hd-web_footer a:hover {
  color: var(--yellow);
}

.hd-foot_items {
  padding: 42px 0 18px;
}

.hd-foot_items .hd-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.hd-foot_item_hd .hd-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.hd-tit_desc,
.hd-foot_item li,
.hd-copyright {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.hd-foot_phone {
  display: flex;
  gap: 8px;
}

.hd-foot_phone .hd-content,
.hd-foot_email .hd-content {
  display: inline-flex;
  flex-direction: column;
}

.hd-foot_txt_list li {
  margin-bottom: 8px;
}

.hd-item_more {
  margin-top: 12px;
}

.hd-company_subscribe .hd-button {
  border: 1px solid rgba(255, 255, 255, 0.75);
  display: inline-flex;
  min-width: 120px;
  padding: 8px 22px;
}

.hd-social_tit {
  font-size: 14px;
  font-weight: 400;
  margin: 20px 0 8px;
  text-transform: lowercase;
}

.hd-scial_list {
  display: flex;
  gap: 10px;
}

.hd-scial_list img {
  height: 24px;
  width: 24px;
}

.hd-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
  padding-top: 14px;
}

.hd-web-search {
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s ease;
  visibility: hidden;
  z-index: 1500;
}

.hd-web-search.hd-search--open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hd-btn--search-close {
  background: url("./assets/search_btn_close11.png") center 0 no-repeat;
  height: 50px;
  position: absolute;
  right: 50px;
  top: 50px;
  transition: transform 0.3s ease;
  width: 50px;
}

.hd-btn--search-close:hover {
  background-position: center -50px;
  transform: rotate(90deg);
}

.hd-search-attr {
  align-items: center;
  display: flex;
  max-width: 760px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: min(80vw, 760px);
}

.hd-search--open .hd-search-attr {
  transform: translateY(0);
}

.hd-search-ipt {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  color: #222;
  font-size: 24px;
  height: 58px;
  padding: 0 70px 0 22px;
  transform: scale3d(0.94, 0.94, 1);
  transition: transform 0.5s ease;
  width: 100%;
}

.hd-search--open .hd-search-ipt {
  transform: scale3d(1, 1, 1);
}

.hd-search-btn {
  align-items: center;
  background: var(--green);
  color: #fff;
  display: flex;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
}

.hd-search-message {
  color: #fff;
  font-size: 14px;
  left: 0;
  position: absolute;
  top: 70px;
}

.hd-inquiry-pop-bd,
.hd-image-preview {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 2000;
}

.hd-inquiry-pop-bd[hidden],
.hd-image-preview[hidden] {
  display: none !important;
}

.hd-inquiry-pop {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  max-height: calc(100vh - 40px);
  max-width: 550px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 22px;
  position: relative;
  width: calc(100% - 40px);
}

.hd-ico-close-pop,
.hd-image-preview-close {
  background: #111;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 30px;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  z-index: 2;
}

.hd-ico-close-pop:before,
.hd-ico-close-pop:after,
.hd-image-preview-close:before,
.hd-image-preview-close:after {
  background: #fff;
  content: "";
  height: 2px;
  left: 7px;
  position: absolute;
  top: 12px;
  width: 12px;
}

.hd-ico-close-pop:before,
.hd-image-preview-close:before {
  transform: rotate(45deg);
}

.hd-ico-close-pop:after,
.hd-image-preview-close:after {
  transform: rotate(-45deg);
}

.hd-image-preview img {
  background: #fff;
  max-height: 84vh;
  max-width: min(84vw, 980px);
  object-fit: contain;
  padding: 20px;
}

.hd-image-preview-close {
  right: 34px;
  top: 34px;
}

.hd-image-preview-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  z-index: 2;
}

.hd-image-preview-arrow.hd-left {
  left: 30px;
}

.hd-image-preview-arrow.hd-right {
  right: 30px;
}

@media (max-width: 1100px) {
  .hd-container,
  .hd-layout {
    max-width: 100%;
  }

  .hd-page-layout {
    gap: 40px;
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .hd-pdshow {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .hd-small-box {
    height: 340px;
    width: 340px;
  }
}

@media (max-width: 900px) {
  .hd-head_nav > li > a {
    padding: 0 6px;
  }

  .hd-head_nav > li {
    font-size: 12px;
  }

  .hd-web_head .hd-logo {
    flex-basis: 100px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .hd-container,
  .hd-layout {
    padding: 0 15px;
  }

  .hd-mobile-head-items {
    background: #161622;
    display: block;
    height: 25px;
    left: 0;
    line-height: 25px;
    position: fixed;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 1200;
  }

  .hd-mobile-head-item {
    color: #fff;
    display: block;
    float: left;
    height: 25px;
    position: relative;
    text-align: center;
    width: 45px;
  }

  .hd-mobile-head-item .hd-title:before {
    font-family: "fontawesome";
    font-style: normal;
    font-weight: normal;
  }

  .hd-mobile-head-item.hd-mobile-head-nav .hd-title:before { content: "\f0c9"; }
  .hd-mobile-head-item.hd-mobile-head-language .hd-title:before { content: "\f1ab"; }
  .hd-mobile-head-item.hd-mobile-head-search .hd-title:before { content: "\f002"; }

  .hd-mobile-head-item .hd-title {
    color: #fff;
    display: block;
    font-size: 18px;
    height: 25px;
    line-height: 25px;
  }

  .hd-mobile-head-item:hover .hd-middle-content-wrap {
    opacity: 1;
    top: 30px;
    visibility: visible;
  }

  .hd-mobile-language-panel {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    left: 0;
    opacity: 0;
    padding: 12px;
    position: absolute;
    top: 20px;
    transition: all 0.25s ease;
    visibility: hidden;
    width: 320px;
  }

  .hd-mobile-language-panel .hd-prisna-wp-translate-seo li {
    width: 50%;
  }

  .hd-web_head {
    padding-top: 74px;
    position: static;
  }

  .hd-web_head .hd-head_layer {
    padding: 18px 0;
    text-align: center;
  }

  .hd-web_head .hd-head_layer .hd-layout {
    display: block;
    min-height: 34px;
  }

  .hd-web_head .hd-logo {
    display: block;
    text-align: center;
  }

  .hd-web_head .hd-logo img {
    height: 36px;
    margin: 0 auto;
    width: auto;
  }

  .hd-nav_wrap,
  .hd-web_head .hd-btn--search,
  .hd-web_head .hd-change-language,
  .hd-head_right {
    display: none;
  }

  .hd-breadcrumbs,
  .hd-page-l,
  .hd-big-box,
  .hd-prodetails-page .hd-categories {
    display: none;
  }

  .hd-page-layout {
    display: block;
  }

  .hd-page-box {
    padding-top: 15px;
  }

  .hd-pdshow {
    display: block;
  }

  .hd-small-box {
    height: auto;
    min-height: 0;
    width: 100%;
  }

  .hd-small-box img {
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
  }

  .hd-pdshow-r {
    padding: 10px 0 0;
  }

  .hd-prodetails-name {
    font-size: 26px;
    line-height: 1.25;
    margin-top: 8px;
  }

  .hd-pdshow-r-text {
    border-bottom: 0;
    font-size: 16px;
    padding: 45px 0 20px;
  }

  .hd-pdshow-r-btn {
    margin-top: 8px;
  }

  .hd-sendinquiry {
    min-width: 180px;
  }

  .hd-pdservice {
    gap: 10px;
    justify-content: space-between;
  }

  .hd-pdservice li {
    font-size: 12px;
  }

  .hd-maybe-list > li {
    width: 49%;
  }

  .hd-maybe-img {
    height: 130px;
  }

  .hd-feedback-grid {
    grid-template-columns: 1fr;
  }

  .hd-wmkcfeedback textarea {
    grid-column: auto;
  }

  .hd-foot_items .hd-layout {
    display: block;
  }

  .hd-foot_item {
    margin-bottom: 26px;
  }

  .hd-mobile-nav-panel {
    background: #fff;
    display: block;
    height: 100vh;
    left: 0;
    max-width: 330px;
    overflow-y: auto;
    padding: 14px 18px;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    width: 70%;
    z-index: 1300;
  }

  .hd-mobile-nav-panel.hd-is-open {
    transform: translateX(0);
  }

  .hd-mobile-close {
    background: #111;
    height: 28px;
    position: absolute;
    right: -34px;
    top: 0;
    width: 28px;
  }

  .hd-mobile-close:before,
  .hd-mobile-close:after {
    background: #fff;
    content: "";
    height: 2px;
    left: 7px;
    position: absolute;
    top: 13px;
    width: 14px;
  }

  .hd-mobile-close:before {
    transform: rotate(45deg);
  }

  .hd-mobile-close:after {
    transform: rotate(-45deg);
  }

  .hd-mobile-nav-list > li {
    border-bottom: 1px solid #eee;
  }

  .hd-mobile-nav-list a {
    color: #222;
    display: block;
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
  }

  .hd-mobile-nav-list ul {
    padding-left: 12px;
  }

  .hd-mobile-nav-list ul a {
    color: #555;
    font-size: 13px;
    padding: 5px 0;
    text-transform: none;
  }

  .hd-mobile-body-mask {
    background: rgba(0, 0, 0, 0.6);
    display: block;
    height: 100vh;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.25s ease;
    width: 100%;
    z-index: 1250;
  }

  .hd-mobile-body-mask.hd-is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .hd-search-attr {
    width: calc(100vw - 32px);
  }

  .hd-search-ipt {
    font-size: 18px;
    height: 52px;
  }

  .hd-search-btn {
    height: 52px;
  }

  .hd-btn--search-close {
    right: 16px;
    top: 42px;
  }

  .hd-image-preview img {
    max-width: 92vw;
    padding: 12px;
  }
}
