:root {
  --green-900: #0b3a26;
  --green-800: #063b28;
  --green-700: #0c7045;
  --green-600: #0b7a49;
  --green-500: #16834e;
  --ink: #1b2220;
  --muted: #5f6b67;
  --line: #e5ece9;
  --soft: #f7faf8;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-width: 1200px;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
}

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

button,
input {
  border: 0;
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.svg-sprite {
  display: none;
}

.page {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

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

.topbar {
  height: 40px;
  background: var(--green-900);
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 30;
}

.topbar-inner,
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.contact-line,
.social-line {
  display: flex;
  align-items: center;
}

.contact-line {
  gap: 36px;
}

.contact-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.social-line {
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.navbar {
  height: 76px;
  background: #fff;
  border-bottom: 1px solid #edf2ef;
}

.logo img {
  width: 186px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
}

.nav-links > li {
  position: relative;
  height: 100%;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 30px 0 28px;
}

.nav-links > li > a {
  height: 100%;
}

.nav-links > li.has-submenu > a {
  padding-right: 16px;
}

.nav-links > li.has-submenu > a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform .32s ease;
}

.nav-links > li.has-submenu:hover > a::before {
  transform: translateY(-35%) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  min-width: 190px;
  padding: 10px 0;
  visibility: hidden;
  background: #fff;
  border: 1px solid #e5ece9;
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(6, 59, 40, .14);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity .32s ease, transform .32s ease, visibility .32s ease;
}

.nav-links > li.has-submenu:hover .nav-submenu,
.nav-links > li.has-submenu:focus-within .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  padding: 11px 18px;
  color: #2b3432;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  transition: color .28s ease, background-color .28s ease, padding-left .28s ease;
}

.nav-submenu a:hover {
  padding-left: 24px;
  color: var(--green-700);
  background: #f3f8f5;
}

.nav-links a.active {
  color: var(--green-600);
}

.nav-links a.active::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--green-600);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 680px;
  background: url("../img/hero-bg.png") center / cover no-repeat;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--green-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .86s cubic-bezier(.22, .61, .36, 1), visibility .86s ease;
}

.hero-slide.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5.2s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  bottom: 104px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
  transition: width .32s ease, background-color .32s ease, opacity .32s ease;
}

.hero-dots button.active {
  width: 28px;
  background: #fff;
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px 1fr 150px;
  width: 720px;
  height: 48px;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.category-select,
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #7e8984;
}

.hero-search input {
  min-width: 0;
  padding: 0 24px;
  color: #333;
  border-left: 1px solid #e1e4e6;
  outline: none;
}

.hero-search input::placeholder {
  color: #a0a6aa;
}

.hero-search .search-btn {
  color: #fff;
  font-weight: 700;
  background: #0b7446;
  border-radius: 24px;
}

.section {
  background: #fff;
}

.products {
  padding: 72px 0 76px;
}

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

.section-heading span {
  position: absolute;
  top: -26px;
  left: 50%;
  color: #f1f4f3;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

.section-heading h1,
.section-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
}

.section-heading.compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.section-heading.compact::before,
.section-heading.compact::after {
  width: 42px;
  height: 2px;
  content: "";
  background: var(--green-700);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 62px;
}

.category-card {
  position: relative;
  min-height: 250px;
  padding: 36px 24px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.category-card .badge {
  position: absolute;
  top: -13px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 50%;
}

.category-card img {
  width: 100%;
  height: 124px;
  object-fit: contain;
}

.category-card h2 {
  margin: 24px 0 20px;
  font-size: 15px;
}

.category-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-700);
  font-size: 16px;
  font-weight: 700;
}

.btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 44px;
  padding: 0 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 22px;
}

.products-btn,
.hot-btn {
  margin: 42px auto 0;
  display: flex;
  width: max-content;
}

.why {
  padding: 40px 0 46px;
  color: #fff;
  background: #02160fe8;
}

.why h2 {
  margin: 0;
  font-size: 28px;
}

.title-line {
  width: 48px;
  height: 3px;
  margin: 14px 0 34px;
  background: var(--green-700);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.why-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--green-700);
  border-radius: 50%;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.why p {
  margin: 0;
  color: #e1ece7;
  font-size: 14px;
  line-height: 1.45;
}

.about {
  padding: 76px 0 68px;
}

.about-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-weight: 700;
}

.about h2 {
  margin: 0 0 26px;
  color: #163e2c;
  font-size: 40px;
  line-height: 1.18;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #2b3432;
  font-size: 15px;
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 22px 34px;
  margin: 46px 0 0;
}

.stats div {
  display: grid;
  grid-template-columns: 40px max-content;
  column-gap: 10px;
  align-items: center;
}

.stats div::before {
  width: 40px;
  height: 40px;
  content: "";
  background: #fff;
  border: 1px solid #d9e4df;
  border-radius: 50%;
}

.stats dt {
  color: var(--green-700);
  font-size: 22px;
  font-weight: 700;
}

.stats dd {
  grid-column: 2;
  margin: -2px 0 0;
  color: #2b3432;
  font-size: 12px;
}

.about-media .factory {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.thumb-row img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 4px;
}

.hot {
  padding: 56px 0 58px;
}

.product-strip {
  display: grid;
  grid-template-columns: 42px repeat(5, 1fr) 42px;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}

.arrow {
  width: 42px;
  height: 42px;
  color: #35403c;
  background: #fff;
  border: 1px solid #d7e3de;
  border-radius: 50%;
}

.hot-card {
  height: 190px;
  padding: 24px 18px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.hot-card img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  margin: 0 auto;
}

.hot-card h3 {
  margin: 16px 0 0;
  font-size: 14px;
}

.news {
  padding: 56px 0 74px;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.outline-btn {
  position: absolute;
  right: 0;
  min-width: 142px;
  color: var(--green-700);
  background: #fff;
  border: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 48px;
}

.news-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

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

.date {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 68px;
  color: #fff;
  background: var(--green-700);
}

.date span {
  font-size: 11px;
}

.date strong {
  font-size: 23px;
}

.news-body {
  min-height: 190px;
  padding: 30px 28px;
}

.news-body h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.news-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.news-body a {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #dce7e2;
  border-radius: 50%;
}

.dots .active {
  background: var(--green-700);
}

.clients {
  padding: 48px 0;
  color: #fff;
  background: var(--green-900);
}

.clients-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

.clients h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.clients p {
  margin: 0 0 26px;
  color: #d5dfda;
  font-size: 15px;
  line-height: 1.6;
}

.clients img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.footer {
  padding: 56px 0 28px;
  color: #d5dfda;
  background: #1b2522;
}

.footer-grid {
  display: grid;
  grid-template-columns: 210px 140px 150px 260px 230px;
  gap: 52px;
}

.footer-logo {
  width: 150px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 16px;
}

.footer p,
.footer li {
  margin: 0 0 13px;
  font-size: 14px;
  line-height: 1.55;
}

.footer address {
  font-style: normal;
}

.footer address p {
  position: relative;
  padding-left: 34px;
}

.footer address svg {
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  font-size: 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: #0b5137;
  border: 1px solid var(--green-700);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.subscribe input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  color: #fff;
  background: #3b4442;
  outline: none;
}

.subscribe input::placeholder {
  color: #a9b4b0;
}

.subscribe button {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: var(--green-500);
  border-radius: 4px;
}

.copyright {
  width: min(var(--container), calc(100% - 80px));
  margin: 34px auto 0;
  padding-top: 24px;
  color: #77827e;
  text-align: center;
  border-top: 1px solid #3a4441;
}

.whatsapp {
  position: fixed;
  right: 24px;
  top: 42%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  width: 118px;
  color: #1db817;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .12));
  transition: transform .28s ease, filter .28s ease;
}

.whatsapp:hover {
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .18));
  transform: translateY(-3px);
}

.whatsapp-card {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  padding: 16px 8px 12px;
  color: #fff;
  background: #1db817;
  border-radius: 18px;
}

.whatsapp svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
}

.whatsapp strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.whatsapp-numbers {
  display: block;
  margin-top: 8px;
  color: #16a812;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  body {
    min-width: 1000px;
  }

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

  .nav-links {
    gap: 28px;
  }

  .category-grid {
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 190px 120px 130px 230px 210px;
    gap: 34px;
  }
}

/* Product list page */
.subhero {
  position: relative;
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(rgba(6, 59, 40, 0.86), rgba(6, 59, 40, 0.86)), url("../img/hero-bg.png") center / cover no-repeat;
}

.subhero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subhero p {
  margin: 0 0 12px;
  color: #93d7b4;
  font-weight: 700;
}

.subhero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
}

.subhero span {
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: #e7f2ee;
  line-height: 1.6;
}

.breadcrumb {
  min-width: 240px;
  padding: 16px 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.product-list {
  padding: 70px 0 78px;
  background: var(--soft);
}

.list-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}

.product-sidebar {
  display: grid;
  gap: 28px;
}

.side-search {
  display: grid;
  grid-template-columns: 1fr 50px;
  height: 54px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e3de;
}

.side-search input {
  min-width: 0;
  padding: 0 22px;
  outline: none;
}

.side-search input::placeholder {
  color: #8d9893;
}

.side-search button {
  color: var(--green-700);
  background: #fff;
  font-size: 20px;
}

.side-panel {
  background: #fff;
  border: 1px solid #dce7e2;
}

.side-panel h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 18px 22px;
  color: #fff;
  font-size: 16px;
  background: var(--ink);
}

.category-menu a {
  display: block;
  padding: 17px 24px;
  color: #39423f;
  border-bottom: 1px solid #e1eae6;
}

.category-menu li:last-child a {
  border-bottom: 0;
}

.category-menu a.active {
  color: var(--green-700);
  font-weight: 700;
  background: #eef7f2;
}

.side-news h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 16px;
  color: var(--ink);
  font-size: 24px;
}

.side-news h2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 3px;
  content: "";
  background: var(--green-700);
}

.side-news h2::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 70px;
  height: 1px;
  content: "";
  background: #dce7e2;
}

.side-news article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.side-news img {
  width: 82px;
  height: 58px;
  object-fit: cover;
}

.side-news a {
  color: #39423f;
  line-height: 1.35;
  transition: color .36s ease;
}

.side-news a:hover {
  color: var(--green-700);
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 22px;
  color: #fff;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 6px;
}

.product-main {
  min-width: 0;
}

.list-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.list-heading p {
  margin: 0 0 10px;
  color: var(--green-700);
  font-weight: 700;
}

.list-heading h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.1;
}

.list-heading span {
  color: #66736f;
}

.list-heading strong {
  margin-top: 36px;
  color: var(--green-700);
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-bottom: 26px;
  padding: 0 22px;
  color: #5d6864;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 6px;
}

.list-toolbar div {
  display: flex;
  gap: 12px;
}

.list-toolbar button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #70807a;
  background: #f3f7f5;
  border-radius: 4px;
}

.list-toolbar button:first-child {
  color: var(--green-700);
  background: transparent;
}

.list-toolbar button.active {
  color: var(--green-700);
  background: #eaf5ef;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.list-product {
  position: relative;
  min-height: 334px;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid #e2ece7;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.product-image-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.list-product img {
  width: 100%;
  height: 188px;
  object-fit: contain;
}

.quick-view {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green-700);
  background: #eaf5ef;
  border-radius: 50%;
}

.list-product h3 {
  margin: 22px 0 18px;
  font-size: 18px;
  line-height: 1.3;
}

.list-product h3 a,
.list-product > a:last-child {
  transition: color .36s ease;
}

.list-product h3 a:hover,
.list-product > a:last-child:hover {
  color: var(--green-500);
}

.list-product p {
  margin: 0;
  color: #909b96;
}

.list-product > a:last-child {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}

.product-grid.is-list {
  grid-template-columns: 1fr;
}

.product-grid.is-list .list-product {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 12px 28px;
  min-height: 250px;
  padding: 24px;
}

.product-grid.is-list .product-image-link {
  grid-row: 1 / 4;
}

.product-grid.is-list .list-product img {
  height: 216px;
}

.product-grid.is-list .list-product h3 {
  margin: 4px 48px 6px 0;
}

.product-grid.is-list .list-product p {
  max-width: 620px;
  line-height: 1.6;
}

.product-grid.is-list .list-product > a:last-child {
  position: static;
  grid-column: 2;
  align-self: end;
  justify-self: start;
  margin-top: 8px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.pagination a,
.pagination .page-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #39423f;
  font-weight: 700;
  background: #fff;
  border: 1px solid #d7e3de;
  border-radius: 4px;
}

.pagination a.active,
.pagination a.page-num-current {
  color: #fff;
  background: var(--green-700);
  border-color: var(--green-700);
}

.inquiry-cta {
  padding: 0 0 70px;
  background: var(--soft);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 54px;
  color: #fff;
  background: var(--green-700);
  border-radius: 8px;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.cta-box p {
  margin: 0;
  max-width: 620px;
  color: #e8f5ef;
}

.cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  height: 50px;
  color: var(--green-700);
  font-weight: 700;
  background: #fff;
  border-radius: 25px;
}

@media (max-width: 1280px) {
  .list-layout {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }

  .product-grid {
    gap: 20px;
  }

  .list-product h3 {
    font-size: 16px;
  }
}

/* Product detail page */
.breadcrumb-strip {
  background: #fff;
  border-top: 1px solid #e9efec;
  border-bottom: 1px solid #e9efec;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.breadcrumb-inner h1 {
  margin: 0;
  color: var(--green-900);
  font-size: 22px;
}

.breadcrumb-inner span {
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 10px;
  background: var(--green-700);
}

.breadcrumb-inner p {
  margin: 0;
  color: #6f7975;
}

.product-detail {
  padding: 70px 0 84px;
  background: var(--soft);
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.product-summary {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}

.detail-image-card {
  position: relative;
  display: grid;
  place-items: center;
  height: 420px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.detail-image-card img {
  width: 340px;
  height: 340px;
  object-fit: contain;
}

.detail-image-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 150px;
  padding: 12px 24px;
  color: var(--green-700);
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  transform: translate(-50%, -50%);
}

.detail-info {
  padding-top: 12px;
}

.detail-info h2 {
  margin: 0 0 46px;
  font-size: 38px;
  line-height: 1.2;
}

.detail-info .model {
  margin: 0 0 22px;
  color: #7f8a86;
  font-size: 18px;
}

.detail-info dl {
  margin: 0 0 34px;
  padding-top: 24px;
  border-top: 1px solid #dce7e2;
}

.detail-info dl div {
  display: flex;
  gap: 24px;
}

.detail-info dt {
  color: var(--ink);
  font-weight: 700;
}

.detail-info dd {
  margin: 0;
  color: #7f8a86;
}

.contact-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 220px;
  height: 56px;
  color: #fff;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 28px;
}

.contact-now svg {
  width: 24px;
  height: 24px;
}

.meta-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding: 22px 28px;
  color: #39423f;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 6px;
}

.meta-note svg {
  flex: 0 0 auto;
  color: var(--green-700);
  font-size: 28px;
}

.detail-card,
.inquiry-form {
  margin-top: 48px;
  background: #fff;
}

.detail-card {
  border: 1px solid #dce7e2;
  border-radius: 8px;
  overflow: hidden;
}

.detail-card h2,
.inquiry-form h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 30px;
}

.detail-card h2 {
  padding: 22px 30px;
  border-bottom: 1px solid #dce7e2;
}

.detail-card h2 span,
.inquiry-form h2 span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
}

.hot-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 26px 30px;
  color: #5d6864;
  border-bottom: 1px solid #edf2ef;
}

.hot-tags svg {
  color: var(--green-700);
  font-size: 18px;
}

.next-bar {
  padding: 20px 30px;
  color: #9aa39f;
  background: #f4f7f5;
}

.next-bar span {
  margin-left: 22px;
}

.detail-content {
  padding: 30px;
  color: #4d5a56;
  font-size: 15px;
  line-height: 1.8;
  border-bottom: 1px solid #edf2ef;
}

.detail-content img {
  max-width: 100%;
  height: auto;
}

.detail-content p {
  margin: 0 0 20px;
}

.inquiry-form {
  padding: 8px 0 0;
  background: transparent;
}

.inquiry-form h2 {
  margin-bottom: 28px;
}

.inquiry-form > p {
  margin: 0 0 18px;
  color: #7f8a86;
}

.inquiry-form form {
  display: grid;
  gap: 20px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  color: #69736f;
  background: #fff;
  border: 1px solid #dce7e2;
  outline: none;
}

.inquiry-form input {
  height: 52px;
  padding: 0 24px;
}

.form-half,
.form-message {
  position: relative;
}

.form-half {
  width: 420px;
}

.form-half svg,
.form-message svg {
  position: absolute;
  left: 22px;
  top: 18px;
  color: var(--green-700);
  font-size: 18px;
}

.form-half input,
.form-message textarea {
  padding-left: 62px;
}

.form-message textarea {
  height: 92px;
  padding-top: 18px;
  resize: none;
}

.inquiry-form small {
  color: #7f8a86;
}

.inquiry-form button {
  width: 180px;
  height: 50px;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 25px;
}

.related-products {
  padding: 72px 0 90px;
  background: #fff;
}

.related-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 60px;
}

.related-heading p {
  margin: 0;
  color: var(--green-700);
  font-weight: 700;
}

.related-row {
  display: grid;
  grid-template-columns: 42px repeat(4, 1fr) 42px;
  gap: 28px;
  align-items: center;
}

.related-row.related-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.related-card {
  min-height: 260px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 6px;
}

.related-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.related-card h3 {
  margin: 20px 0 22px;
  font-size: 16px;
  line-height: 1.35;
}

.related-card p {
  margin: 0;
  color: #9aa39f;
  text-align: center;
}

@media (max-width: 1280px) {
  .detail-layout {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }

  .product-summary {
    grid-template-columns: 360px 1fr;
    gap: 38px;
  }

  .detail-image-card {
    height: 360px;
  }

  .detail-image-card img {
    width: 300px;
    height: 300px;
  }

  .detail-info h2 {
    font-size: 32px;
  }

  .related-row {
    gap: 18px;
  }
}

/* About page */
.about-subhero {
  background: linear-gradient(rgba(6, 59, 40, 0.86), rgba(6, 59, 40, 0.86)), url("../img/hero-bg.png") center / cover no-repeat;
}

.about-overview {
  padding: 54px 0 10px;
  background: linear-gradient(180deg, #f7faf8 0%, #fff 100%);
}

.about-hero {
  padding: 58px 0 48px;
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 78px;
  align-items: start;
}

.breadcrumb-text {
  margin: 0 0 28px;
  color: #6f7975;
  font-size: 13px;
}

.about-hero-copy h1 {
  max-width: 610px;
  margin: 0 0 24px;
  color: #163e2c;
  font-size: 48px;
  line-height: 1.14;
}

.about-hero-copy > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #4d5b56;
  font-size: 16px;
  line-height: 1.75;
}

.factory-card {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.factory-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  border-radius: 5px;
}

.factory-card figcaption {
  margin-top: 16px;
  color: var(--green-700);
  font-weight: 700;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.about-overview .about-stat-grid {
  margin-top: 0;
}

.about-stat-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.about-stat-grid i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--green-700);
  background: #edf7f2;
  border-radius: 50%;
}

.about-stat-grid i svg {
  width: 24px;
  height: 24px;
}

.about-stat-grid strong {
  display: block;
  color: var(--green-700);
  font-size: 32px;
  line-height: 1;
}

.about-stat-grid span {
  display: block;
  margin-top: 12px;
  color: #5d6864;
}

.company-story {
  padding: 70px 0;
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.story-main-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 5px;
}

.story-gallery div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-gallery div img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
}

.story-gallery div img:hover,
.story-gallery div img.is-active {
  border: 3px solid var(--green-700);
  box-shadow: 0 12px 24px rgba(6, 59, 40, .14);
  transform: translateY(-2px);
}

.story-copy h2 {
  max-width: 860px;
  margin: 0 0 24px;
  color: #163e2c;
  font-size: 36px;
  line-height: 1.2;
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 28px;
  color: #4d5b56;
  font-size: 16px;
  line-height: 1.75;
}

.about-content {
  max-width: none;
  margin-bottom: 28px;
  color: #4d5b56;
  font-size: 16px;
  line-height: 1.75;
}

.about-content p {
  margin: 0 0 18px;
}

.about-content img {
  max-width: 100%;
  height: auto;
}

.story-points {
  display: flex;
  gap: 24px;
}

.story-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--green-700);
  font-weight: 700;
  background: #eef7f2;
  border-radius: 22px;
}

.story-points svg {
  font-size: 18px;
}

.advantage-section {
  padding: 64px 0 72px;
  background: var(--soft);
}

.advantage-section h2 {
  margin: 0 0 40px;
  color: #163e2c;
  font-size: 36px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.advantage-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  min-height: 150px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.advantage-grid article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
}

.advantage-grid article > span svg {
  font-size: 24px;
}

.advantage-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.advantage-grid p {
  margin: 0;
  color: #5d6864;
  line-height: 1.6;
}

.markets-section {
  padding: 64px 0;
  background: #fff;
}

.market-panel {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
  padding: 42px 48px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.market-panel h2 {
  margin: 0 0 18px;
  color: #163e2c;
  font-size: 30px;
}

.market-panel p {
  margin: 0;
  color: #4d5b56;
  line-height: 1.65;
}

.brand-chips {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.brand-chips span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  color: var(--green-700);
  font-weight: 700;
  background: #eef7f2;
  border-radius: 17px;
}

.market-panel article {
  padding: 28px;
  background: var(--soft);
  border-radius: 8px;
}

.market-panel article svg {
  color: var(--green-700);
  font-size: 32px;
}

.market-panel article h3 {
  margin: 14px 0 12px;
  font-size: 20px;
}

.about-cta {
  padding: 0 0 72px;
  background: #fff;
}

.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  color: #fff;
  background: var(--green-700);
  border-radius: 8px;
}

.about-cta-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.about-cta-box p {
  margin: 0;
  color: #e8f5ef;
}

.about-cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  height: 48px;
  color: var(--green-700);
  font-weight: 700;
  background: #fff;
  border-radius: 24px;
}

@media (max-width: 1280px) {
  .about-hero-inner {
    grid-template-columns: 1fr 390px;
    gap: 48px;
  }

  .story-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .story-main-img {
    height: 330px;
  }

  .market-panel {
    grid-template-columns: 1fr 280px;
    gap: 36px;
  }
}

/* News list page */
.news-subhero {
  background: linear-gradient(rgba(6, 59, 40, 0.86), rgba(6, 59, 40, 0.86)), url("../img/hero-bg.png") center / cover no-repeat;
}

.article-list-section {
  padding: 70px 0 84px;
  background: var(--soft);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: start;
}

.article-main h2 {
  margin: 0 0 28px;
  font-size: 38px;
}

.article-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-bottom: 34px;
  padding: 0 24px;
  color: #5d6864;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 6px;
}

.article-filter svg {
  color: var(--green-700);
  font-size: 20px;
}

.featured-article {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  margin-bottom: 34px;
  padding: 22px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.featured-article img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-copy {
  position: relative;
  padding: 20px 10px;
}

.featured-copy span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 22px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  background: #e8f4ee;
  border-radius: 17px;
}

.featured-copy time {
  position: absolute;
  top: 28px;
  right: 12px;
  color: #909b96;
}

.featured-copy h3 {
  margin: 36px 0 14px;
  font-size: 28px;
  line-height: 1.25;
}

.featured-copy p {
  margin: 0;
  color: #5d6864;
  line-height: 1.55;
}

.article-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.article-card-small {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr auto;
  gap: 18px 28px;
  min-height: 230px;
  padding: 22px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
}

.article-card-small img {
  width: 260px;
  height: 176px;
  object-fit: cover;
}

.article-card-small strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 13px;
}

.article-card-small h3 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.25;
}

.article-card-small p {
  margin: 0;
  color: #5d6864;
  line-height: 1.45;
}

.article-card-small > a {
  grid-column: 1;
  align-self: end;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}

.article-card-small time {
  grid-column: 2;
  align-self: end;
  justify-self: end;
  color: #909b96;
}

.news-sidebar {
  display: grid;
  gap: 28px;
}

.hot-tag-box h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 16px;
  color: var(--ink);
  font-size: 24px;
}

.hot-tag-box h2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 3px;
  content: "";
  background: var(--green-700);
}

.hot-tag-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hot-tag-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 38px;
  padding: 0 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #d7e3de;
  border-radius: 19px;
}

.article-support-cta {
  padding: 0 0 72px;
  background: var(--soft);
}

@media (max-width: 1280px) {
  .article-layout {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }

  .featured-article {
    grid-template-columns: 320px 1fr;
  }

  .article-card-small {
    grid-template-columns: 220px 1fr;
  }

  .article-card-small img {
    width: 220px;
  }
}

/* News detail page */
.news-detail-section {
  padding: 70px 0 72px;
  background: var(--soft);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: start;
}

.news-article {
  min-width: 0;
  padding: 48px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.article-category {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 22px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  background: #e8f4ee;
  border-radius: 17px;
}

.news-article h2 {
  max-width: 720px;
  margin: 34px 0 18px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.18;
}

.article-meta {
  margin: 0 0 26px;
  color: #8b9792;
  font-size: 13px;
}

.article-meta span {
  margin: 0 14px;
  color: #c3cec9;
}

.article-main-image {
  max-width: 100%;
  height: 356px;
  object-fit: cover;
}

.article-caption {
  margin: 14px 0 28px;
  color: #8b9792;
  font-size: 13px;
}

.article-body {
  color: #4d5a56;
  font-size: 15px;
  line-height: 1.8;
}

.article-body p {
  margin: 0 0 26px;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.article-body blockquote {
  margin: 30px 0;
  padding: 26px 32px;
  color: var(--green-800);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  background: #eef7f2;
  border-left: 4px solid var(--green-700);
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #e1eae6;
}

.article-tags strong {
  margin-right: 2px;
  color: var(--ink);
}

.article-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  background: #f4faf7;
  border: 1px solid #d7e3de;
  border-radius: 17px;
}

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #dce7e2;
  border-radius: 6px;
}

.article-pager a {
  padding: 18px 22px;
  color: #5d6864;
  background: #fbfdfc;
}

.article-pager a + a {
  color: var(--green-700);
  font-weight: 700;
  text-align: right;
  border-left: 1px solid #dce7e2;
}

.related-news-section {
  padding: 56px 0 70px;
  background: #fff;
}

.related-news-section h2 {
  margin: 0 0 34px;
  font-size: 32px;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-news-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  min-height: 124px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.related-news-card img {
  width: 128px;
  height: 84px;
  object-fit: cover;
}

.related-news-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 12px;
}

.related-news-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.related-news-card time {
  color: #8b9792;
  font-size: 13px;
}

@media (max-width: 1280px) {
  .news-detail-layout {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }

  .news-article {
    padding: 40px;
  }

  .related-news-card {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }

  .related-news-card img {
    width: 110px;
  }
}

/* Contact page */
.contact-subhero {
  padding: 76px 0;
  background: linear-gradient(rgba(6, 59, 40, 0.84), rgba(6, 59, 40, 0.84)), url("../img/hero-bg.png") center / cover no-repeat;
}

.contact-hero-tools {
  display: grid;
  gap: 14px;
  min-width: 320px;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 23px;
}

.contact-main-section {
  padding: 70px 0 50px;
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: start;
}

.contact-form-card {
  min-width: 0;
  padding: 42px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.18;
}

.contact-form-card > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 30px;
  color: #5d6864;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #d7e3de;
  outline: none;
}

.contact-form input {
  height: 48px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #89958f;
}

.contact-form small {
  color: #7b8782;
  line-height: 1.6;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 174px;
  height: 46px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 23px;
}

.contact-info-panel {
  padding-top: 20px;
}

.contact-info-panel h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.contact-info-panel > p {
  margin: 0 0 28px;
  color: #5d6864;
  line-height: 1.6;
}

.contact-info-list {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.contact-info-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 24px;
}

.contact-info-card h3 {
  margin: 2px 0 12px;
  color: var(--green-700);
  font-size: 15px;
}

.contact-info-card p {
  margin: 0;
  color: #4c5753;
  line-height: 1.55;
}

.contact-process-section {
  padding: 0 0 76px;
  background: var(--soft);
}

.contact-process-section h2 {
  max-width: 620px;
  margin: 0 0 34px;
  font-size: 32px;
  line-height: 1.22;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-process-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
}

.contact-process-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 50%;
}

.contact-process-card h3 {
  margin: 2px 0 12px;
  font-size: 20px;
}

.contact-process-card p {
  margin: 0;
  color: #5d6864;
  line-height: 1.55;
}

.contact-location-section {
  padding: 56px 0 70px;
  background: #fff;
}

.contact-location-section h2 {
  margin: 0 0 34px;
  font-size: 32px;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-location-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  min-height: 124px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.contact-location-card img {
  width: 128px;
  height: 84px;
  object-fit: cover;
}

.contact-location-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 12px;
}

.contact-location-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.contact-location-card p {
  margin: 0;
  color: #8b9792;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1280px) {
  .contact-grid {
    grid-template-columns: 1fr 380px;
    gap: 36px;
  }

  .contact-form-card {
    padding: 36px;
  }

  .contact-location-card {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }

  .contact-location-card img {
    width: 110px;
  }
}

/* Homepage animation and interaction refinements */
.home-page .reveal {
  opacity: 0;
}

.home-page .reveal.animate__animated {
  opacity: 1;
  animation-delay: var(--animate-delay, 0s);
  animation-duration: .85s;
}

.home-page .hero-search {
  animation-duration: .8s;
  left: 50%;
  top: auto;
  bottom: 34px;
  margin-left: -360px;
  transform: none;
}

.home-page .category-card,
.home-page .hot-card,
.home-page .news-card,
.home-page .why-grid article,
.home-page .why-icon,
.home-page .thumb-row img,
.home-page .btn,
.home-page .outline-btn,
.home-page .arrow,
.home-page .hero-search {
  transition: transform .58s cubic-bezier(.22, .61, .36, 1), box-shadow .58s cubic-bezier(.22, .61, .36, 1), border-color .58s ease, background-color .58s ease, color .58s ease;
}

.home-page .category-card {
  overflow: hidden;
  padding: 0 0 18px;
}

.home-page .category-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.home-page .category-card h2 {
  margin-top: 14px;
  margin-bottom: 10px;
  padding: 0 14px;
}

.home-page .category-card > a:last-child {
  padding: 0 14px;
}

.home-page .category-card img,
.home-page .hot-card img,
.home-page .news-card img,
.home-page .clients img,
.home-page .about-media .factory {
  transition: transform .72s cubic-bezier(.22, .61, .36, 1);
}

.home-page .category-card:hover {
  border-color: #b9d6c8;
  box-shadow: 0 16px 34px rgba(6, 59, 40, .12);
  transform: translateY(-4px);
}

.home-page .category-card:hover img {
  transform: scale(1.06);
}

.home-page .hot-card:hover,
.home-page .news-card:hover {
  border-color: #b9d6c8;
  box-shadow: 0 16px 34px rgba(6, 59, 40, .12);
  transform: translateY(-5px);
}

.home-page .hot-card {
  height: 262px;
  padding: 0 0 18px;
  overflow: hidden;
}

.home-page .hot .container {
  width: min(1360px, calc(100% - 48px));
}

.home-page .news .container {
  width: min(1360px, calc(100% - 48px));
}

.home-page .hot-card a {
  display: block;
  height: 100%;
}

.home-page .hot-card img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.home-page .hot-card h3 {
  margin: 16px 14px 0;
}

.home-page .news-card .date {
  z-index: 2;
}

.home-page .hot-card:hover img,
.home-page .news-card:hover img,
.home-page .clients img:hover,
.home-page .about-media .factory:hover {
  transform: scale(1.04);
}

.home-page .why-grid article:hover {
  transform: translateY(-4px);
}

.home-page .why-grid article:hover .why-icon,
.home-page .thumb-row img:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
  transform: translateY(-3px);
}

.home-page .btn,
.home-page .outline-btn,
.home-page .category-card a,
.home-page .news-body a {
  gap: 7px;
}

.home-page .btn svg,
.home-page .outline-btn svg,
.home-page .category-card a svg,
.home-page .news-body a svg {
  width: 14px;
  height: 14px;
}

.home-page .why-icon {
  color: #fff;
  box-shadow: 0 0 0 6px rgba(12, 112, 69, .16);
}

.home-page .stats.icon-stats div::before {
  content: none;
}

.home-page .stats.icon-stats span {
  display: grid;
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #0c7045;
  background: #fff;
  border: 1px solid #d9e4df;
  border-radius: 50%;
}

.home-page .stats.icon-stats span svg {
  width: 18px;
  height: 18px;
}

.home-page .video-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.home-page .video-box button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #0c7045;
  background: rgba(255, 255, 255, .86);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(6, 59, 40, .22);
  transform: translate(-50%, -50%);
  transition: transform .58s cubic-bezier(.22, .61, .36, 1), background-color .58s ease, box-shadow .58s ease;
}

.home-page .video-box button:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 59, 40, .28);
  transform: translate(-50%, -50%) scale(1.06);
}

.home-page .video-box button svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.home-page .thumb-row img {
  cursor: pointer;
}

.home-page .thumb-row img.is-active {
  border: 3px solid #0c7045;
}

.home-page .btn:hover,
.home-page .outline-btn:hover,
.home-page .hero-search .search-btn:hover {
  box-shadow: 0 12px 24px rgba(12, 112, 69, .24);
  transform: translateY(-2px);
}

.home-page .hero-search .search-btn:hover {
  background: #095f39;
  box-shadow: none;
  transform: none;
}

.home-page .carousel-wrap {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}

.home-page .carousel-viewport {
  min-width: 0;
  overflow: hidden;
}

.home-page .carousel-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .68s cubic-bezier(.22, .61, .36, 1);
}

.home-page .hot-track .hot-card {
  flex: 0 0 calc((100% - 72px) / 5);
}

.home-page .news-carousel {
  margin-top: 48px;
}

.home-page .news-track {
  gap: 34px;
}

.home-page .news-track .news-card {
  flex: 0 0 calc((100% - 68px) / 3);
}

.home-page .arrow:hover {
  color: #fff;
  background: #0c7045;
  border-color: #0c7045;
  transform: translateY(-2px);
}

.home-page .arrow:disabled {
  cursor: default;
  opacity: .35;
  transform: none;
  box-shadow: none;
}

.home-page .carousel-wrap.is-static .arrow {
  visibility: hidden;
}

/* Shared page animation and hover states */
.page [data-animate] {
  opacity: 0;
}

.page [data-animate].animate__animated {
  opacity: 1;
  animation-delay: var(--animate-delay, 0s);
  animation-duration: .82s;
}

.subhero,
.breadcrumb-strip,
.about-stat-grid article,
.story-gallery,
.advantage-grid article,
.market-panel,
.market-panel article,
.about-cta-box,
.cta-box,
.list-heading,
.list-toolbar,
.list-product,
.detail-image-card,
.detail-card,
.inquiry-form,
.related-card,
.article-filter,
.article-card-small,
.news-article,
.article-main-image,
.article-pager a,
.related-news-card,
.side-search,
.side-panel,
.side-news,
.hot-tag-box,
.category-menu a,
.sidebar-cta {
  transition: transform .56s cubic-bezier(.22, .61, .36, 1), box-shadow .56s cubic-bezier(.22, .61, .36, 1), border-color .56s ease, background-color .56s ease, color .56s ease;
}

.about-stat-grid article:hover,
.advantage-grid article:hover,
.market-panel article:hover,
.about-cta-box:hover,
.cta-box:hover,
.list-heading:hover,
.list-toolbar:hover,
.list-product:hover,
.detail-image-card:hover,
.detail-card:hover,
.inquiry-form:hover,
.related-card:hover,
.article-filter:hover,
.article-card-small:hover,
.news-article:hover,
.related-news-card:hover,
.side-search:hover,
.side-panel:hover,
.side-news:hover,
.hot-tag-box:hover {
  transform: translateY(-4px);
  border-color: #b9d6c8;
  box-shadow: 0 16px 34px rgba(6, 59, 40, .1);
}

.list-product img,
.related-card img,
.article-card-small img,
.related-news-card img,
.article-main-image,
.story-main-img {
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.list-product:hover img,
.related-card:hover img,
.article-card-small:hover img,
.related-news-card:hover img,
.article-main-image:hover,
.story-gallery:hover .story-main-img {
  transform: scale(1.035);
}

.category-menu a:hover,
.sidebar-cta:hover,
.article-pager a:hover {
  color: var(--green-700);
  background: #f3f8f5;
  transform: translateX(4px);
}

/* Responsive layout */
@media (max-width: 1180px) {
  body {
    min-width: 0;
  }

  .container,
  .copyright,
  .home-page .hot .container,
  .home-page .news .container {
    width: calc(100% - 48px);
  }

  .navbar {
    height: auto;
  }

  .navbar-inner {
    gap: 24px;
    min-height: 76px;
  }

  .nav-links {
    gap: 24px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links > li {
    flex: 0 0 auto;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .about-stat-grid,
  .related-row.related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .clients-layout,
  .story-layout,
  .market-panel,
  .about-cta-box,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-cta-box,
  .cta-box {
    display: grid;
    align-items: start;
  }

  .list-layout,
  .detail-layout,
  .article-layout,
  .news-detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-grid,
  .related-news-grid,
  .contact-process-grid,
  .contact-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-summary {
    grid-template-columns: minmax(320px, 420px) 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .container,
  .copyright,
  .home-page .hot .container,
  .home-page .news .container {
    width: calc(100% - 36px);
  }

  .topbar {
    height: auto;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .contact-line,
  .social-line {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .navbar-inner {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 16px;
    padding: 14px 0 12px;
  }

  .logo img {
    width: 162px;
    height: auto;
  }

  .nav-links {
    position: static;
    z-index: 60;
    display: none;
    flex: 0 0 100vw;
    width: 100vw;
    max-height: none;
    margin: 0 0 -12px calc(50% - 50vw);
    gap: 0;
    padding: 0;
    overflow: visible;
    color: var(--ink);
    background: #f5f5f5;
    border: 0;
    border-radius: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-links > li {
    height: auto;
    min-height: 0;
    flex: none;
  }

  .site-header.nav-open .nav-links {
    display: block;
  }

  .nav-toggle {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px 10px;
    margin-left: auto;
    background: #7f9086;
    border-radius: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .16);
  }

  .nav-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: #fff;
    transition: transform .24s ease, opacity .24s ease;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: none;
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 1;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: none;
  }

  .nav-links a,
  .nav-links > li > a {
    display: block;
    height: auto;
    min-height: 40px;
    padding: 7px 52px 7px 14px;
    color: #26302c;
    font-size: 14px;
    line-height: 26px;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
  }

  .nav-links a.active::after {
    content: none;
  }

  .nav-links > li:last-child > a {
    border-bottom: 0;
  }

  .nav-links > li.has-submenu > a {
    padding-right: 52px;
  }

  .nav-links > li.has-submenu > a::before {
    top: 0;
    right: 0;
    display: flex;
    width: 40px;
    height: 100%;
    align-items: center;
    justify-content: center;
    content: "+";
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    background: #e6e6e6;
    border: 0;
    transform: none;
  }

  .nav-links > li.has-submenu:hover > a::before {
    transform: none;
  }

  .nav-links > li.has-submenu.submenu-open > a::before {
    content: "-";
    background: #d8d8d8;
  }

  .nav-links .nav-submenu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 0;
    visibility: visible;
    background: #f7f7f7;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-links .nav-submenu li {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .nav-links > li.has-submenu:hover > .nav-submenu,
  .nav-links > li.has-submenu:focus-within > .nav-submenu {
    transform: none;
  }

  .nav-links > li.submenu-open > .nav-submenu,
  .site-header.nav-open .nav-links > li.submenu-open > .nav-submenu {
    display: block;
  }

  .nav-links .nav-submenu a {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 9px 28px 9px 14px;
    color: #4c5753;
    font-size: 13px;
    line-height: 26px;
    font-weight: 400;
    white-space: normal;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
  }

  .nav-links .nav-submenu a:hover {
    padding-left: 14px;
    color: var(--green-700);
    background: #f0f5f2;
  }

  .hero {
    height: 520px;
  }

  .hero-dots {
    bottom: 118px;
  }

  .home-page .hero-search,
  .hero-search {
    left: 18px;
    right: 18px;
    bottom: 36px;
    width: auto;
    margin-left: 0;
    grid-template-columns: 160px minmax(0, 1fr) 132px;
  }

  .section-heading span {
    font-size: 54px;
  }

  .section-heading h1,
  .section-heading h2,
  .about h2,
  .story-copy h2,
  .advantage-section h2,
  .article-main h2,
  .news-article h2 {
    font-size: 30px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .why-grid,
  .advantage-grid,
  .about-stat-grid,
  .related-row.related-grid,
  .product-grid,
  .related-news-grid,
  .contact-process-grid,
  .contact-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .carousel-wrap {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .home-page .hot-track .hot-card,
  .home-page .news-track .news-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .section-top {
    justify-content: space-between;
    gap: 18px;
  }

  .outline-btn {
    position: static;
  }

  .subhero,
  .contact-subhero {
    padding: 56px 0;
  }

  .subhero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .subhero h1 {
    font-size: 36px;
  }

  .breadcrumb {
    min-width: 0;
    max-width: 100%;
  }

  .product-summary,
  .featured-article,
  .article-card-small {
    grid-template-columns: 1fr;
  }

  .article-card-small img,
  .featured-article img {
    width: 100%;
  }

  .article-card-small > a,
  .article-card-small time {
    grid-column: auto;
    justify-self: start;
  }

  .detail-image-card {
    height: auto;
    min-height: 320px;
    padding: 28px;
  }

  .detail-image-card img {
    width: min(100%, 320px);
    height: auto;
    max-height: 320px;
  }

  .form-half {
    width: 100%;
  }

  .contact-hero-tools {
    min-width: 0;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
  .copyright,
  .home-page .hot .container,
  .home-page .news .container {
    width: calc(100% - 28px);
  }

  body {
    font-size: 13px;
  }

  .contact-line {
    display: grid;
    gap: 8px;
  }

  .social-line {
    gap: 18px;
  }

  .nav-links {
    gap: 0;
    font-size: 13px;
  }

  .nav-submenu {
    display: none;
  }

  .site-header.nav-open .nav-links > li.submenu-open > .nav-submenu {
    display: block;
  }

  .hero {
    height: 430px;
  }

  .hero-dots {
    bottom: 158px;
  }

  .home-page .hero-search,
  .hero-search {
    bottom: 28px;
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .category-select,
  .hero-search input,
  .hero-search .search-btn {
    width: 100%;
    height: 46px;
    border-radius: 23px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
  }

  .hero-search input {
    border-left: 0;
    margin: 8px 0;
    background: #fff;
  }

  .products,
  .about,
  .hot,
  .news,
  .company-story,
  .advantage-section,
  .markets-section,
  .article-list-section,
  .news-detail-section,
  .product-list,
  .product-detail,
  .contact-main-section {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .section-heading span {
    display: none;
  }

  .section-heading.compact::before,
  .section-heading.compact::after {
    width: 28px;
  }

  .section-heading h1,
  .section-heading h2,
  .about h2,
  .story-copy h2,
  .advantage-section h2,
  .market-panel h2,
  .article-main h2,
  .news-article h2,
  .contact-form-card h2,
  .contact-info-panel h2,
  .contact-process-section h2,
  .contact-location-section h2 {
    font-size: 26px;
  }

  .category-grid,
  .why-grid,
  .advantage-grid,
  .about-stat-grid,
  .related-row.related-grid,
  .product-grid,
  .related-news-grid,
  .contact-process-grid,
  .contact-location-grid,
  .footer-grid,
  .stats,
  .story-gallery div,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .about .stats.icon-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .about .stats.icon-stats div {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .company-story .story-gallery {
    max-width: 100%;
    width: 100%;
    padding: 12px;
  }

  .company-story .story-layout,
  .company-story .story-copy,
  .company-story .story-gallery {
    min-width: 0;
  }

  .company-story .story-layout > *,
  .company-story .story-copy > *,
  .company-story .about-content,
  .company-story .about-content * {
    max-width: 100%;
  }

  .company-story .story-copy,
  .company-story .about-content {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .company-story .story-main-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .company-story .story-gallery div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .company-story .story-gallery div img {
    width: 100%;
    height: 78px;
    object-fit: cover;
  }

  .company-story .story-points {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .company-story .story-points span {
    max-width: 100%;
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child,
  .footer-grid > address,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .category-card,
  .home-page .hot-card,
  .news-card,
  .list-product,
  .related-card,
  .article-card-small,
  .news-article,
  .contact-form-card,
  .contact-info-card,
  .contact-process-card,
  .contact-location-card,
  .market-panel,
  .about-cta-box,
  .cta-box {
    padding: 22px;
  }

  .why-grid article,
  .about-stat-grid article,
  .advantage-grid article,
  .contact-info-card,
  .contact-process-card {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .why-icon,
  .about-stat-grid i,
  .advantage-grid article > span,
  .contact-info-card span,
  .contact-process-card span {
    width: 48px;
    height: 48px;
  }

  .side-news article {
    grid-template-columns: 82px 1fr;
  }

  .related-news-card,
  .contact-location-card {
    grid-template-columns: 1fr;
  }

  .related-news-card img,
  .contact-location-card img {
    width: 100%;
    height: 160px;
  }

  .home-page .carousel-wrap {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .arrow {
    width: 34px;
    height: 34px;
  }

  .home-page .hot-track .hot-card,
  .home-page .news-track .news-card {
    flex-basis: 100%;
  }

  .section-top,
  .list-heading,
  .list-toolbar,
  .article-filter,
  .article-pager,
  .hot-tags,
  .meta-note,
  .story-points,
  .brand-chips {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-page .news .section-top {
    align-items: center;
    text-align: center;
  }

  .home-page .news .section-heading.compact {
    width: 100%;
    justify-content: center;
  }

  .news-list-page .article-filter {
    display: none;
  }

  .article-pager {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-pager a + a {
    text-align: left;
    border-top: 1px solid #dce7e2;
    border-left: 0;
  }

  .product-grid.is-list .list-product {
    display: block;
    min-height: 0;
  }

  .product-grid.is-list .product-image-link {
    margin-bottom: 18px;
  }

  .product-grid.is-list .list-product > a:last-child,
  .list-product > a:last-child {
    position: static;
    margin-top: 18px;
  }

  .list-product img,
  .product-grid.is-list .list-product img,
  .article-main-image,
  .clients img,
  .story-main-img,
  .about-media .factory {
    height: auto;
    max-height: none;
  }

  .thumb-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .thumb-row img,
  .story-gallery div img {
    height: 78px;
  }

  .news-article {
    padding: 24px;
  }

  .article-meta span {
    margin: 0 6px;
  }

  .detail-card h2,
  .inquiry-form h2 {
    font-size: 24px;
  }

  .detail-card h2,
  .detail-content,
  .hot-tags,
  .next-bar {
    padding-right: 22px;
    padding-left: 22px;
  }

  .inquiry-form button,
  .contact-form button,
  .cta-box a,
  .about-cta-box a {
    width: 100%;
  }

  .subhero h1 {
    font-size: 30px;
  }

  .whatsapp {
    right: 12px;
    top: auto;
    bottom: 18px;
    width: 82px;
  }

  .whatsapp-card {
    width: 82px;
    height: 82px;
    padding: 10px 6px 8px;
    border-radius: 14px;
  }

  .whatsapp svg {
    width: 38px;
    height: 38px;
  }

  .whatsapp strong {
    font-size: 14px;
  }

  .whatsapp-numbers {
    display: none;
  }
}

@media (max-width: 420px) {
  .container,
  .copyright,
  .home-page .hot .container,
  .home-page .news .container {
    width: calc(100% - 24px);
  }

  .hero {
    height: 390px;
  }

  .section-heading h1,
  .section-heading h2,
  .about h2,
  .story-copy h2,
  .advantage-section h2,
  .market-panel h2,
  .article-main h2,
  .news-article h2,
  .contact-form-card h2 {
    font-size: 23px;
  }

  .category-card,
  .home-page .hot-card,
  .news-card,
  .list-product,
  .related-card,
  .article-card-small,
  .news-article,
  .contact-form-card,
  .market-panel {
    padding: 18px;
  }
}
