:root {
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --forest-950: #10261a;
  --forest-900: #173824;
  --forest-800: #1f4e31;
  --forest-700: #2d6a43;
  --forest-500: #5b8d69;
  --sage-200: #dbe6dc;
  --sage-100: #eef3ef;
  --sand-50: #f6f7f4;
  --sand-100: #ecefe9;
  --sand-200: #dfe5db;
  --clay-500: #d96f32;
  --clay-400: #e6844e;
  --ink-900: #172019;
  --ink-700: #4b574f;
  --ink-500: #748178;
  --white: #fff;
  --border: rgba(23, 32, 25, 0.1);
  --border-strong: rgba(23, 32, 25, 0.18);
  --shadow-soft: 0 18px 40px rgba(15, 24, 18, 0.06);
  --shadow-card: 0 8px 20px rgba(15, 24, 18, 0.06);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --container: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: #f3f5f2;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #112519;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.top-bar-inner {
  min-height: 40px;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.top-bar-item {
  white-space: nowrap;
}

.top-bar-marquee {
  min-width: 0;
  overflow: hidden;
}

.top-bar-marquee span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 32, 25, 0.08);
}

.header-main {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  border: 1px solid rgba(23, 32, 25, 0.08);
  box-shadow: var(--shadow-card);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-logo-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
}

.brand-logo-ring {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 2;
}

.brand-logo-leaf {
  fill: #f1f7df;
}

.brand-logo-vein {
  fill: none;
  stroke: var(--forest-900);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-root {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  min-width: 27px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--white);
  background: rgba(182, 108, 67, 0.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-logo-text {
  min-width: 0;
}

.site-title {
  display: block;
  color: var(--forest-950);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.site-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 12px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-search input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(23, 32, 25, 0.12);
  border-radius: 6px;
  background: #f7f8f6;
  padding: 0 18px;
  color: var(--ink-900);
  outline: 0;
  box-shadow: none;
}

.header-search input:focus {
  border-color: rgba(47, 98, 71, 0.48);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action-btn,
.header-phone {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.header-action-btn {
  border: 1px solid rgba(23, 32, 25, 0.12);
  color: var(--forest-900);
  background: #fff;
}

.header-phone {
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
  color: var(--white);
  background: var(--clay-500);
  box-shadow: none;
}

.header-phone span {
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.header-phone strong {
  font-size: 18px;
  line-height: 1.1;
}

.menu-toggle {
  display: none;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(23, 32, 25, 0.14);
  border-radius: 6px;
  background: #fff;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  border-radius: 0;
  background: var(--forest-900);
}

.menu-label {
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#main-nav {
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.94);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catalog-menu {
  position: relative;
  flex: 0 0 270px;
}

.catalog-trigger {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  color: var(--white);
  background: var(--clay-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-trigger em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.catalog-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: min(760px, calc(100vw - 48px));
  padding: 20px;
  border: 1px solid rgba(23, 32, 25, 0.08);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 24px 50px rgba(10, 18, 12, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.catalog-menu.is-open .catalog-dropdown,
.catalog-menu:hover .catalog-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.catalog-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(23, 32, 25, 0.08);
}

.catalog-dropdown-head strong {
  color: var(--forest-950);
  font-size: 18px;
  font-weight: 800;
}

.catalog-dropdown-head a {
  color: var(--clay-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.catalog-dropdown-card {
  padding: 14px;
  border: 1px solid rgba(23, 32, 25, 0.08);
  background: #f8faf7;
}

.catalog-dropdown-title,
.catalog-dropdown-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-dropdown-title {
  color: var(--forest-950);
  font-size: 15px;
  font-weight: 800;
}

.catalog-dropdown-title strong,
.catalog-dropdown-list em {
  color: var(--clay-500);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.catalog-dropdown-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.catalog-dropdown-list a {
  color: var(--ink-700);
  font-size: 14px;
}

.catalog-dropdown-empty {
  margin: 0;
  color: var(--ink-700);
}

.main-menu,
.site-nav ul,
.footer-bottom ul,
.feature-list,
.catalog-list,
.check-list,
.benefit-list,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.main-menu > li > a::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 0;
  background: var(--clay-400);
  transform: none;
}

.main-menu > li:hover > a,
.main-menu > .current-menu-item > a {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--white);
  color: var(--ink-900);
  border-radius: 0;
  box-shadow: var(--shadow-card);
}

.main-menu li:hover > .sub-menu {
  display: block;
}

.main-menu .sub-menu a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(20, 41, 31, 0.08);
}

.nav-extras {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.nav-extras a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-content {
  padding-bottom: 40px;
}

.hero-section,
.assurance-section,
.catalog-section,
.service-section,
.plant-section,
.applications-section,
.workflow-section,
.testimonial-section,
.cta-section,
.archive-section,
.page-section {
  padding: 48px 0;
}

.hero-section {
  padding-top: 34px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.workflow-panel,
.cta-panel,
.showcase-panel,
.testimonial-card,
.service-card,
.assurance-card,
.catalog-card,
.application-card,
.package-card,
.plant-card,
.prose article {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 44px;
  background: linear-gradient(180deg, #ffffff, #f7f9f6);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--forest-800);
  background: rgba(31, 78, 49, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-heading {
  margin-bottom: 26px;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.applications-copy h2,
.workflow-panel h2,
.cta-panel h2,
.hero-showcase h2 {
  margin: 18px 0 14px;
  color: var(--forest-950);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.028em;
}

.section-heading h2,
.section-copy h2,
.applications-copy h2,
.workflow-panel h2,
.cta-panel h2,
.hero-showcase h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.hero-description,
.section-copy p,
.applications-copy p,
.section-heading p,
.hero-showcase p,
.cta-panel p {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--clay-500);
}

.button-secondary {
  color: var(--forest-900);
  border: 1px solid rgba(23, 32, 25, 0.16);
  background: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-fact {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 41, 31, 0.08);
}

.hero-fact strong,
.tree-catalog-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-950);
  font-size: 16px;
  line-height: 1.3;
}

.hero-fact span {
  color: var(--ink-700);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-showcase {
  min-height: 340px;
  padding: 36px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 38, 26, 0.82), rgba(31, 78, 49, 0.52)),
    url("/wp-content/uploads/2024/01/mua-cay-cong-trinh.jpeg") center/cover no-repeat;
}

.hero-showcase h2,
.hero-showcase p,
.hero-showcase .hero-card-label {
  color: var(--white);
}

.hero-card-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-quick-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(23, 32, 25, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-quick-card strong,
.hero-contact-card strong {
  display: block;
  margin-top: 14px;
  color: var(--forest-950);
  font-size: 24px;
  line-height: 1.25;
}

.hero-contact-card p {
  margin: 8px 0 0;
  color: var(--ink-700);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.assurance-card,
.service-card,
.application-card,
.package-card,
.testimonial-card {
  padding: 28px;
}

.assurance-card h3,
.service-card h3,
.catalog-card h3,
.application-card h3,
.package-card h3,
.testimonial-card strong,
.process-card h3 {
  margin: 0 0 12px;
  color: var(--forest-950);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}

.assurance-card h3,
.service-card h3,
.catalog-card h3,
.application-card h3,
.package-card h3,
.process-card h3 {
  font-size: 24px;
}

.assurance-card p,
.service-card p,
.catalog-card p,
.application-card p,
.package-card p,
.process-card p,
.testimonial-card p,
.post-card-meta {
  margin: 0;
  color: var(--ink-700);
}

.section-split,
.applications-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.section-copy,
.applications-copy {
  padding: 24px 8px 0 0;
}

.applications-copy {
  display: grid;
  gap: 20px;
}

.applications-main-media,
.section-heading-image,
.hero-main-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage-100);
}

.applications-main-media img,
.section-heading-image img,
.hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.applications-main-media {
  aspect-ratio: 1.2 / 0.72;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list li,
.catalog-list li,
.check-list li,
.benefit-list li,
.footer-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before,
.catalog-list li::before,
.check-list li::before,
.benefit-list li::before,
.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay-400);
}

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

.catalog-card {
  overflow: hidden;
}

.catalog-card-media {
  position: relative;
  aspect-ratio: 1.15 / 0.82;
  background:
    radial-gradient(circle at top, rgba(95, 140, 113, 0.24), transparent 40%),
    var(--sage-100);
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at center, rgba(47, 98, 71, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(95, 140, 113, 0.18), rgba(182, 108, 67, 0.14));
}

.catalog-card-body {
  padding: 24px;
}

.catalog-tag,
.application-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--forest-800);
  background: rgba(31, 78, 49, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-grid,
.applications-cards,
.testimonial-grid,
.plant-grid {
  display: grid;
  gap: 20px;
}

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

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

.service-card {
  position: relative;
  padding-top: 74px;
  background: #fff;
}

.service-number,
.process-step {
  position: absolute;
  top: 26px;
  left: 26px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--white);
  background: var(--forest-900);
  font-size: 14px;
  font-weight: 800;
}

.plant-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-950), var(--forest-900));
}

.plant-section .eyebrow,
.workflow-panel-dark .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
}

.plant-section h2,
.plant-section p,
.workflow-panel-dark h2,
.workflow-panel-dark h3,
.workflow-panel-dark p {
  color: var(--white);
}

.products-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.products-header h2 {
  margin-top: 16px;
}

.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.section-more::after,
.text-link::after {
  content: "+";
  font-size: 16px;
}

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

.plant-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.plant-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
}

.plant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.plant-card:hover .plant-thumb img {
  transform: scale(1.05);
}

.plant-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(20, 41, 31, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.plant-body {
  padding: 20px;
}

.plant-body h3 {
  margin: 0 0 10px;
  color: var(--forest-950);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.plant-body p {
  margin: 0;
  color: var(--ink-700);
}

.plant-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.plant-price {
  color: var(--clay-500);
  font-size: 15px;
  font-weight: 800;
}

.plant-price del {
  color: var(--ink-500);
  font-size: 13px;
}

.plant-price ins {
  text-decoration: none;
}

.plant-meta a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--forest-900);
  font-size: 13px;
  font-weight: 800;
}

.empty-note {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

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

.application-card {
  overflow: hidden;
  padding: 0;
}

.application-card-media {
  aspect-ratio: 1.35 / 0.7;
  overflow: hidden;
  background: var(--sage-100);
}

.application-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.application-card:hover .application-card-media img {
  transform: scale(1.04);
}

.application-card .application-label {
  margin: 24px 24px 0;
}

.application-card h3,
.application-card p,
.application-card .text-link {
  margin-left: 24px;
  margin-right: 24px;
}

.application-card .text-link {
  margin-bottom: 24px;
}

.workflow-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.workflow-panel {
  padding: 34px;
}

.workflow-panel-dark {
  background: linear-gradient(145deg, var(--forest-950), var(--forest-800));
  border-color: rgba(255, 255, 255, 0.08);
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.process-card {
  position: relative;
  padding: 20px 20px 20px 82px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.workflow-panel-dark .process-step {
  background: rgba(255, 255, 255, 0.14);
}

.package-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.rating-stars {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--clay-400);
  background: rgba(217, 111, 50, 0.08);
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid rgba(31, 78, 49, 0.18);
}

.testimonial-card p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.65;
}

.testimonial-author {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 32, 25, 0.08);
}

.testimonial-author strong {
  margin: 0;
  color: var(--forest-950);
  font-size: 18px;
  line-height: 1.25;
}

.testimonial-card span {
  display: block;
  margin-top: 0;
  color: var(--ink-500);
  font-size: 14px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px 40px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 41, 31, 0.9), rgba(47, 98, 71, 0.82)),
    url("/wp-content/uploads/2024/02/cay-hoa-kieng-dep.jpg") center/cover no-repeat;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section-shop {
  padding-top: 26px;
  padding-bottom: 10px;
}

.hero-section-shop .hero-shell {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.hero-section-shop .hero-copy-main {
  padding: 48px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(217, 111, 50, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff, #f6f8f5);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: stretch;
  gap: 30px;
  box-shadow: var(--shadow-soft);
}

.hero-copy-content,
.hero-copy-side {
  min-width: 0;
}

.hero-copy-content {
  display: flex;
  flex-direction: column;
}

.hero-copy-side {
  display: grid;
  gap: 16px;
}

.hero-main-media {
  min-height: 300px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.hero-main-media img {
  min-height: 300px;
}

.hero-copy-side .hero-stat-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.hero-section-shop .hero-visual-shop {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-slider-section {
  padding: 14px 0 18px;
}

.hero-slider-head {
  margin-bottom: 16px;
}

.hero-slider-panel {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-slider {
  display: grid;
  gap: 14px;
}

.hero-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 32, 25, 0.08);
  box-shadow: none;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #fff;
}

.hero-slide-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 42px;
  background: linear-gradient(180deg, #ffffff, #f6f8f5);
}

.hero-slide-media {
  order: -1;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--sage-100);
}

.hero-slide-media::after {
  display: none;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hero-slide:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(31, 78, 49, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5f7f3);
}

.hero-slide:nth-child(3n) {
  background:
    radial-gradient(circle at top right, rgba(31, 78, 49, 0.1), transparent 24%),
    linear-gradient(180deg, #fffdfb, #f4f7f2);
}

.hero-slide-contact {
  background:
    radial-gradient(circle at top right, rgba(217, 111, 50, 0.16), transparent 24%),
    linear-gradient(180deg, #fffaf7, #ffffff);
}

.hero-slide h2 {
  margin: 14px 0 10px;
  color: var(--forest-950);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-slide p {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
}

.hero-slide-footer,
.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-slide-footer {
  flex-wrap: wrap;
}

.hero-slider-controls {
  position: static;
  justify-content: space-between;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 32, 25, 0.16);
  cursor: pointer;
}

.hero-slider-dot.is-active {
  width: 28px;
  background: var(--clay-500);
}

.hero-slider-arrows {
  display: flex;
  gap: 8px;
}

.hero-slider-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 32, 25, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--forest-900);
  font-size: 20px;
  cursor: pointer;
}

.hero-slide .hero-card-label {
  color: var(--forest-800);
  background: rgba(31, 78, 49, 0.08);
}

.hero-slide .hero-showcase-badge {
  color: var(--forest-800);
  border-color: rgba(31, 78, 49, 0.16);
  background: rgba(31, 78, 49, 0.06);
}

.hero-slide .button-secondary {
  color: var(--forest-900);
  border-color: rgba(23, 32, 25, 0.16);
  background: #fff;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-metric-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.hero-metric-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.hero-showcase-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-showcase-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.hero-side-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-side-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-card-accent {
  border-color: rgba(217, 111, 50, 0.24);
  background: linear-gradient(180deg, #fff8f3, #ffffff);
}

.hero-side-card h3,
.shortcut-card h3,
.conversion-card-shop h3,
.section-heading-shop h2 {
  margin: 14px 0 10px;
  color: var(--forest-950);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.24;
}

.hero-side-card h3,
.shortcut-card h3,
.conversion-card-shop h3 {
  font-size: 22px;
}

.hero-side-card p,
.shortcut-card p,
.conversion-card-shop p,
.section-heading-shop p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.68;
}

.hero-contact-card h3 {
  font-size: 28px;
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-stat-card {
  position: relative;
  padding: 18px 18px 18px 60px;
  border: 1px solid rgba(23, 32, 25, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
}

.hero-stat-index,
.shortcut-icon,
.conversion-index {
  position: absolute;
  left: 18px;
  top: 18px;
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--white);
  background: var(--forest-900);
  font-size: 12px;
  font-weight: 800;
}

.hero-stat-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--forest-950);
  font-size: 17px;
  line-height: 1.35;
}

.hero-stat-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
}

.shortcut-section {
  padding: 34px 0 52px;
}

.conversion-section {
  padding: 56px 0;
  background: #fff;
}

.section-heading-shop,
.shelf-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading-media {
  align-items: stretch;
}

.section-heading-image {
  flex: 0 0 360px;
  aspect-ratio: 1.35 / 0.72;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.section-heading-image-small {
  flex-basis: 240px;
  aspect-ratio: 1.2 / 0.72;
}

.section-heading-shop h2 {
  max-width: 880px;
  font-size: 36px;
  letter-spacing: 0;
}

.section-heading-shop p {
  max-width: 780px;
}

.shortcut-grid,
.catalog-strip,
.conversion-grid {
  display: grid;
  gap: 18px;
}

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

.shortcut-card,
.conversion-card-shop {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.shortcut-card {
  background: #fff;
}

.shortcut-card .text-link,
.conversion-card-shop .text-link {
  margin-top: 16px;
}

.shortcut-card-media,
.service-card-media,
.conversion-card-media {
  position: relative;
  overflow: hidden;
  background: var(--sage-100);
}

.shortcut-card-media,
.conversion-card-media {
  aspect-ratio: 1.35 / 0.72;
}

.service-card-media {
  aspect-ratio: 1.35 / 0.66;
}

.shortcut-card-media img,
.service-card-media img,
.conversion-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shortcut-card:hover .shortcut-card-media img,
.service-card-shop:hover .service-card-media img,
.conversion-card-shop:hover .conversion-card-media img {
  transform: scale(1.04);
}

.shortcut-card-body {
  position: relative;
  padding: 24px 24px 24px 70px;
}

.assurance-section-shop {
  padding-top: 28px;
  padding-bottom: 56px;
}

.catalog-section-shop {
  padding: 58px 0;
  background: linear-gradient(180deg, rgba(236, 239, 233, 0.86), rgba(255, 255, 255, 0.92));
}

.catalog-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-card-shelf {
  overflow: hidden;
  border-top: 3px solid rgba(31, 78, 49, 0.24);
  background: #fff;
}

.catalog-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 14px;
  padding: 0 10px;
  border: 1px solid rgba(31, 78, 49, 0.14);
  border-radius: 4px;
  color: var(--forest-800);
  background: rgba(31, 78, 49, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.catalog-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 4px;
  color: var(--white);
  border: 1px solid rgba(20, 41, 31, 0.12);
  background: var(--forest-900);
  font-size: 13px;
  font-weight: 800;
}

.service-section-shop {
  padding: 58px 0;
  background: #f8faf7;
}

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

.service-card-shop {
  padding: 0;
  overflow: hidden;
  border-top: 3px solid rgba(217, 111, 50, 0.32);
}

.service-card-body {
  position: relative;
  padding: 26px;
}

.service-card-shop .service-number {
  position: static;
  min-width: 36px;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
}

.service-icon,
.conversion-icon {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(31, 78, 49, 0.12);
  background: rgba(31, 78, 49, 0.06);
}

.service-icon::before,
.service-icon::after,
.conversion-icon::before,
.conversion-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.service-icon::before {
  left: 12px;
  top: 11px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--forest-800);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-35deg);
}

.service-icon::after {
  left: 20px;
  top: 21px;
  width: 2px;
  height: 12px;
  background: var(--forest-800);
}

.conversion-icon::before {
  left: 11px;
  top: 12px;
  width: 20px;
  height: 14px;
  border: 2px solid var(--forest-800);
  border-radius: 3px;
}

.conversion-icon::after {
  left: 15px;
  top: 27px;
  width: 16px;
  height: 2px;
  background: var(--clay-500);
}

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

.conversion-card-shop {
  border-top: 3px solid rgba(31, 78, 49, 0.22);
  background: #fff;
}

.conversion-card-body {
  position: relative;
  padding: 72px 24px 24px 70px;
}

.conversion-card-shop .conversion-index {
  top: 24px;
}

.conversion-card-shop:nth-child(2) {
  border-top-color: rgba(217, 111, 50, 0.32);
}

.conversion-card-shop:nth-child(3) {
  border-top-color: rgba(47, 98, 71, 0.32);
}

.plant-section-shop {
  padding: 60px 0;
  color: inherit;
  background: linear-gradient(180deg, #eef3ef, #ffffff);
}

.plant-section-shop .eyebrow {
  color: var(--forest-800);
  background: rgba(47, 98, 71, 0.09);
}

.plant-section-shop h2,
.plant-section-shop p {
  color: inherit;
}

.plant-section-shop .section-more {
  color: var(--forest-800);
}

.plant-grid-shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plant-card-shop {
  border-color: rgba(20, 41, 31, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.plant-card-shop .plant-thumb {
  aspect-ratio: 1 / 0.82;
  background: var(--sage-100);
}

.plant-card-shop .plant-body {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.plant-card-shop .plant-body h3 {
  min-height: 50px;
  font-size: 18px;
}

.plant-card-shop .plant-body p {
  font-size: 14px;
  line-height: 1.55;
}

.plant-card-shop .plant-meta {
  align-items: end;
  margin-top: auto;
  padding-top: 16px;
}

.plant-card-shop .plant-meta a {
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}

.plant-section-shop .empty-note {
  background: rgba(47, 98, 71, 0.08);
  color: var(--forest-900);
}

.archive-section .section-heading,
.page-section .section-heading {
  margin-bottom: 28px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.post-card-link {
  display: block;
}

.post-card-body {
  padding: 20px;
}

.post-card-body h2 {
  margin: 10px 0 10px;
  color: var(--forest-950);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}

.prose article {
  padding: 34px;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input,
.search-form button {
  min-height: 46px;
  border-radius: 4px;
  border: 1px solid rgba(20, 41, 31, 0.12);
}

.search-form input {
  width: 100%;
  padding: 0 16px;
}

.search-form button {
  padding: 0 18px;
  color: var(--white);
  background: var(--forest-800);
}

.site-footer {
  padding: 54px 0 90px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #112519, #0b1710);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 26px;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--white);
}

.site-footer h3,
.footer-logo {
  font-family: var(--font-heading);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.footer-brand p,
.footer-cta p {
  margin: 14px 0 16px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-hotline-box {
  display: inline-grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hotline-box span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.footer-hotline-box a {
  color: var(--sand-100);
  font-size: 24px;
  font-weight: 800;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-list li::before {
  background: var(--clay-400);
}

.footer-cta {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border-radius: 4px;
  padding: 0 14px;
  color: var(--white) !important;
  background: var(--clay-500);
  font-weight: 800;
}

.footer-button.is-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: flex;
  align-items: end;
  gap: 12px;
}

.contact-float-toggle {
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  padding: 0 20px;
  color: var(--white);
  background: var(--clay-500);
  box-shadow: var(--shadow-card);
  font-weight: 800;
  cursor: pointer;
}

.contact-float-panel {
  width: min(340px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  transform: translateX(calc(100% + 18px));
  opacity: 0;
  visibility: hidden;
  transition: all 0.24s ease;
}

.contact-float.is-open .contact-float-panel {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.contact-float-item {
  display: block;
  padding: 14px;
  border-radius: 4px;
}

.contact-float-item + .contact-float-item {
  margin-top: 6px;
}

.contact-float-item:hover:not(.is-static) {
  background: var(--sage-100);
}

.contact-float-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest-950);
}

.contact-float-item span {
  color: var(--ink-500);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero-shell,
  .section-split,
  .applications-grid,
  .workflow-grid,
  .cta-panel,
  .footer-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .plant-grid,
  .assurance-grid,
  .testimonial-grid,
  .applications-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shortcut-grid,
  .catalog-strip,
  .conversion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section-shop .hero-copy-main {
    padding: 32px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .catalog-menu {
    flex-basis: 220px;
  }

  .section-heading-shop,
  .shelf-head {
    align-items: start;
    flex-direction: column;
  }

  .section-heading-image,
  .section-heading-image-small {
    width: 100%;
    flex-basis: auto;
  }

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

  .header-main {
    min-height: 76px;
    grid-template-columns: minmax(210px, 280px) minmax(240px, 1fr) auto;
    gap: 14px;
  }

  .site-title {
    font-size: 21px;
  }

  .header-action-btn,
  .header-phone {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-phone strong {
    font-size: 15px;
  }
}

@media (max-width: 920px) {
  #top-bar {
    display: none;
  }

  #main-header {
    position: sticky;
    top: 0;
  }

  .header-main {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-branding {
    grid-column: 1;
    order: 1;
    min-width: 0;
  }

  .site-title {
    font-size: 19px;
    white-space: normal;
  }

  .header-search {
    grid-column: 1 / -1;
    order: 2;
    align-self: center;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .header-search input {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-actions {
    grid-column: 2;
    order: 1;
    align-self: center;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .header-action-btn,
  .header-phone {
    display: none;
  }

  .top-bar-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 24px;
  }

  .top-bar-left,
  .top-bar-right {
    flex-wrap: wrap;
  }

  .top-bar-marquee {
    display: none;
  }

  .nav-inner {
    min-height: 0;
    display: block;
  }

  .catalog-trigger {
    min-height: 44px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .catalog-menu {
    width: 100%;
  }

  .catalog-dropdown {
    position: static;
    width: 100%;
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .catalog-menu:hover .catalog-dropdown {
    display: none;
  }

  .catalog-menu.is-open .catalog-dropdown {
    display: block;
  }

  .catalog-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 98px;
    justify-content: center;
  }

  #main-nav .main-menu {
    display: none;
    padding: 10px 0;
  }

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

  .main-menu > li > a {
    min-height: 44px;
    padding: 0 14px;
  }

  .main-menu .sub-menu {
    position: static;
    display: block;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-extras {
    display: none;
  }

  .hero-stat-strip,
  .shortcut-grid,
  .catalog-strip,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-side .hero-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy-main,
  .hero-showcase-main,
  .hero-side-card {
    padding: 24px;
  }

  .hero-section-shop .hero-copy-main {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-main-media,
  .hero-main-media img {
    min-height: 260px;
  }

  .hero-slider-panel {
    padding: 14px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-slide-content {
    padding: 30px;
  }

  .hero-slide-media img {
    min-height: 300px;
  }

  .hero-slide h2 {
    font-size: 32px;
  }

  .hero-slider-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-slider-arrows {
    margin-left: auto;
  }

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

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .hero-section,
  .assurance-section,
  .catalog-section,
  .service-section,
  .plant-section,
  .applications-section,
  .workflow-section,
  .testimonial-section,
  .cta-section,
  .archive-section,
  .page-section {
    padding: 32px 0;
  }

  .hero-copy,
  .hero-showcase,
  .hero-quick-card,
  .hero-side-card,
  .assurance-card,
  .catalog-card-body,
  .service-card,
  .plant-body,
  .application-card,
  .workflow-panel,
  .package-card,
  .testimonial-card,
  .shortcut-card,
  .conversion-card-shop,
  .cta-panel,
  .prose article {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-facts,
  .hero-stat-strip,
  .service-grid,
  .plant-grid,
  .assurance-grid,
  .testimonial-grid,
  .applications-cards,
  .shortcut-grid,
  .catalog-strip,
  .conversion-grid,
  .post-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    gap: 14px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 22px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-copy-side .hero-stat-strip {
    grid-template-columns: 1fr;
  }

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

  .shortcut-grid,
  .catalog-strip,
  .service-grid-shelf,
  .applications-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shortcut-card-body {
    padding: 18px 14px;
  }

  .shortcut-icon,
  .conversion-index {
    position: static;
    margin-bottom: 10px;
  }

  .shortcut-card h3,
  .catalog-card h3,
  .service-card h3,
  .application-card h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  .shortcut-card p,
  .catalog-card p,
  .service-card p,
  .application-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .catalog-card-body,
  .service-card-body {
    padding: 14px;
  }

  .catalog-list {
    gap: 7px;
    margin-top: 12px;
  }

  .catalog-list li {
    font-size: 12px;
  }

  .catalog-count {
    min-height: 24px;
    margin-top: 10px;
    font-size: 11px;
  }

  .catalog-cta {
    min-height: 34px;
    width: 100%;
    margin-top: 12px;
    padding: 0 8px;
    font-size: 11px;
  }

  .service-card-shop .service-number {
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .service-icon {
    width: 34px;
    height: 34px;
    right: 14px;
    top: 14px;
  }

  .application-card .application-label {
    margin: 14px 14px 0;
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
  }

  .application-card h3,
  .application-card p,
  .application-card .text-link {
    margin-left: 14px;
    margin-right: 14px;
  }

  .application-card .text-link {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .plant-card-shop .plant-thumb {
    aspect-ratio: 1 / 0.86;
  }

  .plant-card-shop .plant-body {
    min-height: 190px;
    padding: 14px;
  }

  .plant-card-shop .plant-body h3 {
    min-height: 42px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.28;
  }

  .plant-card-shop .plant-body p {
    font-size: 13px;
    line-height: 1.45;
  }

  .plant-card-shop .plant-meta {
    display: grid;
    gap: 8px;
    padding-top: 12px;
  }

  .plant-price {
    font-size: 13px;
  }

  .plant-card-shop .plant-meta a {
    min-height: 34px;
    width: 100%;
    padding: 0 8px;
    font-size: 12px;
  }

  .plant-badge {
    left: 10px;
    top: 10px;
    min-height: 24px;
    padding: 0 9px;
    font-size: 11px;
  }

  .hero-quick-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-main,
  .hero-showcase-main,
  .hero-side-card,
  .shortcut-card,
  .conversion-card-shop {
    padding-top: 22px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .hero-copy-main,
  .hero-showcase-main,
  .hero-side-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-main-media,
  .hero-main-media img {
    min-height: 220px;
  }

  .applications-main-media,
  .section-heading-image,
  .section-heading-image-small,
  .application-card-media {
    aspect-ratio: 1.35 / 0.78;
  }

  .application-card {
    padding: 0;
  }

  .application-card .application-label {
    margin: 22px 20px 0;
  }

  .application-card h3,
  .application-card p,
  .application-card .text-link {
    margin-left: 20px;
    margin-right: 20px;
  }

  .application-card .text-link {
    margin-bottom: 22px;
  }

  .hero-copy h1,
  .hero-showcase h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.16;
  }

  .hero-slide {
    min-height: 0;
  }

  .hero-slide-content {
    padding: 22px;
  }

  .hero-slide-media img {
    min-height: 230px;
  }

  .shortcut-card,
  .conversion-card-shop,
  .service-card-shop {
    padding: 0;
  }

  .shortcut-card-body {
    padding: 22px 20px 22px 64px;
  }

  .conversion-card-body {
    padding: 68px 20px 22px 64px;
  }

  .service-card-body {
    padding: 22px;
  }

  .shortcut-card-media,
  .service-card-media,
  .conversion-card-media {
    aspect-ratio: 1.35 / 0.78;
  }

  .hero-slide h2 {
    font-size: 28px;
  }

  .hero-slider-dots,
  .hero-slider-arrows {
    width: auto;
    justify-content: center;
  }

  .hero-description,
  .hero-showcase p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-highlight-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-highlight-list span {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    min-height: 0;
    text-align: center;
  }

  .hero-showcase-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-showcase-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stat-card {
    padding: 14px 14px 14px 52px;
  }

  .hero-slider-head {
    margin-bottom: 12px;
  }

  .hero-stat-card strong {
    font-size: 15px;
  }

  .hero-stat-card p,
  .hero-metric-card span {
    font-size: 13px;
  }

  .products-header {
    display: block;
  }

  .section-more {
    margin-top: 16px;
  }

  .site-title {
    font-size: 18px;
  }

  .site-subtitle {
    display: none;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    column-gap: 8px;
    row-gap: 8px;
  }

  .site-branding {
    grid-column: 1;
    order: 1;
  }

  .header-search {
    display: block;
    grid-column: 1 / -1;
    order: 2;
    align-self: center;
    width: 100%;
    min-width: 0;
  }

  .header-search input {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-actions {
    grid-column: 2;
    order: 1;
    align-self: center;
    align-items: center;
    gap: 0;
  }

  .header-action-btn {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-logo-icon {
    width: 30px;
    height: 30px;
  }

  .brand-root {
    display: none;
  }

  .menu-toggle {
    min-height: 40px;
    min-width: 76px;
    padding: 0 12px;
  }

  .menu-label {
    font-size: 11px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p {
    margin-top: 14px;
  }

  .contact-float {
    position: fixed;
    top: auto !important;
    left: 0;
    right: 0;
    bottom: 0 !important;
    padding: 0 12px calc(env(safe-area-inset-bottom, 0px) + 8px);
    display: block;
    z-index: 2140;
  }

  .contact-float-toggle {
    width: 100%;
  }

  .contact-float-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: calc(100% + 8px);
    width: auto;
    margin-bottom: 0;
    transform: translateY(8px);
  }

  .contact-float.is-open .contact-float-panel {
    transform: translateY(0);
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 12px;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 60px;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-branding {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-mark::before {
    inset: 5px;
  }

  .brand-logo-icon {
    width: 24px;
    height: 24px;
  }

  .site-logo-text {
    min-width: 0;
  }

  .site-title {
    font-size: 16px;
    line-height: 1.1;
    white-space: normal;
  }

  .header-search {
    grid-column: 1;
    order: 2;
  }

  .header-search input {
    height: 38px;
    font-size: 12px;
  }

  .header-actions {
    grid-column: 2;
    order: 1;
    width: auto;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
  }

  .header-action-btn,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 38px;
    padding: 0 8px;
  }

  .menu-label {
    display: none;
  }

  .catalog-trigger {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .plant-grid-shop {
    gap: 10px;
  }

  .shortcut-grid,
  .catalog-strip,
  .service-grid-shelf,
  .applications-cards {
    gap: 10px;
  }

  .shortcut-card-media,
  .service-card-media,
  .conversion-card-media,
  .application-card-media,
  .catalog-card-media {
    aspect-ratio: 1 / 0.78;
  }

  .shortcut-card-body,
  .catalog-card-body,
  .service-card-body {
    padding: 12px;
  }

  .shortcut-card h3,
  .catalog-card h3,
  .service-card h3,
  .application-card h3 {
    font-size: 14px;
  }

  .shortcut-card p,
  .catalog-card p,
  .service-card p,
  .application-card p {
    font-size: 12px;
  }

  .catalog-list {
    display: none;
  }

  .service-icon {
    display: none;
  }

  .plant-card-shop .plant-body {
    min-height: 180px;
    padding: 12px;
  }

  .plant-card-shop .plant-body h3 {
    min-height: 40px;
    font-size: 14px;
  }

  .plant-card-shop .plant-body p {
    font-size: 12px;
  }

  .plant-card-shop .plant-meta a {
    font-size: 11px;
  }
}

.catalog-archive-hero {
  padding: 34px 0 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 38, 26, 0.94), rgba(31, 78, 49, 0.84)),
    radial-gradient(circle at 82% 18%, rgba(217, 111, 50, 0.24), transparent 30%);
}

.catalog-archive-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.catalog-archive-copy {
  min-width: 0;
  padding: 28px 0;
}

.catalog-archive-copy .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
}

.catalog-archive-copy h1 {
  max-width: 820px;
  margin: 18px 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.catalog-archive-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.catalog-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.catalog-archive-actions .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-archive-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.catalog-summary-card {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-summary-card.is-strong {
  background: rgba(217, 111, 50, 0.92);
}

.catalog-summary-card strong {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.catalog-summary-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.catalog-term-section,
.catalog-archive-section {
  padding: 34px 0;
}

.catalog-term-head,
.catalog-list-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.catalog-term-head h2,
.catalog-list-toolbar h2,
.catalog-sidebar-box h2,
.catalog-sidebar-box h3 {
  margin: 10px 0 0;
  color: var(--forest-950);
}

.catalog-term-head p,
.catalog-list-toolbar span {
  max-width: 520px;
  color: var(--ink-700);
}

.catalog-term-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-term-card {
  min-height: 92px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-term-card span {
  color: var(--forest-950);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-term-card strong {
  color: var(--clay-500);
  font-size: 13px;
}

.catalog-archive-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.catalog-archive-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
}

.catalog-sidebar-box {
  padding: 22px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-sidebar-box.is-contact {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}

.catalog-sidebar-box.is-contact h2,
.catalog-sidebar-box.is-contact p {
  color: var(--white);
}

.catalog-sidebar-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-sidebar-box p {
  margin: 12px 0 0;
  color: var(--ink-700);
}

.catalog-sidebar-box.is-contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--white);
  background: var(--clay-500);
  font-weight: 800;
}

.catalog-sidebar-box ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-sidebar-box li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 14px;
}

.catalog-sidebar-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--clay-500);
}

.catalog-sidebar-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.catalog-sidebar-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 32, 25, 0.08);
  color: var(--forest-900);
  font-weight: 800;
}

.catalog-sidebar-links em {
  color: var(--clay-500);
  font-style: normal;
}

.catalog-archive-main {
  min-width: 0;
}

.catalog-list-toolbar {
  padding: 18px 20px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-list-toolbar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--forest-900);
  background: var(--sage-100);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.catalog-product-card {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-product-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: var(--sage-100);
}

.catalog-product-thumb img,
.catalog-product-fallback {
  width: 100%;
  height: 100%;
}

.catalog-product-thumb img {
  object-fit: cover;
  transition: transform 0.28s ease;
}

.catalog-product-card:hover .catalog-product-thumb img {
  transform: scale(1.04);
}

.catalog-product-fallback {
  display: block;
  background:
    radial-gradient(circle at 50% 35%, rgba(47, 98, 71, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(219, 230, 220, 0.88), rgba(246, 247, 244, 0.96));
}

.catalog-product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  background: rgba(16, 38, 26, 0.84);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-product-body {
  min-height: 206px;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.catalog-product-body h3 {
  margin: 0 0 10px;
  color: var(--forest-950);
  font-size: 19px;
  line-height: 1.28;
}

.catalog-product-body p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.catalog-product-meta a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .catalog-archive-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

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

@media (max-width: 920px) {
  .catalog-archive-hero-inner,
  .catalog-archive-layout {
    grid-template-columns: 1fr;
  }

  .catalog-archive-copy {
    padding: 10px 0 0;
  }

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

  .catalog-summary-card {
    min-height: 92px;
    padding: 16px;
  }

  .catalog-summary-card strong {
    font-size: 26px;
  }

  .catalog-archive-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-sidebar-box.is-contact {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .catalog-archive-hero {
    padding: 24px 0 22px;
  }

  .catalog-archive-copy h1 {
    font-size: 28px;
  }

  .catalog-archive-copy p {
    font-size: 15px;
  }

  .catalog-archive-actions,
  .catalog-term-head,
  .catalog-list-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-archive-actions .button {
    width: 100%;
  }

  .catalog-archive-summary,
  .catalog-archive-sidebar {
    grid-template-columns: 1fr;
  }

  .catalog-term-section,
  .catalog-archive-section {
    padding: 24px 0;
  }

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

  .catalog-product-body {
    min-height: 190px;
    padding: 12px;
  }

  .catalog-product-body h3 {
    font-size: 15px;
  }

  .catalog-product-body p {
    font-size: 12px;
    line-height: 1.45;
  }

  .catalog-product-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-product-meta a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .catalog-term-card,
  .catalog-sidebar-box,
  .catalog-list-toolbar {
    padding: 14px;
  }

  .catalog-term-grid {
    gap: 10px;
  }

  .catalog-term-card span {
    font-size: 14px;
  }

  .catalog-product-thumb {
    aspect-ratio: 1 / 0.86;
  }

  .catalog-product-body {
    min-height: 178px;
  }
}

.catalog-shop-page {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.catalog-shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 38, 26, 0.95), rgba(31, 78, 49, 0.86)),
    radial-gradient(circle at 90% 12%, rgba(217, 111, 50, 0.28), transparent 28%);
}

.catalog-shop-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
}

.catalog-shop-hero h1 {
  margin: 18px 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.catalog-shop-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.72;
}

.catalog-shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.catalog-shop-actions .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-shop-hero-cards {
  display: grid;
  gap: 12px;
}

.catalog-shop-hero-cards div {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-shop-hero-cards strong {
  color: var(--white);
  font-size: 20px;
}

.catalog-shop-hero-cards span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.catalog-shop-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.catalog-shop-benefits div {
  padding: 18px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-shop-benefits strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-950);
  font-size: 17px;
}

.catalog-shop-benefits span {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-shop-page .page-content > .woocommerce {
  padding: 20px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-shop-page .woocommerce-result-count {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px !important;
  padding: 0 14px;
  color: var(--forest-900);
  background: var(--sage-100);
  font-size: 13px;
  font-weight: 800;
}

.catalog-shop-page .woocommerce-ordering {
  margin: 0 0 18px !important;
}

.catalog-shop-page .woocommerce-ordering select {
  min-height: 40px;
  border: 1px solid rgba(23, 32, 25, 0.14);
  background: #fff;
  padding: 0 12px;
  color: var(--ink-900);
  font-weight: 700;
}

.catalog-shop-page ul.products {
  clear: both;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.catalog-shop-page ul.products::before,
.catalog-shop-page ul.products::after {
  display: none !important;
}

.catalog-shop-page ul.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.catalog-shop-page ul.products li.product a.woocommerce-LoopProduct-link {
  min-height: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: inherit;
}

.catalog-shop-page ul.products li.product img {
  width: 100% !important;
  height: auto;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  margin: 0 !important;
  background: var(--sage-100);
}

.catalog-shop-page .woocommerce-loop-product__title {
  min-height: 52px;
  margin: 0 !important;
  padding: 16px 16px 8px !important;
  color: var(--forest-950);
  font-size: 18px !important;
  line-height: 1.25;
  font-weight: 800;
}

.catalog-shop-page ul.products li.product .price {
  min-height: 28px;
  display: block;
  margin-top: auto;
  padding: 0 16px 12px;
  color: var(--clay-500) !important;
  font-size: 15px !important;
  font-weight: 800;
}

.catalog-shop-page ul.products li.product .price del {
  color: var(--ink-500) !important;
  font-size: 13px;
}

.catalog-shop-page ul.products li.product .price ins {
  text-decoration: none;
}

.catalog-shop-page ul.products li.product > .button {
  width: calc(100% - 32px);
  min-height: 38px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: auto 16px 16px !important;
  padding: 0 10px !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700)) !important;
  text-align: center;
  font-size: 12px !important;
  font-weight: 800;
}

.catalog-shop-page ul.products li.product > .button::after {
  content: none;
}

.catalog-shop-page span.onsale {
  min-height: 26px;
  min-width: 0;
  padding: 0 10px;
  border-radius: 0;
  line-height: 26px;
  background: var(--clay-500);
  font-size: 11px;
  font-weight: 800;
}

.catalog-shop-page .woocommerce-pagination {
  margin-top: 24px;
}

.catalog-shop-page .woocommerce-pagination ul.page-numbers {
  border: 0 !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 !important;
}

.catalog-shop-page .woocommerce-pagination ul.page-numbers li {
  border: 0 !important;
}

.catalog-shop-page .woocommerce-pagination .page-numbers li a,
.catalog-shop-page .woocommerce-pagination .page-numbers li span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 32, 25, 0.12);
  color: var(--forest-900);
  background: #fff;
  font-weight: 800;
}

.catalog-shop-page .woocommerce-pagination .page-numbers li span.current {
  color: var(--white);
  background: var(--forest-900);
}

@media (max-width: 1180px) {
  .catalog-shop-page ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .catalog-shop-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .catalog-shop-hero-cards,
  .catalog-shop-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-shop-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalog-shop-hero {
    padding: 22px;
  }

  .catalog-shop-hero h1 {
    font-size: 28px;
  }

  .catalog-shop-actions,
  .catalog-shop-hero-cards,
  .catalog-shop-benefits {
    grid-template-columns: 1fr;
  }

  .catalog-shop-actions {
    display: grid;
  }

  .catalog-shop-actions .button {
    width: 100%;
  }

  .catalog-shop-page .page-content > .woocommerce {
    padding: 12px;
  }

  .catalog-shop-page ul.products {
    gap: 12px !important;
  }

  .catalog-shop-page .woocommerce-loop-product__title {
    min-height: 46px;
    padding: 12px 12px 6px !important;
    font-size: 14px !important;
  }

  .catalog-shop-page ul.products li.product .price {
    padding: 0 12px 10px;
    font-size: 13px !important;
  }

  .catalog-shop-page ul.products li.product > .button {
    width: calc(100% - 24px);
    min-height: 34px;
    margin: auto 12px 12px !important;
    font-size: 11px !important;
  }
}

.custom-product-page {
  background: #f3f5f2;
}

.product-sales-hero {
  padding: 34px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 247, 244, 0.96)),
    radial-gradient(circle at 12% 16%, rgba(47, 98, 71, 0.12), transparent 32%);
}

.product-sales-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.product-sales-gallery,
.product-sales-summary,
.product-conversion-card,
.product-detail-content,
.product-sticky-cta,
.custom-related-card {
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.product-sales-gallery {
  position: sticky;
  top: 118px;
  padding: 16px;
}

.product-main-photo {
  margin: 0;
  overflow: hidden;
  background: var(--sage-100);
}

.product-main-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.product-main-photo.is-empty {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--forest-900);
  font-weight: 800;
}

.product-thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-thumb-strip figure,
.product-thumb-button {
  margin: 0;
  overflow: hidden;
  background: var(--sage-100);
}

.product-thumb-button {
  display: block;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
}

.product-thumb-button.is-active,
.product-thumb-button:hover {
  border-color: var(--clay-500);
}

.product-thumb-strip img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.product-sales-summary {
  padding: 30px;
}

.product-breadcrumb-lite,
.product-term-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-breadcrumb-lite {
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 700;
}

.product-term-row {
  margin-top: 16px;
}

.product-term-row a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--forest-900);
  background: rgba(47, 98, 71, 0.09);
  font-size: 12px;
  font-weight: 800;
}

.product-sales-summary h1 {
  margin: 18px 0 14px;
  color: var(--forest-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.product-short-copy,
.product-short-copy p {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.72;
}

.product-price-panel {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(217, 111, 50, 0.22);
  background: linear-gradient(135deg, rgba(217, 111, 50, 0.08), rgba(47, 98, 71, 0.06));
}

.product-price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price-head span,
.product-price-head em {
  display: block;
  color: var(--ink-700);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 0;
}

.product-price-row strong {
  color: var(--clay-500);
  font-size: 30px;
  line-height: 1.1;
}

.product-price-row del {
  color: var(--ink-500);
  font-size: 18px;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.product-price-row del .amount {
  color: var(--ink-500);
}

.product-price-row .amount {
  color: var(--clay-500);
}

.product-price-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--clay-500);
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.product-sales-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-buy-form {
  display: grid;
  grid-template-columns: 90px 92px minmax(160px, 1fr);
  gap: 8px;
  align-items: center;
}

.product-buy-form label {
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 800;
}

.product-buy-form input,
.product-buy-form button,
.product-cta-facebook,
.product-cta-phone,
.product-conversion-card a,
.product-sticky-cta a {
  min-height: 48px;
  border: 0;
  padding: 0 16px;
  font-weight: 800;
}

.product-buy-form input {
  width: 100%;
  border: 1px solid rgba(23, 32, 25, 0.14);
  background: #fff;
  text-align: center;
}

.product-buy-form button,
.product-cta-facebook {
  color: var(--white);
  background: var(--clay-500);
  cursor: pointer;
}

.product-cta-facebook,
.product-cta-phone,
.product-conversion-card a,
.product-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-cta-facebook {
  background: #1877f2;
}

.product-cta-phone {
  color: var(--forest-900);
  border: 1px solid rgba(23, 32, 25, 0.14);
  background: #fff;
}

.product-assurance-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-assurance-row div {
  padding: 14px;
  background: var(--sage-100);
}

.product-assurance-row strong,
.product-assurance-row span {
  display: block;
}

.product-assurance-row strong {
  color: var(--forest-950);
  font-size: 14px;
}

.product-assurance-row span {
  margin-top: 4px;
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.45;
}

.product-conversion-section,
.product-detail-section,
.product-related-section {
  padding: 34px 0;
}

.product-conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
  gap: 18px;
}

.product-conversion-card {
  padding: 24px;
}

.product-conversion-card.is-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}

.product-conversion-card span,
.product-conversion-card strong {
  color: var(--clay-500);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-conversion-card.is-primary span,
.product-conversion-card.is-primary h2 {
  color: var(--white);
}

.product-conversion-card h2,
.product-conversion-card h3 {
  margin: 12px 0 0;
  color: var(--forest-950);
}

.product-conversion-card p {
  margin: 12px 0 0;
  color: var(--ink-700);
}

.product-conversion-card.is-primary a {
  width: max-content;
  margin-top: 20px;
  color: var(--white);
  background: var(--clay-500);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}

.product-detail-content {
  padding: 30px;
}

.product-detail-content header {
  margin-bottom: 18px;
}

.product-detail-content h2 {
  margin: 12px 0 0;
  color: var(--forest-950);
}

.product-content-body {
  color: var(--ink-800, var(--ink-900));
}

.product-content-body img {
  width: auto;
  max-width: 100%;
  margin: 18px auto;
  cursor: zoom-in;
}

.product-content-body h2,
.product-content-body h3 {
  margin-top: 28px;
  color: var(--forest-950);
}

.product-sticky-cta {
  position: sticky;
  top: 120px;
  padding: 24px;
}

.product-sticky-cta h3 {
  margin: 0;
  color: var(--forest-950);
  font-size: 24px;
}

.product-sticky-cta p {
  margin: 12px 0 18px;
  color: var(--ink-700);
}

.product-sticky-cta a {
  width: 100%;
  margin-top: 10px;
}

.product-sticky-cta .is-fb {
  color: var(--white);
  background: #1877f2;
}

.product-sticky-cta .is-phone {
  color: var(--white);
  background: var(--forest-900);
}

.product-related-section {
  padding-bottom: 56px;
}

.product-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-related-head h2 {
  margin: 12px 0 0;
  color: var(--forest-950);
}

.product-related-head > a {
  color: var(--clay-500);
  font-weight: 900;
}

.custom-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.custom-related-card {
  overflow: hidden;
}

.custom-related-thumb {
  display: block;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: var(--sage-100);
}

.custom-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-related-thumb-fallback {
  width: 100%;
  height: 100%;
  display: block;
  background:
    radial-gradient(circle at 50% 34%, rgba(47, 98, 71, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(219, 230, 220, 0.95), rgba(246, 247, 244, 0.98));
}

.custom-related-card div {
  padding: 16px;
}

.custom-related-card h3 {
  min-height: 46px;
  margin: 0 0 10px;
  color: var(--forest-950);
  font-size: 17px;
  line-height: 1.3;
}

.custom-related-card span {
  color: var(--clay-500);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .product-sales-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-sticky-cta {
    top: 96px;
  }

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

@media (max-width: 920px) {
  .product-sales-hero {
    padding: 24px 0;
  }

  .product-sales-summary {
    padding: 24px;
  }

  .product-sales-gallery,
  .product-sticky-cta {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .product-sales-grid {
    gap: 16px;
  }

  .product-sales-gallery,
  .product-sales-summary,
  .product-detail-content,
  .product-sticky-cta,
  .product-conversion-card {
    padding: 16px;
  }

  .product-sales-summary h1 {
    font-size: 28px;
  }

  .product-main-photo img {
    max-height: none;
    aspect-ratio: 1 / 0.86;
  }

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

  .product-buy-form,
  .product-assurance-row {
    grid-template-columns: 1fr;
  }

  .product-buy-form label {
    display: none;
  }

  .product-price-row strong {
    font-size: 24px;
  }

  .product-price-head,
  .product-price-row {
    align-items: flex-start;
  }

  .product-price-head {
    display: grid;
  }

  .product-conversion-section,
  .product-detail-section,
  .product-related-section {
    padding: 24px 0;
  }

  .product-related-head {
    display: grid;
    align-items: start;
  }

  .custom-related-grid {
    gap: 12px;
  }

  .custom-related-card div {
    padding: 12px;
  }

  .custom-related-card h3 {
    font-size: 14px;
  }
}

.custom-related-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-related-price del {
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 800;
}

.custom-related-price strong,
.custom-related-price .amount {
  color: var(--clay-500);
  font-weight: 900;
}

.article-single-page {
  background: #f3f5f2;
}

.article-hero-section {
  padding: 42px 0 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 38, 26, 0.96), rgba(31, 78, 49, 0.82)),
    radial-gradient(circle at 86% 18%, rgba(217, 111, 50, 0.28), transparent 30%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.article-category-row,
.article-meta-row,
.article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.article-category-row a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero-copy h1 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
}

.article-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.article-meta-row {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.article-meta-row span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 10px;
  background: var(--clay-500);
  vertical-align: middle;
}

.article-hero-actions {
  margin-top: 26px;
}

.article-hero-actions .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.article-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(7, 12, 8, 0.2);
}

.article-hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-trust-section,
.article-content-section,
.article-related-section {
  padding: 34px 0;
}

.article-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-trust-grid div,
.article-content-card,
.article-sticky-box,
.article-related-card {
  border: 1px solid rgba(23, 32, 25, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.article-trust-grid div {
  padding: 20px;
}

.article-trust-grid strong,
.article-trust-grid span {
  display: block;
}

.article-trust-grid strong {
  color: var(--forest-950);
  font-size: 18px;
}

.article-trust-grid span {
  margin-top: 8px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
}

.article-sticky-box {
  padding: 22px;
}

.article-sticky-box.is-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}

.article-sticky-box.is-cta span,
.article-sticky-box.is-cta h2,
.article-sticky-box.is-cta p {
  color: var(--white);
}

.article-sticky-box.is-cta > span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.article-sticky-box h2,
.article-sticky-box h3 {
  margin: 10px 0 0;
  color: var(--forest-950);
}

.article-sticky-box p {
  margin: 12px 0 18px;
  color: var(--ink-700);
}

.article-sticky-box a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 14px;
  color: var(--white);
  font-weight: 900;
}

.article-sticky-box a.is-phone {
  background: var(--clay-500);
}

.article-sticky-box a.is-fb {
  background: #1877f2;
}

.article-toc-box ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.45;
}

.article-content-card {
  padding: 34px;
}

.article-content-body {
  color: var(--ink-900);
  font-size: 17px;
  line-height: 1.82;
}

.article-content-body > *:first-child {
  margin-top: 0;
}

.article-content-body h2,
.article-content-body h3 {
  margin-top: 32px;
  color: var(--forest-950);
  line-height: 1.22;
}

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

.article-content-body img {
  width: auto;
  max-width: 100%;
  margin: 22px auto;
  box-shadow: var(--shadow-card);
}

.article-content-body a {
  color: var(--forest-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-bottom-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}

.article-bottom-cta strong,
.article-bottom-cta span {
  display: block;
  color: var(--white);
}

.article-bottom-cta span {
  margin-top: 6px;
  opacity: 0.78;
}

.article-bottom-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0 16px;
  color: var(--white);
  background: #1877f2;
  font-weight: 900;
  white-space: nowrap;
}

.article-related-section {
  padding-bottom: 56px;
}

.article-related-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.article-related-head h2 {
  margin: 12px 0 0;
  color: var(--forest-950);
}

.article-related-head > a {
  color: var(--clay-500);
  font-weight: 900;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-related-card {
  overflow: hidden;
}

.article-related-thumb {
  display: block;
  aspect-ratio: 1.25 / 0.78;
  overflow: hidden;
  background: var(--sage-100);
}

.article-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-related-card div {
  padding: 18px;
}

.article-related-card span {
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 800;
}

.article-related-card h3 {
  margin: 10px 0;
  color: var(--forest-950);
  font-size: 20px;
  line-height: 1.3;
}

.article-related-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
}

.product-main-photo {
  background: #fff;
}

.product-main-photo img {
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .article-trust-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .article-hero-section {
    padding: 28px 0 24px;
  }

  .article-hero-copy h1 {
    font-size: 30px;
  }

  .article-content-card,
  .article-sticky-box {
    padding: 18px;
  }

  .article-content-body {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-bottom-cta {
    display: grid;
  }

  .article-bottom-cta a,
  .article-hero-actions .button {
    width: 100%;
  }
}

/* Typography polish: reduce heavy weights site-wide */
:root {
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 650;
  letter-spacing: -0.018em;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}

strong,
b {
  font-weight: 650;
}

.site-logo-text,
.site-brand-name,
.main-navigation a,
.primary-menu a,
.menu a,
.nav-menu a,
.top-bar-inner a,
.mobile-menu a,
.footer-menu a,
.footer-links a {
  font-weight: 600 !important;
}

.button,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
.cta-button,
.hero-cta,
.floating-contact a,
.mobile-fixed-contact a,
.product-buy-form button,
.product-cta-facebook,
.product-cta-phone,
.product-conversion-card a,
.product-sticky-cta a,
.article-sticky-box a,
.article-bottom-cta a,
.article-hero-actions .button,
.catalog-shop-page ul.products li.product > .button {
  font-weight: 650 !important;
  letter-spacing: 0.01em;
}

.hero-eyebrow,
.section-kicker,
.eyebrow,
.badge,
.tag,
.label,
.meta,
.category-pill,
.service-tag,
.process-number,
.product-term-row a,
.product-breadcrumb-lite,
.article-category-row a,
.article-meta-row,
.article-related-card span,
.product-price-head span,
.product-price-head em,
.product-buy-form label,
.product-assurance-row strong,
.product-conversion-card span,
.product-conversion-card strong,
.article-sticky-box.is-cta > span {
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

.hero-title,
.section-title,
.block-title,
.card-title,
.service-card h3,
.solution-card h3,
.category-card h3,
.product-sales-summary h1,
.product-conversion-card h2,
.product-conversion-card h3,
.product-detail-content h2,
.product-content-body h2,
.product-content-body h3,
.product-sticky-cta h3,
.product-related-head h2,
.article-hero-copy h1,
.article-sticky-box h2,
.article-sticky-box h3,
.article-content-body h2,
.article-content-body h3,
.article-related-head h2,
.article-related-card h3 {
  font-weight: 650 !important;
  letter-spacing: -0.015em;
}

.catalog-shop-page .woocommerce-loop-product__title,
.woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title,
.product-card-title,
.custom-related-card h3 {
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

.price,
.catalog-shop-page ul.products li.product .price,
.product-price-row strong,
.product-price-row del,
.custom-related-price strong,
.custom-related-price .amount,
.custom-related-card span {
  font-weight: 650 !important;
}

p,
li,
.product-short-copy,
.product-short-copy p,
.article-lead,
.article-content-body,
.product-content-body,
.card-description,
.service-card p,
.solution-card p,
.category-card p,
.catalog-shop-page .term-description,
.catalog-shop-intro p {
  font-weight: 400;
}

.cct-contact-block {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest-700);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.cct-contact-block p {
  margin: 6px 0;
}

.cct-contact-block a {
  color: var(--forest-800);
  font-weight: 600;
}

.cct-shortcode-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.cct-shortcode-buttons .button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 0;
  background: var(--forest-800);
  color: #fff;
}

.is-image-fallback {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  padding: 8%;
  background: var(--sage-100);
}

