@charset "UTF-8";
/* Generated output target: ../css/homemed-custom.css */
/* ==========================================================================
   HOMEMED DESIGN SYSTEM & STYLES (MATCHING LAYOUT INDEX.PNG EXACTLY)
   ========================================================================== */
:root {
  --primary-green: #2E6E24;
  --primary-green-dark: #006633;
  --primary-red: #BB0000;
  --primary-red-hover: #a30b23;
  --text-dark: #1e2938;
  --text-body: #333333;
  --text-muted: #666666;
  --bg-light: #F8F8F8;
  --bg-card: #ffffff;
  --border-color: #e5e9f2;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.1);
  --shadow-hover: 0 12px 24px rgba(0,0,0,0.15);
  --radius-pill: 50px;
  --radius-card: 12px;
  --pd-section: clamp(20px, calc(50 * 100vw / 1920), 50px);
  --pd-box: clamp(20px, calc(30 * 100vw / 1920), 30px);
  --mg-head: 40px;
  --space-item: 25px;
  --fs-text: 17px;
  --fs-title: clamp(20px, calc(39 * 100vw / 1920), 39px);
  --fs-sub-title: clamp(18px, calc(20 * 100vw / 1920), 20px);
  /*--font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/
  --font-family: Montserrat, sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.no-image {
  background: rgba(243, 243, 243, 0.5);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
  font-family: var(--font-family);
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: var(--fs-text);
  font-weight: 500;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-weight: 400;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}

/* Section Headings */
.section-heading {
  text-align: center;
  margin-bottom: var(--mg-head);
}

.section-heading .subtitle {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section-heading h2 {
  font-size: var(--fs-title);
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.section-heading h2 .highlight-red {
  color: var(--primary-red);
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 15px;
  line-height: 1;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}
@media (max-width: 767px) {
  .btn-pill {
    font-size: 14px;
    padding: 12px 15px;
    font-weight: 400;
  }
}

.btn-pill-red {
  background-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-pill-red:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

.btn-pill-white {
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1px solid #ffffff;
}

.btn-pill-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Sticky Header Container */
.sticky-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background-color: #fff;
}

body {
  padding-top: 95px;
}

.alrt-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}
.alrt-popup.show {
  opacity: 1;
  pointer-events: all;
}
.alrt-popup .wapper {
  background: #fff;
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.alrt-popup .wapper .main {
  padding: 15px;
  text-align: center;
}
.alrt-popup .wapper .title {
  background: #bf2929;
  color: #fff;
  text-align: center;
  font-weight: 400;
  padding: 15px 10px;
  margin-bottom: 0;
}
.alrt-popup .wapper .close-alrt {
  text-align: center;
  margin: 0 auto 10px auto;
  border: 2px solid #bf2929;
  padding: 5px 15px;
  cursor: pointer;
  width: 205px;
  height: 38px;
  border-radius: 20px;
  color: #bf2929;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alrt-popup.success .wapper .title {
  background: #09e493;
}
.alrt-popup.success .wapper .close-alrt {
  display: none;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}
.overlay.show1 {
  z-index: 999;
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}

.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
  margin-bottom: 15px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .detail-content h2,
  .detail-content h3,
  .detail-content h4,
  .detail-content h5,
  .detail-content h6 {
    margin-bottom: 15px;
  }
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-weight: 700;
}
.detail-content h2 font,
.detail-content h3 font,
.detail-content h4 font {
  font-weight: 700;
}
.detail-content h1 {
  font-size: clamp(24px, 1.6666666667vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .detail-content h1 {
    margin-bottom: 15px;
  }
}
.detail-content h1 font, .detail-content h1 span {
  font-size: clamp(24px, 1.6666666667vw, 32px);
}
.detail-content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.detail-content h2 font {
  font-size: 20px;
}
.detail-content h3 {
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.4;
}
.detail-content h3 font, .detail-content h3 span {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.detail-content h4 {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.detail-content h4 strong {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.detail-content h4 font, .detail-content h4 span {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 700;
}
.detail-content h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 38px;
}
.detail-content h5 strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 38px;
}
.detail-content h5 font, .detail-content h5 span {
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .detail-content h5 {
    font-size: 14px;
  }
  .detail-content h5 font, .detail-content h5 span {
    font-size: 14px;
  }
}
.detail-content .title-item-about {
  font-size: 30px;
  margin-bottom: 20px;
}
.detail-content .title-item-about font {
  font-size: 30px;
}
@media (max-width: 767px) {
  .detail-content .title-item-about {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .detail-content .title-item-about font {
    font-size: 20px;
  }
}
.detail-content .description p {
  font-weight: 400;
  font-size: var(--fs-text);
}
.detail-content p {
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: var(--fs-text);
}
.detail-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .detail-content p {
    margin-bottom: 15px;
  }
}
.detail-content strong {
  font-size: var(--fs-text);
}
.detail-content strong font, .detail-content strong span {
  font-weight: 700;
}
.detail-content figure {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .detail-content figure {
    margin-bottom: 10px;
  }
}
.detail-content figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-content figure figcaption {
  text-align: center;
  padding: 5px 15px;
  font-size: var(--fs-text-min);
  font-weight: 600;
  font-style: italic;
}
.detail-content figure figcaption font {
  font-size: var(--fs-text-min);
  font-weight: 600;
  font-style: italic;
}
.detail-content figure figcaption {
  font-style: italic;
}
.detail-content ul,
.detail-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}
.detail-content ul li,
.detail-content ol li {
  padding-bottom: 5px;
  line-height: 1.5;
  font-size: var(--fs-text);
}
.detail-content ul li:last-child,
.detail-content ol li:last-child {
  padding-bottom: 0;
}
.detail-content ul {
  list-style-type: disc;
}
.detail-content ul li {
  list-style-type: disc;
  font-size: var(--fs-text);
}
.detail-content ul ul {
  list-style-type: circle;
}
.detail-content ul ul li {
  list-style-type: circle;
}
.detail-content ol {
  list-style-type: decimal;
}
.detail-content ol li {
  list-style-type: decimal;
}
.detail-content .image-center {
  display: flex;
  justify-content: center;
  margin: 0 auto 15px;
}
.detail-content .image-center img {
  margin: auto;
  height: initial;
  object-fit: initial;
}
.detail-content .image-left {
  float: left;
}
.detail-content .image-left img {
  margin: auto;
  height: initial;
  object-fit: initial;
}
.detail-content .image-right {
  float: right;
  margin-bottom: 15px;
}
.detail-content .image-right img {
  margin: auto;
  height: initial;
  object-fit: initial;
}
.detail-content a {
  text-decoration: underline;
}
.detail-content a.more {
  text-decoration: none;
  color: #fff;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .detail-content a.more {
    margin-bottom: 15px;
  }
}
.detail-content table {
  margin-bottom: 15px;
  width: 100%;
  border: none;
}
.detail-content table thead th {
  font-weight: 700;
  font-size: var(--fs-text);
  color: #fff;
  padding: 10px;
}
.detail-content table thead th:nth-of-type(1) {
  border-radius: 6px 0 0 6px;
}
.detail-content table thead th:last-child {
  border-radius: 0 6px 6px 0;
}
.detail-content table tbody tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  border: none;
  background: #CEE5DA;
  font-weight: 700;
  white-space: nowrap;
}
.detail-content table tbody tr th,
.detail-content table tbody tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 15px;
  border: none;
  border-radius: 6px;
  border: 1px solid #fff;
}
.detail-content table tbody tr td {
  background: #F6F6F6;
}
.detail-content table.table {
  width: 100%;
  border: none;
}
.detail-content table.table thead th {
  font-weight: 700;
  font-size: var(--fs-text);
  color: #fff;
  padding: 10px;
}
.detail-content table.table thead th:nth-of-type(1) {
  border-radius: 6px 0 0 6px;
}
.detail-content table.table thead th:last-child {
  border-radius: 0 6px 6px 0;
}
.detail-content table.table tbody tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  border: none;
  background: #CEE5DA;
  font-weight: 700;
  white-space: nowrap;
}
.detail-content table.table tbody tr th,
.detail-content table.table tbody tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 15px;
  border: none;
  border-radius: 6px;
  border: 1px solid #fff;
}
.detail-content table.table tbody tr td {
  background: #F6F6F6;
}
.detail-content table.table2 {
  width: 100%;
  border: none;
}
.detail-content table.table2 thead th {
  font-weight: 700;
  font-size: var(--fs-text);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}
.detail-content table.table2 tbody tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  border: none;
  background: #CEE5DA;
  font-weight: 700;
  white-space: nowrap;
}
.detail-content table.table2 tbody tr th,
.detail-content table.table2 tbody tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 15px;
  border: none;
  border-radius: 6px;
  border: 1px solid #fff;
}
.detail-content table.table2 tbody tr td {
  background: #E4F4EC;
}
.detail-content iframe {
  max-width: 100%;
}
.detail-content .iframe_video {
  margin-bottom: 15px;
}
.detail-content .iframe_video iframe,
.detail-content .iframe_video video {
  width: 100%;
  height: 100%;
}

.ckeditor-html5-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}
.ckeditor-html5-video iframe,
.ckeditor-html5-video video {
  width: 100%;
  height: 100%;
}

.hidden {
  display: none;
}

.bg-white {
  background: #fff;
}

.pd-section {
  padding: var(--pd-section) 0;
}

.pb-section {
  padding-bottom: var(--pd-section);
}

.pt-section {
  padding-top: var(--pd-section);
}

.pd-box {
  padding: var(--pd-box);
}

.pb-box {
  padding-bottom: var(--pd-box);
}

.pt-box {
  padding-top: var(--pd-box);
}

/* ==========================================================================
   1. TOPBAR
   ========================================================================== */
.topbar {
  height: 45px;
  padding: 0;
  font-size: var(--fs-text);
  line-height: 24px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 45px;
}
@media (max-width: 767px) {
  .topbar .container {
    justify-content: center;
  }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222222;
  font-weight: 700;
  white-space: nowrap;
}
.topbar-item span {
  font-weight: 700;
}
.topbar-item img {
  width: 16px;
  height: 16px;
}
.topbar-item:hover .topbar-phone-svg {
  transform: scale(1.15);
}

.topbar-phone-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 0.2s ease;
}

.topbar-email-svg {
  width: 19px;
  height: 13px;
  flex: 0 0 19px;
}

.topbar-lang {
  position: relative;
  padding-left: 30px;
  border-left: 1px solid #dcdcdc;
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .topbar-lang {
    padding-left: 10px;
    border-left: none;
    font-size: var(--fs-text);
  }
}
.topbar-lang.is-open .topbar-lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.topbar-lang.is-open .topbar-lang-chevron {
  transform: rotate(180deg);
}

.topbar-lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.topbar-lang-toggle img {
  width: 23px;
  height: 14px;
  object-fit: cover;
}

.topbar-lang-chevron {
  font-size: 12px;
  line-height: 1;
  margin-left: -2px;
  transition: transform 0.2s ease;
}

.topbar-lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1200;
  width: 180px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.topbar-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #222222;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.topbar-lang-option img {
  width: 23px;
  height: 14px;
  object-fit: cover;
}
.topbar-lang-option:hover, .topbar-lang-option:focus-visible, .topbar-lang-option.active {
  background: #eef7ec;
  color: #2e6e24;
}
.topbar-lang-option.active::after {
  content: "✓";
  margin-left: auto;
  color: #2e6e24;
  font-weight: 700;
}

.topbar-search {
  position: relative;
}
@media (max-width: 767px) {
  .topbar-search {
    position: fixed;
    right: 60px;
    top: 60px;
    z-index: 101;
  }
  .topbar-search .topbar-search-form {
    position: fixed;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.topbar-search.is-open .topbar-search-form {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .topbar-search.is-open .topbar-search-form {
    transform: translateX(-50%);
  }
}

.topbar-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
}
.topbar-search-btn img {
  width: 18px;
  height: 18px;
}

.topbar-search-form {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  width: 340px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.topbar-search-form input {
  min-width: 0;
  flex: 1;
  height: 38px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #222222;
  font: inherit;
  font-size: 14px;
}
.topbar-search-form input::placeholder {
  color: #8a8a8a;
}

.topbar-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #2e6e24;
  cursor: pointer;
}
.topbar-search-submit img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.google-translate-element {
  display: none !important;
}

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

/* ==========================================================================
   2. HEADER & MAIN NAV
   ========================================================================== */
.main-header {
  position: relative;
  z-index: 100;
  background: url("../images/bg-menu.png") no-repeat center bottom/100% 100%;
  height: 50px;
  padding: 0;
}
.main-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  max-width: 1284px;
}
@media (min-width: 1280px) and (max-width: 1600px) {
  .main-header .container {
    max-width: 91%;
  }
}
@media (min-width: 1280px) and (max-width: 1400px) {
  .main-header .container {
    max-width: calc(100% - 30px);
  }
}
@media (min-width: 1280px) and (max-width: 1300px) {
  .main-header .container {
    max-width: 100%;
  }
}

.header-logo {
  position: absolute;
  left: 15px;
  top: -33px;
  z-index: 110;
  display: inline-block;
}
.header-logo img {
  width: 228px;
  height: 71px;
  object-fit: contain;
}

.main-nav {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin-left: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
  height: 50px;
}

.nav-item {
  position: relative;
}
.nav-item.has-product-dropdown {
  position: static;
}
.nav-item.has-default-dropdown:nth-last-child(-n+2) .default-submenu {
  right: 0;
  left: auto;
}
.nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 23px;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 1280px) and (max-width: 1500px) {
  .nav-item > a {
    padding: 0 18px;
  }
}
@media (min-width: 1280px) and (max-width: 1300px) {
  .nav-item > a {
    padding: 0 15px;
  }
}
.nav-item > a:hover {
  background: url("../images/menu-hover.png") no-repeat center center/139px 48px;
  color: #ffffff;
}
.nav-item.active > a {
  background: url("../images/menu-hover.png") no-repeat center center/139px 48px;
  color: #ffffff;
}
.nav-item.has-dropdown:hover .mega-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Shared dropdown visibility */
.mega-submenu {
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

/* Product mega menu — Figma 554:229 */
.product-mega-submenu {
  left: 50%;
  width: 100vw;
  max-width: none;
  min-height: 432px;
  padding: 39px 44px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, 10px);
}

.nav-item.has-product-dropdown:hover .product-mega-submenu {
  transform: translate(-50%, 0);
}

.product-mega-submenu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 37px;
  row-gap: 36px;
  text-align: left;
}

.product-mega-title {
  min-height: 60px;
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid #d9d9d9;
  color: #031501;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.product-mega-title a {
  color: inherit;
  background: none !important;
  box-shadow: none !important;
}
.product-mega-title a:hover {
  color: var(--primary-green);
  background: none !important;
}

.product-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-mega-list li {
  margin: 0 0 14px;
}
.product-mega-list li:last-child {
  margin-bottom: 0;
}
.product-mega-list li a {
  display: block;
  color: #031501;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: color 0.2s ease;
}
.product-mega-list li a:hover {
  color: var(--primary-green);
  background: transparent !important;
}

/* Default submenu — Figma 356:372 */
.default-submenu {
  left: 10px;
  width: 349px;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.default-submenu-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.default-submenu-list li {
  margin: 0;
  border-bottom: 1px solid #d9d9d9;
}
.default-submenu-list li:last-child {
  border-bottom: 0;
}
.default-submenu-list li a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 22px;
  background: #ffffff !important;
  color: #031501;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-transform: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.default-submenu-list li a:hover {
  background: #eef7ec !important;
  color: var(--primary-green);
}

/* ==========================================================================
   3. HERO BANNER SECTION
   ========================================================================== */
.hero-banner-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1920/710;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease-out;
  transform: scale(1.03);
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: scale(1);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-cta-hotspot {
  position: absolute;
  top: 48%;
  right: 12%;
  width: 150px;
  height: 45px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 0;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-dot.active,
.slider-dot:hover {
  background-color: var(--primary-green);
  border-radius: 10px;
}

.btn-cta-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* ==========================================================================
   4. FEATURES BAR (CAM KẾT)
   ========================================================================== */
.features-bar {
  padding: 5px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .features-bar {
    padding: 10px 0;
  }
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
}
@media (max-width: 767px) {
  .feature-item {
    padding: 0;
    gap: 10px;
    justify-content: center;
  }
}

.feature-item img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .feature-item img {
    width: 30px;
    height: 30px;
  }
}

.feature-info h4 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 19px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .feature-info h4 {
    font-size: 16px;
  }
}

.feature-info p {
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 767px) {
  .feature-info p {
    font-weight: 400;
  }
}

/* ==========================================================================
   5. DANH MỤC SẢN PHẨM
   ========================================================================== */
.categories-section {
  background-color: var(--bg-light);
}
.categories-section.bg-white {
  background: #fff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-item);
}
.categories-grid:has(> .category-card:nth-child(4):last-child) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 0;
  text-align: center;
  border: 1px solid var(--border-color);
  border-bottom: #2E6E24 7px solid;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.category-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  color: inherit;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-green);
  border-bottom-color: #2E6E24;
}

.category-card-link:hover .category-title {
  color: var(--primary-green);
}

.category-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}

.category-img img {
  width: initial;
  height: initial;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.category-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: var(--fs-text);
  text-transform: uppercase;
  line-height: 1.4;
  min-height: 48px;
}

/* ==========================================================================
   6. SẢN PHẨM NỔI BẬT
   ========================================================================== */
.products-section {
  padding: var(--pd-section) 0;
  background-color: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-item);
}
.products-grid.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-card, 12px);
  padding: 0;
  border: 1px solid var(--border-color, #e2e8f0);
  border-bottom: #2E6E24 6px solid;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover, 0 8px 25px rgba(0, 0, 0, 0.1));
  border-color: #2E6E24;
  border-bottom-color: #2E6E24;
}
.product-card:hover .product-title {
  color: var(--primary-red, #c8102e);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 15px 15px 25px 15px;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-quote {
  color: var(--primary-red);
  font-weight: 600;
}
@media (max-width: 767px) {
  .btn-quote {
    font-weight: 500;
    padding: 5px 0;
  }
}

.product-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
  aspect-ratio: 1;
}
.product-img img {
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-brand-logo-wrapper {
  height: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .product-brand-logo-wrapper {
    min-height: 10px;
    height: 10px;
  }
  .product-brand-logo-wrapper img {
    object-fit: contain;
    aspect-ratio: initial;
    width: initial;
    height: initial;
    max-height: 100%;
  }
}

.product-brand-name {
  margin-bottom: 10px;
}

.product-brand-logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.product-title {
  font-size: var(--fs-text);
  font-weight: 700;
  color: var(--text-dark, #222222);
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  text-align: center;
  display: -webkit-box;
  --webkit-line-clamp: 2;
  --webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.other-product-title {
  margin-bottom: 5px;
}

/* ==========================================================================
   7. DỊCH VỤ CỦA HOMEMED
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 291px));
  justify-content: space-between;
  gap: 35px;
}

.service-card {
  position: relative;
  overflow: visible;
  border-radius: 10px;
  aspect-ratio: 291/376;
  border: none;
  background-color: #e8ebe7;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(3, 21, 1, 0.18);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.service-media,
.service-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.service-media img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-icon-bg {
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-card:nth-child(3) .service-icon {
  width: 27px;
  height: 21px;
}

.service-card:nth-child(4) .service-icon {
  width: 27px;
  height: 33px;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 27, 0, 0) 43%, rgba(5, 27, 0, 0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 19px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.3s ease, padding-bottom 0.3s ease;
}
@media (max-width: 767px) {
  .service-overlay {
    padding: 10px;
  }
}

.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.88) 100%);
}

.service-title {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (max-width: 767px) {
  .service-title {
    font-size: var(--fs-text);
    font-weight: 500;
  }
}
.service-title a {
  color: inherit;
}

.service-card:hover .service-title {
  transform: translateY(-2px);
}

.service-btn {
  width: min(242px, 100%);
  height: 45px;
  max-height: 0;
  margin-top: 0;
  padding: 10px 20px 10px 25px;
  gap: 8px;
  overflow: hidden;
  border-radius: 200px;
  box-shadow: none;
  font-size: 16px;
  line-height: 24.83px;
  letter-spacing: 0.466px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: max-height 0.35s ease, margin-top 0.35s ease, opacity 0.3s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s ease;
}
.service-btn img {
  width: 15px;
  height: 12px;
  flex: 0 0 auto;
}

.service-card:hover .service-btn {
  max-height: 45px;
  margin-top: 17px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   8. GIỚI THIỆU VỀ HOMEMED
   ========================================================================== */
.about-section {
  background-color: var(--bg-light);
}
.about-section.bg-white {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-header-block {
  border-left: 4px solid var(--primary-red);
  padding-left: 18px;
  margin-bottom: var(--mg-head);
}
@media (max-width: 767px) {
  .about-header-block {
    border-left: 0;
    padding-left: 0;
  }
}

.about-subtitle {
  font-size: var(--fs-sub-title);
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.3;
}

.about-title {
  font-size: var(--fs-title);
  font-weight: 900;
  color: var(--primary-green);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-title span.highlight-red {
  color: var(--primary-red);
}

.about-text {
  line-height: 1.5;
  margin-bottom: var(--mg-head);
  text-align: justify;
}

.about-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-values {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 520/510;
  isolation: isolate;
}

.about-value-card {
  position: absolute;
  z-index: 0;
  width: 44.62%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  isolation: isolate;
}
.about-value-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
}
.about-value-card span {
  position: relative;
  z-index: 1;
  margin-top: 18%;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 0 2px rgba(8, 56, 13, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
}
.about-value-card:nth-of-type(1) {
  top: 0;
  left: 27.69%;
}
.about-value-card:nth-of-type(2) {
  top: 27.25%;
  left: 0;
}
.about-value-card:nth-of-type(2) > img {
  transform: rotate(-90deg);
}
.about-value-card:nth-of-type(3) {
  top: 27.25%;
  right: 0;
}
.about-value-card:nth-of-type(3) > img {
  transform: rotate(90deg);
}
.about-value-card:nth-of-type(4) {
  bottom: 0;
  left: 27.69%;
}
.about-value-card:nth-of-type(4) > img {
  transform: rotate(180deg);
}
.about-value-card:nth-of-type(4) span {
  margin-top: 34%;
}

.about-values-center {
  position: absolute;
  top: 33.92%;
  left: 34.23%;
  z-index: 2;
  width: 31.54%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.about-values-logo {
  width: 66%;
  aspect-ratio: 107.583/102.09;
  background: #ffffff url("../images/about-logo.png") no-repeat center/contain;
}

@media (max-width: 768px) {
  .about-value-card span {
    font-size: 16px;
    line-height: 22px;
  }
}
/* ==========================================================================
   9. TIN TỨC NỔI BẬT
   ========================================================================== */
.news-slider-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-slider-container {
  width: 100%;
  padding: 10px 0;
}
.news-slider-container .owl-stage {
  display: flex;
}
.news-slider-container .owl-item {
  display: flex;
  padding-bottom: 5px;
}

.news-card {
  width: 100%;
  min-width: 0;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-slider-nav {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  position: absolute;
  left: -23px;
}
.news-slider-nav.news-nav-next {
  left: initial;
  right: -23px;
}

.news-slider-nav:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

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

.news-img {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  display: flex;
}

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

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 767px) {
  .news-date {
    font-size: 14px;
  }
}

.icon-date-img {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.4;
  overflow: hidden;
  margin-bottom: 12px;
}
.news-title a {
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-title a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--primary-red);
}

.news-link {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .news-link {
    font-size: 14px;
    font-weight: 400;
  }
}

/* ==========================================================================
   10 & 11. PARTNERS (DOANH NGHIỆP & HỢP TÁC)
   ========================================================================== */
.partners-section {
  background-color: #ffffff;
}

.partner-slider-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.partner-slider-container {
  width: 100%;
  padding: 5px 0;
}
.partner-slider-container .owl-stage {
  display: flex;
}
.partner-slider-container .owl-item {
  display: flex;
}

.item-partner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.item-partner h3 {
  font-size: var(--fs-text);
  text-align: center;
}
.item-partner h3 a {
  text-align: center;
  font-size: var(--fs-text);
}
.item-partner .desc {
  text-align: center;
  font-size: 15px;
}
@media (max-width: 820px) {
  .item-partner .desc {
    font-size: 14px;
  }
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #ffffff;
  aspect-ratio: 241/134;
  width: 100%;
  min-width: 0;
  transition: all 0.3s ease;
  height: fit-content;
}
.partner-logo-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}
.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: initial !important;
  height: initial !important;
  object-fit: contain;
}

.partner-slider-nav {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  right: -15px;
}
.partner-slider-nav.partner-nav-prev {
  left: -15px;
  right: initial;
}
@media (max-width: 767px) {
  .partner-slider-nav {
    right: 10px;
  }
  .partner-slider-nav.partner-nav-prev {
    left: 10px;
    right: initial;
  }
}
.partner-slider-nav:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}
.partner-slider-nav:hover svg {
  fill: #ffffff;
}

/* ==========================================================================
   12. KHỐI TƯ VẤN (CTA BANNER)
   ========================================================================== */
.cta-section {
  position: relative;
  min-height: 340px;
  background: url("../images/bg-tuvan.png") no-repeat center/cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  max-width: 1188px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  margin: 0 0 12px;
  color: var(--primary-green);
  font-size: var(--fs-title);
  font-weight: 800;
  line-height: 56px;
  text-transform: uppercase;
}

.cta-content h2 span {
  color: var(--primary-red);
}

.cta-content p {
  max-width: 1123px;
  margin: 0 auto 27px;
  color: #031501;
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}
.cta-buttons .btn-pill {
  height: 50px;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: none;
  font-size: 17px;
  line-height: 24.83px;
  letter-spacing: 0.466px;
}
.cta-buttons .btn-pill img {
  display: block;
  flex: 0 0 auto;
  max-width: none;
}
.cta-buttons .cta-call-btn {
  width: 198px;
  gap: 10px;
  background: #bb0000;
  color: #ffffff;
}
.cta-buttons .cta-quote-btn {
  width: 231px;
  gap: 6px;
  border: 1px solid #c9d1de;
  background: #ffffff;
  color: #031501;
}

/* ==========================================================================
   13. FOOTER & SOCIAL BAR
   ========================================================================== */
.social-bar {
  width: 100%;
  min-height: 56px;
  padding: 0;
  background-color: #2e6e24;
  color: #ffffff;
  font-weight: 700;
}
.social-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.social-info {
  display: flex;
  align-items: center;
  gap: 25px;
}
.social-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: var(--fs-text);
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.social-info-svg {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.social-info-email {
  filter: brightness(0) invert(1);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 11px;
}

.social-label {
  margin-right: 1px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-icon-btn {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #2e6e24;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}
.social-icon-btn:hover {
  background-color: #bb0000;
  border-color: #bb0000;
  transform: translateY(-2px);
}

.social-icon-svg {
  width: 18px;
  height: 18px;
}

.social-icon-btn .social-icon-img {
  display: block;
  width: auto;
  max-width: 19px;
  height: auto;
  max-height: 18px;
  object-fit: contain;
}

.social-facebook-icon {
  transform: scaleY(-1);
}

.social-icon-btn:hover .social-icon-svg {
  fill: #ffffff;
}

.social-icon-btn img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.main-footer {
  background-color: #f8faf9;
  padding: 40px 0 0 0;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .main-footer {
    padding: var(--pd-section) 0 0 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-col p {
  position: relative;
  padding-left: 30px;
}
.footer-col p img {
  position: absolute;
  left: 0;
  top: 6px;
}

.footer-col p,
.footer-col li {
  margin-bottom: 8px;
  list-style: none;
}

.footer-col a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-bottom a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--primary-red);
}

.menu-row {
  display: flex;
  gap: 10px;
}

.footer-map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 10px;
}
.footer-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

.footer-logo-copyright {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer-logo-copyright {
    flex-direction: column;
    gap: 0;
  }
}

/* Floating Actions (Flushed right edge matching design) */
.floating-actions {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 999999;
  padding: 0;
  background: transparent;
}

.floating-btn {
  width: 55px;
  height: 47px;
  flex: 0 0 47px;
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: none;
  transition: filter 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateX(-4px);
  filter: brightness(1.08);
  color: #ffffff;
}

.floating-btn-phone {
  background: #bb0000;
}

.floating-btn-email {
  background: #bb0000;
}

.floating-btn-fb {
  background: #3b5999;
}
.floating-btn-fb img {
  transform: scaleY(-1);
}

.floating-btn-zalo {
  background: #00aff0;
}

.floating-btn-whatsapp {
  background: #11a052;
}

.floating-btn img {
  width: auto;
  max-width: 35px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATION (IPAD & MOBILE)
   ========================================================================== */
.mobile-nav-header,
.mobile-submenu-toggle,
.mobile-nav-overlay {
  display: none;
}

@media (max-width: 992px) {
  body {
    padding-top: 95px;
  }
  .header-logo {
    top: -16px;
  }
  .header-logo img {
    height: 65px;
  }
  .topbar-right {
    gap: 12px;
  }
  .topbar-item span {
    font-size: 13px;
  }
  .main-header {
    background: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #2E6E24;
    border-radius: 6px;
    padding: 6px 10px;
    margin-left: auto;
    cursor: pointer;
    z-index: 120;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #008744, #005c2e);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 12px 12px;
    padding: 15px;
    z-index: 9999;
  }
  .main-nav.active {
    display: block !important;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }
  .nav-item {
    width: 100%;
    position: relative;
  }
  .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-align: left;
  }
  .nav-item.active > a,
  .nav-item > a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
  }
  /* Mobile Submenu accordion */
  .nav-item.has-dropdown .mega-submenu {
    position: static;
    width: 100%;
    max-width: none;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0;
    margin-top: 5px;
    display: none;
  }
  .nav-item.has-dropdown.mobile-submenu-open .mega-submenu {
    display: block !important;
  }
  .product-mega-submenu {
    padding: 15px;
  }
  .product-mega-submenu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-mega-title {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  .product-mega-title a {
    color: #031501 !important;
    font-size: 13px;
  }
  .product-mega-list li a {
    color: #555555 !important;
    font-size: 12px;
    padding: 4px 0 4px 10px;
  }
  /* Main navigation mobile drawer */
  .main-header {
    background: #ffffff !important;
    box-shadow: 0 3px 12px rgba(3, 21, 1, 0.08);
  }
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid #dce5da;
    border-radius: 8px;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .mobile-menu-toggle.active {
    border-color: #2e6e24;
    background: #eef7ec;
  }
  .mobile-menu-toggle.active .mobile-menu-svg {
    transform: rotate(90deg);
  }
  .main-nav {
    position: fixed;
    top: 95px;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1002;
    display: block;
    width: min(360px, 100vw - 36px);
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0;
    background: #ffffff;
    box-shadow: -12px 20px 35px rgba(3, 21, 1, 0.18);
    visibility: hidden;
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
  }
  .main-nav.active {
    display: block !important;
    visibility: visible;
    transform: translateX(0);
  }
  .mobile-nav-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 10px 16px 10px 20px;
    background: #2e6e24;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }
  .mobile-nav-close {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
  }
  .mobile-nav-close svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }
  .mobile-nav-overlay {
    position: fixed;
    inset: 95px 0 0;
    z-index: 99;
    display: block;
    background: rgba(3, 21, 1, 0.48);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(2px);
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .nav-item,
  .nav-item.has-product-dropdown {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #edf0ed;
  }
  .nav-item > a,
  .nav-item.has-product-dropdown > a {
    justify-content: flex-start;
    min-height: 52px;
    height: auto;
    padding: 12px 48px 12px 12px;
    border-radius: 7px;
    background: none !important;
    color: #1f2a1e;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    white-space: normal;
  }
  .nav-item.active > a,
  .nav-item > a:hover,
  .nav-item > a:focus-visible,
  .nav-item.has-product-dropdown.active > a,
  .nav-item.has-product-dropdown > a:hover,
  .nav-item.has-product-dropdown > a:focus-visible {
    background: #eef7ec !important;
    color: #2e6e24 !important;
  }
  .nav-item.active > a,
  .nav-item.has-product-dropdown.active > a {
    box-shadow: inset 3px 0 0 #bb0000;
  }
  .mobile-submenu-toggle {
    position: absolute;
    top: 8px;
    right: 4px;
    z-index: 1;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: #f3f6f2;
    color: #2e6e24;
    cursor: pointer;
  }
  .mobile-submenu-toggle svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }
  .mobile-submenu-toggle[aria-expanded=true] svg {
    transform: rotate(180deg);
  }
  .nav-item.has-dropdown .mega-submenu {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background: #f8faf8;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows 0.3s ease, opacity 0.2s ease, visibility 0.3s ease;
  }
  .nav-item.has-dropdown .mega-submenu > * {
    min-height: 0;
    overflow: hidden;
  }
  .nav-item.has-dropdown:not(.mobile-submenu-open):hover .mega-submenu {
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .nav-item.has-dropdown.mobile-submenu-open .mega-submenu {
    display: grid !important;
    grid-template-rows: 1fr;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .product-mega-submenu {
    padding: 0;
  }
  .product-mega-submenu-grid {
    display: block;
    padding: 0;
  }
  .nav-item.has-product-dropdown.mobile-submenu-open .product-mega-submenu-grid {
    padding: 10px;
  }
  .product-mega-column + .product-mega-column {
    border-top: 1px solid #e5e9e4;
  }
  .product-mega-title {
    min-height: 0;
    margin: 0;
    padding: 10px 0 7px;
    border: 0;
  }
  .product-mega-title a {
    display: block;
    color: #2e6e24 !important;
    font-size: 13px;
    line-height: 19px;
  }
  .product-mega-list {
    padding: 0 0 5px 0;
  }
  .product-mega-list li {
    margin: 0;
  }
  .product-mega-list li a {
    padding: 6px 0 6px 0;
    color: #566054 !important;
    font-size: 14px;
    line-height: 18px;
  }
  .default-submenu-list {
    padding: 6px 12px 10px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .default-submenu-list {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .default-submenu-list li {
    border-color: #e5e9e4;
  }
  .default-submenu-list li a {
    min-height: 42px;
    padding: 6px 10px;
    background: transparent !important;
    color: #445043;
    font-size: 14px;
    line-height: 19px;
  }
  body.mobile-nav-open {
    overflow: hidden;
  }
  .categories-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 291px)) !important;
    justify-content: center;
    gap: 20px;
  }
  .service-card {
    width: 100%;
    height: auto;
    aspect-ratio: 291/376;
  }
}
@media (max-width: 992px) {
  /* News Slider 100% full view item on Mobile & iPad */
  .news-slider-nav {
    display: none !important;
  }
  .news-slider-container {
    padding: 5px 0;
    width: 100%;
  }
  .news-card {
    width: 100%;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box;
  }
  .news-content {
    padding: 15px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .news-content {
    padding: 10px;
  }
}
@media (max-width: 992px) {
  .news-title {
    font-size: 14px;
    height: auto;
    min-height: 40px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .about-grid {
    gap: 0;
  }
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .cta-content {
    max-width: 100%;
  }
  .cta-section {
    min-height: 300px;
    padding: var(--pd-section) 0;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .cta-section {
    min-height: initial;
  }
}
@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .cta-content p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 24px;
  }
  .floating-actions {
    gap: 4px;
    padding: 0;
  }
  .floating-btn {
    width: 44px;
    height: 40px;
    flex-basis: 40px;
  }
  .floating-btn img {
    width: auto;
    max-width: 28px;
    height: auto;
    max-height: 26px;
  }
}
@media (max-width: 767px) {
  :root {
    --fs-text: 14px;
    --pd-section: 15px;
    --mg-head: 15px;
    --fs-title: 20px;
  }
  .header-logo {
    position: relative;
    top: 0;
    left: 0;
    width: 150px;
    aspect-ratio: 150/46;
    display: flex;
    align-items: center;
  }
  .header-logo img {
    object-fit: contain;
    height: initial;
  }
  .category-card,
  .product-card {
    height: auto !important;
  }
  .category-card-link,
  .product-card-link {
    height: auto !important;
    padding: 10px;
  }
  .category-title,
  .product-title {
    height: auto !important;
    max-height: none !important;
    min-height: initial;
    margin-bottom: 0;
    font-weight: 600;
  }
  .service-card {
    height: auto !important;
    aspect-ratio: 291/376;
  }
  .service-card .service-overlay {
    background: linear-gradient(180deg, rgba(5, 27, 0, 0) 38%, rgba(5, 27, 0, 0.96) 100%);
  }
  .service-card .service-title {
    transform: translateY(0);
  }
  .service-card .service-btn {
    max-height: 35px;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    text-transform: initial;
  }
  .service-img-wrapper {
    height: 100% !important;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
  }
  .service-media img {
    display: block;
    padding: 0;
  }
  .service-btn {
    font-size: 13px;
    padding: 12px 12px;
  }
  .about-content {
    text-align: center;
  }
  .about-content .btn-pill {
    margin: 0 auto 0 auto;
    display: inline-flex;
  }
  .partner-logo-item {
    width: 100%;
    min-width: 0 !important;
    max-width: none !important;
    aspect-ratio: 241/100;
    box-sizing: border-box;
    padding: 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }
  /* Social Bar 1 row layout & smaller text */
  .social-bar {
    padding: 8px 0;
  }
  .social-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .social-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .social-info span {
    font-size: 15px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }
  .social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .social-label {
    font-size: 15px;
    white-space: nowrap;
    display: none;
  }
  .social-icon-svg {
    width: 12px;
    height: 12px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-buttons .btn-pill {
    width: 100%;
    max-width: 250px;
    height: 45px;
  }
  .footer-map {
    height: 220px !important;
    width: 100% !important;
    margin-top: 10px;
  }
  .footer-map iframe {
    height: 100% !important;
    width: 100% !important;
  }
  .floating-actions {
    position: fixed !important;
    right: 0 !important;
    bottom: 60px !important;
    top: initial;
    transform: initial !important;
    z-index: 989 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .floating-btn {
    width: 44px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }
  .floating-btn img,
  .floating-btn svg {
    width: auto !important;
    max-width: 28px !important;
    height: auto !important;
    max-height: 26px !important;
  }
  .nav-item.has-product-dropdown.mobile-submenu-open .default-submenu-list {
    padding: 10px;
  }
}
@media (max-width: 576px) {
  body {
    padding-top: 95px;
  }
  .topbar-search-form {
    width: min(340px, 100vw - 30px);
  }
  .topbar-right {
    font-size: 11px;
    gap: 8px;
  }
  .topbar-item {
    gap: 3px;
  }
  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .cta-content h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .cta-content p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .slider-dots {
    bottom: 10px;
  }
  .slider-dot {
    width: 12px;
    height: 12px;
  }
}
/* ==========================================================================
   MOBILE & IPAD DRAWER NAVIGATION (OFF-CANVAS MENU)
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-svg {
  width: 24px;
  height: 24px;
  fill: #2E6E24;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.mobile-menu-toggle:hover .mobile-menu-svg {
  transform: scale(1.1);
}

/* Dropdown Arrow Icon Styling */
.nav-item.has-dropdown > a i {
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > a i,
.nav-item.has-dropdown.mobile-submenu-open > a i {
  transform: rotate(180deg);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #991b1b, #7f1d1d);
  color: #ffffff;
  z-index: 10001;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-drawer-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-search {
  padding: 15px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-drawer-search input {
  width: 100%;
  padding: 10px 40px 10px 14px;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  outline: none;
  background-color: #ffffff;
  color: #333333;
}

.mobile-drawer-search button {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666666;
  font-size: 14px;
  cursor: pointer;
}

.mobile-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-drawer-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-list a {
  display: block;
  padding: 13px 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-drawer-list a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 13px;
}

.mobile-sub-list {
  display: none;
  list-style: none;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.mobile-sub-list.active {
  display: block;
}

.mobile-sub-list a {
  padding-left: 35px;
  font-weight: 500;
  font-size: 13px;
  color: #f1f5f9;
}

/* ==========================================================================
   SUBPAGE HERO BANNER & BREADCRUMB
   ========================================================================== */
.subpage-banner-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1920/353;
}
@media (max-width: 767px) {
  .subpage-banner-section {
    aspect-ratio: 430/150;
  }
}
.subpage-banner-section img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.breadcrumb-section {
  background-color: #f8faf9;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.breadcrumb-nav {
  font-size: 14px;
  color: var(--text-muted, #666);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-nav a {
  color: var(--text-dark, #333);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-nav a:hover {
  color: var(--primary-red, #c8102e);
}
.breadcrumb-nav .separator {
  color: #a0aec0;
}
.breadcrumb-nav .current {
  color: var(--primary-green, #008744);
  font-weight: 700;
}

.breadcrumb-ctn {
  background-color: #fff;
}
.breadcrumb-ctn .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.breadcrumb-ctn .breadcrumb {
  margin: 0;
  padding: 0;
}
.breadcrumb-ctn ul {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-ctn li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .breadcrumb-ctn li {
    padding: 10px 0;
    gap: 10px;
  }
}
.breadcrumb-ctn a {
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.breadcrumb-ctn a:hover, .breadcrumb-ctn a:focus-visible, .breadcrumb-ctn a[aria-current=page] {
  color: #2e6e24;
}
.breadcrumb-ctn svg,
.breadcrumb-ctn .breadcrumb-chevron {
  width: 5px;
  height: 10px;
  display: block;
  flex: 0 0 5px;
}

@media (max-width: 767px) {
  .breadcrumb-ctn {
    height: initial;
  }
  .breadcrumb-ctn ul {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .breadcrumb-ctn ul li {
    padding: 0;
  }
  .breadcrumb-ctn ul li span {
    color: #333;
    font-weight: 500;
  }
  .breadcrumb-ctn ul,
  .breadcrumb-ctn li {
    gap: 10px;
    row-gap: 5px;
  }
  .breadcrumb-ctn a {
    font-size: 14px;
    line-height: 1.4;
  }
}
/* ==========================================================================
   GIOI THIEU PAGE STYLES (TRANG GIỚI THIỆU HOMEMED)
   ========================================================================== */
/* Block 1: Detail About */
.about-detail-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-desc-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

/* Block 2: Business Products Grid */
.business-products-section {
  padding: var(--pd-section) 0 var(--pd-section);
  background-color: #f8f8f8;
}

.business-products-heading {
  text-align: center;
}
.business-products-heading h2 {
  margin: 0;
  color: #2e6e24;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fs-title);
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
}
.business-products-heading h2 strong {
  color: #bb0000;
  font-weight: inherit;
}

.business-heading-line {
  width: 57px;
  height: 2px;
  display: block;
  margin: 9px auto 0;
  background-color: #bb0000;
}

.business-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 27px;
  margin-top: 28px;
}

.business-product-card {
  background: #ffffff;
  min-height: 260px;
  border: 0;
  border-bottom: 7px solid #2e6e24;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.business-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.business-card-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #d8d8d8;
}

.business-card-num {
  color: #2e6e24;
  font-family: "Montserrat", sans-serif;
  font-size: 51px;
  font-weight: 800;
  line-height: 1;
}

.business-card-title {
  margin: 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.business-card-title a {
  color: #031501;
}
.business-card-title a:hover {
  color: var(--primary-green);
}

.business-card-content {
  padding-top: 10px;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
}
.business-card-content ul {
  margin: 0;
  padding-left: 19px;
}
.business-card-content li {
  margin: 0;
  padding-left: 1px;
  list-style: disc;
}
.business-card-content p {
  margin: 0;
}
.business-card-content a:hover {
  color: var(--primary-green);
}

/* Block 3: Total Solutions Section */
.total-solutions-section {
  padding: var(--pd-section) 0 var(--pd-section);
  background-color: #ffffff;
}

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

.solutions-main-title {
  max-width: 1115px;
  margin: 0 auto;
  color: #2e6e24;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .solutions-main-title {
    max-width: 100%;
    font-size: 20px;
  }
}
.solutions-main-title p {
  margin: 0;
}

.solutions-sub-desc {
  max-width: 790px;
  margin: 8px auto 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.solutions-sub-desc p {
  margin: 0;
}

.solutions-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 33px;
  margin-top: 38px;
}

.solution-service-card {
  position: relative;
  aspect-ratio: 291/376;
  border-radius: 10px;
  overflow: hidden;
  background-color: #edf0ec;
}

.solution-service-image {
  width: 100%;
  height: 100%;
}
.solution-service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.solution-service-image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 26px;
  background: linear-gradient(180deg, rgba(8, 43, 1, 0) 50%, rgba(5, 27, 0, 0.96) 100%);
  text-align: center;
}
@media (max-width: 767px) {
  .solution-service-overlay {
    padding: 10px;
  }
}
.solution-service-overlay h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .solution-service-overlay h3 {
    font-size: var(--fs-text);
    line-height: 1.4;
  }
}
.solution-service-overlay:hover h3 a {
  color: var(--primary-red);
}

.solution-service-badge {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 4px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-service-badge-bg {
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
}

.solution-service-badge-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.solution-highlight-bar {
  max-width: 1054px;
  margin: 31px auto 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.solution-highlight-bar p {
  margin: 0;
}
.solution-highlight-bar strong,
.solution-highlight-bar .highlight-red-bold {
  color: #d40f23;
  font-weight: 700;
}

.highlight-red-bold {
  color: #d40f23;
  font-weight: 700;
}

/* Block 4: Commitments Section */
.commitments-section {
  padding: var(--pd-section) 0 var(--pd-section);
  background-color: #f8f8f8;
}
.commitments-section.vision-section {
  background: #f8f8f8;
}
.commitments-section.mission-section {
  background-color: #fff;
}

.commitments-heading {
  text-align: center;
}
.commitments-heading h2 {
  margin: 0;
  color: #2e6e24;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fs-title);
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
}
.commitments-heading h2 strong {
  color: #bb0000;
  font-weight: inherit;
}

.commitments-heading-line {
  width: 57px;
  height: 2px;
  display: block;
  margin: 9px auto 0;
  background-color: #bb0000;
}

.commitments-sub-desc {
  max-width: 80%;
  margin: 11px auto 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.commitments-sub-desc p {
  margin-bottom: 10px;
}
.commitments-sub-desc p:last-child {
  margin-bottom: 0;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-item);
  margin-top: 30px;
}

.commitment-card {
  background: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 31px 10px 28px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.commitment-icon-circle {
  position: relative;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.commitment-icon-circle-bg {
  position: absolute;
  inset: 0;
  width: 128px;
  height: 128px;
}

.commitment-icon-image {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commitment-icon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.commitment-icon-image .no-image {
  display: none;
}

.commitment-card-text {
  max-width: 100%;
  margin: 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
}
.commitment-card-text strong {
  font-weight: 700;
}
.commitment-card-text p {
  display: inline;
  margin: 0;
}

.commitment-highlight-box {
  max-width: 1015px;
  margin: 38px auto 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.commitment-highlight-box p {
  margin: 0;
}
.commitment-highlight-box strong,
.commitment-highlight-box .highlight-red-bold {
  color: #d40f23;
  font-weight: 700;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-item);
  margin-top: 30px;
}
@media (max-width: 820px) {
  .mission-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 15px;
    gap: 0;
  }
}

.mission-card {
  background: #ffffff;
  border: 0;
  padding: 31px 0 28px;
  align-items: center;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 820px) {
  .mission-card {
    text-align: center;
    align-items: center;
    padding: 15px 0 15px;
  }
}
.mission-card .mission-icon-circle {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  width: 60px;
}
.mission-card .mission-card-text p {
  margin-bottom: 15px;
}
.mission-card .mission-card-text p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE FOR GIOI THIEU PAGE */
@media (max-width: 992px) {
  .business-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .business-products-heading h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .about-detail-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .business-products-grid,
  .solutions-grid,
  .commitments-grid {
    grid-template-columns: 1fr;
  }
  .solutions-main-title {
    font-size: 24px;
    line-height: 34px;
  }
  .solutions-sub-desc {
    font-size: var(--fs-text);
    line-height: 1.5;
    font-weight: 400;
  }
  .solution-highlight-bar {
    font-size: var(--fs-text);
    margin-top: 10px;
    line-height: 1.5;
  }
  .commitments-heading h2 {
    font-size: var(--fs-title);
    line-height: 38px;
  }
  .commitments-sub-desc {
    font-size: var(--fs-text);
    line-height: 27px;
    width: 100%;
    max-width: 100%;
  }
  .commitment-highlight-box {
    font-size: var(--fs-text);
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .solutions-main-title {
    line-height: 30px;
  }
  .solutions-services-grid {
    gap: 10px;
    margin-top: 15px;
  }
  .solution-service-card {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  .commitments-heading h2 {
    line-height: 1.5;
  }
  .commitments-grid {
    gap: 10px;
    margin-top: 15px;
  }
  .commitment-card {
    min-height: 0;
    padding: 28px 24px;
  }
  .commitment-card-text {
    max-width: none;
    font-size: 15px;
    line-height: 26px;
  }
  .business-products-grid {
    gap: 10px;
    margin-top: 15px;
  }
  .business-product-card {
    min-height: 0;
    padding: 10px;
  }
  .business-card-header {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    min-height: 65px;
  }
  .business-card-num {
    font-size: 42px;
  }
  .business-card-title {
    font-size: 14px;
    line-height: 21px;
  }
  .business-card-content {
    font-size: 14px;
    line-height: 25px;
  }
}
/* ==========================================================================
   SAN PHAM PAGE STYLES (TRANG DANH MỤC SẢN PHẨM)
   ========================================================================== */
.products-page-main {
  background-color: #ffffff;
}

.products-page-layout {
  display: grid;
  grid-template-columns: 338px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

/* Sidebar Left */
.product-sidebar {
  width: 338px;
  background-color: #ffffff;
}

.sidebar-block {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sidebar-block {
    margin-bottom: 10px;
  }
}

.sidebar-title {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 10px;
  color: var(--primary-green, #2E6E24);
  font-size: 26px;
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sidebar-title {
    font-size: var(--fs-title);
    line-height: 1.4;
    margin-bottom: 10px;
  }
}

.sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33px;
  height: 2px;
  background-color: #BB0000;
}

.sidebar-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 68px;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  color: #031501;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sidebar-cat-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  overflow: visible;
  background: url("../images/product-category-icon.svg") center/30px 30px no-repeat;
  font-size: 0;
}

.sidebar-cat-btn:hover,
.sidebar-cat-btn.active {
  background: var(--primary-green, #2E6E24) !important;
  color: #FFFFFF !important;
  border-color: var(--primary-green, #2E6E24) !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
}

.sidebar-cat-btn:hover .sidebar-cat-icon,
.sidebar-cat-btn.active .sidebar-cat-icon {
  background-image: url("../images/product-category-icon-active.svg");
}

.sidebar-cat-btn:hover .sidebar-cat-icon svg,
.sidebar-cat-btn.active .sidebar-cat-icon svg {
  fill: var(--primary-green, #2E6E24) !important;
}

/* SUB SIDEBAR MENU */
.sub-sidebar-list {
  display: none;
  list-style: none;
  padding: 0 3px;
  margin: 6px 0 0;
  transition: all 0.3s ease;
}
.sub-sidebar-list.active {
  display: block;
}
.sub-sidebar-list li a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 0;
  border-bottom: 1px solid #d9d9d9;
  color: #031501;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sub-sidebar-list li a:hover {
  color: var(--primary-green, #2E6E24);
  padding-left: 5px;
}
.sub-sidebar-list li a:hover .sub-arrow {
  color: var(--primary-green, #2E6E24);
}
.sub-sidebar-list li.active a {
  color: var(--primary-green, #2E6E24);
}
.sub-sidebar-list li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}

.sub-arrow {
  color: var(--primary-green, #2E6E24);
  font-weight: 700;
  margin-right: 8px;
  font-size: 18px;
  transition: color 0.2s ease;
}

.brand-arrow {
  color: var(--primary-green, #2E6E24);
  font-weight: 700;
  margin-right: 8px;
  font-size: 18px;
}

.sidebar-brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-brand-list li a {
  display: flex;
  align-items: center;
  min-height: 51px;
  padding: 8px 3px;
  border-bottom: 1px solid #d9d9d9;
  color: #031501;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .sidebar-brand-list li a {
    font-size: 14px;
  }
}
.sidebar-brand-list li a:hover {
  color: var(--primary-green, #2E6E24);
  padding-left: 5px;
}
.sidebar-brand-list li:last-child a {
  border-bottom: 0;
}

/* Product Content Main Right */
.product-content-main {
  width: 100%;
}

.product-cat-section {
  margin-bottom: var(--pd-section);
}
.product-cat-section .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--space-item);
  row-gap: var(--space-item);
}
.product-cat-section .product-card {
  overflow: hidden;
  border: 0;
  border-bottom: 6px solid var(--primary-green, #2E6E24);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.product-cat-section .product-card:hover {
  border: 0;
  border-bottom: 6px solid var(--primary-green, #2E6E24);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.product-cat-section .product-card:hover .product-title {
  color: var(--primary-green);
}
.product-cat-section .product-card-link {
  height: initial;
  padding: 15px;
}
@media (max-width: 767px) {
  .product-cat-section .product-card-link {
    padding: 10px;
  }
}
.product-cat-section .product-img {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 15px;
  height: initial;
  flex: initial;
}
@media (max-width: 767px) {
  .product-cat-section .product-img {
    margin-bottom: 10px;
  }
}
.product-cat-section .product-img img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
}
.product-cat-section .product-brand-logo-wrapper {
  width: 100%;
  height: 35px;
  min-height: 35px;
  margin: 0 0 10px 0;
}
@media (max-width: 767px) {
  .product-cat-section .product-brand-logo-wrapper {
    min-height: 10px;
    height: 10px;
  }
}
.product-cat-section .product-brand-logo-wrapper picture,
.product-cat-section .product-brand-logo-wrapper img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.product-cat-section .product-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: initial;
  margin: 0 0 10px 0;
  color: #031501;
  font-size: var(--fs-text);
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  -webkit-line-clamp: initial;
}
@media (max-width: 767px) {
  .product-cat-section .product-title {
    line-height: 1.4;
    margin-top: 0;
  }
}

.product-cat-header {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DDE2E2;
}
.product-cat-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 33px;
  height: 2px;
  background-color: #BB0000;
}
.product-cat-header h2,
.product-cat-header h1 {
  margin: 0;
  color: var(--primary-green, #2E6E24);
  font-size: 26px;
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
}

/* RESPONSIVE FOR SAN PHAM PAGE */
@media (max-width: 992px) {
  .products-page-layout {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
  .product-sidebar {
    width: 220px;
  }
  .sidebar-cat-btn {
    font-size: 14px;
  }
  .product-cat-section .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .products-page-layout {
    display: flex;
    flex-direction: column-reverse;
  }
  .product-sidebar {
    width: 100%;
    margin-bottom: 10px;
  }
  .product-cat-header h2 {
    font-size: var(--fs-title);
    line-height: 1.5;
  }
  .product-cat-section .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-cat-section .product-card {
    width: min(100%, 360px);
    margin: 0 auto;
  }
}
/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (sanpham-chitiet.html)
   ========================================================================== */
.product-detail-main {
  width: 100%;
}

.product-detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 437px) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 45px;
  align-items: start;
}

/* Gallery Showcase */
.product-gallery-col {
  width: 100%;
}

.gallery-main-container {
  position: relative;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  padding: 20px;
  background: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  cursor: zoom-in;
}

.product-fancybox-items {
  display: none;
}

.gallery-zoom-badge {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 22px;
  height: 22px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.gallery-zoom-badge:hover {
  color: var(--primary-green, #2E6E24);
}

.gallery-main-img-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-img-box img {
  max-height: 288px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.gallery-thumbs-nav {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: space-between;
}

.thumb-arrow {
  flex: 0 0 7px;
  width: 7px;
  height: 15px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 15px;
  color: #031501;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumb-arrow:hover {
  background: transparent;
  color: var(--primary-green, #2E6E24);
}

.gallery-thumbs-list {
  display: flex;
  min-width: 0;
  gap: 11px;
  overflow: hidden;
}

.thumb-item {
  flex: 0 0 90px;
  width: 90px;
  height: 72px;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  padding: 4px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--primary-green, #2E6E24);
  box-shadow: 0 2px 8px rgba(46, 110, 36, 0.15);
}

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

/* Specs & Summary */
.product-summary-col {
  width: 100%;
  min-height: 437px;
  padding-top: 7px;
  display: flex;
  flex-direction: column;
}

.detail-product-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary-green, #2E6E24);
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .detail-product-title {
    font-size: 20px;
  }
}

.title-red-line {
  width: 31px;
  height: 2px;
  background-color: #BB0000;
  border-radius: 2px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .title-red-line {
    margin-bottom: 10px;
  }
}

.product-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 767px) {
  .product-specs-list {
    margin-bottom: 10px;
  }
}
.product-specs-list li {
  font-size: var(--fs-text);
  list-style: none;
  color: var(--text-dark, #333333);
  line-height: 30px;
  position: relative;
  padding-left: 14px;
}
@media (max-width: 767px) {
  .product-specs-list li {
    line-height: 1.4;
    font-weight: 500;
    font-size: var(--fs-text);
  }
}
.product-specs-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-dark, #333333);
  font-weight: bold;
}
.product-specs-list li strong {
  font-weight: 700;
  color: #111111;
}

.product-meta {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .product-meta {
    margin-bottom: 15px;
  }
}
.product-meta .article-tags .tag-label {
  font-weight: bold;
  color: var(--text-body);
}
.product-meta a:hover {
  color: var(--primary-green, #2E6E24);
}

.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: auto;
  padding: 0 15px;
}
.product-detail-actions .btn-pill {
  width: 100%;
  height: 42px;
  padding: 8px 15px;
  box-shadow: none;
}

.btn-pill-outline-red {
  background: #ffffff;
  color: #BB0000 !important;
  border: 1px solid #BB0000;
}
.btn-pill-outline-red:hover {
  background: #BB0000;
  color: #ffffff !important;
}
.btn-pill-outline-red:hover .btn-cta-svg {
  fill: #ffffff !important;
}
.btn-pill-outline-red:hover path {
  fill: #fff;
}

/* Detailed Information Section */
.product-description-section {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .product-description-section {
    margin-bottom: 15px;
  }
}

.product-description-content {
  color: var(--text-dark, #333333);
  line-height: 30px;
  font-size: 17px;
}
@media (max-width: 767px) {
  .product-description-content {
    font-size: var(--fs-text);
    font-weight: 500;
    line-height: 1.4;
  }
}

/* Related Products Section */
.product-related-section {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .product-related-section {
    margin-bottom: 15px;
  }
}
.product-related-section .product-cat-header {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product-related-section .product-cat-header {
    margin-bottom: 15px;
  }
}
.product-related-section .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-item);
}
.product-related-section .product-card {
  border: 0;
  border-bottom: 6px solid var(--primary-green, #2E6E24);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.product-related-section .product-card:hover {
  border: 0;
  border-bottom: 6px solid var(--primary-green, #2E6E24);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.product-related-section .product-card-link {
  padding: 10px 15px 14px;
}
@media (max-width: 767px) {
  .product-related-section .product-card-link {
    padding: 10px;
  }
}
.product-related-section .product-img {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-related-section .product-img {
    margin-bottom: 10px;
  }
}
.product-related-section .product-brand-logo-wrapper {
  height: 35px;
  margin: 0 0 10px 0;
}
.product-related-section .product-brand-logo {
  max-width: 100%;
  max-height: 100%;
}
.product-related-section .product-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: initial;
  margin: 0 0 10px 0;
  color: #031501;
  font-size: var(--fs-text);
  line-height: 24px;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
  .product-related-section .product-title {
    min-height: initial;
  }
}

@media (max-width: 992px) {
  .product-detail-overview {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .product-detail-overview {
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .product-summary-col {
    min-height: 0;
  }
  .product-related-section .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .gallery-main-container {
    height: 300px;
    padding: 10px;
  }
  .gallery-thumbs-list {
    overflow-x: auto;
  }
  .product-detail-actions {
    padding: 0;
    gap: 10px;
  }
  .product-related-section .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* ==========================================================================
   SIMPLE DROPDOWN MENU (FOR DỊCH VỤ MENU ITEM)
   ========================================================================== */
.nav-item.has-simple-dropdown {
  position: relative;
}

.simple-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--primary-green, #2E6E24);
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.nav-item.has-simple-dropdown:hover .simple-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.simple-dropdown-menu li {
  margin: 0;
}

.simple-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-transform: none;
  border-radius: 0;
  background: transparent !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.simple-dropdown-menu li a:hover {
  background-color: #f4f7f5 !important;
  color: var(--primary-red, #c8102e) !important;
}

.list-catalogue {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-catalogue a {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .list-catalogue a {
    font-weight: 500;
  }
}
.list-catalogue a:hover {
  color: var(--primary-red);
}
.list-catalogue svg {
  fill: var(--primary-red);
}

/* ==========================================================================
   SERVICES PAGE STYLES (TRANG DỊCH VỤ - DICHVU.HTML)
   ========================================================================== */
.services-page-main {
  padding: 0 0 var(--pd-section) 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .services-page-main .news-page-header {
    margin-bottom: 0;
  }
}

.page-title-text {
  font-size: var(--fs-title);
  font-weight: 800;
  color: var(--primary-green, #2E6E24);
  text-transform: uppercase;
  margin: 0;
}

.page-title-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-red, #BB0000);
  margin-top: 8px;
  border-radius: 2px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .services-list .service-card-item:nth-of-type(2n+2) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .services-list {
    gap: 10px;
  }
}

.service-card-item {
  display: flex;
  align-items: center;
  background-color: #f8faf9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2f0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .service-card-item {
    flex-direction: column;
  }
}
.service-card-item > * {
  width: 50%;
}
@media (max-width: 767px) {
  .service-card-item > * {
    width: 100%;
  }
}
.service-card-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card-img {
  aspect-ratio: 633/403;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card-img:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) {
  .service-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.service-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
@media (max-width: 767px) {
  .service-card-bullets {
    margin-bottom: 10px;
  }
}
.service-card-bullets li {
  line-height: 1.65;
  list-style: none;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .service-card-bullets li {
    font-weight: 500;
  }
}
.service-card-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #4a5568;
  font-size: 16px;
  font-weight: bold;
}

.service-card-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 25px 0;
  text-align: justify;
}

.btn-service-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-red, #BB0000);
  color: #ffffff !important;
  padding: 11px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(187, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .btn-service-detail {
    height: 40px;
    font-size: 14px;
    font-weight: 500;
  }
}
.btn-service-detail .arrow-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}
.btn-service-detail:hover {
  background-color: #990000;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(187, 0, 0, 0.35);
}
.btn-service-detail:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive for Services Page */
@media (max-width: 992px) {
  .service-card-item,
  .service-card-item.reverse-layout {
    grid-template-columns: 1fr;
  }
  .service-card-item.reverse-layout .service-card-content {
    order: 2;
  }
  .service-card-item.reverse-layout .service-card-img {
    order: 1;
  }
  .service-card-img {
    height: 260px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .service-card-img {
    height: initial;
  }
}
@media (max-width: 992px) {
  .service-card-content {
    padding: 25px 20px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .service-card-content {
    padding: 10px;
  }
}
/* ==========================================================================
   SERVICE DETAIL PAGE STYLES (TRANG CHI TIẾT DỊCH VỤ - DICHVU-CHITIET.HTML)
   ========================================================================== */
.service-detail-page-main {
  padding: 40px 0 60px 0;
  background-color: #ffffff;
}

.service-lead-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.service-detail-section {
  margin-bottom: 25px;
}

.service-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 12px 0;
}

.service-dash-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.service-dash-list li {
  font-size: 14px;
  color: #333333;
  line-height: 1.75;
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}
.service-dash-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
  font-weight: bold;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.other-service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  aspect-ratio: 405/258;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.other-service-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.other-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.other-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.05) 100%);
  transition: background 0.3s ease;
}

.other-service-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .other-service-title {
    font-size: var(--fs-text);
    bottom: 10px;
  }
}

.other-service-card:hover .other-service-img-wrapper img {
  transform: scale(1.08);
}

.other-service-card:hover .other-service-overlay {
  background: linear-gradient(to top, rgba(46, 110, 36, 0.9) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
}

.other-service-card:hover .other-service-title {
  transform: translateY(-4px);
}

/* Responsive for Service Detail Page */
@media (max-width: 992px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .other-services-grid {
    gap: 10px;
  }
  .other-service-card {
    height: initial;
    aspect-ratio: 291/376;
  }
}
/* ==========================================================================
   NEWS PAGE STYLES (TRANG DANH SÁCH TIN TỨC - TINTUC.HTML)
   ========================================================================== */
.news-page-main {
  padding: 0 0 var(--pd-section);
  background-color: #ffffff;
}

.news-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
  flex-wrap: wrap;
  gap: 15px;
}

.news-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.news-tab-btn {
  min-width: 114px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #2e6e24;
  border-radius: 21px;
  background: #fff;
  color: #2e6e24;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-tab-btn.active,
.news-tab-btn:hover {
  background-color: #2e6e24;
  color: #ffffff;
  box-shadow: none;
}

/* Featured News Card (Tin nổi bật đầu trang) */
.featured-news-card {
  display: grid;
  grid-template-columns: minmax(0, 830fr) minmax(0, 436fr);
  min-height: 491px;
  background-color: #f8f8f8;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 41px;
  border: 0;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.featured-news-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.featured-news-img {
  aspect-ratio: 845/491;
  overflow: hidden;
}

.featured-news-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-news-card:hover .featured-news-img img {
  transform: scale(1.05);
}

.featured-news-content {
  padding: 62px 45px 58px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}
@media (max-width: 767px) {
  .news-date {
    margin-bottom: 10px;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
  }
}

.news-date-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
}

.featured-news-title {
  margin: 0 0 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}
.featured-news-title a {
  color: #031501;
  text-decoration: none;
  transition: color 0.2s ease;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding-top: 7px;
}
.featured-news-title a:hover {
  color: var(--primary-red, #c8102e);
}

.featured-news-excerpt {
  margin: 0 0 28px;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (max-width: 767px) {
  .featured-news-excerpt {
    font-size: var(--fs-text);
    font-weight: 500;
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
    line-height: 1.4;
  }
}
.featured-news-excerpt p {
  margin: 0;
}

.news-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.47px;
  color: #bb0000;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .news-readmore-link {
    line-height: 1.4;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
  }
}

.news-readmore-link:hover {
  color: #990000;
}

.news-readmore-link img {
  width: 13px;
  height: 10px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.news-readmore-link:hover img {
  transform: translateX(4px);
}

/* News Grid List (Lưới 6 Tin tức) */
.news-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 33px;
  margin-bottom: 0;
}

.news-card-item {
  background-color: #f8f8f8;
  border-radius: 6px;
  overflow: hidden;
  border: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-card-item:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}
.news-card-content .news-date {
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .news-card-content .news-date {
    margin-bottom: 10px;
  }
}
.news-card-content .news-readmore-link {
  margin-top: auto;
}

.news-card-title {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-card-title {
    font-size: var(--fs-text-);
    margin-bottom: 10px;
  }
}

.news-card-title a {
  color: #031501;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card-title a:hover {
  color: var(--primary-red, #c8102e);
}

/* News Pagination */
.news-pagination {
  margin: 40px 0 0;
}
@media (max-width: 767px) {
  .news-pagination {
    margin-top: 15px;
  }
}
.news-pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.news-pagination .page > a,
.news-pagination .page > span {
  width: 37px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 37px;
  margin: 0;
  padding: 0;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 37px;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.news-pagination .page > .active-page,
.news-pagination .page > a:hover {
  border-color: #2e6e24;
  background-color: #2e6e24;
  color: #fff;
}
.news-pagination .page > .hidden {
  display: inline-flex !important;
  opacity: 0.45;
  pointer-events: none;
}
.news-pagination .page svg {
  display: block;
}

/* Responsive for News Page */
@media (max-width: 992px) {
  .featured-news-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .featured-news-card {
    min-height: initial;
  }
}
@media (max-width: 992px) {
  .featured-news-img {
    height: 420px;
  }
  .featured-news-content {
    padding: 25px 20px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .featured-news-content {
    padding: 10px;
    display: block;
  }
}
@media (max-width: 992px) {
  .news-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .news-grid-list {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .news-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 15px;
  }
  .news-grid-list {
    grid-template-columns: 1fr;
  }
  .news-card-img {
    height: initial;
  }
  .news-card-content {
    min-height: initial;
    padding: 10px;
  }
  .featured-news-img {
    height: initial;
  }
  .featured-news-title {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .news-filter-tabs {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 0;
  }
  .news-filter-tabs a {
    font-weight: 400;
    font-size: 14px;
  }
  .news-filter-tabs::-webkit-scrollbar {
    height: 0;
  }
  .news-tab-btn {
    min-width: max-content;
    height: 38px;
    padding: 0 18px;
    font-size: 15px;
    line-height: 37px;
  }
  .news-pagination .page {
    gap: 5px;
  }
  .news-pagination .page > a,
  .news-pagination .page > span {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    line-height: 34px;
  }
}
/* News detail - Figma 626:280 */
.news-detail-page-main {
  padding: 0 0 var(--pd-section);
  background: #fff;
}

.news-detail-layout {
  display: grid;
  align-items: start;
}
.news-detail-layout.full-page {
  grid-template-columns: 1fr;
}

.news-detail-left {
  min-width: 0;
}

.news-detail-date {
  margin-bottom: 7px;
}

.table-of-content {
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 6px;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .table-of-content {
    padding: 10px;
    margin-bottom: 10px;
  }
}
.table-of-content:empty {
  display: none;
}
.table-of-content .toc-title {
  margin: 0 0 10px;
  color: #2e6e24;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .table-of-content .toc-title {
    font-size: 16px;
    line-height: 1.4;
  }
}
.table-of-content h5,
.table-of-content h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
@media (max-width: 767px) {
  .table-of-content h5,
  .table-of-content h6 {
    font-size: 14px;
    line-height: 1.4;
  }
}
.table-of-content h6 {
  padding-left: 20px;
}
.table-of-content .toc-level-h4 {
  padding-left: 40px;
}
.table-of-content a {
  display: inline-flex;
  gap: 9px;
  color: #031501;
}
.table-of-content a:hover {
  color: #2e6e24;
}
.table-of-content .cirl {
  width: 5px;
  height: 5px;
  margin-top: 10px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: currentColor;
}

.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  scroll-margin-top: 120px;
}

.news-article-title {
  margin: 0 0 10px;
  color: #031501;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.news-article-description,
.news-article-body {
  color: #031501;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
}
.news-article-description p,
.news-article-body p {
  margin: 0 0 20px;
}
.news-article-description h2,
.news-article-description h3,
.news-article-description h4,
.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  margin: 24px 0 10px;
  color: #031501;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}
.news-article-description ul,
.news-article-description ol,
.news-article-body ul,
.news-article-body ol {
  margin: 0 0 22px;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .news-article-description ul,
  .news-article-description ol,
  .news-article-body ul,
  .news-article-body ol {
    margin-bottom: 10px;
  }
}
.news-article-description li,
.news-article-body li {
  margin-bottom: 2px;
}
.news-article-description img,
.news-article-body img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 26px auto;
}
.news-article-description iframe,
.news-article-body iframe {
  max-width: 100%;
}
.news-article-description a,
.news-article-body a {
  color: #2e6e24;
}
.news-article-description table,
.news-article-body table {
  width: 100% !important;
  max-width: 100%;
}

.news-article-description {
  margin-bottom: 20px;
}
.news-article-description p:last-child {
  margin-bottom: 0;
}

.article-contact-box {
  margin: 35px 0 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #031501;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
}
.article-contact-box p {
  margin: 0;
}
.article-contact-box strong {
  font-weight: 700;
}
.article-contact-box .company-name {
  margin: 0;
  color: #2e6e24;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.article-contact-box a {
  color: inherit;
}

.article-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0 0;
  padding: 15px 0 0 0;
  border-top: 1px solid #cecece;
}

.article-tags,
.article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.tag-label,
.share-label,
.tag-item {
  color: #031501;
  font-size: var(--fs-text);
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}

.tag-item {
  color: #333;
}
.tag-item:hover {
  color: #2e6e24;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border: 1px solid #bfc4bf;
  border-radius: 50%;
  color: #747974;
  font-size: 13px;
  font-weight: 700;
}
.share-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.share-btn:hover {
  border-color: #2e6e24;
  color: #2e6e24;
}

.news-detail-sidebar {
  width: 340px;
}

.sidebar-recent-block {
  padding: 27px 28px 25px;
  border: 0;
  border-radius: 6px;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .sidebar-recent-block {
    padding: 10px;
  }
}

.sidebar-recent-heading {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sidebar-recent-heading {
    margin-bottom: 10px;
  }
}
.sidebar-recent-heading span {
  display: block;
  width: 33px;
  height: 2px;
  background: #bb0000;
}

.sidebar-recent-title {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: #2e6e24;
  font-size: 26px;
  font-weight: 800;
  line-height: 36px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sidebar-recent-title {
    font-size: 20px;
  }
}

.recent-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recent-news-item {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
}
.recent-news-item:last-child {
  min-height: 98px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.recent-news-img {
  display: block;
  width: 98px;
  height: 98px;
  overflow: hidden;
  border-radius: 6px;
}
.recent-news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-news-item:hover .recent-news-img img {
  transform: scale(1.05);
}

.recent-news-info {
  min-width: 0;
}
.recent-news-info p {
  margin: -5px 0 0;
  font-size: var(--fs-text);
  font-weight: 500;
  line-height: 24px;
}
.recent-news-info a {
  display: -webkit-box;
  overflow: hidden;
  color: #031501;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.recent-news-info a:hover {
  color: #2e6e24;
}

.page-title-header {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .page-title-header {
    margin-bottom: 15px;
  }
}

@media (max-width: 1199px) {
  .news-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }
  .news-detail-sidebar {
    width: 320px;
  }
  .sidebar-recent-block {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .sidebar-recent-block {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }
  .news-detail-sidebar {
    width: 100%;
  }
  .recent-news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .recent-news-item,
  .recent-news-item:last-child {
    min-height: 114px;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
  }
}
@media (max-width: 767px) {
  .news-detail-page-main {
    padding-top: 0px;
  }
  .news-article-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .news-article-description,
  .news-article-body {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .article-tags-share {
    align-items: flex-start;
    flex-direction: column;
  }
  .related-news-section {
    padding-top: 15px;
  }
  .related-news-section .page-title-text {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .recent-news-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .recent-news-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    min-height: initial;
    padding-bottom: 10px;
  }
  .recent-news-img {
    width: 88px;
    height: 88px;
  }
}
/* ==========================================================================
   NEWS DETAIL PAGE STYLES (TRANG CHI TIẾT TIN TỨC - TINTUC-CHITIET.HTML)
   ========================================================================== */
.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.news-detail-left {
  min-width: 0;
}

.news-article-body {
  color: #333333;
  line-height: 1.75;
  text-align: justify;
}
.news-article-body p {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .news-article-body p {
    margin-bottom: 10px;
  }
}
.news-article-body p.lead-p {
  font-weight: 400;
  color: #333333;
  margin-bottom: 20px;
}
.news-article-body h2 {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin: 28px 0 12px 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .news-article-body h2 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.dash-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.dash-bullet-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: #333333;
  line-height: 1.7;
}
.dash-bullet-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #333333;
}

.article-image-box {
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
}
.article-image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.article-source {
  text-align: right;
  font-weight: 800;
  font-size: 14px;
  color: #111111;
  margin: 20px 0 30px 0;
}

.article-contact-box {
  background-color: #f8faf9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #333333;
  line-height: 1.75;
}
.article-contact-box p {
  margin-bottom: 6px;
}
.article-contact-box .company-name {
  font-weight: 800;
  color: var(--primary-green, #2E6E24);
  margin: 4px 0 8px 0;
  text-transform: uppercase;
  font-size: 15px;
}

.article-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #eef2f0;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 767px) {
  .article-tags-share {
    gap: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
    justify-content: start;
    align-items: start;
  }
}

.article-tags,
.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-label,
.share-label {
  color: #111111;
  text-transform: uppercase;
}

.tag-item {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tag-item:hover {
  color: var(--primary-green, #2E6E24);
}

.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background-color: var(--primary-green, #2E6E24);
  color: #ffffff;
  border-color: var(--primary-green, #2E6E24);
}

/* Sidebar Mới Nhất */
.news-detail-sidebar {
  width: 100%;
}

.sidebar-recent-block {
  background-color: #f8faf9;
  border: 1px solid #eef2f0;
  border-radius: 12px;
  padding: 24px 20px;
}
@media (max-width: 767px) {
  .sidebar-recent-block {
    padding: 10px;
  }
}

.recent-news-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.recent-news-img {
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

.recent-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.recent-news-item:hover .recent-news-img img {
  transform: scale(1.08);
}

.recent-news-info {
  flex-grow: 1;
}

.recent-news-info h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.recent-news-info h4 a {
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-news-info h4 a:hover {
  color: var(--primary-red, #c8102e);
}

/* Responsive for News Detail Page */
@media (max-width: 992px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .news-detail-layout {
    gap: 10px;
  }
}
@media (max-width: 992px) {
  .sidebar-recent-block {
    margin-top: 20px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .sidebar-recent-block {
    margin-top: 0;
  }
}
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-page-main {
  padding: 0 0 var(--pd-section);
  background-color: #fff;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 581px) minmax(0, 620px);
  justify-content: space-between;
  gap: 66px;
  align-items: start;
}

.contact-block-title {
  min-height: 46px;
  margin: 0;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 3px;
}

.contact-info-item {
  min-height: 65px;
  display: flex;
  align-items: flex-start;
  gap: 23px;
}

.contact-icon-circle {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  margin-top: 5px;
}

.contact-icon-bg {
  position: absolute;
  inset: 0;
  width: 46px;
  height: 46px;
}

.contact-icon-glyph {
  position: relative;
  z-index: 1;
  display: block;
  object-fit: contain;
}

.contact-icon-location {
  width: 14px;
  height: 19px;
}

.contact-icon-phone {
  width: 19px;
  height: 18px;
}

.contact-icon-email {
  width: 23px;
  height: 16px;
}

.contact-info-text {
  min-width: 0;
  padding-top: 1px;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.contact-info-text .info-label {
  margin: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
}

.contact-info-text .info-val {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
}

.contact-info-text a.info-val:hover {
  color: #2e6e24;
}

.contact-design-form {
  margin-top: 3px;
}

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

.contact-form-field {
  position: relative;
  height: 53px;
  display: block;
  margin: 0;
  border: 1px solid #d1d9e5;
  border-radius: 4px;
  background-color: #fff;
}

.contact-form-field > img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  object-fit: contain;
  pointer-events: none;
}

.contact-form-field > img.contact-form-phone-icon {
  left: 18px;
  width: 15px;
  height: 15px;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: inherit;
  background: transparent;
  color: #031501;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
}

.contact-form-field input {
  padding: 11px 16px 11px 57px;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #031501;
  opacity: 1;
}

.contact-form-field:focus-within {
  border-color: #2e6e24;
  box-shadow: 0 0 0 3px rgba(46, 110, 36, 0.1);
}

.contact-form-field span.field-validation-error {
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  color: #bb0000;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
}

.contact-form-message {
  height: 113px;
  grid-column: 1/-1;
}

.contact-form-message > img {
  top: 24px;
  left: 19px;
  width: 18px;
  height: 10px;
  transform: none;
}

.contact-form-field textarea {
  padding: 12px 16px 12px 58px;
  resize: vertical;
}

.contact-submit-btn {
  width: 202px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background-color: #2e6e24;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.contact-submit-btn:hover {
  background-color: #23541b;
  transform: translateY(-2px);
}

.contact-submit-btn:disabled,
.contact-submit-btn.is-loading {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.contact-map-section {
  margin-top: 42px;
}

.contact-map-wrapper {
  width: 100%;
  height: 483px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 20px;
  background-color: #eef2ed;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 1100px) {
  .contact-section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }
}
@media (max-width: 992px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 992px) and (max-width: 767px) {
  .contact-section-grid {
    gap: 10px;
  }
}
@media (max-width: 992px) {
  .contact-map-wrapper {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .contact-page-main {
    padding-bottom: 48px;
  }
  .contact-block-title {
    min-height: 0;
    font-size: 18px;
    line-height: 1.5;
  }
  .contact-info-list,
  .contact-design-form {
    margin-top: 10px;
  }
  .contact-info-item {
    gap: 10px;
    min-height: initial;
  }
  .contact-info-text,
  .contact-form-field input,
  .contact-form-field textarea {
    font-size: 15px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-form-message {
    grid-column: auto;
  }
  .contact-submit-btn {
    width: 100%;
  }
  .contact-map-section {
    margin-top: 15px;
  }
  .contact-map-wrapper {
    height: 320px;
    border-width: 3px;
    border-radius: 14px;
  }
}
.tu-van-popup {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 15px;
}
.tu-van-popup[hidden] {
  display: none;
}

.tu-van-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 21, 1, 0.58);
  animation: tu-van-popup-backdrop-in 0.25s ease-out both;
}

.tu-van-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(655px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 49px 52px 41px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(3, 21, 1, 0.2);
  transform-origin: center;
  animation: tu-van-popup-dialog-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes tu-van-popup-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes tu-van-popup-dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.tu-van-popup__close {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.tu-van-popup__close img {
  width: 18px;
  height: 18px;
}

.tu-van-popup__title {
  margin: 0 0 28px;
  color: #2e6e24;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.tu-van-popup__title span {
  color: #bb0000;
}

.tu-van-popup__field {
  margin-bottom: 17px;
}
.tu-van-popup__field label {
  display: block;
  margin-bottom: 7px;
  color: #4e5868;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.tu-van-popup__field label span {
  color: #bb0000;
}

.tu-van-popup__control {
  position: relative;
}
.tu-van-popup__control > img, .tu-van-popup__control > svg {
  position: absolute;
  top: 15px;
  left: 17px;
  z-index: 1;
  max-width: 20px;
  pointer-events: none;
}
.tu-van-popup__control input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 17px 0 50px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  outline: none;
  background: #f9fafb;
  color: #303030;
  font: inherit;
  font-size: 17px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tu-van-popup__control input::placeholder {
  color: #6a7383;
  opacity: 1;
}
.tu-van-popup__control input:focus {
  border-color: #2e6e24;
  box-shadow: 0 0 0 3px rgba(46, 110, 36, 0.12);
}
.tu-van-popup__control input.error {
  border-color: #bb0000;
}
.tu-van-popup__control label.error {
  margin: 4px 0 0;
  color: #bb0000;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  display: none !important;
}

.tu-van-popup__submit {
  width: 100%;
  height: 50px;
  margin-top: 3px;
  border: 0;
  border-radius: 6px;
  background: #2e6e24;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.tu-van-popup__submit:hover, .tu-van-popup__submit:focus-visible {
  background: #245b1c;
}
.tu-van-popup__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.tu-van-popup__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  color: #4e5868;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

body.tu-van-popup-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .tu-van-popup__backdrop,
  .tu-van-popup__dialog {
    animation: none;
  }
}
@media (max-width: 767px) {
  .tu-van-popup {
    align-items: flex-start;
    padding: 0;
  }
  .tu-van-popup__dialog {
    max-height: calc(100vh - 30px);
    padding: 43px 20px 28px;
    border-radius: 16px;
  }
  .tu-van-popup__close {
    top: 15px;
    right: 15px;
  }
  .tu-van-popup__title {
    margin-bottom: 22px;
    font-size: 23px;
  }
  .tu-van-popup__privacy {
    margin-top: 23px;
    padding-top: 19px;
    text-align: center;
  }
}
.google-search-page {
  min-height: 55vh;
  padding-top: 42px;
  padding-bottom: 70px;
  background: #ffffff;
}

.google-search-shell {
  width: min(760px, 100%);
  margin-left: clamp(0px, 7vw, 90px);
}

.google-search-form {
  display: flex;
  align-items: center;
  width: min(690px, 100%);
  height: 48px;
  margin-bottom: 18px;
  padding: 0 7px 0 20px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.google-search-form:hover, .google-search-form:focus-within {
  border-color: transparent;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}
.google-search-form input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #202124;
  font: inherit;
  font-size: 16px;
}
.google-search-form button {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.google-search-form button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.google-search-summary {
  margin: 0 0 26px;
  color: #70757a;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.google-result-item {
  max-width: 680px;
  margin-bottom: 31px;
}

.google-result-source {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  color: #202124;
}

.google-result-favicon {
  display: flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #ecedef;
  border-radius: 50%;
  background: #f1f3f4;
}
.google-result-favicon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.google-result-site {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: #202124;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}
.google-result-site cite {
  display: block;
  max-width: 620px;
  overflow: hidden;
  color: #4d5156;
  font-size: 12px;
  font-style: normal;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-result-title {
  margin: 0 0 5px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}
.google-result-title a {
  color: #1a0dab;
  font-weight: 500;
}
.google-result-title a:hover {
  text-decoration: underline;
}
.google-result-title a:visited {
  color: #681da8;
}

.google-result-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #4d5156;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.google-result-description time {
  color: #70757a;
}

.google-search-empty {
  max-width: 680px;
  padding: 28px 0;
  color: #4d5156;
}
.google-search-empty h1 {
  margin: 0 0 14px;
  color: #202124;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
}
.google-search-empty p {
  margin: 7px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 767px) {
  .google-search-page {
    padding-top: 24px;
    padding-bottom: 45px;
  }
  .google-search-shell {
    width: 100%;
    margin-left: 0;
  }
  .google-search-form {
    height: 46px;
    margin-bottom: 14px;
    padding-left: 16px;
  }
  .google-search-summary {
    margin-bottom: 23px;
    font-size: 13px;
  }
  .google-result-item {
    margin-bottom: 27px;
  }
  .google-result-title {
    font-size: 19px;
    line-height: 1.35;
  }
  .google-result-description {
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }
}

/*# sourceMappingURL=homemed-custom.css.map */
