/*
Theme Name: Global
*/
:root {
  --green: #12883e;
  --green-dark: #0f7335;
  --text: #0b0b0b;
  --muted: #666666;
  --line: #cddbd2;
  --soft: #f3f3f3;
  --white: #ffffff;
  --black: #000000;
  --container: 1444px;
}

/* PSD uses named Poppins styles, so each TTF is addressed by its exact family name. */
@font-face {
  font-family: "Poppins Regular";
  font-style: normal;
  src: url("/wp-content/uploads/huichao-home-Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins Medium";
  font-style: normal;
  src: url("/wp-content/uploads/huichao-home-Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins SemiBold";
  font-style: normal;
  src: url("/wp-content/uploads/huichao-home-Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins Bold";
  font-style: normal;
  src: url("/wp-content/uploads/huichao-home-Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins ExtraBold";
  font-style: normal;
  src: url("/wp-content/uploads/huichao-home-Poppins-ExtraBold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  background: #ffffff;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body.huichao-site:not(.huichao-homepage) {
  padding-top: 101px;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 101px;
  background: rgb(255 255 255 / 32%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgb(255 255 255 / 32%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.huichao-site:not(.huichao-homepage) .site-header {
  background: rgb(255 255 255 / 32%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(1440px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand {
  width: 235px;
  flex: 0 0 235px;
  margin-right: auto;
}

.brand img {
  width: 235px;
  height: auto;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: 72px;
  padding: 0;
  white-space: nowrap;
}

.primary-nav li {
  position: relative;
}

.primary-nav li,
.primary-nav ul {
  margin-top: 0;
  margin-bottom: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 101px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  transition: color 0.2s ease;
}

.site-header.scrolled .nav-link,
.site-header.menu-open .nav-link {
  color: #242424;
}

body.huichao-site:not(.huichao-homepage) .nav-link {
  color: #242424;
}

body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .nav-link {
  color: var(--green);
}

.nav-link.active,
.nav-link:hover,
.primary-nav li:hover > .nav-link,
.primary-nav li:focus-within > .nav-link {
  color: #005bac;
  background-image: linear-gradient(90deg, #005bac 0%, #12883e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link.active {
  color: #005bac;
  background-image: linear-gradient(90deg, #005bac 0%, #12883e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .nav-link.active,
body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .nav-link:hover,
body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .primary-nav li:hover > .nav-link,
body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .primary-nav li:focus-within > .nav-link,
body.huichao-site:not(.huichao-homepage) .nav-link.active,
body.huichao-site:not(.huichao-homepage) .nav-link:hover,
body.huichao-site:not(.huichao-homepage) .primary-nav li:hover > .nav-link,
body.huichao-site:not(.huichao-homepage) .primary-nav li:focus-within > .nav-link,
.site-header.scrolled .nav-link.active,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .primary-nav li:hover > .nav-link,
.site-header.scrolled .primary-nav li:focus-within > .nav-link,
.site-header.menu-open .nav-link.active,
.site-header.menu-open .nav-link:hover,
.site-header.menu-open .primary-nav li:hover > .nav-link,
.site-header.menu-open .primary-nav li:focus-within > .nav-link {
  color: #005bac;
  background-image: linear-gradient(90deg, #005bac 0%, #12883e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link.active::after,
.nav-link:hover::after,
.primary-nav li:hover > .nav-link::after,
.primary-nav li:focus-within > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #005bac 0%, #12883e 100%);
}

.primary-nav li > ul {
  position: absolute;
  top: 84px;
  left: -20px;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 14px 0;
  border: 1px solid rgba(18, 136, 62, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 42, 25, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-nav li:hover > ul,
.primary-nav li:focus-within > ul {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav li > ul a {
  display: block;
  padding: 12px 20px;
  color: #202020;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.primary-nav li > ul a:hover {
  color: var(--green);
  background: #f5fbf7;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
}

.search-link {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.site-header.scrolled .search-link,
.site-header.menu-open .search-link {
  filter: invert(1);
}

body.huichao-site:not(.huichao-homepage) .search-link {
  filter: invert(1);
}

body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .search-link {
  filter: brightness(0) saturate(100%) invert(32%) sepia(76%) saturate(1043%) hue-rotate(103deg) brightness(88%) contrast(92%);
}

.language-button {
  border: 0;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  cursor: pointer;
}

.site-header.scrolled .language-button,
.site-header.menu-open .language-button {
  color: #1f1f1f;
}

body.huichao-site:not(.huichao-homepage) .language-button {
  color: #1f1f1f;
}

body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .language-button {
  color: var(--green);
}

.language-button .flag {
  width: 68px;
  height: 44px;
  flex: 0 0 68px;
  object-fit: contain;
}

.language-button span {
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.language-button .chevron {
  width: 15px;
  height: 9px;
}

.site-header.scrolled .language-button .chevron,
.site-header.menu-open .language-button .chevron {
  filter: invert(1);
}

body.huichao-site:not(.huichao-homepage) .language-button .chevron {
  filter: invert(1);
}

body.huichao-homepage .site-header:not(.scrolled):not(.menu-open) .language-button .chevron {
  filter: brightness(0) saturate(100%) invert(32%) sepia(76%) saturate(1043%) hue-rotate(103deg) brightness(88%) contrast(92%);
}

body.huichao-site:not(.huichao-homepage) .head_bn_item {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1920 / 388;
  overflow: hidden;
}

body.huichao-site.page-id-19124:not(.huichao-homepage) .head_bn_item {
  aspect-ratio: 1920 / 400;
}

body.huichao-site.single-post:not(.huichao-homepage) .head_bn_item {
  aspect-ratio: 1920 / 335;
}

body.huichao-site:not(.huichao-homepage) .head_bn_item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

body.huichao-site .product-view,
body.huichao-site .image-additional-wrap {
  max-width: 100%;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 55px;
  border-radius: 9px;
  background: var(--green);
  color: #ffffff;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  color: #ffffff;
  overflow: hidden;
}

.hero-swiper {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  padding-top: clamp(70px, 5.6vw, 108px);
  padding-bottom: clamp(32px, 4vw, 72px);
}

.hero-copy {
  width: 40%;
  max-width: 40%;
  min-width: 0;
  margin-left: clamp(-30px, -1vw, -8px);
}

.hero-title {
  max-width: 100%;
  margin: 0;
  color: #087c3c;
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 3.4vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-title::first-line {
  color: #00518d;
}

.hero-description-text {
  max-width: min(100%, 560px);
  margin: clamp(18px, 1.45vw, 28px) 0 0;
  color: #2a2b32;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 37px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 60px;
  border-radius: 9px;
  text-transform: uppercase;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.btn img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.search-link img,
.language-button img,
.category-copy em img,
.small-btn img,
.learn-outline img,
.news-body a img {
  flex: 0 0 auto;
  max-width: none;
}

.btn-primary {
  min-width: 247px;
  background: var(--green);
  color: #ffffff;
}

.btn-primary:hover,
.quote-button:hover {
  background: var(--green-dark);
  color: #ffffff;
}

.btn-primary:hover img {
  filter: none;
}

.btn-outline-light {
  min-width: 247px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.btn-outline-light img {
  width: 18px;
  height: 18px;
}

.btn-outline-light .whatsapp-icon {
  width: 22px;
  height: 22px;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.hero:hover .hero-controls,
.hero:focus-within .hero-controls {
  opacity: 1;
}

.hero-nav {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--green);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-nav:hover {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  transform: translateY(-50%);
}

.hero-nav img {
  width: 22px;
  height: 22px;
  max-width: none;
  filter: none;
}

.hero-nav:hover img {
  filter: brightness(0) invert(1);
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.cert-section h2,
.about-copy h2 {
  margin: 0;
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 1.06;
}

.section-heading p {
  margin: 26px auto 0;
  color: #666666;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.45;
}

.categories-section {
  padding: 72px 0;
  background: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 44px;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 36px;
  align-items: stretch;
  min-height: 209px;
  padding: 24px 38px 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  border-color: var(--green);
  box-shadow: 0 18px 34px rgba(18, 136, 62, 0.13);
  transform: translateY(-4px);
}

.category-media {
  align-self: center;
  width: 152px;
  height: 152px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-media img {
  width: 134px;
  height: 134px;
}

.category-copy {
  display: flex;
  align-self: stretch;
  min-width: 0;
  flex-direction: column;
}

.category-copy strong {
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.04;
}

.category-copy > span {
  margin-top: 17px;
  color: #666666;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.38;
}

.category-copy em {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: var(--green);
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
}

.category-copy em img {
  width: 12px;
  height: 11px;
}

.featured-section {
  height: 841px;
  padding-top: 73px;
  background: var(--soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
  margin-top: 51px;
}

.product-card {
  height: 495px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: none;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card:hover {
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.product-media {
  height: 267px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-media img {
  width: 260px;
  height: 260px;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 21px 31px 26px;
}

.product-name {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-desc {
  display: -webkit-box;
  margin: 18px 0 25px;
  overflow: hidden;
  color: #666666;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-actions {
  display: flex;
  gap: 4px;
  margin-top: auto;
}

.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.small-btn.solid {
  width: 109px;
  background: var(--green);
  color: #ffffff;
}

.small-btn.ghost {
  width: 172px;
  gap: 28px;
  border: 2px solid var(--green);
  color: var(--green);
}

.small-btn.ghost img {
  width: 8px;
  height: 6px;
}

.small-btn.ghost .whatsapp-icon {
  width: 16px;
  height: 16px;
}

.wide-outline-btn {
  width: 439px;
  height: 74px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 68px;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.wide-outline-btn img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.wide-outline-btn:hover {
  background: var(--green);
  color: #ffffff;
}

.wide-outline-btn:hover img {
  filter: brightness(0) invert(1);
}

.why-section {
  height: 570px;
  padding-top: 86px;
  background: #ffffff;
}

.why-section .section-heading p {
  max-width: 900px;
  margin-top: 23px;
  font-size: 22px;
  line-height: 1.25;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 21px;
  margin-top: 56px;
}

.stat-card {
  height: 224px;
  padding-top: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  text-align: center;
}

.stat-card img {
  width: 54px;
  height: 54px;
  margin: 0 auto 27px;
}

.stat-card strong {
  display: block;
  min-height: 39px;
  color: var(--green);
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1.05;
}

.stat-card strong sup {
  font-size: 18px;
}

.stat-card span {
  display: block;
  width: 170px;
  margin: 15px auto 0;
  color: #666666;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.42;
}

.cert-section {
  height: 393px;
  padding-top: 86px;
  background: var(--soft);
}

.cert-section h2 {
  text-align: center;
}

.cert-content {
  display: grid;
  grid-template-columns: 777px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.cert-logos {
  display: grid;
  grid-template-columns: repeat(5, 145px);
  gap: 12px;
}

.cert-logos span,
.cert-logos a {
  width: 145px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.cert-logos a {
  text-decoration: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.cert-logos a:hover {
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.cert-logos img {
  max-width: 86px;
  max-height: 83px;
}

.cert-logos span:nth-child(3) img,
.cert-logos a:nth-child(3) img {
  max-width: 119px;
  max-height: 48px;
}

.cert-content p {
  max-width: 621px;
  margin: 0;
  color: #666666;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.42;
}

.about-section {
  height: 493px;
  padding-top: 66px;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 468px) minmax(0, 1fr) minmax(280px, 336px);
  gap: clamp(18px, 1.3vw, 38px);
  align-items: start;
}

.about-copy,
.capability-list {
  min-width: 0;
}

.about-image {
  width: 468px;
  height: 333px;
  overflow: hidden;
  border-radius: 5px;
  background: #eeeeee;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  .about-copy h2 {
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 36px;
  line-height: 1.05;
}

.about-copy p {
  margin: 24px 0 0;
  color: #666666;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.42;
}

.learn-outline {
  width: 248px;
  height: 61px;
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}

.learn-outline img {
  width: 15px;
  height: 13px;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 43px;
  padding-top: 10px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 17px;
}

.capability-list article > span {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green);
}

.capability-list article:nth-child(1) img {
  width: 35px;
  height: 24px;
}

.capability-list article:nth-child(2) img {
  width: 25px;
  height: 29px;
}

.capability-list article:nth-child(3) img {
  width: 30px;
  height: 30px;
}

.capability-list h3 {
  margin: 0;
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.capability-list p {
  margin: 15px 0 0;
  color: #666666;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.news-section {
  height: 712px;
  padding-top: 0;
  background: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 49px;
}

.news-card {
  height: 470px;
  overflow: hidden;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: none;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.news-card:hover {
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.news-card > img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.news-body {
  padding: 17px 20px 0;
}

.news-body time {
  display: block;
  color: #666666;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.news-body h3 {
  display: -webkit-box;
  min-height: 46px;
  margin: 17px 0 0;
  overflow: hidden;
  color: #000000;
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-body p {
  display: -webkit-box;
  min-height: 41px;
  margin: 15px 0 0;
  overflow: hidden;
  color: #666666;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-body a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 21px;
  color: var(--green);
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.news-body a img {
  width: 11px;
  height: 9px;
}

.news-more {
  margin-top: 28px;
  gap: 63px;
}

.contact-band {
  position: relative;
  height: 243px;
  overflow: hidden;
  background: #17873b;
  color: #ffffff;
}

.contact-band-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 218px 1fr 243px;
  gap: 66px;
  align-items: center;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/huichao-home-cta-pattern-full.png") center top / 100% 100% no-repeat;
  pointer-events: none;
}

.contact-band h2 {
  position: relative;
  margin: 0;
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.contact-band p {
  position: relative;
  max-width: 797px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.42;
}

.contact-band-button {
  position: relative;
  width: 243px;
  height: 59px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--green);
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding-block: clamp(72px, 8vw, 156px) clamp(42px, 5vw, 76px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.04fr) minmax(0, 0.82fr) minmax(0, 1.22fr);
  gap: clamp(36px, 6vw, 118px);
  align-items: start;
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
}

.footer-brand img {
  inline-size: min(172px, 100%);
  block-size: auto;
  filter: brightness(0) invert(1);
}

.footer-column {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 clamp(24px, 3vw, 55px);
  color: #ffffff;
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 1.45vw, 26px);
  line-height: 1;
}

.footer-column a,
.footer-column span {
  color: #ffffff;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-column a + a,
.footer-column span + span {
  margin-top: 12px;
}

.footer-contact a,
.footer-contact span {
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.45;
}

.footer-bottom {
  display: grid;
  gap: clamp(22px, 2.2vw, 36px);
  padding-top: clamp(30px, 3vw, 42px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.5vw, 22px);
  align-items: center;
}

.social-links a,
.social-links img {
  inline-size: clamp(30px, 2vw, 36px);
  block-size: clamp(30px, 2vw, 36px);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.sidebarWrap {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 56;
  transform: translateY(-50%);
}

.sidebarWrap ul {
  width: min(256px, calc(100vw - 24px));
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebarWrap li {
  margin: 0 0 8px;
  transform: translateX(calc(100% - 50px));
  transition: transform 0.32s ease;
}

.sidebarWrap li:hover,
.sidebarWrap li:focus-within {
  transform: translateX(0);
}

.sidebarWrap a {
  height: 50px;
  min-height: 50px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(90deg, #005bac 0%, #12883e 100%);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.sidebarWrap .imgWrap {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebarWrap .imgWrap svg,
.sidebarWrap .imgWrap .whatsapp-icon {
  width: 21px;
  height: 21px;
  display: block;
  flex: 0 0 auto;
}

.sidebarWrap .sidebar-item-whatsapp .imgWrap svg {
  width: 20px;
  height: 20px;
}

.sidebarWrap .info {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 16px 8px 4px;
  color: #ffffff;
  white-space: nowrap;
}

.sidebarWrap .info strong {
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.sidebarWrap .info span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.feedback {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: 0;
  z-index: 57;
  width: min(372px, calc(100vw - 24px));
  border-radius: 10px 10px 0 0;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
}

.feedbackHeader {
  position: relative;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 52px 0 22px;
  background: linear-gradient(90deg, #005bac 0%, #12883e 100%);
  color: #ffffff;
  font-family: "Poppins SemiBold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 44px;
  text-align: left;
  cursor: pointer;
}

.feedbackIcon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.feedbackIcon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.feedback .closeBtn {
  position: absolute;
  right: 13px;
  top: 10px;
  z-index: 2;
  display: none;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.feedback.is-open .closeBtn {
  display: block;
}

.feedback .closeBtn::before,
.feedback .closeBtn::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.feedback .closeBtn::before {
  transform: rotate(45deg);
}

.feedback .closeBtn::after {
  transform: rotate(-45deg);
}

.feedbackBody {
  max-height: calc(100vh - 74px);
  overflow: auto;
  border: 1px solid rgba(18, 136, 62, 0.18);
  border-top: 0;
  background: #ffffff;
  padding: 17px;
}

.feedbackBody[hidden] {
  display: none;
}

.feedback .quote-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
}

.feedback .form-field {
  display: grid;
  gap: 5px;
  color: #2a2b32;
  font-size: 14px;
  line-height: 1.2;
}

.feedback .required-field > span::before {
  color: #ff4236;
}

.feedback input:not([type="submit"]):not([type="hidden"]),
.feedback textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 0;
  background: #fbfbfb;
  color: #1d1d1d;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
}

.feedback input:not([type="submit"]):not([type="hidden"]) {
  height: 42px;
  padding: 0 12px;
}

.feedback textarea {
  min-height: 96px;
  padding: 11px 12px;
  resize: vertical;
}

.feedback input::placeholder,
.feedback textarea::placeholder {
  color: #a6a6a6;
  opacity: 1;
}

.feedback input:focus,
.feedback textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 136, 62, 0.12);
}

.feedback .modal-submit,
.feedback input[type="submit"] {
  width: auto;
  min-width: 112px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  background: var(--green);
  color: #ffffff;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.feedback .wpcf7-spinner {
  margin: 0 0 0 8px;
}

.feedback .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.45;
}

body.modal-open .sidebarWrap,
body.modal-open .feedback {
  opacity: 0;
  pointer-events: none;
}

body.feedback-open .sidebarWrap {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 760px) {
  .sidebarWrap {
    display: none;
  }

  .feedback {
    right: 12px;
    left: 12px;
    width: auto;
  }

  .feedbackBody {
    max-height: calc(100vh - 72px);
    padding: 15px;
  }

  .feedback .form-field {
    font-size: 13px;
  }

  .feedback input:not([type="submit"]):not([type="hidden"]) {
    height: 40px;
  }

  .feedback textarea {
    min-height: 86px;
  }
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal,
.search-panel {
  position: fixed;
  z-index: 60;
  inset: 0;
}

.quote-modal:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.search-panel {
  align-items: center;
  justify-content: center;
}

.search-panel:not([hidden]) {
  display: flex;
}

.modal-backdrop,
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.search-backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.modal-panel,
.search-box {
  position: relative;
  margin: 9vh auto;
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.modal-panel {
  width: min(560px, calc(100% - 48px));
  margin: 0;
  padding: 31px 30px 42px;
  border-radius: 0;
  box-shadow: none;
}

.search-box {
  width: min(681px, calc(100% - 48px));
  min-height: 197px;
  margin: 0;
  padding: 58px 46px 40px;
  border-radius: 0;
  box-shadow: none;
}

.modal-panel h2 {
  margin: 0 0 24px;
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.modal-close,
.search-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: transparent;
  color: #666666;
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.modal-close {
  display: none;
}

.search-panel[hidden] {
  display: none;
}

.search-form {
  display: block;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 47px;
  border: 0;
  border-bottom: 1px solid #555555;
  border-radius: 0;
  padding: 0;
  color: #1d1d1d;
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 31px;
  line-height: 1;
  outline: none;
}

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

.search-form input:focus {
  border-color: #555555;
  box-shadow: none;
}

.search-hint {
  margin: 16px 0 0;
  color: #6f6f6f;
  font-family: "Poppins Medium", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1;
  text-align: right;
}

.quote-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 33px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: #24242a;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.form-field-full {
  grid-column: 1 / -1;
}

.required-field > span::before {
  content: "* ";
  color: #e60012;
}

.modal-panel input,
.modal-panel textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 0;
  background: #fbfbfb;
  color: #1d1d1d;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.4;
  outline: none;
}

.modal-panel input {
  height: 59px;
  padding: 0 16px;
}

.modal-panel textarea {
  min-height: 200px;
  padding: 16px;
  resize: vertical;
}

.modal-panel input::placeholder,
.modal-panel textarea::placeholder {
  color: #a6a6a6;
  opacity: 1;
}

.modal-panel input:focus,
.modal-panel textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 136, 62, 0.12);
}

.modal-submit {
  width: 139px;
  height: 56px;
  grid-column: 1 / -1;
  margin-top: 33px;
  border: 0;
  background: var(--green);
  color: #ffffff;
  font-family: "Poppins Regular", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: lowercase;
  cursor: pointer;
}

.modal-submit:hover {
  background: var(--green-dark);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.form-status:empty {
  display: none;
}

@media (max-width: 1500px) {
  .primary-nav {
    gap: 18px;
    margin-left: 38px;
  }

  .nav-link {
    font-size: 18px;
  }

  .header-tools {
    gap: 14px;
    margin-left: 22px;
  }

  .language-button span {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  body.huichao-site:not(.huichao-homepage) {
    padding-top: 86px;
  }

  .site-header {
    height: 86px;
  }

  .header-inner {
    width: min(100% - 32px, 1000px);
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: "Poppins Bold", "Avenir Next", Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
  }

  .site-header.scrolled .menu-button,
  .site-header.menu-open .menu-button {
    border-color: var(--green);
    color: var(--green);
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    margin: 0;
    padding: 18px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  }

  .site-header.menu-open .primary-nav {
    display: grid;
  }

  .site-header.menu-open .primary-nav > ul {
    display: grid;
    gap: 0;
    margin-left: 0;
  }

  .nav-link {
    min-height: 44px;
    color: #1f1f1f;
  }

  .nav-link.active::after {
    bottom: 4px;
    height: 3px;
  }

  .primary-nav li > ul {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    padding: 0 0 8px 16px;
  }

  .primary-nav li:hover > ul,
  .primary-nav li:focus-within > ul {
    display: block;
  }

  .header-tools {
    margin-left: 18px;
  }

  .search-link,
  .language-button {
    display: none;
  }

  .hero {
    height: auto;
  }

  .hero-content {
    padding-top: clamp(64px, 7vw, 96px);
    padding-bottom: clamp(28px, 5vw, 56px);
  }

  .hero-copy {
    width: 46%;
    max-width: 46%;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 4.6vw, 52px);
  }

  .hero-description-text {
    margin-top: clamp(14px, 1.8vw, 22px);
    font-size: clamp(15px, 1.7vw, 18px);
  }

  .categories-section,
  .featured-section,
  .why-section,
  .cert-section,
  .about-section,
  .news-section,
  .site-footer {
    height: auto;
  }

  .categories-section,
  .featured-section,
  .why-section,
  .cert-section,
  .about-section,
  .news-section {
    padding: 70px 0;
  }

  .category-grid,
  .product-grid,
  .stats-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
    height: 360px;
  }

  .cert-content {
    grid-template-columns: 1fr;
  }

  .cert-logos {
    grid-template-columns: repeat(5, 1fr);
  }

  .contact-band {
    height: auto;
    padding: 54px 0;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 6vw, 64px);
  }
}

@media (max-width: 760px) {
  body.huichao-site:not(.huichao-homepage) .head_bn_item {
    aspect-ratio: 16 / 6.2;
  }

  body.huichao-site.page-id-19124:not(.huichao-homepage) .head_bn_item {
    aspect-ratio: 16 / 6.2;
  }

  body.huichao-site.single-post:not(.huichao-homepage) .head_bn_item {
    aspect-ratio: 16 / 5.8;
  }

  body.huichao-homepage .site-header {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  body.huichao-homepage .menu-button {
    border-color: var(--green);
    background: #ffffff;
    color: var(--green);
  }

  .container {
    width: calc(100% - 32px);
  }

  .brand {
    width: 132px;
    flex-basis: 132px;
  }

  .brand img {
    width: 132px;
    height: auto;
  }

  .quote-button {
    display: none;
  }

  .hero {
    height: auto;
  }

  .hero-bg {
    height: clamp(270px, 72vw, 340px);
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-copy {
    width: 58%;
    max-width: 58%;
    margin-left: 0;
  }

  .hero-title {
    font-size: clamp(21px, 6.2vw, 30px);
    line-height: 0.98;
  }

  .hero-description-text {
    margin-top: 8px;
    font-size: clamp(11px, 3.1vw, 14px);
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
  }

  .btn {
    width: auto;
    min-width: 152px;
    height: 42px;
    gap: 14px;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 12px;
  }

  .hero-controls {
    opacity: 1;
  }

  .hero-nav {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }

  .hero-nav img {
    width: 18px;
    height: 18px;
  }

  .section-heading h2,
  .cert-section h2 {
    font-size: 38px;
  }

  .section-heading p,
  .why-section .section-heading p,
  .cert-content p {
    font-size: 18px;
  }

  .category-grid,
  .product-grid,
  .stats-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: auto;
    min-height: 209px;
    grid-template-columns: 132px 1fr;
    gap: 22px;
    padding: 24px 22px;
  }

  .category-media {
    width: 132px;
    height: 132px;
  }

  .category-copy strong {
    font-size: 21px;
  }

  .product-card,
  .news-card {
    height: auto;
  }

  .product-body,
  .news-body {
    padding-bottom: 28px;
  }

  .wide-outline-btn {
    width: 100%;
    gap: 34px;
    font-size: 21px;
  }

  .stats-grid {
    gap: 16px;
  }

  .cert-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-logos span,
  .cert-logos a {
    width: 100%;
  }

  .about-copy h2 {
    font-size: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: clamp(28px, 9vw, 36px);
  }

  .footer-column h2 {
    margin-bottom: clamp(18px, 5vw, 22px);
  }

  .footer-column a,
  .footer-column span {
    font-size: clamp(16px, 4.4vw, 18px);
  }

  .footer-bottom {
    gap: clamp(18px, 5vw, 22px);
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-form button {
    height: 50px;
  }

  .quote-modal:not([hidden]) {
    padding: 18px;
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 36px);
    padding: 28px 22px 34px;
    overflow: auto;
  }

  .quote-form {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .form-field {
    font-size: 17px;
  }

  .modal-panel input {
    height: 54px;
  }

  .modal-panel textarea {
    min-height: 160px;
  }

  .modal-submit {
    width: 130px;
    height: 52px;
    margin-top: 12px;
    font-size: 22px;
  }
}
