/* ============================================================
   NHX GLOBAL DESIGN SYSTEM - Header, Footer & Subpages
   Applies to ALL pages on nonghoaxanh.vn
   ============================================================ */

/* ── Design Tokens ── */
/* ── Refined Design Tokens v2 ── */
:root {
  --nhx-ink:       #1a4a2e;
  --nhx-green:     #2d8a56;
  --nhx-green-mid: #1e7244;
  --nhx-lime:      #8cc63f;
  --nhx-lime-soft: #d4ebb5;
  --nhx-dark:      #0f2e1c;
  --nhx-muted:     #4a7c5e;
  --nhx-cream:     #f8faf7;
  --nhx-paper:     #ffffff;
  --nhx-line:      #d6e8dc;
  --nhx-bg-subtle: #f2f7f4;
  --nhx-shadow-sm: 0 2px 8px rgba(15,46,28,.08);
  --nhx-shadow:    0 8px 32px rgba(15,46,28,.12);
  --nhx-shadow-lg: 0 16px 48px rgba(15,46,28,.16);
  --nhx-font: 'Montserrat', 'Inter', sans-serif;
  --nhx-r-sm: 8px;
  --nhx-r:    14px;
  --nhx-r-lg: 22px;
  --nhx-ease: cubic-bezier(.4,0,.2,1);
}

/* ── Global Typography (matches design) ── */
body {
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  color: var(--nhx-ink);
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════
   HEADER – nhx-nav
═══════════════════════════════════════════ */
#header.nhx-nav,
.nhx-nav {
  background: var(--nhx-paper);
  border-bottom: 1px solid var(--nhx-line);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(0,107,60,.07);
}

.nhx-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.nhx-nav .nhx-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand / Logo */
.nhx-brand {
  display: flex;
  align-items: center;
  height: 68px;
  flex-shrink: 0;
  text-decoration: none;
}
.nhx-brand img {
  display: block;
  width: auto;
  height: 62px;
  max-width: 190px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
}

/* Navigation links */
.nhx-links {
  flex: 1;
}
.nhx-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}
.nhx-menu-list li {
  position: relative;
  margin: 0;
  padding: 0;
}
.nhx-menu-list > li > a {
  font: 700 14px/1 'Montserrat', sans-serif;
  color: #345343;
  text-decoration: none;
  padding: 8px 0;
  transition: color .2s;
  white-space: nowrap;
}
.nhx-menu-list > li > a:hover,
.nhx-menu-list > li.current-menu-item > a,
.nhx-menu-list > li.current_page_item > a {
  color: var(--nhx-green);
}
/* Dropdown submenu */
.nhx-menu-list .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--nhx-line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,107,60,.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .2s;
  z-index: 100;
  list-style: none;
  margin: 0;
}
.nhx-menu-list .sub-menu::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nhx-menu-list li:hover > .sub-menu,
.nhx-menu-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nhx-menu-list .sub-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  color: var(--nhx-green);
  font: 600 13px 'Montserrat', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.nhx-menu-list .sub-menu li a:hover {
  background: var(--nhx-green);
  color: #fff;
}

/* Nav actions */
.nhx-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nhx-search-btn {
  border: 1px solid var(--nhx-line);
  border-radius: 99px;
  padding: 9px 14px;
  color: var(--nhx-muted);
  font: 600 13px 'Montserrat', sans-serif;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.nhx-search-btn:hover { border-color: var(--nhx-green); color: var(--nhx-green); }
.nhx-cart-btn {
  background: var(--nhx-green);
  color: #fff !important;
  border-radius: 99px;
  padding: 11px 18px;
  font: 700 13px 'Montserrat', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  position: relative;
}
.nhx-cart-btn:hover { background: var(--nhx-dark); }
.nhx-cart-count {
  background: #fff;
  color: var(--nhx-green);
  border-radius: 99px;
  padding: 1px 7px;
  font: 800 11px 'Montserrat', sans-serif;
}

/* Search bar */
.nhx-search-bar {
  border-top: 1px solid var(--nhx-line);
  background: #f7fbf8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0;
}
.nhx-search-bar.nhx-open {
  max-height: 90px;
  padding: 14px 0;
}
.nhx-search-bar .nhx-wrap {
  height: auto;
  display: flex;
  gap: 0;
}
.nhx-search-bar form {
  display: flex;
  width: 100%;
  gap: 0;
  border: 1px solid var(--nhx-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.nhx-search-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font: 14px 'Montserrat', sans-serif;
  outline: none;
  color: var(--nhx-ink);
}
.nhx-search-submit {
  border: none;
  background: var(--nhx-green);
  color: #fff;
  padding: 12px 20px;
  font: 700 13px 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .2s;
}
.nhx-search-submit:hover { background: var(--nhx-dark); }

/* Hamburger (mobile) */
.nhx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nhx-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nhx-green);
  border-radius: 2px;
  transition: .3s;
}
.nhx-hamburger.nhx-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nhx-hamburger.nhx-active span:nth-child(2) { opacity: 0; }
.nhx-hamburger.nhx-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   FOOTER – nhx-footer
═══════════════════════════════════════════ */
.nhx-footer {
  background: var(--nhx-dark);
  padding: 52px 0 36px;
  margin-top: 60px;
}
.nhx-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr .8fr;
  gap: 28px;
}
.nhx-footer-grid h4 {
  color: var(--nhx-lime);
  font: 800 12px 'Montserrat', sans-serif;
  letter-spacing: .7px;
  margin: 0 0 13px;
  text-transform: uppercase;
}
.nhx-footer-grid p {
  color: #d8efe1;
  font-size: 13px;
  line-height: 1.6;
  margin: 6px 0;
}
.nhx-footer-grid a {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.nhx-footer-grid a:hover { color: var(--nhx-lime); }
.nhx-footer-brand b {
  display: block;
  color: #fff;
  font: 800 15px 'Montserrat', sans-serif;
  letter-spacing: .5px;
  margin: 12px 0 6px;
}
.nhx-footer-brand small {
  display: block;
  color: #7ea898;
  font-size: 12px;
  margin-top: 16px;
}
.nhx-footer-logo {
  display: block;
  width: 150px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  border-radius: 8px;
  padding: 5px;
}
/* Footer nav list */
.nhx-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nhx-footer-links li {
  color: #d8efe1;
  font-size: 13px;
  line-height: 1.6;
  margin: 5px 0;
  padding: 0;
}
.nhx-footer-links li a {
  color: #d8efe1;
}
.nhx-footer-links li a:hover { color: var(--nhx-lime); }

/* Social icons */
.nhx-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.nhx-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: #fff;
  transition: background .2s;
}
.nhx-social a:hover { background: var(--nhx-green); }

/* ═══════════════════════════════════════════
   FLOATING CONSULT WIDGET
═══════════════════════════════════════════ */
.nhx-consult {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.nhx-consult-box {
  background: #fff;
  border: 1px solid var(--nhx-line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,107,60,.18);
  width: 280px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s;
  pointer-events: none;
}
.nhx-consult.nhx-open .nhx-consult-box {
  max-height: 350px;
  opacity: 1;
  pointer-events: auto;
}
.nhx-consult-head {
  background: var(--nhx-green);
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
}
.nhx-consult-head b { font: 800 14px 'Montserrat', sans-serif; }
.nhx-consult-head small { font-size: 12px; opacity: .85; }
.nhx-consult-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}
.nhx-consult-body select,
.nhx-consult-body input {
  border: 1px solid var(--nhx-line);
  border-radius: 8px;
  padding: 10px 12px;
  font: 13px 'Montserrat', sans-serif;
  color: var(--nhx-ink);
  background: #fff;
  width: 100%;
}
.nhx-consult-send {
  background: var(--nhx-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font: 700 13px 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.nhx-consult-send:hover { background: var(--nhx-dark); }
.nhx-consult-btn {
  background: var(--nhx-green);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 13px 20px;
  font: 700 14px 'Montserrat', sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,165,86,.35);
  transition: background .2s, transform .2s;
}
.nhx-consult-btn:hover { background: var(--nhx-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   MOBILE BOTTOM BAR
═══════════════════════════════════════════ */
.nhx-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--nhx-line);
  z-index: 9997;
  padding: 0;
}
.nhx-mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  font: 700 10px 'Montserrat', sans-serif;
  color: var(--nhx-muted);
  text-decoration: none;
  transition: color .2s;
}
.nhx-mobile-bar a:hover { color: var(--nhx-green); }
.nhx-mobile-bar b { font-size: 18px; }

/* ═══════════════════════════════════════════
   SUBPAGE CONTENT AREAS – unified colors
═══════════════════════════════════════════ */
/* Breadcrumbs */
.woocommerce-breadcrumb,
.flatsome-breadcrumbs {
  color: var(--nhx-muted);
  font-size: 13px;
}
.woocommerce-breadcrumb a,
.flatsome-breadcrumbs a {
  color: var(--nhx-green);
  text-decoration: none;
}
.woocommerce-breadcrumb a:hover,
.flatsome-breadcrumbs a:hover {
  text-decoration: underline;
}

/* Page titles */
.page-title, .entry-title,
.woocommerce-products-header__title {
  color: var(--nhx-ink) !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* WooCommerce – product grid buttons */
.button, .wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--nhx-green) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.button:hover, .wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--nhx-dark) !important;
  color: #fff !important;
}

/* WooCommerce price */
.price, .woocommerce-Price-amount {
  color: var(--nhx-green) !important;
  font-weight: 800;
}

/* WooCommerce sale badge */
.onsale {
  background: var(--nhx-green) !important;
  border-radius: 6px !important;
}

/* Product card hover */
.product-small .box-image:hover,
.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
  transform: translateY(-4px);
  transition: transform .3s;
}

/* Links */
a { color: var(--nhx-ink); }
a:hover { color: var(--nhx-green); }

/* Post/article headings */
article h1, article h2, article h3 {
  color: var(--nhx-ink);
  font-family: 'Montserrat', sans-serif;
}

/* Sidebar widget titles */
.widget-title, .widgettitle {
  color: var(--nhx-green) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  border-bottom: 2px solid var(--nhx-lime);
  padding-bottom: 6px;
}

/* Category page header */
.shop-page-title,
.term-description {
  color: var(--nhx-muted);
  font-family: 'Montserrat', sans-serif;
}

/* Pagination */
.page-numbers .current {
  background: var(--nhx-green) !important;
  color: #fff !important;
  border-radius: 6px;
}
.page-numbers a:hover {
  color: var(--nhx-green) !important;
}

/* ═══════════════════════════════════════════
   HIDE FLATSOME DEFAULT HEADER/FOOTER
   (only when nhx-nav is present)
═══════════════════════════════════════════ */
/* Hide Flatsome's own header/footer branding elements
   since we override header.php and footer.php entirely */
#header:not(.nhx-nav) {
  /* fallback: do nothing if child override not loaded */
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nhx-nav .nhx-wrap { gap: 16px; }
  .nhx-links { display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--nhx-line);
    box-shadow: 0 10px 28px rgba(0,107,60,.1); padding: 16px 20px; z-index: 9998; }
  .nhx-links.nhx-open { display: block; }
  .nhx-menu-list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nhx-menu-list > li > a { padding: 10px 0; font-size: 15px; display: block; }
  .nhx-search-btn { display: none; }
  .nhx-hamburger { display: flex; }
  .nhx-footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .nhx-footer-brand { grid-column: 1 / -1; }
  .nhx-mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
}
@media (max-width: 520px) {
  .nhx-footer-grid { grid-template-columns: 1fr; }
  .nhx-footer-brand { grid-column: auto; }
  .nhx-consult { bottom: 80px; }
}

/* ═══════════════════════════════════════════
   PROMO TICKER BAR (top of page, above header)
═══════════════════════════════════════════ */
.nhx-promo-bar {
  background: var(--nhx-green);
  overflow: hidden;
  white-space: nowrap;
  height: 34px;
  display: flex;
  align-items: center;
}
.nhx-promo-track {
  display: inline-flex;
  gap: 60px;
  animation: nhxPromoScroll 22s linear infinite;
  white-space: nowrap;
  padding-left: 100%;
}
.nhx-promo-track span {
  font: 600 12px/34px 'Montserrat', sans-serif;
  color: #fff;
  letter-spacing: .4px;
  flex-shrink: 0;
}
.nhx-promo-track span::before {
  content: "✦";
  margin-right: 10px;
  opacity: .7;
  font-size: 10px;
}
@keyframes nhxPromoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.nhx-promo-bar:hover .nhx-promo-track { animation-play-state: paused; }

/* ═══════════════════════════════════════════
   TOP INFO BAR (hotline + Zalo)
═══════════════════════════════════════════ */
.nhx-topbar {
  background: var(--nhx-dark);
  color: #d8efe1;
  font: 600 12px 'Montserrat', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nhx-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 12px;
}
.nhx-topbar-left {
  color: #a0ccb4;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nhx-topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #d8efe1;
}
.nhx-topbar-right a {
  color: #fff !important;
  text-decoration: none;
  transition: color .2s;
}
.nhx-topbar-right a:hover { color: var(--nhx-lime) !important; }
.nhx-topbar-zalo {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #0068ff;
  color: #fff !important;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  transition: background .2s;
}
.nhx-topbar-zalo:hover { background: #0055d4 !important; }

/* Sticky header offset for promo + topbar */
.nhx-nav {
  top: 0 !important; /* stays sticky right below promo+topbar */
}
/* When admin bar shown */
.admin-bar .nhx-promo-bar { margin-top: 0; }

/* ═══════════════════════════════════════════
   SPEED DIAL FLOATING CONTACT
═══════════════════════════════════════════ */
.nhx-speed-dial {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* Pulse animation on main button */
.nhx-dial-pulse {
  position: absolute;
  bottom: 0; right: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--nhx-green);
  opacity: .4;
  animation: nhxDialPulse 2s ease-out infinite;
  pointer-events: none;
}
.nhx-dial-pulse2 { animation-delay: 1s; }
@keyframes nhxDialPulse {
  0%   { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Main button */
.nhx-dial-main {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--nhx-green);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(0,165,86,.4);
  transition: background .2s, transform .2s;
  position: relative;
  z-index: 2;
}
.nhx-dial-main:hover { background: var(--nhx-dark); transform: scale(1.08); }

/* Dial items container */
.nhx-dial-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .25s, transform .25s;
}
.nhx-speed-dial.nhx-dial-active .nhx-dial-items {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Each dial item */
.nhx-dial-item {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.nhx-dial-item:hover { transform: scale(1.12); }

.nhx-dial-phone   { background: var(--nhx-green); box-shadow: 0 4px 14px rgba(0,165,86,.35); }
.nhx-dial-zalo    { background: #0068ff; box-shadow: 0 4px 14px rgba(0,104,255,.35); }
.nhx-dial-messenger { background: linear-gradient(135deg, #0668E1 0%, #8a2BE2 100%); box-shadow: 0 4px 14px rgba(100,80,200,.3); }
.nhx-dial-consult { background: var(--nhx-dark); box-shadow: 0 4px 14px rgba(0,77,43,.3); }

.nhx-dial-icon { display: grid; place-items: center; }
.nhx-dial-icon-zalo svg { border-radius: 8px; }

/* Tooltip labels */
.nhx-dial-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(0,0,0,.78);
  color: #fff;
  font: 600 12px 'Montserrat', sans-serif;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
}
.nhx-dial-item:hover .nhx-dial-tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   CHATBOT / CONSULT POPUP
═══════════════════════════════════════════ */
.nhx-consult-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9988;
  backdrop-filter: blur(2px);
}
.nhx-consult-overlay.nhx-open { display: block; }

.nhx-consult-popup {
  position: fixed;
  bottom: 28px; right: 92px;
  width: 340px;
  max-height: 560px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  z-index: 9989;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s;
}
.nhx-consult-popup.nhx-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.nhx-consult-popup-head {
  background: linear-gradient(135deg, var(--nhx-green), var(--nhx-dark));
  color: #fff;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nhx-consult-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.nhx-consult-popup-head b { display: block; font: 700 14px 'Montserrat', sans-serif; }
.nhx-consult-popup-head small { font-size: 11px; opacity: .8; }
.nhx-consult-popup-close {
  margin-left: auto;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s;
}
.nhx-consult-popup-close:hover { background: rgba(255,255,255,.32); }

.nhx-consult-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f6fbf8;
  max-height: 320px;
}
.nhx-msg { display: flex; align-items: flex-end; gap: 8px; }
.nhx-msg-bot { flex-direction: row; }
.nhx-msg-user { flex-direction: row-reverse; }
.nhx-msg-avatar { font-size: 22px; flex-shrink: 0; }
.nhx-msg-bubble {
  background: #fff;
  border: 1px solid var(--nhx-line);
  border-radius: 12px 12px 12px 3px;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--nhx-ink);
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.nhx-msg-user .nhx-msg-bubble {
  background: var(--nhx-green);
  color: #fff;
  border-color: var(--nhx-green);
  border-radius: 12px 12px 3px 12px;
}
.nhx-msg-bubble a { color: var(--nhx-lime); }
.nhx-msg-user .nhx-msg-bubble a { color: #fff; text-decoration: underline; }

/* Quick reply chips */
.nhx-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 4px 0 2px 32px;
}
.nhx-qr {
  background: #fff;
  border: 1.5px solid var(--nhx-green);
  color: var(--nhx-green);
  border-radius: 99px;
  padding: 6px 13px;
  font: 600 12px 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.nhx-qr:hover { background: var(--nhx-green); color: #fff; }

/* Input row */
.nhx-consult-popup-form { padding: 10px 12px 12px; border-top: 1px solid var(--nhx-line); }
.nhx-consult-popup-input-row {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--nhx-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.nhx-consult-popup-input-row:focus-within { border-color: var(--nhx-green); }
#nhx-chat-input {
  flex: 1;
  border: none;
  padding: 11px 13px;
  font: 13px 'Montserrat', sans-serif;
  outline: none;
  background: transparent;
  color: var(--nhx-ink);
}
.nhx-consult-popup-send {
  background: var(--nhx-green);
  border: none;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  transition: background .2s;
  display: grid; place-items: center;
}
.nhx-consult-popup-send:hover { background: var(--nhx-dark); }
.nhx-consult-popup-hint {
  margin: 7px 0 0;
  font-size: 11px;
  color: var(--nhx-muted);
  text-align: center;
}
.nhx-consult-popup-hint a { color: var(--nhx-green); font-weight: 700; }

/* ═══════════════════════════════════════════
   FOOTER – contact buttons
═══════════════════════════════════════════ */
.nhx-footer-contact-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.nhx-fcontact-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 7px;
  padding: 8px 12px;
  font: 700 12px 'Montserrat', sans-serif;
  text-decoration: none;
  transition: opacity .2s;
}
.nhx-fcontact-btn:hover { opacity: .85; }
.nhx-call-btn { background: var(--nhx-green); color: #fff !important; }
.nhx-zalo-btn { background: #0068ff; color: #fff !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nhx-topbar-left { display: none; }
  .nhx-topbar-inner { justify-content: center; }
  .nhx-consult-popup { right: 12px; bottom: 80px; width: calc(100vw - 24px); max-width: 360px; }
  .nhx-speed-dial { bottom: 80px; right: 16px; }
}
@media (max-width: 520px) {
  .nhx-promo-bar { height: 28px; }
  .nhx-promo-track span { font-size: 11px; }
  .nhx-topbar { display: none; } /* hide topbar on very small, still in footer */
}

/* ── Chatbot popup: Telegram head button ─────────── */
.nhx-tg-head-btn {
  margin-left: auto;
  background: #229ED9;
  border-radius: 8px;
  padding: 6px 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s;
  text-decoration: none;
}
.nhx-tg-head-btn:hover { background: #1a8bc4; }

/* ── Online dot ──────────────────────────────────── */
.nhx-online-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 5px;
  animation: nhxBlink 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes nhxBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* ── Contact shortcuts strip ─────────────────────── */
.nhx-consult-shortcuts {
  display: flex;
  gap: 6px;
  padding: 8px 12px 10px;
  border-top: 1px solid var(--nhx-line);
  flex-wrap: wrap;
}
.nhx-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  border-radius: 20px;
  font: 700 11px 'Montserrat', sans-serif;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  flex-shrink: 0;
}
.nhx-shortcut:hover { opacity: .85; transform: translateY(-1px); }
.nhx-shortcut-call { background: var(--nhx-green); color: #fff !important; }
.nhx-shortcut-zalo { background: #0068ff; color: #fff !important; }
.nhx-shortcut-tg   { background: #229ED9; color: #fff !important; }


/* ═══════════════════════════════════
   NHX DESIGN v2 – ADDITIONS
═══════════════════════════════════ */

/* ============================================================
   NHX DESIGN v2 – Professional upgrade
   Applies to ALL pages on nonghoaxanh.vn
   ============================================================ */

/* ── Refined Design Tokens ── */
:root {
  /* Brand greens — richer, deeper */
  --nhx-ink:       #1a4a2e;
  --nhx-green:     #2d8a56;
  --nhx-green-mid: #1e7244;
  --nhx-lime:      #8cc63f;
  --nhx-lime-soft: #d4ebb5;
  --nhx-dark:      #0f2e1c;
  --nhx-muted:     #4a7c5e;
  /* Neutrals */
  --nhx-cream:     #f8faf7;
  --nhx-paper:     #ffffff;
  --nhx-line:      #d6e8dc;
  --nhx-bg-subtle: #f2f7f4;
  /* Shadows */
  --nhx-shadow-sm: 0 2px 8px rgba(15,46,28,.08);
  --nhx-shadow:    0 8px 32px rgba(15,46,28,.12);
  --nhx-shadow-lg: 0 16px 48px rgba(15,46,28,.16);
  /* Typography */
  --nhx-font: 'Montserrat', 'Inter', sans-serif;
  /* Radii */
  --nhx-r-sm: 8px;
  --nhx-r:    14px;
  --nhx-r-lg: 22px;
  /* Transitions */
  --nhx-ease: cubic-bezier(.4,0,.2,1);
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Body reset ── */
body {
  font-family: var(--nhx-font) !important;
  color: var(--nhx-ink);
  background: var(--nhx-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }

/* ── Smooth scrolling ── */
html { scroll-behavior: smooth; }

/* ── Selection color ── */
::selection { background: var(--nhx-lime); color: var(--nhx-dark); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY IMPROVEMENTS
═══════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--nhx-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--nhx-ink);
  letter-spacing: -.02em;
}
p { line-height: 1.7; }
a { transition: color .2s var(--nhx-ease); }

/* ── Post/page single title (sentence case handled by PHP, style fix) ── */
.entry-title,
.post-title,
h1.title,
.single-post h1 {
  text-transform: none !important;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

/* Archive/category news titles → viết thường */
.news-card h3,
.post-card h3,
article.post h2.entry-title,
.loop-post h2,
.post-item h3 {
  text-transform: none !important;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   HEADER – Enhanced sticky nav
═══════════════════════════════════════════ */
#header.nhx-nav,
.nhx-nav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nhx-line);
  box-shadow: 0 1px 0 rgba(15,46,28,.06), 0 4px 20px rgba(15,46,28,.06);
  transition: box-shadow .3s var(--nhx-ease), background .3s var(--nhx-ease);
}
#header.nhx-nav.scrolled,
.nhx-nav.scrolled {
  box-shadow: 0 2px 24px rgba(15,46,28,.12);
}

/* ── Nav links refined ── */
.nhx-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--nhx-ink);
  position: relative;
  padding: 4px 0;
  text-decoration: none;
  transition: color .2s var(--nhx-ease);
}
.nhx-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--nhx-green);
  border-radius: 99px;
  transition: width .25s var(--nhx-ease);
}
.nhx-link:hover,
.nhx-link:focus { color: var(--nhx-green); }
.nhx-link:hover::after,
.nhx-link:focus::after { width: 100%; }
.nhx-link.active { color: var(--nhx-green); }
.nhx-link.active::after { width: 100%; }

/* ── CTA button in header ── */
.nhx-cta {
  background: linear-gradient(135deg, var(--nhx-green) 0%, var(--nhx-green-mid) 100%);
  color: #fff !important;
  border-radius: 99px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border: none;
  transition: transform .2s var(--nhx-ease), box-shadow .2s var(--nhx-ease);
  box-shadow: 0 4px 14px rgba(45,138,86,.35);
  white-space: nowrap;
}
.nhx-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,138,86,.45);
  color: #fff !important;
}

/* ── Ticker / marquee bar ── */
.nhx-ticker-bar {
  background: linear-gradient(90deg, var(--nhx-dark) 0%, #1a5c34 100%);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 0;
  overflow: hidden;
}
.nhx-ticker-bar a { color: var(--nhx-lime); font-weight: 600; }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #e8f5ee 0%, #f5fbf7 55%, #edf7f1 100%);
  padding: clamp(40px, 8vw, 100px) 0 clamp(30px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,198,63,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 580px; }

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--nhx-dark);
  margin: 0 0 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--nhx-green);
  background: linear-gradient(135deg, var(--nhx-green) 0%, var(--nhx-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--nhx-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nhx-lime-soft);
  color: var(--nhx-green-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.hero-copy .eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nhx-green);
}

.ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn.primary {
  background: linear-gradient(135deg, var(--nhx-green) 0%, var(--nhx-green-mid) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(45,138,86,.4);
  transition: transform .2s var(--nhx-ease), box-shadow .2s var(--nhx-ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45,138,86,.5);
  color: #fff;
}
.btn.secondary {
  background: transparent;
  color: var(--nhx-green);
  border: 2px solid var(--nhx-green);
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s var(--nhx-ease), color .2s var(--nhx-ease), transform .2s var(--nhx-ease);
}
.btn.secondary:hover {
  background: var(--nhx-green);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero art (slider) ── */
.hero-art { position: relative; }
.harvest-slider {
  border-radius: var(--nhx-r-lg);
  overflow: hidden;
  box-shadow: var(--nhx-shadow-lg);
  aspect-ratio: 4/3;
  background: var(--nhx-line);
}
.harvest-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s var(--nhx-ease); }
.harvest-slide.active { opacity: 1; position: relative; }
.harvest-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}
.harvest-slide.active img { transform: scale(1.04); }
figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,30,15,.7));
  color: #fff;
  padding: 32px 16px 14px;
}
figcaption b { display: block; font-size: 13px; font-weight: 700; }
figcaption small { font-size: 11px; opacity: .8; }

.harvest-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.harvest-dots i {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--nhx-line);
  cursor: pointer;
  transition: width .3s var(--nhx-ease), background .3s var(--nhx-ease);
}
.harvest-dots i.on { width: 22px; background: var(--nhx-green); }

/* ── Corner product badge ── */
.hero-badge.product-corner {
  position: absolute;
  bottom: -20px; right: 0;
  display: flex;
  gap: 8px;
}
.corner-product {
  background: #fff;
  border-radius: var(--nhx-r);
  box-shadow: var(--nhx-shadow);
  padding: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .4s var(--nhx-ease), transform .4s var(--nhx-ease);
  text-decoration: none;
}
.corner-product.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.corner-product img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 6px; }
.corner-product span { font-size: 10px; font-weight: 700; color: var(--nhx-ink); display: block; }

/* ═══════════════════════════════════════════
   SECTION HEADERS (shared)
═══════════════════════════════════════════ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(24px, 4vw, 44px);
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--nhx-dark);
  margin: 0 0 6px;
  text-transform: none !important;
}
.section-head p {
  color: var(--nhx-muted);
  margin: 0;
  font-size: 14px;
}
a.view {
  font-size: 13px;
  font-weight: 700;
  color: var(--nhx-green);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px;
  border: 1.5px solid var(--nhx-green);
  border-radius: 99px;
  transition: background .2s var(--nhx-ease), color .2s var(--nhx-ease), transform .2s;
}
a.view:hover {
  background: var(--nhx-green);
  color: #fff;
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.content-section {
  padding: clamp(40px, 7vw, 90px) 0;
  background: var(--nhx-paper);
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.about-intro .about-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--nhx-green);
  background: var(--nhx-lime-soft);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.about-intro h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--nhx-dark);
  margin: 0 0 14px;
}
.about-intro p {
  color: var(--nhx-muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.mission-video {
  border-radius: var(--nhx-r);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--nhx-shadow);
  background: var(--nhx-dark);
}
.mission-video iframe {
  width: 100%; height: 100%;
  border: none;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-point {
  background: var(--nhx-bg-subtle);
  border-radius: var(--nhx-r);
  padding: 24px;
  border: 1px solid var(--nhx-line);
  transition: transform .2s var(--nhx-ease), box-shadow .2s var(--nhx-ease);
}
.about-point:hover {
  transform: translateY(-3px);
  box-shadow: var(--nhx-shadow);
}
.about-point h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--nhx-dark);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-point h3::before {
  content: '';
  width: 4px; height: 16px;
  background: linear-gradient(var(--nhx-green), var(--nhx-lime));
  border-radius: 99px;
  flex-shrink: 0;
}
.value-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-list li {
  background: #fff;
  border: 1px solid var(--nhx-line);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--nhx-green-mid);
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */
#products {
  padding: clamp(40px, 7vw, 90px) 0;
  background: var(--nhx-bg-subtle);
}

/* Filter tabs */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter {
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--nhx-muted);
  border: 1.5px solid var(--nhx-line);
  transition: background .2s var(--nhx-ease), color .2s var(--nhx-ease), border-color .2s, transform .15s;
  user-select: none;
}
.filter:hover {
  border-color: var(--nhx-green);
  color: var(--nhx-green);
  transform: translateY(-1px);
}
.filter.active {
  background: var(--nhx-green);
  color: #fff;
  border-color: var(--nhx-green);
  box-shadow: 0 4px 14px rgba(45,138,86,.3);
}

/* Product cards */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: var(--nhx-r);
  overflow: hidden;
  border: 1px solid var(--nhx-line);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--nhx-ease), box-shadow .25s var(--nhx-ease);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nhx-shadow);
  border-color: transparent;
}
.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
  background: var(--nhx-bg-subtle);
  transition: transform .4s var(--nhx-ease);
}
.card:hover img { transform: scale(1.06); }
.card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--nhx-dark);
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body .price {
  font-size: 15px;
  font-weight: 800;
  color: var(--nhx-green);
  margin-top: auto;
  padding-top: 8px;
}
.card-body .cat-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--nhx-green-mid);
  background: var(--nhx-lime-soft);
  padding: 2px 8px;
  border-radius: 99px;
  display: inline-flex;
  margin-bottom: 6px;
}
button.add-cart {
  background: var(--nhx-green);
  color: #fff;
  border: none;
  border-radius: 0 0 var(--nhx-r) var(--nhx-r);
  padding: 10px;
  font: 700 12px var(--nhx-font);
  cursor: pointer;
  transition: background .2s var(--nhx-ease);
  width: 100%;
  margin-top: auto;
}
button.add-cart:hover { background: var(--nhx-dark); }

/* ═══════════════════════════════════════════
   GUIDE SECTION
═══════════════════════════════════════════ */
.guide {
  padding: clamp(40px, 7vw, 90px) 0;
  background: linear-gradient(135deg, var(--nhx-dark) 0%, #1c5c35 100%);
  position: relative;
  overflow: hidden;
}
.guide::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(140,198,63,.12) 0%, transparent 70%);
  pointer-events: none;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.guide-grid h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.guide-grid p { color: rgba(255,255,255,.7); margin: 0 0 24px; }
.guide-grid .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  color: var(--nhx-lime) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.guide-grid .btn {
  background: var(--nhx-lime) !important;
  color: var(--nhx-dark) !important;
  border-radius: 99px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s var(--nhx-ease), box-shadow .2s var(--nhx-ease);
  box-shadow: 0 4px 16px rgba(140,198,63,.4);
  border: none;
}
.guide-grid .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(140,198,63,.5);
}

.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--nhx-r);
  padding: 16px 20px;
  backdrop-filter: blur(4px);
  transition: background .2s var(--nhx-ease), transform .2s var(--nhx-ease);
}
.step:hover {
  background: rgba(255,255,255,.14);
  transform: translateX(4px);
}
.num {
  font-size: 11px;
  font-weight: 900;
  color: var(--nhx-lime);
  background: rgba(140,198,63,.15);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: .03em;
}
.step b { font-weight: 700; color: #fff; font-size: 14px; }
.step small { color: rgba(255,255,255,.65); font-size: 12px; display: block; margin-top: 2px; }

/* ═══════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════ */
.video-section {
  padding: clamp(40px, 7vw, 90px) 0;
  background: var(--nhx-paper);
}
.channel-video {
  overflow: hidden;
  border-radius: var(--nhx-r);
}
.video-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.video-track iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--nhx-r-sm);
  box-shadow: var(--nhx-shadow-sm);
}

/* ═══════════════════════════════════════════
   NEWS SECTION
═══════════════════════════════════════════ */
#news {
  padding: clamp(40px, 7vw, 90px) 0;
  background: var(--nhx-bg-subtle);
}
.news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.news-card {
  background: #fff;
  border-radius: var(--nhx-r);
  overflow: hidden;
  border: 1px solid var(--nhx-line);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s var(--nhx-ease), box-shadow .25s var(--nhx-ease);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nhx-shadow);
  border-color: transparent;
}
.news-card .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nhx-green);
}
.news-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--nhx-dark);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none !important;
}
.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--nhx-ease);
}
.news-card h3 a:hover { color: var(--nhx-green); }
.news-card .meta {
  font-size: 11px;
  color: var(--nhx-muted);
  margin: auto 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--nhx-line);
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-card .meta::before {
  content: '';
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a7c5e'%3E%3Cpath d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.nhx-footer {
  background: var(--nhx-dark);
  color: rgba(255,255,255,.75);
}
.nhx-footer-top {
  padding: clamp(40px, 6vw, 80px) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nhx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.nhx-footer-brand img { max-height: 52px; margin-bottom: 14px; }
.nhx-footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.65); }
.nhx-footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--nhx-lime);
  margin: 0 0 14px;
}
.nhx-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.nhx-footer-col ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 13px; transition: color .2s; }
.nhx-footer-col ul a:hover { color: #fff; }
.nhx-footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Social icons ── */
.nhx-socials { display: flex; gap: 10px; margin-top: 14px; }
.nhx-social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  transition: background .2s var(--nhx-ease), transform .2s var(--nhx-ease);
  text-decoration: none;
}
.nhx-social-icon:hover {
  background: var(--nhx-green);
  transform: translateY(-2px);
}
.nhx-social-icon svg { width: 16px; height: 16px; fill: #fff; }

/* ═══════════════════════════════════════════
   CHATBOT POPUP – refined
═══════════════════════════════════════════ */
.nhx-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nhx-green) 0%, var(--nhx-green-mid) 100%);
  box-shadow: 0 6px 24px rgba(45,138,86,.5);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  z-index: 9990;
  transition: transform .25s var(--nhx-ease), box-shadow .25s var(--nhx-ease);
}
.nhx-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,138,86,.6);
}
.nhx-fab svg { width: 26px; height: 26px; fill: #fff; }
.nhx-fab-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  animation: nhxPop .4s var(--nhx-ease);
}
@keyframes nhxPop {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.nhx-consult-popup {
  position: fixed;
  bottom: 100px; right: 24px;
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: var(--nhx-r-lg);
  box-shadow: var(--nhx-shadow-lg), 0 0 0 1px rgba(0,0,0,.06);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9991;
  animation: nhxSlideUp .3s var(--nhx-ease);
}
.nhx-consult-popup.open { display: flex; }
@keyframes nhxSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nhx-consult-popup-head {
  background: linear-gradient(135deg, var(--nhx-green) 0%, var(--nhx-green-mid) 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nhx-consult-avatar {
  font-size: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nhx-consult-popup-head b {
  display: block;
  font: 700 14px var(--nhx-font);
  color: #fff;
}
.nhx-consult-popup-head small {
  font-size: 11px;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════════
   UTILITY + ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--nhx-ease), transform .6s var(--nhx-ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--nhx-line) 25%, #e8f3ee 50%, var(--nhx-line) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--nhx-r-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--nhx-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Cart bump */
@keyframes nhxBump {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
.cart.bump { animation: nhxBump .4s var(--nhx-ease); }

/* ═══════════════════════════════════════════
   RESPONSIVE – TABLET (≤900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-copy       { max-width: 100%; }
  .hero-copy h1    { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-art        { display: none; } /* hidden on mobile – show only text */

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

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

  .nhx-footer-grid { grid-template-columns: 1fr 1fr; }

  .nhx-nav .nhx-wrap { gap: 16px; }

  .video-track     { grid-template-columns: 1fr 1fr; }

  .products        { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .news            { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – MOBILE (≤600px)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .nhx-wrap { padding: 0 16px; }

  .hero { padding: 32px 0 28px; }
  .hero-copy h1 { font-size: 2rem; }
  .ctas { flex-direction: column; align-items: flex-start; }
  .btn.primary, .btn.secondary { width: 100%; justify-content: center; }

  .section-head    { flex-direction: column; align-items: flex-start; }

  .filters         { gap: 6px; }
  .filter          { padding: 6px 13px; font-size: 12px; }

  .products        { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .video-track     { grid-template-columns: 1fr; }

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

  .nhx-footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .nhx-fab         { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .nhx-consult-popup { bottom: 84px; right: 12px; width: calc(100vw - 24px); }

  .steps           { gap: 10px; }
  .step            { padding: 12px 14px; }

  .nhx-nav .nhx-wrap { height: 62px; }
  .nhx-brand img   { height: 48px; }

  /* Mobile hamburger menu improvements */
  .nhx-hamburger { display: flex !important; }
  .nhx-links     { display: none; }
  .nhx-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 62px 0 0 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 8px;
    z-index: 9998;
    overflow-y: auto;
    animation: nhxMenuSlide .25s var(--nhx-ease);
  }
  @keyframes nhxMenuSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nhx-menu-list {
    flex-direction: column;
    gap: 4px;
  }
  .nhx-link {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--nhx-r-sm);
    display: block;
  }
  .nhx-link:hover { background: var(--nhx-bg-subtle); }
  .nhx-link::after { display: none; }

  /* Subpage titles mobile */
  .entry-title,
  h1.title { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════
   SUBPAGE / ARCHIVE IMPROVEMENTS
═══════════════════════════════════════════ */
/* Post list archive */
.loop-posts, .post-loop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Single post content */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #2a3d2e;
}
.entry-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--nhx-dark);
  margin: 2em 0 .6em;
  text-transform: none !important;
}
.entry-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nhx-dark);
  margin: 1.6em 0 .5em;
  text-transform: none !important;
}
.entry-content p { margin: 0 0 1.2em; }
.entry-content ul, .entry-content ol {
  padding-left: 1.4em;
  margin: 0 0 1.2em;
}
.entry-content li { margin-bottom: .5em; }
.entry-content a {
  color: var(--nhx-green);
  text-decoration: underline;
  text-decoration-color: var(--nhx-lime);
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--nhx-dark); }
.entry-content img {
  border-radius: var(--nhx-r-sm);
  box-shadow: var(--nhx-shadow-sm);
  margin: 1.5em auto;
}
.entry-content blockquote {
  border-left: 4px solid var(--nhx-green);
  background: var(--nhx-bg-subtle);
  border-radius: 0 var(--nhx-r-sm) var(--nhx-r-sm) 0;
  padding: 14px 20px;
  margin: 1.5em 0;
  color: var(--nhx-muted);
  font-style: italic;
}

/* WooCommerce product page */
.woocommerce .product .price {
  color: var(--nhx-green) !important;
  font-weight: 800;
  font-size: 1.3rem !important;
}
.woocommerce .single_add_to_cart_button {
  background: linear-gradient(135deg, var(--nhx-green) 0%, var(--nhx-green-mid) 100%) !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  box-shadow: 0 4px 16px rgba(45,138,86,.4) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.woocommerce .single_add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(45,138,86,.5) !important;
}

/* Breadcrumb */
.breadcrumbs, .woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--nhx-muted);
  padding: 12px 0;
}
.breadcrumbs a, .woocommerce-breadcrumb a {
  color: var(--nhx-green);
  text-decoration: none;
}

/* Pagination */
.nhx-pagination, .page-numbers {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.page-numbers a, .page-numbers span {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--nhx-r-sm);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--nhx-line);
  color: var(--nhx-ink);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.page-numbers a:hover { background: var(--nhx-green); color: #fff; border-color: var(--nhx-green); }
.page-numbers .current { background: var(--nhx-green); color: #fff; border-color: var(--nhx-green); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATION TRIGGER
═══════════════════════════════════════════ */
.nhx-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--nhx-ease), transform .65s var(--nhx-ease);
}
.nhx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nhx-reveal:nth-child(2) { transition-delay: .1s; }
.nhx-reveal:nth-child(3) { transition-delay: .2s; }
.nhx-reveal:nth-child(4) { transition-delay: .3s; }

/* ── Guide section – color fix ── */
.guide .step {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
}
.guide .step:hover {
  background: rgba(255,255,255,.18);
}
.guide .num {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.guide .step b {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
.guide .step small {
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

/* Guide left text */
.guide-grid > div:first-child .eyebrow {
  background: rgba(255,255,255,.12);
  color: var(--nhx-lime) !important;
}
.guide-grid h2 { color: #ffffff; }
.guide-grid p  { color: rgba(255,255,255,.80); }

/* Button "Bắt đầu tư vấn" – nổi bật hơn */
.guide-grid .btn {
  background: var(--nhx-lime) !important;
  color: var(--nhx-dark) !important;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(140,198,63,.45) !important;
  border: none !important;
}
.guide-grid .btn:hover {
  background: #a0d84a !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(140,198,63,.6) !important;
}

/* ── Guide section – replace white text with harmonious colors ── */
/* Tiêu đề h2 → xanh lime sáng */
.guide .guide-grid h2 {
  color: #d4ebb5 !important;   /* lime nhạt, dễ đọc trên nền xanh đậm */
  text-shadow: none;
}
/* Đoạn mô tả → trắng kem nhẹ */
.guide .guide-grid > div:first-child > p,
.guide .guide-grid p {
  color: rgba(212,235,181,.85) !important;  /* lime kem */
}
/* "Phân bón lá" nhỏ dưới tiêu đề */
.guide .guide-grid > div small,
.guide-grid > div:first-child p:last-of-type {
  color: rgba(212,235,181,.70) !important;
}
/* Số 01 02 03 → lime */
.guide .num {
  color: #8cc63f !important;
  background: rgba(140,198,63,.18) !important;
  font-weight: 900;
}
/* Tiêu đề bước (b) → trắng kem */
.guide .step b {
  color: #f0f9e8 !important;   /* trắng ngả xanh */
}
/* Mô tả bước (small) → lime nhạt */
.guide .step small {
  color: rgba(212,235,181,.80) !important;
}
/* Eyebrow "THEO CÔNG DỤNG" → lime */
.guide-grid .eyebrow {
  color: #8cc63f !important;
  background: rgba(140,198,63,.15) !important;
}

/* ── Guide h2 override (higher specificity) ── */
section.guide .guide-grid h2,
section.guide h2,
.guide h2 {
  color: #d4ebb5 !important;
}

/* ── FINAL OVERRIDE: guide h2 color ── */
section#guide h2,
#guide h2,
.guide h2,
[class*="guide"] h2 {
  color: #d4ebb5 !important;
}
/* Fix --lime variable trên nền xanh (đang dùng var(--lime) cũ) */
.guide * {
  --lime: #8cc63f;
  --ink: #0f2e1c;
}

/* ═══════════════════════════════════════════
   NEWS SECTION v2 – Categories + List
═══════════════════════════════════════════ */
#news {
  padding: clamp(40px, 7vw, 90px) 0;
  background: var(--nhx-bg-subtle);
}

/* ── Danh mục tin tức (cards có hình) ── */
.news-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.news-cat-card {
  border-radius: var(--nhx-r);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--nhx-line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--nhx-ease), box-shadow .25s var(--nhx-ease);
  position: relative;
}
.news-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nhx-shadow);
  border-color: transparent;
}
.news-cat-img {
  aspect-ratio: 16/9;
  background-color: var(--nhx-bg-subtle);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-cat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,46,28,.5) 0%, transparent 60%);
  transition: opacity .3s;
}
.news-cat-card:hover .news-cat-img::after {
  opacity: .7;
}
.news-cat-icon {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}
.news-cat-overlay { display: none; }
.news-cat-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-cat-count {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--nhx-green);
  background: var(--nhx-lime-soft);
  padding: 2px 8px;
  border-radius: 99px;
  display: inline-flex;
  align-self: flex-start;
}
.news-cat-body h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--nhx-dark);
  margin: 0;
  line-height: 1.35;
}
.news-cat-card:hover .news-cat-body h3 {
  color: var(--nhx-green);
}

/* ── Danh sách bài viết ── */
.news-list-wrap {
  background: #fff;
  border-radius: var(--nhx-r-lg);
  border: 1px solid var(--nhx-line);
  overflow: hidden;
}
.news-list-label {
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--nhx-green);
  background: var(--nhx-bg-subtle);
  border-bottom: 1px solid var(--nhx-line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-list-label::before {
  content: '';
  width: 3px; height: 14px;
  background: linear-gradient(var(--nhx-green), var(--nhx-lime));
  border-radius: 99px;
}
.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.news-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid var(--nhx-line);
  border-right: 1px solid var(--nhx-line);
  transition: background .2s var(--nhx-ease);
  text-decoration: none;
}
.news-row:nth-child(even) { border-right: none; }
.news-row:nth-last-child(-n+2) { border-bottom: none; }
.news-row:hover { background: var(--nhx-bg-subtle); }

.news-row-thumb {
  width: 72px; height: 64px;
  border-radius: var(--nhx-r-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--nhx-line);
  flex-shrink: 0;
  display: block;
  transition: transform .3s var(--nhx-ease);
}
.news-row:hover .news-row-thumb { transform: scale(1.04); }
.news-row-thumb--empty {
  background: var(--nhx-lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-row-thumb--empty::after {
  content: '📄';
  font-size: 1.4rem;
}

.news-row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.news-row-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--nhx-green);
  text-decoration: none;
  display: inline-block;
}
.news-row-cat:hover { text-decoration: underline; }
.news-row-body h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--nhx-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none !important;
}
.news-row-body h4 a {
  color: inherit;
  text-decoration: none;
}
.news-row-body h4 a:hover { color: var(--nhx-green); }
.news-row-date {
  font-size: 11px;
  color: var(--nhx-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .news-cats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .news-cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .news-list { grid-template-columns: 1fr; }
  .news-row { border-right: none !important; }
  .news-row:last-child { border-bottom: none; }
}

/* ── Post titles: chữ thường, hoa đầu câu, font-weight vừa ── */
/* Trang đơn bài viết */
.single-post .entry-title,
.single .entry-title,
article.post .entry-title,
.page-title {
  text-transform: none !important;
  font-weight: 700 !important;
  letter-spacing: -.02em;
}

/* Archive / loop bài viết */
.loop-posts .post .entry-title,
.blog .entry-title,
.archive .entry-title,
article.type-post h2,
article.type-post h3 {
  text-transform: none !important;
  font-weight: 600 !important;
}

/* Home section news cards & rows */
.news-row-body h4,
.news-card h3,
.news-row-body h4 a,
.news-card h3 a {
  text-transform: none !important;
  font-weight: 600 !important;
}

/* Flatsome loop post override */
.is-list .post-title,
.post-title a,
.entry-header .entry-title {
  text-transform: none !important;
}

/* Subpage & post detail title */
h1.entry-title,
h1.page-title {
  font-weight: 800;
  text-transform: none !important;
}

/* ═══════════════════════════════════════════
   VIDEO SLIDER v2 – 4-up horizontal scroll
═══════════════════════════════════════════ */
.video-section {
  padding: clamp(40px, 7vw, 90px) 0;
  background: var(--nhx-dark);
}
.video-section .section-head h2,
.video-section .section-head p {
  color: #fff;
}
.video-section .section-head p { color: rgba(255,255,255,.65); }

/* Slider wrapper */
.vid-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.vid-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--nhx-r);
}
.vid-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each video slide */
.vid-slide {
  flex-shrink: 0;
  border-radius: var(--nhx-r-sm);
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  transition: transform .25s var(--nhx-ease), box-shadow .25s var(--nhx-ease);
}
.vid-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
}

/* Desktop: 4 visible, width auto-calc via JS */
.vid-slide.vid-normal {
  /* aspect ratio 16:9 */
}
.vid-slide.vid-normal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
/* YouTube Shorts: 9:16 portrait */
.vid-slide.vid-short {
  /* narrower – 9:16 */
}
.vid-slide.vid-short iframe {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 320px;
  border: none;
  display: block;
}

/* Nav buttons */
.vid-btn {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background .2s var(--nhx-ease), transform .2s var(--nhx-ease);
  backdrop-filter: blur(4px);
}
.vid-btn:hover {
  background: var(--nhx-green);
  border-color: var(--nhx-green);
  transform: scale(1.1);
}

/* Dots */
.vid-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.vid-dots i {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: width .3s var(--nhx-ease), background .3s var(--nhx-ease);
}
.vid-dots i.on {
  width: 24px;
  background: var(--nhx-lime);
}

/* Touch swipe support */
.vid-track-outer { touch-action: pan-y; }

/* Responsive */
@media (max-width: 1024px) {
  /* 2 visible on tablet */
  .vid-slide.vid-normal iframe { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .vid-btn { width: 36px; height: 36px; font-size: 15px; }
  .vid-slide.vid-short iframe { max-height: 260px; }
}

/* ── Video slide: fix extra height ── */
.vid-slide {
  line-height: 0;       /* xóa khoảng trắng inline */
  font-size: 0;
  padding: 0;
  margin: 0;
}
.vid-slide iframe {
  display: block;
  width: 100%;
  border: none;
  vertical-align: top;  /* loại bỏ gap dưới inline element */
  height: auto;         /* để aspect-ratio tự tính */
}
/* 16:9 normal videos */
.vid-slide.vid-normal {
  aspect-ratio: 16/9;
}
.vid-slide.vid-normal iframe {
  width: 100%;
  height: 100%;         /* fill parent container */
  aspect-ratio: unset;  /* inherit from parent */
}
/* 9:16 Shorts */
.vid-slide.vid-short {
  aspect-ratio: 9/16;
  max-height: 340px;
  width: calc(340px * 9 / 16); /* tính width từ max-height */
}
.vid-slide.vid-short iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

/* ── YouTube channel link button ── */
.vid-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .2s var(--nhx-ease), transform .2s var(--nhx-ease), box-shadow .2s var(--nhx-ease);
  box-shadow: 0 4px 14px rgba(255,0,0,.35);
  white-space: nowrap;
}
.vid-yt-link:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,0,0,.45);
}
.vid-yt-link svg { flex-shrink: 0; }

/* ── Guide section: tất cả chữ → trắng ── */
section.guide h2,
section.guide .guide-grid h2,
#guide h2,
.guide h2 {
  color: #ffffff !important;
}
.guide .guide-grid > div > p,
.guide-grid > div:first-child p {
  color: rgba(255,255,255,.85) !important;
}
.guide .eyebrow,
.guide-grid .eyebrow {
  color: #ffffff !important;
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.25);
}
/* ==========================================================================
   NHX NEW DESIGN: HERO STATS RIBBON & POST-NEWS SECTIONS (CROPS, TESTIMONIALS, CTA)
   ========================================================================== */

/* --- General Section Utilities --- */
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-head.center h2 {
  font-size: 32px;
  font-weight: 800;
  color: #006b3c;
  margin: 8px 0 12px;
  letter-spacing: -0.3px;
  font-family: 'Montserrat', sans-serif;
}
.section-head.center p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.nhx-badge-eyebrow {
  display: inline-block;
  background: #e8f8f0;
  color: #008a46;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(0, 165, 86, 0.25);
  box-shadow: 0 2px 6px rgba(0, 165, 86, 0.08);
}

/* ==========================================================================
   1. HERO STATS RIBBON (Ngay chân Banner)
   ========================================================================== */
.hero-stats-ribbon {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  margin-bottom: 30px;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 165, 86, 0.16);
  box-shadow: 0 16px 45px rgba(0, 80, 40, 0.09), 0 3px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.hero-stat-card {
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #eef6f1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  position: relative;
}
.hero-stat-card:last-child {
  border-right: none;
}
.hero-stat-card:hover {
  background: #f7fdf9;
  transform: translateY(-3px);
  box-shadow: inset 0 -3px 0 #00a556;
}
.hero-stat-icon-box {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f8f0 0%, #d2f3e3 100%);
  color: #008a46;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 165, 86, 0.15);
  transition: transform 0.3s ease;
}
.hero-stat-card:hover .hero-stat-icon-box {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #00a556 0%, #007a40 100%);
  color: #ffffff;
}
.hero-stat-svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}
.hero-stat-info {
  flex: 1;
  min-width: 0;
}
.hero-stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #064024;
  line-height: 1;
}
.hero-stat-number-wrap .stat-num {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.hero-stat-number-wrap .stat-unit {
  font-size: 20px;
  color: #00a556;
  font-weight: 800;
}
.hero-stat-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #1f2937;
  margin-top: 5px;
  line-height: 1.3;
}
.hero-stat-desc {
  font-size: 12px;
  color: #6b7280;
  margin: 3px 0 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat-card:nth-child(2) {
    border-right: none;
  }
  .hero-stat-card:nth-child(1),
  .hero-stat-card:nth-child(2) {
    border-bottom: 1px solid #eef6f1;
  }
}
@media (max-width: 600px) {
  .hero-stats-ribbon {
    margin-top: -20px;
    margin-bottom: 24px;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .hero-stat-card {
    padding: 16px 18px;
    border-right: none !important;
    border-bottom: 1px solid #eef6f1;
  }
  .hero-stat-card:last-child {
    border-bottom: none;
  }
  .hero-stat-number-wrap {
    font-size: 26px;
  }
  .hero-stat-desc {
    white-space: normal;
  }
}

/* ==========================================================================
   2. CROP GUIDE – Giải pháp theo cây trồng (#crops)
   ========================================================================== */
.crops-section {
  background: #f8faf8;
  padding: 75px 0 85px;
  border-top: 1px solid #edf2ee;
}
.crop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.crop-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 165, 86, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.crop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 107, 60, 0.15);
  border-color: #00a556;
}
.crop-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}
.crop-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.crop-card:hover .crop-img {
  transform: scale(1.08);
}
.crop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.crop-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 107, 60, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.4px;
}
.crop-post-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.crop-body {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.crop-body-top h3 {
  font-size: 20px;
  font-weight: 800;
  color: #006b3c;
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s ease;
}
.crop-card:hover .crop-body-top h3 {
  color: #00a556;
}
.crop-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 16px;
}
.crop-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  color: #008a46;
  border-top: 1px dashed #e8f0eb;
  padding-top: 12px;
}
.crop-arrow {
  transition: transform 0.25s ease;
}
.crop-card:hover .crop-arrow {
  transform: translateX(5px);
  stroke: #00a556;
}

@media (max-width: 992px) {
  .crop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .crop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .crops-section {
    padding: 50px 0 60px;
  }
}

/* ==========================================================================
   3. TESTIMONIALS – Đánh giá từ Nhà nông (#testimonials)
   ========================================================================== */
.testi-section {
  background: #ffffff;
  padding: 80px 0 90px;
  border-top: 1px solid #edf2ee;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6eee8;
  border-top: 4px solid #00a556;
  padding: 30px 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0, 107, 60, 0.12);
  border-color: #00a556;
}
.testi-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.testi-stars {
  color: #f59e0b;
  font-size: 19px;
  letter-spacing: 2px;
}
.testi-badge-verified {
  font-size: 11px;
  font-weight: 800;
  color: #008a46;
  background: #e8f8f0;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(0, 165, 86, 0.2);
}
.testi-quote {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 18px;
  position: relative;
}
.testi-product-tag {
  font-size: 12.5px;
  color: #065f32;
  background: #f2faf4;
  border-left: 3px solid #00a556;
  padding: 7px 12px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}
.testi-product-tag b {
  color: #008a46;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0f4f1;
  padding-top: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f8f0 0%, #cbf2df 100%);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 165, 86, 0.12);
  border: 2px solid #ffffff;
}
.testi-meta b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  font-family: 'Montserrat', sans-serif;
}
.testi-meta small {
  display: block;
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 2px;
}

@media (max-width: 992px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   4. CTA LIÊN HỆ & TƯ VẤN KỸ THUẬT (#contact-cta)
   ========================================================================== */
.cta-section {
  background: #f4f8f5;
  padding: 50px 0 85px;
}
.cta-box {
  background: linear-gradient(135deg, #053b21 0%, #075a34 50%, #007a40 100%);
  border-radius: 26px;
  padding: 52px 48px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(4, 59, 33, 0.28);
}
.cta-decoration-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-dec-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  top: -160px;
  right: -100px;
}
.cta-dec-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 165, 86, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: -150px;
  left: 30%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #bbf7d0;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.28;
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
}
.cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 540px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-call {
  background: #ffffff;
  color: #006b3c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.cta-call:hover {
  background: #f0fdf4;
  color: #008a46;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}
.cta-call b {
  color: #e11d48;
}
.cta-zalo {
  background: #0068ff;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.3);
}
.cta-zalo:hover {
  background: #0056d6;
  color: #ffffff;
  transform: translateY(-3px);
}
.cta-tele {
  background: #229ED9;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.3);
}
.cta-tele:hover {
  background: #1b86ba;
  color: #ffffff;
  transform: translateY(-3px);
}
.cta-hotline-card {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}
.cta-hl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.cta-hl-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.35);
  animation: nhxPulse 2s infinite;
}
@keyframes nhxPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.cta-hl-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #bbf7d0;
  text-transform: uppercase;
}
.cta-hl-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cta-hl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 11px 16px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}
.cta-hl-row:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.cta-hl-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-hl-num {
  font-size: 17px;
  font-weight: 800;
  color: #facc15;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}
.cta-hl-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
.cta-hl-meta p {
  margin: 5px 0;
}

@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-box {
    padding: 38px 28px;
  }
}
@media (max-width: 600px) {
  .cta-content h2 {
    font-size: 24px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
