/* ── Top utility bar (legacy .header-top) ────────────────────── */
.header .header-top {
  background: #fff;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-neutral-200);
}

.header .header-top .header-top_contact > .contact-item {
  color: var(--color-neutral-600);
  font-size: 12.5px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--hv-tr);
}

.header .header-top .header-top_contact > .contact-item:hover {
  color: var(--hv-red);
}

.header .header-top .header-top_contact > .contact-item .contact-item_icon {
  color: var(--hv-red);
  font-size: 11px;
}

.header .header-top .header-top_contact > .contact-item + .contact-item::before {
  content: '|';
  color: var(--color-neutral-300);
  margin: 0 8px 0 0;
  font-size: 11px;
}

.header .header-top .header-top_socials > .social-item {
  color: var(--color-neutral-400);
  font-size: 13px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  transition: color var(--hv-tr), background var(--hv-tr);
}

.header .header-top .header-top_socials > .social-item:hover {
  color: var(--hv-red);
  background: rgba(var(--primary-rgb), .08);
}

.header .header-top .header-top_socials > .social-item + .social-item {
  margin-left: 2px;
}

/* ── Main header bar ─────────────────────────────────────────── */
.header {
  overflow: visible;
}

.header-main {
  position: relative;
  background: #fff !important;
  border-bottom: 1px solid var(--color-neutral-200) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.07) !important;
  overflow: visible;
}

.hm-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
}

/* ── Logo ────────────────────────────────────────────────────── */
.hm-logo__link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding-right: 16px;
  margin-right: 8px;
  border-right: 1px solid var(--color-neutral-200);
}

.hm-logo__img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* ── Desktop navigation ──────────────────────────────────────── */
.hm-nav {
  flex: 1;
  align-items: center;
  justify-content: center;
}

.hm-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.hm-nav__item {
  position: relative;
}

.hm-has-mega {
  position: static;
}

.hm-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 13px;
  font-size: 16px !important;
  font-weight: 600;
  color: var(--color-neutral-900) !important;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .1px;
  transition: color .18s ease, background .18s ease;
}

.hm-nav__link:hover,
.hm-has-mega:hover > .hm-nav__link,
.hm-has-dropdown:hover > .hm-nav__link,
.hm-has-dropdown:focus-within > .hm-nav__link {
  color: var(--color-red-600) !important;
  background: rgba(var(--primary-rgb), .06) !important;
}

.hm-nav__link.is-active,
.hm-nav__item--active > .hm-nav__link {
  color: var(--color-red-600) !important;
  background: rgba(var(--primary-rgb), .05) !important;
  border-bottom: 2px solid var(--color-red-600);
}

.hm-nav__arrow {
  flex-shrink: 0;
  transition: transform .22s ease;
}

.hm-nav__arrow path {
  stroke: var(--color-neutral-600);
}

.hm-has-mega:hover > .hm-nav__link .hm-nav__arrow,
.hm-has-dropdown:hover > .hm-nav__link .hm-nav__arrow,
.hm-has-dropdown:focus-within > .hm-nav__link .hm-nav__arrow {
  transform: rotate(180deg);
}

.hm-has-mega:hover > .hm-nav__link .hm-nav__arrow path,
.hm-has-dropdown:hover > .hm-nav__link .hm-nav__arrow path,
.hm-has-dropdown:focus-within > .hm-nav__link .hm-nav__arrow path {
  stroke: var(--color-red-600);
}

/* ── Inline CTA btn in nav (legacy) ──────────────────────────── */
.hm-nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--color-red-600);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, transform .15s;
}

.hm-nav__cta-btn:hover {
  background: var(--color-red-700);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Mega menu (full-width dropdown) ─────────────────────────── */
.hm-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--color-red-600);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: var(--z-mega-menu, 1050);
}

.hm-has-mega:hover > .hm-mega,
.hm-has-mega:focus-within > .hm-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hm-mega__inner {
  padding: 28px 0;
}

.hm-mega__col {
  padding: 0 24px;
  border-right: 1px solid var(--color-neutral-100);
}

.hm-mega__col:last-child {
  border-right: none;
}

.hm-mega__heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-red-600);
  text-transform: uppercase;
  letter-spacing: .9px;
  margin: 0 0 14px;
}

.hm-mega__links {
  display: flex;
  flex-direction: column;
}

.hm-mega__links li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-neutral-50);
}

.hm-mega__links li:last-child {
  border-bottom: none;
}

.hm-mega__links a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 7px 0;
  flex: 1;
  display: block;
  transition: color .14s ease, padding-left .14s ease;
}

.hm-mega__links a:hover {
  color: var(--color-red-600);
  padding-left: 6px;
}

.hm-mega__links span {
  font-size: 14px;
  color: var(--color-neutral-400);
  white-space: nowrap;
  padding-left: 8px;
  flex-shrink: 0;
}

.hm-mega__all-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-red-600);
  text-decoration: none;
}

.hm-mega__all-link:hover {
  text-decoration: underline;
  color: var(--color-red-600);
}

/* Featured column (Xe Mới) */
.hm-mega__col--featured {
  background: var(--color-neutral-50);
  border-radius: 8px;
  border-right: none !important;
}

.hm-featured {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hm-featured__img {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--color-neutral-100);
}

.hm-featured__img img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  display: block;
}

.hm-featured__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-neutral-700);
  margin: 0 0 4px;
}

.hm-featured__sub {
  font-size: 13px;
  color: var(--color-red-600);
  font-weight: 500;
  margin: 0 0 14px;
}

.hm-featured__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* Service CTA column (Dịch Vụ) */
.hm-mega__col--service-cta {
  background: var(--color-neutral-50);
  border-radius: 8px;
  border-right: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-service-cta {
  text-align: center;
  padding: 8px 4px;
}

.hm-service-cta__icon {
  font-size: 32px;
  color: var(--color-red-600);
  margin-bottom: 12px;
  display: block;
}

.hm-service-cta__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-neutral-700);
  margin: 0 0 4px;
}

.hm-service-cta__sub {
  font-size: 13px;
  color: var(--color-neutral-500);
  margin: 0 0 4px;
}

/* Shared mega buttons */
.hm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background .18s ease, transform .14s ease, color .14s ease;
}

.hm-btn--red {
  background: var(--hv-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), .35);
}

.hm-btn--red:hover {
  background: var(--hv-red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), .45);
}

.hm-btn--outline {
  border: 2px solid var(--color-red-600);
  color: var(--color-red-600);
  background: transparent;
}

.hm-btn--outline:hover {
  background: var(--color-red-600);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Dropdown (small, for Xe Cũ / Ưu Đãi) ───────────────────── */
.hm-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-top: 2px solid var(--color-red-600);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  border-radius: 0 0 8px 8px;
  min-width: 230px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: var(--z-mega-menu, 1050);
}

.hm-has-dropdown:hover > .hm-dropdown,
.hm-has-dropdown:focus-within > .hm-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hm-dropdown li {
  border-bottom: 1px solid var(--color-neutral-50);
}

.hm-dropdown li:last-child {
  border-bottom: none;
}

.hm-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color .14s ease, background .14s ease, padding-left .14s ease;
}

.hm-dropdown a:hover {
  color: var(--color-red-600);
  background: rgba(var(--primary-rgb), .05);
  padding-left: 26px;
}

/* ── Actions area (right side) ───────────────────────────────── */
.hm-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Hotline block */
.hm-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hm-hotline__icon {
  width: 38px;
  height: 38px;
  background: rgba(var(--primary-rgb), .1);
  color: var(--color-red-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  animation: hmRingAnim 3s ease-in-out infinite;
}

@keyframes hmRingAnim {
  0%, 60%, 100% { transform: rotate(0); }
  10%           { transform: rotate(-15deg); }
  20%           { transform: rotate(15deg); }
  30%           { transform: rotate(-10deg); }
  40%           { transform: rotate(10deg); }
  50%           { transform: rotate(0); }
}

.hm-hotline__label {
  display: block;
  font-size: 10px;
  color: var(--color-neutral-400);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.hm-hotline__number {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-red-600);
  line-height: 1.2;
}

.hm-hotline:hover .hm-hotline__number {
  text-decoration: underline;
}

/* Zalo button */
.hm-zalo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #e8f1ff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0068ff;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .14s ease;
}

.hm-zalo-btn:hover {
  background: #0068ff;
  color: #fff;
  transform: scale(1.04);
}

/* Search toggle */
.hm-search-btn {
  background: transparent;
  border: none;
  padding: 8px;
  color: var(--color-neutral-600);
  font-size: 17px;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .16s ease, background .16s ease;
}

.hm-search-btn:hover,
.hm-search-btn[aria-expanded="true"] {
  color: var(--color-neutral-900);
  background: rgba(0,0,0,.05);
}

/* CTA button (desktop) */
.hm-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--color-red-600);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .2px;
  border: none;
  box-shadow: 0 2px 8px rgba(227,6,19,.3);
  transition: background .18s ease, transform .14s ease;
}

.hm-cta-btn:hover {
  background: var(--color-red-700) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(227,6,19,.4);
}

@media (min-width: 992px)   and (max-width: 1199.98px) {
  .header-main {
    background: #fff !important;
  }

  .hm-grid {
    gap: 12px;
    min-height: 64px;
  }

  .hm-logo__link {
    padding-right: 12px;
    margin-right: 4px;
  }

  .hm-logo__img {
    height: 52px;
    max-width: 176px;
  }

  .hm-nav__list {
    gap: 1px;
  }

  .hm-nav__link {
    padding: 9px 10px;
    font-size: 14px !important;
  }

  .hm-cta-btn {
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .hm-actions {
    gap: 4px;
  }

  .hm-search-btn {
    padding: 7px;
  }
}

/* ============================================================
   BREAKPOINTS — Honda Ô Tô Sài Gòn Q2
   Nguồn duy nhất (single source of truth) cho responsive tokens.

   Bootstrap 5 aligned + project-specific ranges.
   Được inject tự động vào mọi CSS file qua PostCSS importFrom.
   ============================================================

   SCALE:
     xs      < 576px    mobile portrait
     sm    576–767px    mobile landscape
     md    768–991px    tablet portrait
     lg   992–1199px    tablet landscape / small laptop
     xl  1200–1399px    desktop
     xxl   ≥ 1400px    large desktop

   NAMING CONVENTION:
     --bp-{size}         min-width  (mobile-first, "from size and up")
     --bp-lt-{size}      max-width  (max-down, "until size")
     --bp-{size}-only    range      (only at this breakpoint)
     --bp-{a}-to-{b}     range      (custom cross-breakpoint range)
   ============================================================ */

/* ── Min-width (mobile-first) ──────────────────────────────── */

/* ── Max-width (max-down) ──────────────────────────────────── */
/* .98px offset: avoids overlap at exact pixel boundary        */

/* ── Ranges (single breakpoint only) ──────────────────────── */

/* ── Project-specific ranges ──────────────────────────────── */
/* Container max = 1280px → useful cho sidebar/content layouts */

/* Tablet range: iPad portrait + landscape */

/* Small phone */

/* ── Hamburger (mobile) ──────────────────────────────────────── */
.hm-hamburger {
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.hm-hamburger:hover {
  background: rgba(0,0,0,.05);
}

.hm-hamburger__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-red-600);
  transition: transform .28s ease, opacity .28s ease;
}

.hm-hamburger[aria-expanded="true"] .hm-hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hm-hamburger[aria-expanded="true"] .hm-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hm-hamburger[aria-expanded="true"] .hm-hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Search bar (expandable below header) ────────────────────── */
.hm-search-bar {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0 14px;
  background: #fff;
  border-top: 1px solid var(--color-neutral-200);
}

.hm-search-bar.is-open {
  display: flex;
}

.hm-search-bar__form {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid var(--color-neutral-300);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease;
}

.hm-search-bar__form:focus-within {
  border-color: var(--color-red-600);
  background: #fff;
}

.hm-search-bar__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 15px;
  outline: none;
  color: var(--color-neutral-900);
  min-width: 0;
  font-family: inherit;
}

.hm-search-bar__input::placeholder {
  color: var(--color-neutral-400);
}

.hm-search-bar__submit {
  background: var(--color-red-600);
  border: none;
  color: var(--hv-white);
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .16s ease;
}

.hm-search-bar__submit:hover {
  background: var(--color-red-700);
  color: var(--hv-white);
}

.hm-search-bar__close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--color-neutral-600);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: color .16s ease, background .16s ease;
}

.hm-search-bar__close:hover {
  color: var(--color-neutral-900);
  background: rgba(0,0,0,.05);
}

/* ── Mobile offcanvas menu ───────────────────────────────────── */
.hm-offcanvas {
  max-width: 320px;
}

.hm-offcanvas .offcanvas-header {
  background: var(--hv-dark);
  border-bottom: 2px solid var(--hv-red);
  padding: 14px 20px;
}

.hm-offcanvas .offcanvas-header .btn-close {
  filter: invert(1);
  opacity: .7;
}

.hm-offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
}

.hm-offcanvas__logo {
  height: 38px;
  width: auto;
  display: block;
}

/* Accordion in offcanvas */
.hm-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--color-neutral-100);
  border-radius: 0 !important;
}

.hm-accordion .accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-neutral-700);
  padding: 14px 20px;
  background: #fff;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hm-accordion .accordion-button:not(.collapsed) {
  color: var(--color-red-600);
  background: rgba(var(--primary-rgb), .04);
}

.hm-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(12%) sepia(90%) saturate(5000%) hue-rotate(358deg) brightness(90%);
}

.hm-accordion .accordion-body {
  padding: 8px 20px 16px;
}

/* Single-link accordion items */
.hm-accordion-link {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-neutral-700);
  padding: 14px 20px;
  background: #fff;
  text-decoration: none;
  border-radius: 0 !important;
}

.hm-accordion-link:hover {
  color: var(--color-red-600);
  background: rgba(var(--primary-rgb), .04);
}

.hm-accordion-link::after {
  display: none !important;
}

.hm-mobile-links {
  margin: 0;
}

.hm-mobile-links a {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: color .14s ease, padding-left .14s ease;
}

.hm-mobile-links a:hover {
  color: var(--color-red-600);
  padding-left: 8px;
}

.hm-mobile-links__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-red-600);
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 12px 0 5px;
}

.hm-mobile-all {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-red-600);
  text-decoration: none;
}

.hm-mobile-all:hover {
  text-decoration: underline;
  color: var(--color-red-600);
}

/* CTA trong accordion */
.hm-accordion__cta-wrap {
  padding: 16px 20px;
}

.hm-accordion__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--hv-red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.hm-accordion__cta:hover {
  background: var(--hv-red-dark);
  color: #fff;
}

/* Offcanvas footer (thông tin liên hệ) */
.hm-offcanvas__footer {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hm-offcanvas__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.hm-offcanvas__phone i {
  color: var(--color-red-600);
  width: 16px;
  text-align: center;
}

.hm-offcanvas__phone em {
  font-size: 12px;
  font-style: normal;
  color: var(--color-neutral-400);
}

/* ── Model car cards in mega menu ────────────────────────────── */
.hm-mega__car-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.hm-mega__car-list li {
  border-bottom: 1px solid #f5f5f5;
}

.hm-mega__car-list li:last-child {
  border-bottom: none;
}

.hm-mega__car-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  transition: padding-left .14s ease;
}

.hm-mega__car-link img {
  width: 80px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f0f0f0;
  display: block;
}

.hm-mega__car-info {
  flex: 1;
  min-width: 0;
}

.hm-mega__car-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-neutral-700);
  transition: color .14s ease;
  white-space: nowrap;
}

.hm-mega__car-info em {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: var(--color-red-600);
  font-weight: 500;
  margin-top: 1px;
}

.hm-mega__car-link:hover {
  padding-left: 4px;
}

.hm-mega__car-link:hover .hm-mega__car-info strong {
  color: var(--color-red-600);
}

/* Cluster links trong mega */
.hm-mega__cluster-links {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.hm-mega__cluster-head {
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin: 0 0 6px;
}

.hm-mega__cluster-links a {
  display: block;
  font-size: 13px;
  color: var(--color-neutral-600);
  text-decoration: none;
  padding: 4px 0;
  transition: color .14s ease, padding-left .14s ease;
}

.hm-mega__cluster-links a:hover {
  color: var(--color-red-600);
  padding-left: 4px;
}

/* Xe Cũ dropdown: highlight kho xe */
.hm-has-dropdown .hm-dropdown li a[href="/xe-cu/"] {
  font-weight: 600;
}

/* ── Breadcrumb alignment ────────────────────────────────────── */
.heading-highlight.heading-highlight_background {
  border-top: none;
}

/* ── New desktop top bar (.ht-bar) ───────────────────────────── */
.ht-bar { background: var(--color-neutral-900); height: 40px; }
.ht-bar a, .ht-bar span { color: var(--color-neutral-300); text-decoration: none; font-size: var(--text-sm); }
.ht-bar a:hover { color: var(--color-white); }
.ht-bar__sep { width: 1px; height: 14px; background: var(--color-neutral-700); flex-shrink: 0; }
.ht-bar__muted { color: var(--color-neutral-500) !important; }
.ht-social-link { color: var(--color-neutral-500) !important; display: inline-flex; transition: color var(--duration-fast) var(--ease-out); }
.ht-social-link:hover { color: var(--color-neutral-200) !important; }

/* ── New mobile top bar .mtb (rotating states) ──────────────── */
.mtb { background: var(--color-neutral-900); height: 36px; position: relative; overflow: hidden; }
.mtb-state { position: absolute; inset: 0; padding: 0 var(--space-4); display: flex; align-items: center; opacity: 0; pointer-events: none; transition: opacity var(--duration-normal) var(--ease-out); }
.mtb-state.is-active { opacity: 1; pointer-events: auto; }
.mtb a, .mtb span { color: var(--color-neutral-500); font-size: var(--text-xs); text-decoration: none; }
.mtb a:hover { color: var(--color-neutral-200); }
.mtb__bold { color: var(--color-neutral-200) !important; font-weight: 600; }
.mtb-dots { position: absolute; right: 10px; bottom: 4px; display: flex; gap: 4px; z-index: 1; }
.mtb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-neutral-600); border: none; padding: 0; cursor: pointer; opacity: .5; transition: opacity var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out); }
.mtb-dot.is-active { opacity: 1; background: var(--color-red-600); }
.mtb-dot:hover { opacity: .8; }

/* ── Mobile header row ───────────────────────────────────────── */
.hm-mobile-row { height: 60px; padding: 0 var(--space-3); background: #fff; display: flex; align-items: center; justify-content: space-between; position: relative; border-bottom: 1px solid var(--color-neutral-200); }
.hm-mobile-row__logo { position: absolute; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; }
.hm-mobile-row__logo img { height: 50px; width: auto; object-fit: contain; }
.hm-mobile-row__btn-ham { background: none; border: none; padding: var(--space-2); color: var(--color-neutral-900); cursor: pointer; display: inline-flex; align-items: center; }
.hm-mobile-row__btn-call { font-size: var(--text-xs) !important; padding: var(--space-1) var(--space-3) !important; display: inline-flex !important; align-items: center; gap: var(--space-1); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1399.98px) and (min-width: 1200px) {
  .hm-nav__link {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hm-nav__cta-btn {
    padding: 9px 13px;
    font-size: 13px;
  }

  .hm-cta-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .hm-hotline__number {
    font-size: 14px;
  }

  .hm-zalo-btn span {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .header-main {
    background: var(--hv-dark) !important;
  }

  .hm-cta-btn {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 991.98px) {
  .hm-search-bar__input,
  .hm-accordion .accordion-button,
  .hm-accordion-link,
  .hm-mobile-links a,
  .hm-mobile-all,
  .hm-accordion__cta,
  .hm-offcanvas__phone {
    font-size: 16px;
  }

  .hm-accordion .accordion-button,
  .hm-accordion-link,
  .hm-accordion__cta {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hm-mobile-links a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hm-offcanvas__phone {
    line-height: 1.35;
  }
}
